Skip to content

Instantly share code, notes, and snippets.

@sorin-ionescu
Last active July 9, 2020 17:53
Show Gist options
  • Select an option

  • Save sorin-ionescu/8118073 to your computer and use it in GitHub Desktop.

Select an option

Save sorin-ionescu/8118073 to your computer and use it in GitHub Desktop.
MiniDLNA v1.1.4 patches for Mac OS X.
diff --git 1/configure.ac 2/configure.ac
index 3a8a54c..17c2108 100644
--- 1/configure.ac
+++ 2/configure.ac
@@ -505,6 +505,12 @@ AC_CHECK_FUNCS(inotify_init, AC_DEFINE(HAVE_INOTIFY,1,[Whether kernel has inotif
])
])
+AC_CHECK_HEADERS([CoreFoundation/CoreFoundation.h], [
+ CFLAGS="$CFLAGS -I /System/Library/Frameworks/CoreFoundation.framework/Headers"
+ LDFLAGS="$LDFLAGS -framework CoreFoundation -framework CoreServices"
+ AC_DEFINE([HAVE_FSEVENTS], [1], [Whether kernel has FSEvents support])
+])
+
################################################################################################################
### Build Options
@@ -633,6 +639,21 @@ case "$target_os" in
;;
esac
+## Exclude unsupported Mac OS X versions.
+case "$target_os" in
+ ## Darwin 1.3.1 was Mac OS X 10.0, 1.4.1 was 10.1, 5 is 10.2, etc.
+ ## with 13 being 10.9. Mac OS X 10.7 is required for directory FSEvents.
+ ## http://en.wikipedia.org/wiki/Darwin_OS
+ darwin1.*)
+ AC_MSG_ERROR([The minimum supported Mac OS X version is 10.7])
+ ;;
+ darwin[[56789]].*)
+ AC_MSG_ERROR([The minimum supported Mac OS X version is 10.7])
+ ;;
+ darwin10.*)
+ AC_MSG_ERROR([The minimum supported Mac OS X version is 10.7])
+ ;;
+esac
AC_OUTPUT([ po/Makefile.in
Makefile
diff --git 1/inotify.c 2/inotify.c
index 03aff5e..a21c21f 100644
--- 1/inotify.c
+++ 2/inotify.c
@@ -17,7 +17,7 @@
*/
#include "config.h"
-#ifdef HAVE_INOTIFY
+#if defined(HAVE_INOTIFY) || defined(HAVE_FSEVENTS)
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
@@ -31,12 +31,17 @@
#include <sys/time.h>
#include <sys/resource.h>
#include <poll.h>
+#ifdef HAVE_INOTIFY
#ifdef HAVE_SYS_INOTIFY_H
#include <sys/inotify.h>
#else
#include "linux/inotify.h"
#include "linux/inotify-syscalls.h"
#endif
+#elif defined(HAVE_FSEVENTS)
+#include <CoreFoundation/CoreFoundation.h>
+#include <CoreServices/CoreServices.h>
+#endif
#include "libav.h"
#include "upnpglobalvars.h"
@@ -49,11 +54,13 @@
#include "playlist.h"
#include "log.h"
+#ifdef HAVE_INOTIFY
#define EVENT_SIZE ( sizeof (struct inotify_event) )
#define BUF_LEN ( 1024 * ( EVENT_SIZE + 16 ) )
#define DESIRED_WATCH_LIMIT 65536
#define PATH_BUF_SIZE PATH_MAX
+#endif
struct watch
{
@@ -66,6 +73,10 @@ static struct watch *watches;
static struct watch *lastwatch = NULL;
static time_t next_pl_fill = 0;
+#if HAVE_FSEVENTS
+static CFRunLoopRef runLoop;
+#endif
+
char *get_path_from_wd(int wd)
{
struct watch *w = watches;
@@ -80,6 +91,7 @@ char *get_path_from_wd(int wd)
return NULL;
}
+#ifdef HAVE_INOTIFY
int
add_watch(int fd, const char * path)
{
@@ -277,6 +289,7 @@ int add_dir_watch(int fd, char * path, char * filename)
return(i);
}
+#endif
int
inotify_insert_file(char * name, const char * path)
@@ -294,6 +307,8 @@ inotify_insert_file(char * name, const char * path)
struct media_dir_s * media_path = media_dirs;
struct stat st;
+ DPRINTF(E_DEBUG, L_INOTIFY, "inotify_insert_file: %s @ %s\n", name, path);
+
/* Is it cover art for another file? */
if( is_image(path) )
update_if_album_art(path);
@@ -446,6 +461,8 @@ inotify_insert_directory(int fd, char *name, const char * path)
struct media_dir_s* media_path;
struct stat st;
+ DPRINTF(E_DEBUG, L_INOTIFY, "inotify_insert_directory: %s @ %s\n", name, path);
+
if( access(path, R_OK|X_OK) != 0 )
{
DPRINTF(E_WARN, L_INOTIFY, "Could not access %s [%s]\n", path, strerror(errno));
@@ -466,6 +483,7 @@ inotify_insert_directory(int fd, char *name, const char * path)
sqlite3_free(id);
free(parent_buf);
+#ifdef HAVE_INOTIFY
wd = add_watch(fd, path);
if( wd == -1 )
{
@@ -475,6 +493,7 @@ inotify_insert_directory(int fd, char *name, const char * path)
{
DPRINTF(E_INFO, L_INOTIFY, "Added watch to %s [%d]\n", path, wd);
}
+#endif
media_path = media_dirs;
while( media_path )
@@ -537,6 +556,7 @@ inotify_remove_file(const char * path)
char **result;
int64_t detailID;
int rows, playlist;
+ DPRINTF(E_DEBUG, L_INOTIFY, "inotify_remove_file: %s\n", path);
if( is_caption(path) )
{
@@ -582,6 +602,8 @@ inotify_remove_file(const char * path)
continue;
if( children < 2 )
{
+ sql_exec(db, "DELETE from DETAILS where ID ="
+ " (SELECT DETAIL_ID from OBJECTS where OBJECT_ID = '%s')", result[i]);
sql_exec(db, "DELETE from OBJECTS where OBJECT_ID = '%s'", result[i]);
ptr = strrchr(result[i], '$');
@@ -589,7 +611,9 @@ inotify_remove_file(const char * path)
*ptr = '\0';
if( sql_get_int_field(db, "SELECT count(*) from OBJECTS where PARENT_ID = '%s'", result[i]) == 0 )
{
- sql_exec(db, "DELETE from OBJECTS where OBJECT_ID = '%s'", result[i]);
+ sql_exec(db, "DELETE from DETAILS where ID ="
+ " (SELECT DETAIL_ID from OBJECTS where OBJECT_ID = '%s')", result[i]);
+ sql_exec(db, "DELETE from OBJECTS where OBJECT_ID = '%s'", result[i]);
}
}
}
@@ -612,10 +636,12 @@ inotify_remove_directory(int fd, const char * path)
char **result;
int64_t detailID = 0;
int rows, i, ret = 1;
-
+ DPRINTF(E_DEBUG, L_INOTIFY, "inotify_remove_directory: %s\n", path);
/* Invalidate the scanner cache so we don't insert files into non-existent containers */
valid_cache = 0;
+#ifdef HAVE_INOTIFY
remove_watch(fd, path);
+#endif
sql = sqlite3_mprintf("SELECT ID from DETAILS where (PATH > '%q/' and PATH <= '%q/%c')"
" or PATH = '%q'", path, path, 0xFF, path);
if( (sql_get_table(db, sql, &result, &rows, NULL) == SQLITE_OK) )
@@ -639,6 +665,7 @@ inotify_remove_directory(int fd, const char * path)
return ret;
}
+#ifdef HAVE_INOTIFY
void *
start_inotify()
{
@@ -756,4 +783,154 @@ quitting:
return 0;
}
+#elif defined(HAVE_FSEVENTS)
+void
+fsevents_cb(
+ ConstFSEventStreamRef streamRef,
+ void * clientCallBackInfo,
+ size_t numEvents,
+ void * eventPaths,
+ const FSEventStreamEventFlags eventFlags[],
+ const FSEventStreamEventId eventIds[])
+{
+ FSEventStreamEventFlags flags;
+ FSEventStreamEventId id;
+ char * esc_name = NULL;
+ char * path = NULL;
+ struct stat st;
+
+ for( size_t i = 0; i < numEvents; i++ )
+ {
+ id = eventIds[i];
+ path = ((char**)eventPaths)[i];
+ esc_name = escape_tag(basename(path), 1);
+ flags = eventFlags[i];
+
+ if( ((flags & kFSEventStreamEventFlagItemRenamed) && lstat(path, &st) == 0) ||
+ (flags & kFSEventStreamEventFlagItemCreated) )
+ {
+ if( flags & kFSEventStreamEventFlagItemIsSymlink && stat(path, &st) == 0 )
+ {
+ if( S_ISREG(st.st_mode) )
+ flags |= kFSEventStreamEventFlagItemIsFile;
+ else if( S_ISDIR(st.st_mode) )
+ flags |= kFSEventStreamEventFlagItemIsDir;
+ }
+
+ if ( flags & kFSEventStreamEventFlagItemIsFile )
+ {
+ DPRINTF(E_DEBUG, L_INOTIFY, "fsevents: created file %s\n", path);
+ inotify_insert_file(esc_name, path);
+ }
+ else if( flags & kFSEventStreamEventFlagItemIsDir )
+ {
+ DPRINTF(E_DEBUG, L_INOTIFY, "fsevents: created directory %s\n", path);
+ inotify_insert_directory(NULL, esc_name, path);
+ }
+ }
+
+ if( flags & (kFSEventStreamEventFlagItemFinderInfoMod |
+ kFSEventStreamEventFlagItemModified |
+ kFSEventStreamEventFlagItemInodeMetaMod |
+ kFSEventStreamEventFlagItemChangeOwner |
+ kFSEventStreamEventFlagItemXattrMod) )
+ {
+ if( flags & kFSEventStreamEventFlagItemIsFile )
+ {
+ DPRINTF(E_DEBUG, L_INOTIFY, "fsevents: modified file %s\n", path);
+ inotify_remove_file(path);
+ inotify_insert_file(esc_name, path);
+ }
+ else if ( flags & kFSEventStreamEventFlagItemIsDir )
+ {
+ DPRINTF(E_DEBUG, L_INOTIFY, "fsevents: modified directory %s\n", path);
+ inotify_remove_directory(NULL, path);
+ inotify_insert_directory(NULL, esc_name, path);
+ }
+ }
+
+ if( ((flags & kFSEventStreamEventFlagItemRenamed) && lstat(path, &st) != 0 && errno == 2) ||
+ (flags & kFSEventStreamEventFlagItemRemoved) )
+ {
+ if( flags & kFSEventStreamEventFlagItemIsSymlink )
+ {
+ if( sql_get_int_field(db, "SELECT ID from DETAILS where PATH = '%q' AND MIME IS NOT NULL", path) > 0 )
+ flags |= kFSEventStreamEventFlagItemIsFile;
+ else if( sql_get_int_field(db, "SELECT ID FROM DETAILS WHERE PATH='%q' AND MIME IS NULL", path) > 0 )
+ flags |= kFSEventStreamEventFlagItemIsDir;
+ }
+
+ if ( flags & kFSEventStreamEventFlagItemIsFile ) {
+ DPRINTF(E_DEBUG, L_INOTIFY, "fsevents: removed file %s\n", path);
+ inotify_remove_file(path);
+ } else if ( flags & kFSEventStreamEventFlagItemIsDir ) {
+ DPRINTF(E_DEBUG, L_INOTIFY, "fsevents: removed directory %s\n", path);
+ inotify_remove_directory(NULL, path);
+ }
+ }
+
+ free(esc_name);
+ }
+}
+
+void *
+start_fsevents()
+{
+ CFStringRef pathToWatch;
+ CFMutableArrayRef pathsToWatch;
+ FSEventStreamContext context;
+ FSEventStreamRef stream;
+ struct media_dir_s * media_path;
+
+ while( scanning )
+ {
+ if( quitting )
+ goto quitting;
+ sleep(1);
+ }
+
+ if (setpriority(PRIO_PROCESS, 0, 19) == -1)
+ DPRINTF(E_WARN, L_INOTIFY, "Failed to reduce inotify thread priority\n");
+ sqlite3_release_memory(1<<31);
+ av_register_all();
+
+ pathsToWatch = CFArrayCreateMutable(kCFAllocatorDefault, 0, &kCFTypeArrayCallBacks);
+ for ( media_path = media_dirs; media_path != NULL; media_path = media_path->next )
+ {
+ DPRINTF(E_DEBUG, L_INOTIFY, "Add watch to %s\n", media_path->path);
+ pathToWatch = CFStringCreateWithCString(kCFAllocatorDefault, media_path->path, kCFStringEncodingUTF8);
+ CFArrayAppendValue(pathsToWatch, pathToWatch);
+ CFRelease(pathToWatch);
+ }
+
+ context = (FSEventStreamContext) {0, NULL, NULL, NULL, NULL};
+ stream = FSEventStreamCreate(
+ kCFAllocatorDefault,
+ &fsevents_cb,
+ &context,
+ pathsToWatch,
+ kFSEventStreamEventIdSinceNow,
+ 0.5,
+ kFSEventStreamCreateFlagFileEvents);
+ runLoop = CFRunLoopGetCurrent();
+
+ FSEventStreamScheduleWithRunLoop(stream, CFRunLoopGetCurrent(), kCFRunLoopDefaultMode);
+ FSEventStreamStart(stream);
+ CFRunLoopRun();
+ FSEventStreamFlushSync(stream);
+ FSEventStreamStop(stream);
+ FSEventStreamUnscheduleFromRunLoop(stream, CFRunLoopGetCurrent(), kCFRunLoopDefaultMode);
+ FSEventStreamInvalidate(stream);
+ FSEventStreamRelease(stream);
+ CFRelease(pathsToWatch);
+quitting:
+ return 0;
+}
+
+void
+stop_fsevents()
+{
+ CFRunLoopStop(runLoop);
+}
+#endif
#endif
diff --git 1/inotify.h 2/inotify.h
index 0f378c2..df1f850 100644
--- 1/inotify.h
+++ 2/inotify.h
@@ -4,4 +4,10 @@ inotify_remove_file(const char * path);
void *
start_inotify();
+#elif defined(HAVE_FSEVENTS)
+void *
+start_fsevents();
+
+void
+stop_fsevents();
#endif
diff --git 1/minidlna.c 2/minidlna.c
index be34fe3..e7cea60 100644
--- 1/minidlna.c
+++ 2/minidlna.c
@@ -1007,7 +1007,11 @@ main(int argc, char **argv)
int max_fd = -1;
int last_changecnt = 0;
pid_t scanner_pid = 0;
+#ifdef HAVE_INOTIFY
pthread_t inotify_thread = 0;
+#elif defined(HAVE_FSEVENTS)
+ pthread_t fsevents_thread = 0;
+#endif
#ifdef TIVO_SUPPORT
uint8_t beacon_interval = 5;
int sbeacon = -1;
@@ -1039,14 +1043,19 @@ main(int argc, char **argv)
ret = -1;
}
check_db(db, ret, &scanner_pid);
-#ifdef HAVE_INOTIFY
+#if defined(HAVE_INOTIFY) || defined(HAVE_FSEVENTS)
if( GETFLAG(INOTIFY_MASK) )
{
if (!sqlite3_threadsafe() || sqlite3_libversion_number() < 3005001)
DPRINTF(E_ERROR, L_GENERAL, "SQLite library is not threadsafe! "
"Inotify will be disabled.\n");
+#ifdef HAVE_INOTIFY
else if (pthread_create(&inotify_thread, NULL, start_inotify, NULL) != 0)
DPRINTF(E_FATAL, L_GENERAL, "ERROR: pthread_create() failed for start_inotify. EXITING\n");
+#elif defined(HAVE_FSEVENTS)
+ else if (pthread_create(&fsevents_thread, NULL, start_fsevents, NULL) != 0)
+ DPRINTF(E_FATAL, L_GENERAL, "ERROR: pthread_create() failed for start_fsevents. EXITING\n");
+#endif
}
#endif
smonitor = OpenAndConfMonitorSocket();
@@ -1320,8 +1329,16 @@ shutdown:
close(lan_addr[i].snotify);
}
+#ifdef HAVE_INOTIFY
if (inotify_thread)
pthread_join(inotify_thread, NULL);
+#elif defined(HAVE_FSEVENTS)
+ if (fsevents_thread)
+ {
+ stop_fsevents();
+ pthread_join(fsevents_thread, NULL);
+ }
+#endif
sql_exec(db, "UPDATE SETTINGS set VALUE = '%u' where KEY = 'UPDATE_ID'", updateID);
sqlite3_close(db);
diff --git i/icons.c w/icons.c
index 0161a2c..3749f33 100644
--- i/icons.c
+++ w/icons.c
@@ -2124,6 +2124,1041 @@ jpeg_lrg[] = "\xff\xd8\xff\xe0\x00\x10\x4a\x46\x49\x46\x00\x01\x01\x01\x00\x48\x
"\x51\x4c\xad\x28\xa2\x8a\x28\x42\x28\xa2\x8a\x10\x8a\x28\xa2\x84\x22\x8a\x28\xa1\x08\xa2\x8a\x28"
"\x42\x28\xa2\x8a\x10\x8a\x28\xa2\x84\x22\x8a\x28\xa1\x0b\xff\xd9";
+#elif __APPLE__
+/* Small Apple PNG image */
+unsigned char
+png_sm[] =
+ "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x30\x00\x00\x00\x30"
+ "\x08\x06\x00\x00\x00\x57\x02\xf9\x87\x00\x00\x0a\x44\x69\x43\x43\x50\x49\x43\x43\x20\x50\x72\x6f"
+ "\x66\x69\x6c\x65\x00\x00\x48\x0d\x9d\x96\x77\x54\x14\xd7\x17\xc7\xdf\xcc\x6c\x2f\xb4\x5d\x96\x22"
+ "\x65\xe9\xbd\xb7\x05\xa4\x2e\xbd\x48\x95\x26\x0a\xcb\xee\x02\x4b\x59\xd6\x65\x17\xb0\x37\x44\x05"
+ "\x22\x8a\x88\x08\x56\x24\x28\x62\xc0\x68\x28\x12\x2b\xa2\x58\x08\x08\x16\xec\x01\x09\x22\x4a\x0c"
+ "\x46\x11\x15\x95\xcc\xc6\x1c\xf5\xf7\x3b\x27\xf9\xfd\x4e\xde\x1f\x77\x3e\xf3\x7d\xf7\x9e\x77\xe7"
+ "\xde\xfb\xce\x19\x00\x28\x01\x21\x02\x61\x0e\xac\x00\x40\xb6\x50\x22\x8e\xf4\xf7\x66\xc6\xc5\x27"
+ "\x30\xf1\xbd\x00\x06\x44\x80\x03\x36\x00\x70\xb8\xb9\xa2\xd0\x28\xbf\x68\x80\xae\x40\x5f\x36\x33"
+ "\x17\x75\x92\xf1\x5f\x0b\x02\xe0\xf5\x2d\x80\x5a\x00\xae\x5b\x04\x84\x33\x99\x7f\xe9\xff\xef\x43"
+ "\x91\x2b\x12\x4b\x00\x80\xc2\xd1\x00\x3b\x1e\x3f\x97\x8b\x72\x21\xca\x59\xf9\x12\x91\x4c\x9f\x44"
+ "\x99\x9e\x92\x29\x63\x18\x23\x63\x31\x9a\x20\xca\xaa\x32\x4e\xfb\xc4\xe6\x7f\xfa\x7c\x62\x4f\x19"
+ "\xf3\xb2\x85\x3c\xd4\x47\x96\xb3\x88\x97\xcd\x93\x71\x17\xca\x1b\xf3\xa4\x7c\x94\x91\x10\x94\x8b"
+ "\xf2\x04\xfc\x7c\x94\x6f\xa0\xac\x9f\x25\xcd\x16\xa0\xfc\x06\x65\x7a\x36\x9f\x93\x0b\x00\x86\x22"
+ "\xd3\x25\x7c\x6e\x3a\xca\xd6\x28\x53\xc4\xd1\x91\x6c\x94\xe7\x02\x40\xa0\xa4\x7d\xc5\x29\x5f\xb1"
+ "\x84\x5f\x80\xe6\x09\x00\x3b\x47\xb4\x44\x2c\x48\x4b\x97\x30\x8d\xb9\x26\x4c\x1b\x67\x67\x16\x33"
+ "\x80\x9f\x9f\xc5\x97\x48\x2c\xc2\x39\xdc\x4c\x8e\x98\xc7\x64\xe7\x64\x8b\x38\xc2\x25\x00\x7c\xfa"
+ "\x66\x59\x14\x50\x92\xd5\x96\x89\x16\xd9\xd1\xc6\xd9\xd1\xd1\xc2\xd6\x12\x2d\xff\xe7\xf5\x8f\x9b"
+ "\x9f\xbd\xfe\x19\x64\xbd\xfd\xe4\xf1\x32\xe2\xcf\x9e\x41\x8c\x9e\x2f\xda\x97\xd8\x2f\x5a\x4e\x2d"
+ "\x00\xac\x29\xb4\x36\x5b\xbe\x68\x29\x3b\x01\x68\x5b\x0f\x80\xea\xdd\x2f\x9a\xfe\x3e\x00\xe4\x0b"
+ "\x01\x68\xed\xfb\xea\x7b\x18\xb2\x79\x49\x97\x48\x44\x2e\x56\x56\xf9\xf9\xf9\x96\x02\x3e\xd7\x52"
+ "\x56\xd0\xcf\xeb\x7f\x3a\x7c\xf6\xfc\x7b\xf8\xea\x3c\x4b\xd9\x79\x9f\x6b\xc7\xf4\xe1\xa7\x72\xa4"
+ "\x59\x12\xa6\xac\xa8\xdc\x9c\xac\x1c\xa9\x98\x99\x2b\xe2\x70\xf9\x4c\x8b\xff\x1e\xe2\x7f\x1d\xf8"
+ "\x55\x5a\x5f\xe5\x61\x1e\xc9\x4f\xe5\x8b\xf9\x42\xf4\xa8\x18\x74\xca\x04\xc2\x34\xb4\xdd\x42\x9e"
+ "\x40\x22\xc8\x11\x32\x05\xc2\xbf\xeb\xf0\xbf\x0c\xfb\x2a\x07\x19\x7e\x9a\x6b\x14\x68\x75\x1f\x01"
+ "\x3d\xc9\x12\x28\xf4\xd1\x01\xf2\x6b\x0f\xc0\xd0\xc8\x00\x49\xdc\x83\xee\x40\x9f\xfb\x16\x42\x8c"
+ "\x01\xb2\x9b\x17\xab\x3d\xf6\x69\xee\x51\x46\xf7\xff\xb4\xff\x61\xe0\x32\xf4\x15\xce\x15\xa4\x31"
+ "\x65\x32\x3b\x32\x9a\xc9\x95\x8a\xf3\x64\x8c\xde\x09\x99\xc1\x02\x12\x90\x07\x74\xa0\x06\xb4\x80"
+ "\x1e\x30\x06\x16\xc0\x16\x38\x01\x57\xe0\x09\x7c\x41\x10\x08\x03\xd1\x20\x1e\x2c\x02\x5c\x90\x0e"
+ "\xb2\x81\x18\xe4\x83\xe5\x60\x0d\x28\x02\x25\x60\x0b\xd8\x0e\xaa\xc1\x5e\x50\x07\x1a\x40\x13\x38"
+ "\x06\xda\xc0\x49\x70\x0e\x5c\x04\x57\xc1\x35\x70\x13\xdc\x03\x43\x60\x14\x3c\x03\x93\xe0\x35\x98"
+ "\x81\x20\x08\x0f\x51\x21\x1a\xa4\x06\x69\x43\x06\x90\x19\x64\x0b\xb1\x20\x77\xc8\x17\x0a\x81\x22"
+ "\xa1\x78\x28\x19\x4a\x83\x84\x90\x14\x5a\x0e\xad\x83\x4a\xa0\x72\xa8\x1a\xda\x0f\x35\x40\xdf\x43"
+ "\x27\xa0\x73\xd0\x65\xa8\x1f\xba\x03\x0d\x43\xe3\xd0\xef\xd0\x3b\x18\x81\x29\x30\x1d\xd6\x84\x0d"
+ "\x61\x2b\x98\x05\x7b\xc1\xc1\x70\x34\xbc\x10\x4e\x83\x17\xc3\x4b\xe1\x42\x78\x33\x5c\x05\xd7\xc2"
+ "\x47\xe0\x56\xf8\x1c\x7c\x15\xbe\x09\x0f\xc1\xcf\xe0\x29\x04\x20\x64\x84\x81\xe8\x20\x16\x08\x0b"
+ "\x61\x23\x61\x48\x02\x92\x8a\x88\x91\x95\x48\x31\x52\x89\xd4\x22\x4d\x48\x07\xd2\x8d\x5c\x47\x86"
+ "\x90\x09\xe4\x2d\x06\x87\xa1\x61\x98\x18\x0b\x8c\x2b\x26\x00\x33\x1f\xc3\xc5\x2c\xc6\xac\xc4\x94"
+ "\x62\xaa\x31\x87\x30\xad\x98\x2e\xcc\x75\xcc\x30\x66\x12\xf3\x11\x4b\xc5\x6a\x60\xcd\xb0\x2e\xd8"
+ "\x40\x6c\x1c\x36\x0d\x9b\x8f\x2d\xc2\x56\x62\xeb\xb1\x2d\xd8\x0b\xd8\x9b\xd8\x51\xec\x6b\x1c\x0e"
+ "\xc7\xc0\x19\xe1\x9c\x70\x01\xb8\x78\x5c\x06\x6e\x19\xae\x14\xb7\x1b\xd7\x8c\x3b\x8b\xeb\xc7\x8d"
+ "\xe0\xa6\xf0\x78\xbc\x1a\xde\x0c\xef\x86\x0f\xc3\x73\xf0\x12\x7c\x11\x7e\x27\xfe\x08\xfe\x0c\x7e"
+ "\x00\x3f\x8a\x7f\x43\x20\x13\xb4\x09\xb6\x04\x3f\x42\x02\x41\x48\x58\x4b\xa8\x24\x1c\x26\x9c\x26"
+ "\x0c\x10\xc6\x08\x33\x44\x05\xa2\x01\xd1\x85\x18\x46\xe4\x11\x97\x10\xcb\x88\x75\xc4\x0e\x62\x1f"
+ "\x71\x94\x38\x43\x52\x24\x19\x91\xdc\x48\xd1\xa4\x0c\xd2\x1a\x52\x15\xa9\x89\x74\x81\x74\x9f\xf4"
+ "\x92\x4c\x26\xeb\x92\x9d\xc9\x11\x64\x01\x79\x35\xb9\x8a\x7c\x94\x7c\x89\x3c\x4c\x7e\x4b\x51\xa2"
+ "\x98\x52\xd8\x94\x44\x8a\x94\xb2\x99\x72\x90\x72\x96\x72\x87\xf2\x92\x4a\xa5\x1a\x52\x3d\xa9\x09"
+ "\x54\x09\x75\x33\xb5\x81\x7a\x9e\xfa\x90\xfa\x46\x8e\x26\x67\x29\x17\x28\xc7\x93\x5b\x25\x57\x23"
+ "\xd7\x2a\x37\x20\xf7\x5c\x9e\x28\x6f\x20\xef\x25\xbf\x48\x7e\xa9\x7c\xa5\xfc\x71\xf9\x3e\xf9\x09"
+ "\x05\xa2\x82\xa1\x02\x5b\x81\xa3\xb0\x52\xa1\x46\xe1\x84\xc2\xa0\xc2\x94\x22\x4d\xd1\x46\x31\x4c"
+ "\x31\x5b\xb1\x54\xf1\xb0\xe2\x65\xc5\x27\x4a\x78\x25\x43\x25\x5f\x25\x9e\x52\xa1\xd2\x01\xa5\xf3"
+ "\x4a\x23\x34\x84\xa6\x47\x63\xd3\xb8\xb4\x75\xb4\x3a\xda\x05\xda\x28\x1d\x47\x37\xa2\x07\xd2\x33"
+ "\xe8\x25\xf4\xef\xe8\xbd\xf4\x49\x65\x25\x65\x7b\xe5\x18\xe5\x02\xe5\x1a\xe5\x53\xca\x43\x0c\x84"
+ "\x61\xc8\x08\x64\x64\x31\xca\x18\xc7\x18\xb7\x18\xef\x54\x34\x55\xbc\x54\xf8\x2a\x9b\x54\x9a\x54"
+ "\x06\x54\xa6\x55\xe7\xa8\x7a\xaa\xf2\x55\x8b\x55\x9b\x55\x6f\xaa\xbe\x53\x63\xaa\xf9\xaa\x65\xaa"
+ "\x6d\x55\x6b\x53\x7b\xa0\x8e\x51\x37\x55\x8f\x50\xcf\x57\xdf\xa3\x7e\x41\x7d\x62\x0e\x7d\x8e\xeb"
+ "\x1c\xee\x9c\xe2\x39\xc7\xe6\xdc\xd5\x80\x35\x4c\x35\x22\x35\x96\x69\x1c\xd0\xe8\xd1\x98\xd2\xd4"
+ "\xd2\xf4\xd7\x14\x69\xee\xd4\x3c\xaf\x39\xa1\xc5\xd0\xf2\xd4\xca\xd0\xaa\xd0\x3a\xad\x35\xae\x4d"
+ "\xd3\x76\xd7\x16\x68\x57\x68\x9f\xd1\x7e\xca\x54\x66\x7a\x31\xb3\x98\x55\xcc\x2e\xe6\xa4\x8e\x86"
+ "\x4e\x80\x8e\x54\x67\xbf\x4e\xaf\xce\x8c\xae\x91\xee\x7c\xdd\xb5\xba\xcd\xba\x0f\xf4\x48\x7a\x2c"
+ "\xbd\x54\xbd\x0a\xbd\x4e\xbd\x49\x7d\x6d\xfd\x50\xfd\xe5\xfa\x8d\xfa\x77\x0d\x88\x06\x2c\x83\x74"
+ "\x83\x1d\x06\xdd\x06\xd3\x86\x46\x86\xb1\x86\x1b\x0c\xdb\x0c\x9f\x18\xa9\x1a\x05\x1a\x2d\x35\x6a"
+ "\x34\xba\x6f\x4c\x35\xf6\x30\x5e\x6c\x5c\x6b\x7c\xc3\x04\x67\xc2\x32\xc9\x34\xd9\x6d\x72\xcd\x14"
+ "\x36\x75\x30\x4d\x37\xad\x31\xed\x33\x83\xcd\x1c\xcd\x04\x66\xbb\xcd\xfa\xcd\xb1\xe6\xce\xe6\x42"
+ "\xf3\x5a\xf3\x41\x0b\x8a\x85\x97\x45\x9e\x45\xa3\xc5\xb0\x25\xc3\x32\xc4\x72\xad\x65\x9b\xe5\x73"
+ "\x2b\x7d\xab\x04\xab\xad\x56\xdd\x56\x1f\xad\x1d\xac\xb3\xac\xeb\xac\xef\xd9\x28\xd9\x04\xd9\xac"
+ "\xb5\xe9\xb0\xf9\xdd\xd6\xd4\x96\x6b\x5b\x63\x7b\xc3\x8e\x6a\xe7\x67\xb7\xca\xae\xdd\xee\x85\xbd"
+ "\x99\x3d\xdf\x7e\x8f\xfd\x6d\x07\x9a\x43\xa8\xc3\x06\x87\x4e\x87\x0f\x8e\x4e\x8e\x62\xc7\x26\xc7"
+ "\x71\x27\x7d\xa7\x64\xa7\x5d\x4e\x83\x2c\x3a\x2b\x9c\x55\xca\xba\xe4\x8c\x75\xf6\x76\x5e\xe5\x7c"
+ "\xd2\xf9\xad\x8b\xa3\x8b\xc4\xe5\x98\xcb\x6f\xae\x16\xae\x99\xae\x87\x5d\x9f\xcc\x35\x9a\xcb\x9f"
+ "\x5b\x37\x77\xc4\x4d\xd7\x8d\xe3\xb6\xdf\x6d\xc8\x9d\xe9\x9e\xec\xbe\xcf\x7d\xc8\x43\xc7\x83\xe3"
+ "\x51\xeb\xf1\xc8\x53\xcf\x93\xe7\x59\xef\x39\xe6\x65\xe2\x95\xe1\x75\xc4\xeb\xb9\xb7\xb5\xb7\xd8"
+ "\xbb\xc5\x7b\x9a\xed\xc2\x5e\xc1\x3e\xeb\x83\xf8\xf8\xfb\x14\xfb\xf4\xfa\x2a\xf9\xce\xf7\xad\xf6"
+ "\x7d\xe8\xa7\xeb\x97\xe6\xd7\xe8\x37\xe9\xef\xe0\xbf\xcc\xff\x6c\x00\x36\x20\x38\x60\x6b\xc0\x60"
+ "\xa0\x66\x20\x37\xb0\x21\x70\x32\xc8\x29\x68\x45\x50\x57\x30\x25\x38\x2a\xb8\x3a\xf8\x51\x88\x69"
+ "\x88\x38\xa4\x23\x14\x0e\x0d\x0a\xdd\x16\x7a\x7f\x9e\xc1\x3c\xe1\xbc\xb6\x30\x10\x16\x18\xb6\x2d"
+ "\xec\x41\xb8\x51\xf8\xe2\xf0\x1f\x23\x70\x11\xe1\x11\x35\x11\x8f\x23\x6d\x22\x97\x47\x76\x47\xd1"
+ "\xa2\x92\xa2\x0e\x47\xbd\x8e\xf6\x8e\x2e\x8b\xbe\x37\xdf\x78\xbe\x74\x7e\x67\x8c\x7c\x4c\x62\x4c"
+ "\x43\xcc\x74\xac\x4f\x6c\x79\xec\x50\x9c\x55\xdc\x8a\xb8\xab\xf1\xea\xf1\x82\xf8\xf6\x04\x7c\x42"
+ "\x4c\x42\x7d\xc2\xd4\x02\xdf\x05\xdb\x17\x8c\x26\x3a\x24\x16\x25\xde\x5a\x68\xb4\xb0\x60\xe1\xe5"
+ "\x45\xea\x8b\xb2\x16\x9d\x4a\x92\x4f\xe2\x24\x1d\x4f\xc6\x26\xc7\x26\x1f\x4e\x7e\xcf\x09\xe3\xd4"
+ "\x72\xa6\x52\x02\x53\x76\xa5\x4c\x72\xd9\xdc\x1d\xdc\x67\x3c\x4f\x5e\x05\x6f\x9c\xef\xc6\x2f\xe7"
+ "\x8f\xa5\xba\xa5\x96\xa7\x3e\x49\x73\x4b\xdb\x96\x36\x9e\xee\x91\x5e\x99\x3e\x21\x60\x0b\xaa\x05"
+ "\x2f\x32\x02\x32\xf6\x66\x4c\x67\x86\x65\x1e\xcc\x9c\xcd\x8a\xcd\x6a\xce\x26\x64\x27\x67\x9f\x10"
+ "\x2a\x09\x33\x85\x5d\x39\x5a\x39\x05\x39\xfd\x22\x33\x51\x91\x68\x68\xb1\xcb\xe2\xed\x8b\x27\xc5"
+ "\xc1\xe2\xfa\x5c\x28\x77\x61\x6e\xbb\x84\x8e\xfe\x4c\xf5\x48\x8d\xa5\xeb\xa5\xc3\x79\xee\x79\x35"
+ "\x79\x6f\xf2\x63\xf2\x8f\x17\x28\x16\x08\x0b\x7a\x96\x98\x2e\xd9\xb4\x64\x6c\xa9\xdf\xd2\x6f\x97"
+ "\x61\x96\x71\x97\x75\x2e\xd7\x59\xbe\x66\xf9\xf0\x0a\xaf\x15\xfb\x57\x42\x2b\x53\x56\x76\xae\xd2"
+ "\x5b\x55\xb8\x6a\x74\xb5\xff\xea\x43\x6b\x48\x6b\x32\xd7\xfc\xb4\xd6\x7a\x6d\xf9\xda\x57\xeb\x62"
+ "\xd7\x75\x14\x6a\x16\xae\x2e\x1c\x59\xef\xbf\xbe\xb1\x48\xae\x48\x5c\x34\xb8\xc1\x75\xc3\xde\x8d"
+ "\x98\x8d\x82\x8d\xbd\x9b\xec\x36\xed\xdc\xf4\xb1\x98\x57\x7c\xa5\xc4\xba\xa4\xb2\xe4\x7d\x29\xb7"
+ "\xf4\xca\x37\x36\xdf\x54\x7d\x33\xbb\x39\x75\x73\x6f\x99\x63\xd9\x9e\x2d\xb8\x2d\xc2\x2d\xb7\xb6"
+ "\x7a\x6c\x3d\x54\xae\x58\xbe\xb4\x7c\x64\x5b\xe8\xb6\xd6\x0a\x66\x45\x71\xc5\xab\xed\x49\xdb\x2f"
+ "\x57\xda\x57\xee\xdd\x41\xda\x21\xdd\x31\x54\x15\x52\xd5\xbe\x53\x7f\xe7\x96\x9d\xef\xab\xd3\xab"
+ "\x6f\xd6\x78\xd7\x34\xef\xd2\xd8\xb5\x69\xd7\xf4\x6e\xde\xee\x81\x3d\x9e\x7b\x9a\xf6\x6a\xee\x2d"
+ "\xd9\xfb\x6e\x9f\x60\xdf\xed\xfd\xfe\xfb\x5b\x6b\x0d\x6b\x2b\x0f\xe0\x0e\xe4\x1d\x78\x5c\x17\x53"
+ "\xd7\xfd\x2d\xeb\xdb\x86\x7a\xf5\xfa\x92\xfa\x0f\x07\x85\x07\x87\x0e\x45\x1e\xea\x6a\x70\x6a\x68"
+ "\x38\xac\x71\xb8\xac\x11\x6e\x94\x36\x8e\x1f\x49\x3c\x72\xed\x3b\x9f\xef\xda\x9b\x2c\x9a\xf6\x37"
+ "\x33\x9a\x4b\x8e\x82\xa3\xd2\xa3\x4f\xbf\x4f\xfe\xfe\xd6\xb1\xe0\x63\x9d\xc7\x59\xc7\x9b\x7e\x30"
+ "\xf8\x61\x57\x0b\xad\xa5\xb8\x15\x6a\x5d\xd2\x3a\xd9\x96\xde\x36\xd4\x1e\xdf\xde\x7f\x22\xe8\x44"
+ "\x67\x87\x6b\x47\xcb\x8f\x96\x3f\x1e\x3c\xa9\x73\xb2\xe6\x94\xf2\xa9\xb2\xd3\xa4\xd3\x85\xa7\x67"
+ "\xcf\x2c\x3d\x33\x75\x56\x74\x76\xe2\x5c\xda\xb9\x91\xce\xa4\xce\x7b\xe7\xe3\xce\xdf\xe8\x8a\xe8"
+ "\xea\xbd\x10\x7c\xe1\xd2\x45\xbf\x8b\xe7\xbb\xbd\xba\xcf\x5c\x72\xbb\x74\xf2\xb2\xcb\xe5\x13\x57"
+ "\x58\x57\xda\xae\x3a\x5e\x6d\xed\x71\xe8\x69\xf9\xc9\xe1\xa7\x96\x5e\xc7\xde\xd6\x3e\xa7\xbe\xf6"
+ "\x6b\xce\xd7\x3a\xfa\xe7\xf6\x9f\x1e\xf0\x18\x38\x77\xdd\xe7\xfa\xc5\x1b\x81\x37\xae\xde\x9c\x77"
+ "\xb3\xff\xd6\xfc\x5b\xb7\x07\x13\x07\x87\x6e\xf3\x6e\x3f\xb9\x93\x75\xe7\xc5\xdd\xbc\xbb\x33\xf7"
+ "\x56\xdf\xc7\xde\x2f\x7e\xa0\xf0\xa0\xf2\xa1\xc6\xc3\xda\x9f\x4d\x7e\x6e\x1e\x72\x1c\x3a\x35\xec"
+ "\x33\xdc\xf3\x28\xea\xd1\xbd\x11\xee\xc8\xb3\x5f\x72\x7f\x79\x3f\x5a\xf8\x98\xfa\xb8\x72\x4c\x7b"
+ "\xac\xe1\x89\xed\x93\x93\xe3\x7e\xe3\xd7\x9e\x2e\x78\x3a\xfa\x4c\xf4\x6c\x66\xa2\xe8\x57\xc5\x5f"
+ "\x77\x3d\x37\x7e\xfe\xc3\x6f\x9e\xbf\xf5\x4c\xc6\x4d\x8e\xbe\x10\xbf\x98\xfd\xbd\xf4\xa5\xda\xcb"
+ "\x83\xaf\xec\x5f\x75\x4e\x85\x4f\x3d\x7c\x9d\xfd\x7a\x66\xba\xf8\x8d\xda\x9b\x43\x6f\x59\x6f\xbb"
+ "\xdf\xc5\xbe\x1b\x9b\xc9\x7f\x8f\x7f\x5f\xf5\xc1\xe4\x43\xc7\xc7\xe0\x8f\xf7\x67\xb3\x67\x67\xff"
+ "\x00\x03\x98\xf3\xfc\x11\x0e\xd1\x60\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b"
+ "\x13\x01\x00\x9a\x9c\x18\x00\x00\x07\xc1\x49\x44\x41\x54\x68\x05\xd5\x5a\x6b\x4c\x54\x47\x14\x9e"
+ "\x7d\xb9\x80\x08\xc5\xe5\xfd\x10\x1f\x05\xab\x58\xa8\x0d\x34\x6d\x30\x8d\x8d\x36\xc1\x68\x6c\x53"
+ "\x7f\x60\xda\xaa\x6d\xf0\x47\x2d\x56\x4d\x4d\x5a\xd3\x34\xc1\x34\x6d\xb5\xb1\x89\x6d\xfc\xd3\x48"
+ "\x95\xa8\xa4\x58\x95\xd8\xd4\x58\x22\x0a\x88\x20\x20\x20\x96\x65\x01\x61\x59\xde\xf2\xe8\x52\x1e"
+ "\xcb\xb2\xec\xb2\x0b\xdb\xef\xdc\x8a\x5d\xf0\xee\x13\xb9\xa4\x93\x0c\x7b\xf7\xee\xcc\x9c\xef\x3b"
+ "\x73\xce\x99\x33\x33\x88\xac\x56\x2b\xfb\x3f\x17\xf1\x42\x80\xdf\xbd\x7b\xf7\xe2\x86\x86\x86\xed"
+ "\x3d\x3d\x3d\xa7\x5a\x5a\x5a\x4e\x89\x44\x22\x99\xc7\x38\x68\x06\x84\xac\xb5\xb5\xb5\x3b\x86\x87"
+ "\x87\x1f\x98\x0c\x06\x88\xb5\x5a\x1f\xaa\x54\x2d\x00\xef\xed\x29\x06\xa9\xc7\xcc\xdd\xec\x08\x2d"
+ "\x4b\x3a\xda\xda\xbe\x7e\x61\xf5\xea\xcf\x44\x56\xab\xd8\x68\x34\x72\x23\x8c\xea\xf5\x23\x78\x30"
+ "\xbb\x39\xdc\x93\xe6\x82\x10\x00\x78\x51\x7b\x6b\xeb\x77\x51\x51\x51\x87\x0d\x63\x63\x6c\x6a\x6a"
+ "\xea\x09\x80\x81\xc1\xc1\x0e\x68\xdf\xf2\xe4\x85\x9b\x0f\x82\xf8\x80\x4a\xa5\x4a\x0b\x0f\x0f\x3f"
+ "\xac\x1f\x1d\x65\x93\x93\x93\x9c\xc9\x32\x91\x88\xe9\x74\x3a\xd6\xd2\xdc\x5c\xe2\x26\xe6\x19\xcd"
+ "\xe7\x9d\xc0\xe5\x6b\xd7\x56\x44\x45\x46\x7e\x33\x61\x32\x71\xe0\x49\xfb\x54\xa5\x12\x09\x53\x35"
+ "\x34\x0c\x17\xdc\xbe\xfd\xfb\x0c\x44\x6e\x7e\x99\x77\x02\x89\x6b\xd7\xee\xf3\xf1\xf6\x0e\x36\x4d"
+ "\x4c\x70\x9a\x9f\x42\xd0\x80\x45\xb1\xe1\x91\x11\x56\x59\x55\x95\x79\xf5\xea\x55\x8d\x9b\x98\x67"
+ "\x34\x9f\x57\x02\xe9\xe9\xe9\xbe\x72\x2f\xaf\xb7\x0d\x06\x03\xb3\x3e\xd6\x3c\x49\xa7\x95\x27\x3f"
+ "\x3f\xff\xfe\xf9\xf3\xe7\x8f\xcf\x40\xe3\xc1\x97\x79\x25\x90\x94\x94\xf4\xfc\xd4\xe4\xe4\x72\x33"
+ "\xb4\x4f\x66\x23\x12\x8b\x39\x22\x7f\xe4\xe5\xb5\x5c\xce\xcd\xdd\x05\xdf\x18\xf4\x00\xf3\x8c\x2e"
+ "\xf3\x1a\x85\x60\x2a\xc1\x12\xb1\x58\x26\x86\xbd\x8b\x01\xbe\xaf\xaf\x8f\x15\x97\x94\x14\xff\x7c"
+ "\xe6\x4c\x5a\x75\x75\xf5\x9c\x4c\x67\x9a\x85\x47\x04\x62\x62\x62\xe4\x67\xcf\x9e\x5d\xad\x50\x28"
+ "\x62\xa5\x52\x69\xa8\x44\x22\x91\x4f\x4c\x4c\x0c\x8f\x8e\x8e\x36\xe7\xe5\xe5\xd5\x66\x64\x64\xe8"
+ "\x48\x40\x6f\x6f\xaf\xa5\x59\xad\x66\x16\x8b\x65\xbc\xab\xab\x4b\x59\x56\x51\x71\x3a\x33\x33\xf3"
+ "\x62\x71\x71\xb1\x42\xa9\x54\xa6\xc8\xe5\xf2\x08\x10\x5b\x8c\xc8\x64\x34\x99\x4c\x3d\x20\xf8\x30"
+ "\x25\x25\x45\x43\x0b\xdc\x34\x40\x67\x9f\x58\x53\x5c\x6e\xcb\xb2\xb2\xb2\x82\x36\x6d\xda\xf4\xa1"
+ "\xb7\x97\xd7\x4e\xd8\xf4\x5a\x99\x4c\x26\x87\x86\x39\x19\x34\x0a\x48\x58\x61\x26\xea\x71\xa3\xf1"
+ "\x52\x67\x67\x67\xf6\x86\x0d\x1b\xba\x92\x93\x93\xe3\x55\xd5\xd5\xda\xb7\x52\x53\x8d\xc7\x8e\x1d"
+ "\x7b\x1d\x84\x3f\x10\x31\xf6\x8a\x58\x24\x7a\x0e\xcf\x0c\xcf\x9c\x4f\x50\x78\x85\x99\xe9\x80\xa7"
+ "\x46\xa7\xd7\x67\xed\xdd\xbb\xf7\x52\x51\x51\xd1\xbf\xab\x9d\x03\x16\x2e\x13\x80\xc6\xb6\x87\x87"
+ "\x85\x9d\x90\x49\xa5\xb1\xe3\xe3\xe3\x8c\xb3\xeb\x59\xe4\x09\x0c\x48\x31\x6f\x1f\x1f\x66\xb6\x58"
+ "\x46\x2c\x66\xf3\x2d\xb1\x54\xfa\x00\xc8\x56\x80\xd8\x66\xf4\x8d\xc6\x3b\x06\x6d\x73\x3e\x61\xab"
+ "\x3a\xea\x4b\x3e\xe2\x25\x97\xb3\x45\xa8\xe8\x5f\xac\xaa\xaf\x3f\xb4\x71\xe3\xc6\x3f\x1d\xe0\x67"
+ "\x2e\x11\x68\x6a\x6a\xda\x17\xa8\x50\xfc\x60\x32\x1a\x17\xa1\x42\x12\x89\x73\x50\x40\x8c\xec\x1e"
+ "\x33\xc5\x24\xd0\x32\x1c\x99\xc1\x46\x18\x81\x77\xda\x97\x86\x45\x7f\xdf\x25\x4b\x68\x8c\xfe\xb6"
+ "\xf6\xf6\xf7\x13\x13\x13\x6f\xd9\x93\xe6\x94\x40\xbd\x52\xb9\x33\x38\x34\xf4\x02\x56\x51\x29\x01"
+ "\x71\xb7\x90\x96\x9d\xd0\xe5\x1d\x92\xfa\x79\x7b\x7b\xd3\x8c\x0e\x55\x56\x57\x6f\xdd\xb6\x6d\x5b"
+ "\x39\x5f\x43\x87\x4e\x5c\x50\x50\x10\x1b\xb7\x66\xcd\x8f\x7a\x9d\x4e\x8a\x29\xe5\xeb\x3f\x6f\xef"
+ "\xe0\x23\x8c\xf2\xa6\xbb\xe5\xe5\xba\x0e\x8d\x46\x04\x02\xbc\xb2\xec\x12\xa0\x04\x4c\xa3\x56\x67"
+ "\x4c\x5a\x2c\xc1\x5c\xe6\xe8\xcc\x6c\x78\x87\xf7\xec\x25\xad\xd4\x56\xd4\x82\xc2\xc2\xfa\x5f\x72"
+ "\x72\x76\x94\x96\x96\x36\xd9\x1b\xc9\x2e\x81\xeb\xd7\xaf\x27\xa0\xd3\x3b\xb4\xe4\xbb\x13\xa9\xec"
+ "\x09\x72\xf5\x3d\x81\xa7\xe8\x54\x56\x5e\xfe\xe8\x4a\x6e\x6e\xaa\x23\xf0\x34\xa6\x5d\x02\x01\xfe"
+ "\xfe\xa9\x40\xee\x85\x18\xce\xe5\x2e\xae\x02\x98\x53\x3b\x38\x2f\x39\x7d\x6b\x6b\xeb\x54\x71\x51"
+ "\xd1\xa7\x85\x98\x01\x67\xe3\xf1\xa6\x12\xf0\x7a\x19\x1c\xef\x4d\xc4\x73\x2e\xdc\x51\x8c\x16\xa4"
+ "\x22\xdd\x20\x39\x75\x2a\xd5\x8d\x73\xd9\xd9\x57\x9c\x81\xa7\xdf\x79\x67\x60\xcb\x96\x2d\x91\x93"
+ "\x56\x6b\xcc\x74\xbc\x76\x65\xa0\x67\xd1\x86\x4b\x37\xfa\xfb\x59\x7b\x47\xc7\x69\x98\xed\x7f\xbb"
+ "\x1e\x07\x83\xf3\x12\x08\x51\x28\xa2\x61\x3e\x7e\x64\x3e\x82\xda\x3f\x16\xb2\xc1\xc1\xc1\xbe\xda"
+ "\xbb\x77\xcb\x1c\x60\x9e\xf1\x13\x2f\x01\xa9\x4c\x16\x4a\xda\xe0\x08\xcc\x68\x3e\xbf\x5f\x68\xf1"
+ "\xc3\xbe\xa1\xad\x4c\xa9\x1c\x70\x55\x12\x2f\x01\xd8\xa1\x1f\xa5\xbf\x93\xa8\x42\x16\xb2\x7f\xf8"
+ "\xde\xdf\xae\x9a\x0f\x61\xe3\x25\x80\x45\x4b\xc2\x39\xad\xc0\x04\x68\xa5\x47\xbe\xc4\x8b\xc9\x9e"
+ "\x22\x79\x1b\x1b\x8c\x46\x33\x0a\xd7\xc7\x36\xe1\xb2\x37\xc8\xb3\x7a\x4f\xab\x3d\x76\x70\xc1\x58"
+ "\x0b\x64\x98\x05\x97\x8e\x5a\xf8\x09\x18\x0c\x23\x14\x81\x48\x19\x42\x3a\x31\xc9\x42\x02\xb8\xe2"
+ "\xe8\xd1\xa3\x61\x50\x4a\xa7\x2b\x8a\xe1\x25\x30\x32\x32\xa2\xd5\x23\x0f\x59\xe2\xeb\xcb\x68\x13"
+ "\x2e\x58\x81\x09\xf9\xf8\xf8\x04\xc4\xc7\xc7\xbf\x01\x99\xe7\x5c\x91\xcb\xbb\x90\x61\x33\xd2\x3b"
+ "\x36\x36\x66\x20\x27\xa6\x48\x24\x64\xa5\xbc\x2b\x38\x28\xe8\xa3\x03\x07\x0e\xc8\x3d\x26\x50\x56"
+ "\x56\xd6\x83\x23\xbf\x5e\x8a\x44\x42\x82\x27\x59\x50\x1c\xad\xc6\xaf\xa6\xa5\xa5\x7d\xec\x31\x01"
+ "\xad\x56\x3b\x3a\x3c\x34\xd4\xc0\x45\x22\x4c\xab\x90\x9f\xa4\x34\xda\xfc\x9b\x4d\xa6\xaf\x70\x10"
+ "\xcc\x9f\x43\xdb\x30\xe3\x35\x21\xfa\xbd\xbf\xaf\xaf\x94\xb6\x8e\x42\xcf\x00\xc9\xa3\x08\xa8\x69"
+ "\x6d\xf5\xc5\xee\x2f\x1b\xc7\xf0\xef\xda\xe0\x7d\xea\x91\xd7\x89\xa9\x95\x5a\xa3\x29\x8c\x89\x8d"
+ "\x35\x07\x05\x05\xc9\x68\x06\x84\x2e\x16\xc8\x6c\x6e\x6e\xf6\x8f\x8c\x8c\x3c\x0f\xd9\xaf\x81\xd4"
+ "\xf1\x84\x84\x84\x47\xb3\x71\xd8\x25\x70\xf3\xe6\x4d\xe5\xcb\xeb\xd7\xd7\x06\x06\x06\x26\xd2\x60"
+ "\x0b\x51\x48\x71\x1a\x8d\x46\x02\x7f\xdc\x8f\x8b\x90\x29\x10\x38\x38\x1b\x87\x5d\x13\x42\x4c\x9e"
+ "\xe8\xec\xea\xba\xa8\xd7\xeb\xb9\x4d\x39\x76\x66\x6c\x21\x2a\x1d\x02\x34\x36\x34\x30\x28\x94\x77"
+ "\x63\x6f\x77\x06\x88\x69\x55\x55\xd5\xaf\xcb\xa3\xa3\x3f\x5f\xb9\x72\x65\xd0\x42\x98\x11\x61\xa0"
+ "\x1d\x5a\x4f\x6f\xaf\xaa\xa6\xa6\xa6\x90\xbe\xcf\x2e\x76\x67\x80\x1a\xaa\xd5\xea\x6e\x1c\x6b\x9c"
+ "\xa3\xd8\x4c\x04\xc8\x94\x84\xac\x14\x91\xb0\xa8\x32\xac\x4b\x99\x88\x4c\x63\xb3\xc1\xd3\x77\x87"
+ "\x33\x40\x0d\x2a\x2b\x2b\x4f\x85\x85\x85\xed\x5a\xb5\x6a\x55\x08\x99\x90\x90\x45\x44\xdb\xcb\xb6"
+ "\xb6\x16\x58\x42\xb6\x3d\xb9\x0e\x67\x80\x3a\xc1\x89\x3a\x11\x0d\x4e\xd0\x6d\x0a\x1d\x91\xd3\x4c"
+ "\x08\x51\x29\x2f\x1a\xd0\x6a\x49\xfe\xb7\x38\x57\xb5\x7b\x8a\xed\xf4\x60\x8b\x48\xc0\x0e\x7d\xf6"
+ "\xec\xd9\x93\x8f\x1c\x25\x59\x08\x5f\xc0\x9e\x80\x3b\xc1\x83\xdd\xdf\xc8\xc9\xc9\xd9\x4e\x01\x85"
+ "\x5e\xf1\x15\xa7\x26\x44\x9d\x30\x80\x01\xe0\x0f\xfa\xf9\xf9\x15\x44\x2f\x5b\xe6\x4f\x69\x2f\x27"
+ "\x84\x6f\xc4\x39\xbc\x9b\x3e\xc5\xa3\x93\x09\xf8\x5f\x3f\xee\x0f\x0e\x39\x02\x4f\xa2\x9c\x9a\xd0"
+ "\x34\x1e\x1c\xee\xde\xaf\xab\xab\x3b\xa2\x1d\x18\xe0\x22\x03\x25\x7a\xcf\xba\x92\xd3\x52\xd4\xe9"
+ "\xee\xee\x36\x37\x36\x36\xee\x87\xcc\x87\xd3\xf2\xed\x7d\xba\x4c\x80\x06\xc0\x71\xf7\x4f\xc8\x4f"
+ "\x4e\xe2\x1e\x80\x1b\x8f\x76\x50\x4f\x55\x80\xa0\x42\x40\xa8\x10\xa8\x69\x60\xf4\x8e\x6c\x9b\x7b"
+ "\x37\xbb\xef\x63\xf0\x94\x07\x01\xf8\x91\x3b\x77\xee\xb8\x74\xac\xe2\x92\x0f\x70\x48\x1e\xff\x01"
+ "\x08\x19\x2e\x21\x4e\xae\x5b\xb7\x2e\x3d\x20\x20\x80\x73\x68\x02\x45\xe0\xe8\x20\x80\xc0\xe1\x64"
+ "\x81\x0d\x0d\x0d\xb5\x63\x11\xac\x45\x08\xee\xa4\x3e\x38\xa8\x8d\xf1\xf7\xf7\x7f\x29\x28\x30\x50"
+ "\xb1\x18\xfb\x0c\xea\x33\x5d\xe9\x1c\x94\x8e\xd6\xf1\xaf\x07\x66\xe4\x3e\x5f\x40\x51\xdf\xdb\xca"
+ "\x74\xf4\xec\x92\x0f\xd8\x0e\x00\xa1\x66\x00\xfa\x04\x89\x5e\x33\x42\xeb\x11\xe4\x4a\x61\xd8\xc7"
+ "\xb2\x09\x24\x60\x43\x83\x83\xa3\x7f\x69\xb5\x37\xfa\xfb\xfb\x2f\x54\x54\x54\x94\xa0\xed\x90\x6d"
+ "\xdf\x88\x88\x88\x65\xb8\xdd\xd9\x1a\x12\x12\xf2\x1e\x6e\x77\x12\xe1\x53\x72\xda\xf5\x8d\xe3\x12"
+ "\xb0\xb7\xaf\xaf\x1e\x11\xe7\xcb\x7b\xf7\xee\xfd\x66\xdb\xc7\xd9\xb3\xdb\x33\x60\x3b\x20\x01\xc2"
+ "\x2a\xbd\x19\x57\x45\xa1\xb8\x9d\xe9\x01\xf0\x0a\xdc\x25\x38\xb5\x5b\x28\x40\x12\x17\x17\xf7\xe2"
+ "\xd2\xa5\x4b\x93\xd0\x57\x01\x93\x54\x03\xf8\x2d\x10\xa6\x7f\x3b\x70\xab\xcc\x89\x80\x5b\x92\xe6"
+ "\xa9\xf1\x3f\x6e\xf4\x62\xb0\x0c\x96\x6f\x03\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82";
+
+/* Large Apple PNG image */
+unsigned char
+png_lrg[] =
+ "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x78\x00\x00\x00\x78"
+ "\x08\x06\x00\x00\x00\x39\x64\x36\xd2\x00\x00\x0a\x44\x69\x43\x43\x50\x49\x43\x43\x20\x50\x72\x6f"
+ "\x66\x69\x6c\x65\x00\x00\x48\x0d\x9d\x96\x77\x54\x14\xd7\x17\xc7\xdf\xcc\x6c\x2f\xb4\x5d\x96\x22"
+ "\x65\xe9\xbd\xb7\x05\xa4\x2e\xbd\x48\x95\x26\x0a\xcb\xee\x02\x4b\x59\xd6\x65\x17\xb0\x37\x44\x05"
+ "\x22\x8a\x88\x08\x56\x24\x28\x62\xc0\x68\x28\x12\x2b\xa2\x58\x08\x08\x16\xec\x01\x09\x22\x4a\x0c"
+ "\x46\x11\x15\x95\xcc\xc6\x1c\xf5\xf7\x3b\x27\xf9\xfd\x4e\xde\x1f\x77\x3e\xf3\x7d\xf7\x9e\x77\xe7"
+ "\xde\xfb\xce\x19\x00\x28\x01\x21\x02\x61\x0e\xac\x00\x40\xb6\x50\x22\x8e\xf4\xf7\x66\xc6\xc5\x27"
+ "\x30\xf1\xbd\x00\x06\x44\x80\x03\x36\x00\x70\xb8\xb9\xa2\xd0\x28\xbf\x68\x80\xae\x40\x5f\x36\x33"
+ "\x17\x75\x92\xf1\x5f\x0b\x02\xe0\xf5\x2d\x80\x5a\x00\xae\x5b\x04\x84\x33\x99\x7f\xe9\xff\xef\x43"
+ "\x91\x2b\x12\x4b\x00\x80\xc2\xd1\x00\x3b\x1e\x3f\x97\x8b\x72\x21\xca\x59\xf9\x12\x91\x4c\x9f\x44"
+ "\x99\x9e\x92\x29\x63\x18\x23\x63\x31\x9a\x20\xca\xaa\x32\x4e\xfb\xc4\xe6\x7f\xfa\x7c\x62\x4f\x19"
+ "\xf3\xb2\x85\x3c\xd4\x47\x96\xb3\x88\x97\xcd\x93\x71\x17\xca\x1b\xf3\xa4\x7c\x94\x91\x10\x94\x8b"
+ "\xf2\x04\xfc\x7c\x94\x6f\xa0\xac\x9f\x25\xcd\x16\xa0\xfc\x06\x65\x7a\x36\x9f\x93\x0b\x00\x86\x22"
+ "\xd3\x25\x7c\x6e\x3a\xca\xd6\x28\x53\xc4\xd1\x91\x6c\x94\xe7\x02\x40\xa0\xa4\x7d\xc5\x29\x5f\xb1"
+ "\x84\x5f\x80\xe6\x09\x00\x3b\x47\xb4\x44\x2c\x48\x4b\x97\x30\x8d\xb9\x26\x4c\x1b\x67\x67\x16\x33"
+ "\x80\x9f\x9f\xc5\x97\x48\x2c\xc2\x39\xdc\x4c\x8e\x98\xc7\x64\xe7\x64\x8b\x38\xc2\x25\x00\x7c\xfa"
+ "\x66\x59\x14\x50\x92\xd5\x96\x89\x16\xd9\xd1\xc6\xd9\xd1\xd1\xc2\xd6\x12\x2d\xff\xe7\xf5\x8f\x9b"
+ "\x9f\xbd\xfe\x19\x64\xbd\xfd\xe4\xf1\x32\xe2\xcf\x9e\x41\x8c\x9e\x2f\xda\x97\xd8\x2f\x5a\x4e\x2d"
+ "\x00\xac\x29\xb4\x36\x5b\xbe\x68\x29\x3b\x01\x68\x5b\x0f\x80\xea\xdd\x2f\x9a\xfe\x3e\x00\xe4\x0b"
+ "\x01\x68\xed\xfb\xea\x7b\x18\xb2\x79\x49\x97\x48\x44\x2e\x56\x56\xf9\xf9\xf9\x96\x02\x3e\xd7\x52"
+ "\x56\xd0\xcf\xeb\x7f\x3a\x7c\xf6\xfc\x7b\xf8\xea\x3c\x4b\xd9\x79\x9f\x6b\xc7\xf4\xe1\xa7\x72\xa4"
+ "\x59\x12\xa6\xac\xa8\xdc\x9c\xac\x1c\xa9\x98\x99\x2b\xe2\x70\xf9\x4c\x8b\xff\x1e\xe2\x7f\x1d\xf8"
+ "\x55\x5a\x5f\xe5\x61\x1e\xc9\x4f\xe5\x8b\xf9\x42\xf4\xa8\x18\x74\xca\x04\xc2\x34\xb4\xdd\x42\x9e"
+ "\x40\x22\xc8\x11\x32\x05\xc2\xbf\xeb\xf0\xbf\x0c\xfb\x2a\x07\x19\x7e\x9a\x6b\x14\x68\x75\x1f\x01"
+ "\x3d\xc9\x12\x28\xf4\xd1\x01\xf2\x6b\x0f\xc0\xd0\xc8\x00\x49\xdc\x83\xee\x40\x9f\xfb\x16\x42\x8c"
+ "\x01\xb2\x9b\x17\xab\x3d\xf6\x69\xee\x51\x46\xf7\xff\xb4\xff\x61\xe0\x32\xf4\x15\xce\x15\xa4\x31"
+ "\x65\x32\x3b\x32\x9a\xc9\x95\x8a\xf3\x64\x8c\xde\x09\x99\xc1\x02\x12\x90\x07\x74\xa0\x06\xb4\x80"
+ "\x1e\x30\x06\x16\xc0\x16\x38\x01\x57\xe0\x09\x7c\x41\x10\x08\x03\xd1\x20\x1e\x2c\x02\x5c\x90\x0e"
+ "\xb2\x81\x18\xe4\x83\xe5\x60\x0d\x28\x02\x25\x60\x0b\xd8\x0e\xaa\xc1\x5e\x50\x07\x1a\x40\x13\x38"
+ "\x06\xda\xc0\x49\x70\x0e\x5c\x04\x57\xc1\x35\x70\x13\xdc\x03\x43\x60\x14\x3c\x03\x93\xe0\x35\x98"
+ "\x81\x20\x08\x0f\x51\x21\x1a\xa4\x06\x69\x43\x06\x90\x19\x64\x0b\xb1\x20\x77\xc8\x17\x0a\x81\x22"
+ "\xa1\x78\x28\x19\x4a\x83\x84\x90\x14\x5a\x0e\xad\x83\x4a\xa0\x72\xa8\x1a\xda\x0f\x35\x40\xdf\x43"
+ "\x27\xa0\x73\xd0\x65\xa8\x1f\xba\x03\x0d\x43\xe3\xd0\xef\xd0\x3b\x18\x81\x29\x30\x1d\xd6\x84\x0d"
+ "\x61\x2b\x98\x05\x7b\xc1\xc1\x70\x34\xbc\x10\x4e\x83\x17\xc3\x4b\xe1\x42\x78\x33\x5c\x05\xd7\xc2"
+ "\x47\xe0\x56\xf8\x1c\x7c\x15\xbe\x09\x0f\xc1\xcf\xe0\x29\x04\x20\x64\x84\x81\xe8\x20\x16\x08\x0b"
+ "\x61\x23\x61\x48\x02\x92\x8a\x88\x91\x95\x48\x31\x52\x89\xd4\x22\x4d\x48\x07\xd2\x8d\x5c\x47\x86"
+ "\x90\x09\xe4\x2d\x06\x87\xa1\x61\x98\x18\x0b\x8c\x2b\x26\x00\x33\x1f\xc3\xc5\x2c\xc6\xac\xc4\x94"
+ "\x62\xaa\x31\x87\x30\xad\x98\x2e\xcc\x75\xcc\x30\x66\x12\xf3\x11\x4b\xc5\x6a\x60\xcd\xb0\x2e\xd8"
+ "\x40\x6c\x1c\x36\x0d\x9b\x8f\x2d\xc2\x56\x62\xeb\xb1\x2d\xd8\x0b\xd8\x9b\xd8\x51\xec\x6b\x1c\x0e"
+ "\xc7\xc0\x19\xe1\x9c\x70\x01\xb8\x78\x5c\x06\x6e\x19\xae\x14\xb7\x1b\xd7\x8c\x3b\x8b\xeb\xc7\x8d"
+ "\xe0\xa6\xf0\x78\xbc\x1a\xde\x0c\xef\x86\x0f\xc3\x73\xf0\x12\x7c\x11\x7e\x27\xfe\x08\xfe\x0c\x7e"
+ "\x00\x3f\x8a\x7f\x43\x20\x13\xb4\x09\xb6\x04\x3f\x42\x02\x41\x48\x58\x4b\xa8\x24\x1c\x26\x9c\x26"
+ "\x0c\x10\xc6\x08\x33\x44\x05\xa2\x01\xd1\x85\x18\x46\xe4\x11\x97\x10\xcb\x88\x75\xc4\x0e\x62\x1f"
+ "\x71\x94\x38\x43\x52\x24\x19\x91\xdc\x48\xd1\xa4\x0c\xd2\x1a\x52\x15\xa9\x89\x74\x81\x74\x9f\xf4"
+ "\x92\x4c\x26\xeb\x92\x9d\xc9\x11\x64\x01\x79\x35\xb9\x8a\x7c\x94\x7c\x89\x3c\x4c\x7e\x4b\x51\xa2"
+ "\x98\x52\xd8\x94\x44\x8a\x94\xb2\x99\x72\x90\x72\x96\x72\x87\xf2\x92\x4a\xa5\x1a\x52\x3d\xa9\x09"
+ "\x54\x09\x75\x33\xb5\x81\x7a\x9e\xfa\x90\xfa\x46\x8e\x26\x67\x29\x17\x28\xc7\x93\x5b\x25\x57\x23"
+ "\xd7\x2a\x37\x20\xf7\x5c\x9e\x28\x6f\x20\xef\x25\xbf\x48\x7e\xa9\x7c\xa5\xfc\x71\xf9\x3e\xf9\x09"
+ "\x05\xa2\x82\xa1\x02\x5b\x81\xa3\xb0\x52\xa1\x46\xe1\x84\xc2\xa0\xc2\x94\x22\x4d\xd1\x46\x31\x4c"
+ "\x31\x5b\xb1\x54\xf1\xb0\xe2\x65\xc5\x27\x4a\x78\x25\x43\x25\x5f\x25\x9e\x52\xa1\xd2\x01\xa5\xf3"
+ "\x4a\x23\x34\x84\xa6\x47\x63\xd3\xb8\xb4\x75\xb4\x3a\xda\x05\xda\x28\x1d\x47\x37\xa2\x07\xd2\x33"
+ "\xe8\x25\xf4\xef\xe8\xbd\xf4\x49\x65\x25\x65\x7b\xe5\x18\xe5\x02\xe5\x1a\xe5\x53\xca\x43\x0c\x84"
+ "\x61\xc8\x08\x64\x64\x31\xca\x18\xc7\x18\xb7\x18\xef\x54\x34\x55\xbc\x54\xf8\x2a\x9b\x54\x9a\x54"
+ "\x06\x54\xa6\x55\xe7\xa8\x7a\xaa\xf2\x55\x8b\x55\x9b\x55\x6f\xaa\xbe\x53\x63\xaa\xf9\xaa\x65\xaa"
+ "\x6d\x55\x6b\x53\x7b\xa0\x8e\x51\x37\x55\x8f\x50\xcf\x57\xdf\xa3\x7e\x41\x7d\x62\x0e\x7d\x8e\xeb"
+ "\x1c\xee\x9c\xe2\x39\xc7\xe6\xdc\xd5\x80\x35\x4c\x35\x22\x35\x96\x69\x1c\xd0\xe8\xd1\x98\xd2\xd4"
+ "\xd2\xf4\xd7\x14\x69\xee\xd4\x3c\xaf\x39\xa1\xc5\xd0\xf2\xd4\xca\xd0\xaa\xd0\x3a\xad\x35\xae\x4d"
+ "\xd3\x76\xd7\x16\x68\x57\x68\x9f\xd1\x7e\xca\x54\x66\x7a\x31\xb3\x98\x55\xcc\x2e\xe6\xa4\x8e\x86"
+ "\x4e\x80\x8e\x54\x67\xbf\x4e\xaf\xce\x8c\xae\x91\xee\x7c\xdd\xb5\xba\xcd\xba\x0f\xf4\x48\x7a\x2c"
+ "\xbd\x54\xbd\x0a\xbd\x4e\xbd\x49\x7d\x6d\xfd\x50\xfd\xe5\xfa\x8d\xfa\x77\x0d\x88\x06\x2c\x83\x74"
+ "\x83\x1d\x06\xdd\x06\xd3\x86\x46\x86\xb1\x86\x1b\x0c\xdb\x0c\x9f\x18\xa9\x1a\x05\x1a\x2d\x35\x6a"
+ "\x34\xba\x6f\x4c\x35\xf6\x30\x5e\x6c\x5c\x6b\x7c\xc3\x04\x67\xc2\x32\xc9\x34\xd9\x6d\x72\xcd\x14"
+ "\x36\x75\x30\x4d\x37\xad\x31\xed\x33\x83\xcd\x1c\xcd\x04\x66\xbb\xcd\xfa\xcd\xb1\xe6\xce\xe6\x42"
+ "\xf3\x5a\xf3\x41\x0b\x8a\x85\x97\x45\x9e\x45\xa3\xc5\xb0\x25\xc3\x32\xc4\x72\xad\x65\x9b\xe5\x73"
+ "\x2b\x7d\xab\x04\xab\xad\x56\xdd\x56\x1f\xad\x1d\xac\xb3\xac\xeb\xac\xef\xd9\x28\xd9\x04\xd9\xac"
+ "\xb5\xe9\xb0\xf9\xdd\xd6\xd4\x96\x6b\x5b\x63\x7b\xc3\x8e\x6a\xe7\x67\xb7\xca\xae\xdd\xee\x85\xbd"
+ "\x99\x3d\xdf\x7e\x8f\xfd\x6d\x07\x9a\x43\xa8\xc3\x06\x87\x4e\x87\x0f\x8e\x4e\x8e\x62\xc7\x26\xc7"
+ "\x71\x27\x7d\xa7\x64\xa7\x5d\x4e\x83\x2c\x3a\x2b\x9c\x55\xca\xba\xe4\x8c\x75\xf6\x76\x5e\xe5\x7c"
+ "\xd2\xf9\xad\x8b\xa3\x8b\xc4\xe5\x98\xcb\x6f\xae\x16\xae\x99\xae\x87\x5d\x9f\xcc\x35\x9a\xcb\x9f"
+ "\x5b\x37\x77\xc4\x4d\xd7\x8d\xe3\xb6\xdf\x6d\xc8\x9d\xe9\x9e\xec\xbe\xcf\x7d\xc8\x43\xc7\x83\xe3"
+ "\x51\xeb\xf1\xc8\x53\xcf\x93\xe7\x59\xef\x39\xe6\x65\xe2\x95\xe1\x75\xc4\xeb\xb9\xb7\xb5\xb7\xd8"
+ "\xbb\xc5\x7b\x9a\xed\xc2\x5e\xc1\x3e\xeb\x83\xf8\xf8\xfb\x14\xfb\xf4\xfa\x2a\xf9\xce\xf7\xad\xf6"
+ "\x7d\xe8\xa7\xeb\x97\xe6\xd7\xe8\x37\xe9\xef\xe0\xbf\xcc\xff\x6c\x00\x36\x20\x38\x60\x6b\xc0\x60"
+ "\xa0\x66\x20\x37\xb0\x21\x70\x32\xc8\x29\x68\x45\x50\x57\x30\x25\x38\x2a\xb8\x3a\xf8\x51\x88\x69"
+ "\x88\x38\xa4\x23\x14\x0e\x0d\x0a\xdd\x16\x7a\x7f\x9e\xc1\x3c\xe1\xbc\xb6\x30\x10\x16\x18\xb6\x2d"
+ "\xec\x41\xb8\x51\xf8\xe2\xf0\x1f\x23\x70\x11\xe1\x11\x35\x11\x8f\x23\x6d\x22\x97\x47\x76\x47\xd1"
+ "\xa2\x92\xa2\x0e\x47\xbd\x8e\xf6\x8e\x2e\x8b\xbe\x37\xdf\x78\xbe\x74\x7e\x67\x8c\x7c\x4c\x62\x4c"
+ "\x43\xcc\x74\xac\x4f\x6c\x79\xec\x50\x9c\x55\xdc\x8a\xb8\xab\xf1\xea\xf1\x82\xf8\xf6\x04\x7c\x42"
+ "\x4c\x42\x7d\xc2\xd4\x02\xdf\x05\xdb\x17\x8c\x26\x3a\x24\x16\x25\xde\x5a\x68\xb4\xb0\x60\xe1\xe5"
+ "\x45\xea\x8b\xb2\x16\x9d\x4a\x92\x4f\xe2\x24\x1d\x4f\xc6\x26\xc7\x26\x1f\x4e\x7e\xcf\x09\xe3\xd4"
+ "\x72\xa6\x52\x02\x53\x76\xa5\x4c\x72\xd9\xdc\x1d\xdc\x67\x3c\x4f\x5e\x05\x6f\x9c\xef\xc6\x2f\xe7"
+ "\x8f\xa5\xba\xa5\x96\xa7\x3e\x49\x73\x4b\xdb\x96\x36\x9e\xee\x91\x5e\x99\x3e\x21\x60\x0b\xaa\x05"
+ "\x2f\x32\x02\x32\xf6\x66\x4c\x67\x86\x65\x1e\xcc\x9c\xcd\x8a\xcd\x6a\xce\x26\x64\x27\x67\x9f\x10"
+ "\x2a\x09\x33\x85\x5d\x39\x5a\x39\x05\x39\xfd\x22\x33\x51\x91\x68\x68\xb1\xcb\xe2\xed\x8b\x27\xc5"
+ "\xc1\xe2\xfa\x5c\x28\x77\x61\x6e\xbb\x84\x8e\xfe\x4c\xf5\x48\x8d\xa5\xeb\xa5\xc3\x79\xee\x79\x35"
+ "\x79\x6f\xf2\x63\xf2\x8f\x17\x28\x16\x08\x0b\x7a\x96\x98\x2e\xd9\xb4\x64\x6c\xa9\xdf\xd2\x6f\x97"
+ "\x61\x96\x71\x97\x75\x2e\xd7\x59\xbe\x66\xf9\xf0\x0a\xaf\x15\xfb\x57\x42\x2b\x53\x56\x76\xae\xd2"
+ "\x5b\x55\xb8\x6a\x74\xb5\xff\xea\x43\x6b\x48\x6b\x32\xd7\xfc\xb4\xd6\x7a\x6d\xf9\xda\x57\xeb\x62"
+ "\xd7\x75\x14\x6a\x16\xae\x2e\x1c\x59\xef\xbf\xbe\xb1\x48\xae\x48\x5c\x34\xb8\xc1\x75\xc3\xde\x8d"
+ "\x98\x8d\x82\x8d\xbd\x9b\xec\x36\xed\xdc\xf4\xb1\x98\x57\x7c\xa5\xc4\xba\xa4\xb2\xe4\x7d\x29\xb7"
+ "\xf4\xca\x37\x36\xdf\x54\x7d\x33\xbb\x39\x75\x73\x6f\x99\x63\xd9\x9e\x2d\xb8\x2d\xc2\x2d\xb7\xb6"
+ "\x7a\x6c\x3d\x54\xae\x58\xbe\xb4\x7c\x64\x5b\xe8\xb6\xd6\x0a\x66\x45\x71\xc5\xab\xed\x49\xdb\x2f"
+ "\x57\xda\x57\xee\xdd\x41\xda\x21\xdd\x31\x54\x15\x52\xd5\xbe\x53\x7f\xe7\x96\x9d\xef\xab\xd3\xab"
+ "\x6f\xd6\x78\xd7\x34\xef\xd2\xd8\xb5\x69\xd7\xf4\x6e\xde\xee\x81\x3d\x9e\x7b\x9a\xf6\x6a\xee\x2d"
+ "\xd9\xfb\x6e\x9f\x60\xdf\xed\xfd\xfe\xfb\x5b\x6b\x0d\x6b\x2b\x0f\xe0\x0e\xe4\x1d\x78\x5c\x17\x53"
+ "\xd7\xfd\x2d\xeb\xdb\x86\x7a\xf5\xfa\x92\xfa\x0f\x07\x85\x07\x87\x0e\x45\x1e\xea\x6a\x70\x6a\x68"
+ "\x38\xac\x71\xb8\xac\x11\x6e\x94\x36\x8e\x1f\x49\x3c\x72\xed\x3b\x9f\xef\xda\x9b\x2c\x9a\xf6\x37"
+ "\x33\x9a\x4b\x8e\x82\xa3\xd2\xa3\x4f\xbf\x4f\xfe\xfe\xd6\xb1\xe0\x63\x9d\xc7\x59\xc7\x9b\x7e\x30"
+ "\xf8\x61\x57\x0b\xad\xa5\xb8\x15\x6a\x5d\xd2\x3a\xd9\x96\xde\x36\xd4\x1e\xdf\xde\x7f\x22\xe8\x44"
+ "\x67\x87\x6b\x47\xcb\x8f\x96\x3f\x1e\x3c\xa9\x73\xb2\xe6\x94\xf2\xa9\xb2\xd3\xa4\xd3\x85\xa7\x67"
+ "\xcf\x2c\x3d\x33\x75\x56\x74\x76\xe2\x5c\xda\xb9\x91\xce\xa4\xce\x7b\xe7\xe3\xce\xdf\xe8\x8a\xe8"
+ "\xea\xbd\x10\x7c\xe1\xd2\x45\xbf\x8b\xe7\xbb\xbd\xba\xcf\x5c\x72\xbb\x74\xf2\xb2\xcb\xe5\x13\x57"
+ "\x58\x57\xda\xae\x3a\x5e\x6d\xed\x71\xe8\x69\xf9\xc9\xe1\xa7\x96\x5e\xc7\xde\xd6\x3e\xa7\xbe\xf6"
+ "\x6b\xce\xd7\x3a\xfa\xe7\xf6\x9f\x1e\xf0\x18\x38\x77\xdd\xe7\xfa\xc5\x1b\x81\x37\xae\xde\x9c\x77"
+ "\xb3\xff\xd6\xfc\x5b\xb7\x07\x13\x07\x87\x6e\xf3\x6e\x3f\xb9\x93\x75\xe7\xc5\xdd\xbc\xbb\x33\xf7"
+ "\x56\xdf\xc7\xde\x2f\x7e\xa0\xf0\xa0\xf2\xa1\xc6\xc3\xda\x9f\x4d\x7e\x6e\x1e\x72\x1c\x3a\x35\xec"
+ "\x33\xdc\xf3\x28\xea\xd1\xbd\x11\xee\xc8\xb3\x5f\x72\x7f\x79\x3f\x5a\xf8\x98\xfa\xb8\x72\x4c\x7b"
+ "\xac\xe1\x89\xed\x93\x93\xe3\x7e\xe3\xd7\x9e\x2e\x78\x3a\xfa\x4c\xf4\x6c\x66\xa2\xe8\x57\xc5\x5f"
+ "\x77\x3d\x37\x7e\xfe\xc3\x6f\x9e\xbf\xf5\x4c\xc6\x4d\x8e\xbe\x10\xbf\x98\xfd\xbd\xf4\xa5\xda\xcb"
+ "\x83\xaf\xec\x5f\x75\x4e\x85\x4f\x3d\x7c\x9d\xfd\x7a\x66\xba\xf8\x8d\xda\x9b\x43\x6f\x59\x6f\xbb"
+ "\xdf\xc5\xbe\x1b\x9b\xc9\x7f\x8f\x7f\x5f\xf5\xc1\xe4\x43\xc7\xc7\xe0\x8f\xf7\x67\xb3\x67\x67\xff"
+ "\x00\x03\x98\xf3\xfc\x11\x0e\xd1\x60\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b"
+ "\x13\x01\x00\x9a\x9c\x18\x00\x00\x18\x0f\x49\x44\x41\x54\x78\x01\xed\x5d\x09\x74\x15\x55\x9a\xae"
+ "\x6c\x2f\xfb\xbe\x27\x24\x24\x61\x0d\x09\x28\x08\x21\x28\x0a\xd3\xa0\x1c\x60\x40\x04\x1b\x6d\x47"
+ "\x66\xe4\x70\xa6\xe9\xd3\xad\xa8\x38\xa3\x78\xba\x5b\xb1\xa5\x6d\x11\x45\x07\x3c\x08\x36\x2a\x2a"
+ "\x0c\x08\x7a\x0e\xdb\x69\x1a\x59\x43\x64\x0b\xc3\x9a\x90\x84\xb0\x86\xec\xfb\xbe\x91\x90\xcc\xf7"
+ "\x55\x52\xf1\x05\x12\x5e\x55\xbd\x7a\xc9\x93\x57\xf7\x9c\xca\x7b\x79\x75\xab\xee\xad\xff\xbb\xff"
+ "\x7f\xff\xff\xbf\xff\xfd\xcb\xae\xad\xad\x4d\xd0\xcb\xfd\x4b\x01\xfb\xfb\xf7\xd1\xf4\x27\x23\x05"
+ "\x1c\x96\x2e\x5d\xaa\x53\x42\x21\x05\xec\xec\xec\xdc\x8f\x1c\x39\x12\x53\x56\x56\x36\x16\xc7\xd4"
+ "\xe6\xe6\xe6\xb9\xbb\x77\xef\x2e\x1f\x39\x72\x64\xbe\xc2\x5b\x59\xbc\xba\xa3\xc5\x5b\xb8\x4f\x1a"
+ "\x00\xa8\x86\x67\x9e\x79\x26\x76\xfe\x82\x05\x93\xaf\x5f\xbf\x3e\x39\x20\x20\x60\x84\x8b\xb3\x73"
+ "\xb0\xa3\x93\x93\x43\xeb\xed\xdb\x42\xda\x85\x0b\x57\xf1\xa8\xff\x67\x6d\x8f\xab\x03\x6c\x02\x11"
+ "\x02\xfb\xc6\x1b\x6f\x24\x5c\xb8\x70\x61\x7e\x4c\x4c\xcc\x74\x77\x77\xf7\x60\x5e\x72\xbb\xb9\x59"
+ "\xb8\xd5\xd4\x24\xdc\x6a\x6c\x14\x8a\x4b\x4a\x84\xba\xba\x3a\x77\x13\xb7\xea\x93\xd3\x3a\xc0\xf7"
+ "\x20\xfb\xe4\xc9\x93\x07\x9f\x3a\x75\x6a\xd1\xb0\x61\xc3\x9e\x77\x73\x73\xf3\x26\xa8\x75\xd5\xd5"
+ "\x42\x6b\x6b\xab\x20\x50\x39\xb5\xb3\x13\xec\xed\xed\x85\xdb\xe0\x60\x3b\x41\x30\xdc\xe3\x56\x7d"
+ "\x76\x4a\x07\xb8\x1b\xd2\x93\x6b\xbf\xf8\xe2\x8b\x59\xdf\x7d\xf7\xdd\x3b\xfe\xfe\xfe\x43\x09\x6c"
+ "\x6d\x55\x95\xd0\x46\x60\x01\xaa\x58\x3a\x3e\x69\x85\x34\x36\x34\x08\x8d\x4d\x4d\x2d\xdd\xdc\xaa"
+ "\xcf\x7f\xd2\x01\xbe\x03\x02\x80\xeb\x0d\x05\xea\xb5\x84\xb1\x63\xff\xdb\xd9\x60\x70\x11\x39\x16"
+ "\x1c\x2a\x02\x2b\x81\x7b\xc7\x35\x8d\x10\xd3\x4d\x4d\x4d\xb5\x77\xfc\x6c\x15\xff\xea\x00\x1b\xc1"
+ "\x00\x70\x83\x30\xd7\xbe\x3f\x7c\xf8\xf0\xf9\x2d\xb7\x6e\x09\x35\x95\x95\xed\x67\x7b\x00\x96\x27"
+ "\x29\xae\x6b\xeb\xea\x84\xea\xaa\xaa\x72\xa3\x5b\x59\xcd\x57\x1d\xe0\x0e\x28\x3c\x3d\x3d\x83\x52"
+ "\x53\x53\xff\x27\x3e\x3e\xfe\xd9\x26\x88\x5c\x2a\x4f\x9d\xe2\xb8\x07\xb8\x30\x20\x84\x5b\x18\x08"
+ "\xd5\xd5\xd5\x4d\x05\xc5\xc5\x05\x3d\x54\xeb\xd3\x9f\x75\x80\x41\x7e\x00\xe5\x7b\xfe\xfc\xf9\x0f"
+ "\x09\x6e\x63\x7d\xbd\xd0\x0c\xed\xd8\x14\xb8\x44\x8d\x00\xd7\xa3\x7e\x6d\x4d\x4d\xe9\xd9\xb3\x67"
+ "\xf3\xfa\x14\xc9\x1e\x1a\xb7\x79\x4f\x16\x40\x72\x4d\x4e\x4e\xfe\xd3\x88\x11\x23\xe6\x89\x9c\x2b"
+ "\x13\x5c\x09\xe0\x4a\x28\x5f\x55\x35\x35\x57\x4e\x9e\x3c\x59\xd4\x03\x8d\xfb\xf4\x67\x9b\xe6\x60"
+ "\x80\x6b\xbf\x79\xf3\xe6\xff\x18\x37\x6e\xdc\x22\x8a\x64\x02\x4c\xce\x95\xeb\x9f\xe7\xfc\x5b\x50"
+ "\x50\x20\x94\x57\x54\xa4\x00\x45\x5d\xc9\xea\xd3\xa1\xdc\x4d\xe3\x8b\x17\x2f\x4e\xfc\xd7\x19\x33"
+ "\xde\xc1\x29\xc7\x86\x0e\x70\xbb\xa9\xd6\xed\x4f\xf6\x18\x08\x35\x35\x35\xc2\xcd\x9b\x37\x5b\xb2"
+ "\xb3\xb3\x93\x30\x28\x60\x43\x59\x5f\xb1\x59\x0e\x06\xf7\x06\xc0\xe5\xf8\xae\x87\xbb\x7b\x50\x75"
+ "\x45\x45\xbb\xe3\x42\x01\x3e\xf6\x0e\x0e\x04\x57\x80\x2f\xfa\xe2\xbe\x7d\xfb\xac\xce\x45\x29\x3d"
+ "\x8a\x4d\x02\x0c\x70\xed\xb6\x6f\xdf\x3e\x2f\x2a\x2a\xea\x57\x75\xe0\x42\xd1\x33\x05\x8e\x94\x5b"
+ "\x58\x93\xb6\x6f\xe6\xa5\x4b\x04\xf8\x7b\x0c\x94\x62\xb9\xd7\xf6\x76\x3d\x9b\x04\xf8\xf1\xc7\x1f"
+ "\x1f\x38\x61\xc2\x84\x97\x6e\xb7\xb4\x88\xfe\x64\xe0\xad\x88\x83\x1d\x1c\x1d\x85\x4b\x59\x59\xc2"
+ "\xcd\x9c\x9c\xdc\x53\xc7\x8e\x7d\x0f\xf1\x6c\xb5\x8b\xea\x36\x07\x30\xc0\xb4\x3f\x70\xe0\xc0\x73"
+ "\x3e\x3e\x3e\xd1\x55\xe5\xed\xbe\x09\x25\xf8\x70\x30\xd0\xb1\x01\xb3\x48\xa8\xaa\xac\xfc\xf2\xf0"
+ "\xf1\xe3\x59\xbd\xcd\x95\x4a\xda\xb3\x39\x80\xe3\xe2\xe2\xfa\x0d\x8f\x8f\xff\x4d\x0b\xfc\xcb\x5c"
+ "\x24\x90\x63\xef\x4a\x04\xa5\x68\xe6\xe2\x02\xc1\xcd\xcd\xcd\x4d\x3b\x78\xf8\xf0\x97\xd6\xaa\x5c"
+ "\x49\x7d\xb6\x39\x80\x5f\x7d\xf5\xd5\x09\xde\xde\xde\x83\xeb\x6a\x3b\xac\x1a\x05\xd2\x95\x8a\x15"
+ "\xe6\x5b\xe1\xcc\x99\x33\xb7\x6e\xe6\xe6\x2e\xc3\x67\xb6\x44\x48\x6b\xfd\xb4\x29\x47\x07\xc4\xab"
+ "\xe1\x81\x11\x23\xa6\x39\x39\x3a\xda\x91\x83\x29\x9a\xe5\x1e\x76\xe0\x5c\xd8\xbb\xc2\xe1\x23\x47"
+ "\x84\x92\x92\x92\xb5\xdf\x7c\xf3\xcd\x0e\x6b\x05\xd5\xb8\x5f\x36\xc5\xc1\x10\xcf\x21\x3e\xde\xde"
+ "\x63\xb8\xbc\x27\xce\xbb\x72\x34\x67\x0c\x02\x72\x2e\x5d\x92\x07\x0f\x1e\x14\x72\x72\x73\xf7\xed"
+ "\xd8\xb5\xeb\x6f\xb8\x1e\xce\x6a\xeb\x2f\x36\x05\xf0\xd4\xa9\x53\x07\x82\x7b\x23\x9a\xb0\x40\x20"
+ "\x16\x13\xe2\x99\xaa\xb1\x03\x38\xb7\x09\x26\xd1\x01\x80\x0b\xb3\xe8\x7c\x4a\x4a\xca\x2b\x10\xd3"
+ "\x85\xd6\x0f\x6d\x7b\x0f\x6d\x0a\xe0\xc8\x7e\xfd\x06\x39\x3a\x3a\x1a\x68\x1e\x89\x1c\x6c\x02\x25"
+ "\x07\x70\x6e\x5d\x07\xe7\x5e\x4c\x4f\xcf\x48\x3b\x77\xee\x3f\xb1\x56\x9c\x6e\xe2\x32\xab\x3a\x6d"
+ "\x53\x00\x43\xb9\x8a\x24\x68\xd2\xbc\xdb\x23\x12\x10\xdd\x8e\xa8\x57\x52\x5a\x2a\x1c\x3a\x7c\x58"
+ "\xc8\xca\xca\x3a\x97\x91\x9a\xfa\xdb\x3d\xfb\xf7\x9f\xea\xf1\x1a\x2b\x3d\x61\x33\x4a\x16\xed\x5f"
+ "\x1c\x01\xb7\xb1\x40\x20\x01\xdc\xdd\x27\x95\x29\x96\xf4\x8c\x0c\x01\xde\x2e\x21\x23\x3d\xfd\x1f"
+ "\xc7\x4f\x9c\x78\xee\x97\x08\x2e\x9f\xc3\x96\x38\xd8\x1e\xf1\xcb\x2e\xd4\x9e\x9d\x9c\x9c\x04\x63"
+ "\xd7\x93\x68\xdf\x82\x63\x59\x8a\x8b\x8b\x69\x06\x09\xe9\xe9\xe9\xb5\xa5\xe5\xe5\x9f\x6e\xd9\xb2"
+ "\x65\x25\x16\x15\x4a\xc4\x93\xbf\xc0\x3f\xb6\x04\x70\x1b\xa2\x2f\x5a\x5b\x18\x01\x09\x11\xcc\xd5"
+ "\x20\x89\x5b\x11\x4f\x25\x14\xe7\xe7\x0b\x97\xe0\x5b\xce\xcc\xcc\x6c\x2d\x2f\x2f\x3f\x98\x9d\x93"
+ "\xb3\x62\xd7\xae\x5d\x87\xc0\xe5\xcd\xbf\x40\x5c\x3b\xbb\x6c\x55\x00\x83\xf0\x64\x23\xaf\xc7\x1e"
+ "\x7b\x2c\xe0\xd1\x47\x1f\x0d\x8d\x8e\x8e\x0e\xf6\xf3\xf3\xf3\xf7\xf0\xf0\xf0\x72\x76\x76\x76\xa3"
+ "\x98\x05\x48\x0d\xe0\xa8\xca\x22\x94\x73\xe7\xce\xe5\xc2\x1e\xcd\x85\x09\x53\x06\x20\x10\x86\x71"
+ "\xcf\xd2\x5a\x5e\x59\x59\x55\x5a\x56\x26\x46\x47\x52\x79\xaa\xc2\x62\x3d\x39\x16\x5e\x29\xa1\xa0"
+ "\xb0\x10\xb7\xad\xf9\xa9\xac\xbc\xfc\xdb\xad\x5b\xb7\xfe\x13\xf7\xc3\x12\xd3\xcf\x05\x6d\x3b\xe1"
+ "\x3f\x6f\x84\xd2\x06\x26\x26\x26\x06\xa3\x6f\xfe\x08\xf3\xf1\x41\x38\xad\x27\xfa\xe6\x04\xaf\x58"
+ "\x2b\xfa\x01\xff\x49\x6d\x35\xee\x59\x86\xbe\x15\x6e\xdc\xb8\x91\x9c\x5f\x8e\x7b\xf5\x99\x49\x65"
+ "\x87\xc6\x7f\x7e\x8a\x3e\xf8\x06\xc2\xb9\x3c\xf1\xc4\x13\x51\xf3\xe6\xcd\x4b\x40\xb0\xdb\xb8\xa0"
+ "\xa0\xa0\x11\x00\x34\xca\x60\x30\xf8\x41\xd1\x71\xa1\x63\xbf\xbb\x02\x71\x2b\x60\x47\x41\x4d\x5d"
+ "\x43\x43\x6e\x59\x69\xe9\x39\x04\xcb\x1d\xfa\xfc\xf3\xcf\x93\x7f\xfc\xf1\xc7\x6b\x78\xa6\x0e\x3b"
+ "\xa8\xeb\x95\x4b\x96\x2c\xf9\x2f\x2c\x0f\x7e\x80\xb5\x5f\x48\xea\xe6\x7a\x70\x6e\x31\x4c\xa0\x4b"
+ "\xb8\xc7\xf1\xfc\xfc\xfc\xc3\xb0\x73\x53\x71\x6d\x8d\x74\x15\xfa\xe6\xfd\xd2\x4b\x2f\x0d\x99\x32"
+ "\x65\xca\xd8\x81\x03\x07\x8e\xc5\x60\x8b\x75\x75\x75\x0d\x87\x88\xf7\x86\xb2\xe6\x02\x8d\x5c\xaa"
+ "\xda\xf9\x49\x7a\xe2\xde\x2d\x28\x35\x58\x71\x2a\xc4\x20\xca\xc2\x7a\xf1\x29\x68\xdf\xc7\xde\x7e"
+ "\xfb\xed\x34\x54\x2c\x45\x9d\x5e\x23\x7a\x9f\x01\x0c\xe2\x05\x7c\xf6\xd9\x67\x13\x7e\x35\x69\xd2"
+ "\x9c\xb0\xd0\xd0\x09\x6e\xae\xae\x61\x74\x28\x30\x1e\x8a\x8b\xef\xdc\x35\x00\x22\x09\xad\xa0\x85"
+ "\x48\x0f\x89\x26\x1d\xe2\x95\x3e\x61\x27\x83\x41\x00\x07\x09\x2e\x38\x58\xc0\x81\x79\x20\xe6\x3f"
+ "\xb1\x4f\x68\xcb\x9b\x6f\xbe\x99\x82\xeb\xaa\xc5\x13\x1d\x7f\x66\xcd\x9a\x15\x01\x6e\x1b\x5e\x51"
+ "\x51\xd1\x82\x65\xbe\xb2\xc2\xc2\x42\x48\xe6\x7c\x72\x7f\xbd\x54\x0f\xfd\x32\x4c\x9f\x3e\x7d\x00"
+ "\x80\x9d\x12\x1b\x1b\x3b\x13\x03\x6e\x94\x8b\x8b\x8b\x37\xcf\x33\xe2\xa3\x01\x36\x31\x23\x2e\x29"
+ "\xea\x19\x27\xdd\x05\x2b\x8a\x7d\x1c\xd4\xc0\xb1\xa5\x45\x70\x71\x75\x15\x30\x20\x44\x7f\x37\x06"
+ "\x53\x63\x65\x65\x65\x2a\xa6\x80\x5d\xeb\xd6\xad\xdb\x81\x48\x92\x0c\x5c\x6b\x71\xf1\xdf\xeb\x00"
+ "\x83\x00\xbe\x50\x5c\x66\x40\x04\xff\x36\x30\x30\x30\x11\xdc\xe0\x50\x8d\xf0\x54\x6c\xfd\x10\x01"
+ "\x05\xc5\xda\x69\x0d\x42\xb1\xb4\xff\x6d\xff\xc9\xf8\xaf\x58\xcb\xa8\x2e\x1c\x18\x82\xa7\x97\x97"
+ "\xe0\xee\xe9\xc9\x48\xc7\x46\x80\x97\x74\xf4\xe8\xd1\xcd\x0b\x16\x2c\xd8\x8f\x01\x93\x0f\x62\xde"
+ "\x93\x6b\xd8\xaf\x8f\x3f\xfe\x38\x11\x22\xf8\xd7\x51\x51\x51\x4f\x40\x8a\x84\xd3\x5e\xc6\x8a\x91"
+ "\x18\xd8\x2e\x2e\x4c\x48\x1d\x50\xd2\x37\x5c\xc3\x81\x8b\x41\x22\x78\xfb\xf8\x88\xc0\x63\x35\xaa"
+ "\xf0\x72\x56\xd6\xd6\x55\xab\x56\x7d\xb5\x61\xc3\x06\x4a\x0d\xac\x7a\x58\xa6\xf4\x1a\xc0\x20\xa0"
+ "\xe3\xbb\xef\xbe\x3b\xfe\xf9\xe7\x9f\x5f\x12\x1e\x1e\x3e\x85\xc0\x41\xb4\x8a\x9c\x2a\xd2\x1e\x44"
+ "\xeb\x09\x4c\x39\x8f\x2e\x01\x4e\xce\x76\x73\x77\x17\xfc\xfc\xfd\x05\x9a\x44\x50\x98\x52\xa1\x11"
+ "\x7f\x8f\x79\x75\xcf\x9a\x35\x6b\x2e\xe3\x5e\x14\xc1\xac\xce\xf9\xde\x63\xfe\xfc\xf9\xd1\x73\xe6"
+ "\xcc\x79\x6c\xd4\xa8\x51\x4f\x61\x17\x43\x22\xa6\x06\x03\x07\x1c\xa4\x81\x40\x80\x59\xc8\x95\xe6"
+ "\x16\x69\x7c\x51\xac\x13\x68\x0e\x44\xb4\x51\x80\xad\x31\x6b\x26\x4d\x9a\xf4\x77\x9c\xb7\x48\xd0"
+ "\x5e\xaf\x00\x4c\xee\xc0\x1a\xec\x1f\xa0\x9c\x2c\x86\xc8\xf2\x2d\x2e\x2c\x14\xb9\x82\x4b\x75\xe6"
+ "\x93\xee\x6e\xd2\x4b\x03\x06\xe2\x58\xc0\xbc\x29\x18\xc0\x3d\x50\x80\x20\x21\x2b\xd3\x4a\x4b\x4b"
+ "\x33\x21\x2e\xeb\xa0\x20\x05\x60\x4d\x38\x06\x9f\x43\xb0\xa1\xcc\x8f\x62\x17\x83\x41\x8c\xd4\x90"
+ "\xb6\xa8\x58\xa4\x6f\xec\x2e\x84\x09\x75\x0b\x0e\x42\x0e\x46\xf8\xb7\x93\x56\xaf\x5a\xf5\xc7\x15"
+ "\x2b\x56\x1c\x47\xdf\x35\x8d\xed\xb2\x38\xc0\x10\xc5\x31\xeb\xd7\xaf\x5f\x3e\x78\xf0\xe0\xa7\x6b"
+ "\xa0\xb5\x62\xfe\x13\xe7\x2d\x4b\x10\xef\x4e\xa8\x25\xae\x26\x31\xdd\x31\x4f\x7b\x80\x6b\x0c\x00"
+ "\xbd\x9d\xc6\x6d\xa2\x8f\x19\x5a\xaf\x38\xe7\x8b\xdc\x6a\xa1\x01\x77\x67\xbf\xc4\xf6\xdb\x3b\x21"
+ "\xce\xd3\x21\x61\x61\xe4\xe6\xc2\x9d\x3b\x77\x2e\x81\x84\xdb\x0c\x90\xbb\x55\x12\xbb\xbb\x8f\xa9"
+ "\xdf\x2c\x0a\xf0\xb3\xcf\x3e\x1b\xbf\x72\xe5\xca\x75\x61\x61\x61\x0f\x17\xc2\xce\xe4\x8a\x0c\xed"
+ "\x4f\x72\x6e\x6f\x16\x91\xa3\xd9\x20\xa7\x61\xa9\x6d\x69\x4a\x96\x40\x95\x7e\xef\xcd\x8e\x89\x5d"
+ "\x02\x37\x63\x5a\x09\x0e\x0d\xe5\x5c\xdd\x74\xe8\xd0\xa1\x77\xa0\xb5\x7f\x82\x3e\x23\x86\xd7\xfc"
+ "\x62\x31\x80\xe7\xce\x9d\x3b\x1c\x4a\xc4\x86\x90\x90\x90\x51\x39\x37\x6e\xd0\x74\xd0\x64\x2e\x33"
+ "\xff\x91\xad\xec\x0e\x18\x58\x1c\x80\x1c\xf2\xfe\x81\x81\x82\xbb\x87\x47\x6b\x52\x52\xd2\x5f\x30"
+ "\x2f\x7f\xa0\x05\xc8\x77\x1b\x72\x1a\x3c\x3f\x02\xda\x06\x41\x53\x5e\x1f\x12\x1c\x3c\x2a\xfb\xda"
+ "\x35\x51\x3b\xa6\xa2\xd2\xc9\x49\x1a\xb4\x71\xdf\xdc\xa2\x43\x92\x70\x3a\x29\x29\x2a\x62\x84\xa7"
+ "\xfd\xc4\x89\x13\xff\xbc\x77\xef\xde\x16\xd0\x6c\x05\x68\x66\x96\xb8\xd6\x1c\x60\x28\x2d\x41\xf0"
+ "\xe2\x7c\x12\x1a\x1a\x9a\x70\x43\x02\x17\x9d\xd7\xc1\x95\x37\x24\x4b\xe1\x59\x03\x37\x3b\xc0\x5c"
+ "\x7b\x0b\x8b\x1d\x45\x00\xf9\x2b\xd0\x4e\xb5\x19\xa5\x29\xc0\xe8\x8c\xf3\xb1\x63\xc7\x96\x0c\x18"
+ "\x30\x60\xda\x4d\x23\xb1\x2c\x2a\x3b\xf2\x9e\x4f\xaf\x05\x0a\x94\xc3\x9d\x0a\x5b\xd9\x10\x19\x19"
+ "\xf9\xd1\x7b\xef\xbd\x77\x11\x3f\x1d\x57\x4b\x18\x4d\x01\x5e\xbb\x76\xed\xac\x84\x31\x63\x7e\x4f"
+ "\x85\x8a\xde\x28\x2a\x54\x3a\xe7\x2a\x80\x06\xf4\xe2\x7a\x75\x6e\x5e\x9e\x70\x38\x29\x49\xa8\xaf"
+ "\xab\x3b\x0b\x9b\xa9\x63\x93\xb2\x82\xfb\x18\x55\xd5\x0c\x60\x28\x05\x03\xe0\x4c\x58\x8a\x78\x27"
+ "\x67\xd8\x9b\x3a\xb8\x46\x44\x96\xf5\x95\xe0\xe2\xb8\x7c\xf9\xb2\x90\x84\xc0\x3e\x78\xe2\xbe\xdc"
+ "\xb9\x6b\xd7\x5b\xb0\xdb\xcd\xda\x96\xaa\x09\xc0\x10\xcd\x4e\x88\x55\x7a\x91\xf9\x2c\xb2\x32\x33"
+ "\xc5\xe7\xd1\x39\x57\x16\xac\x9d\x95\xe8\x81\xcb\x00\xed\x8e\x24\x27\xb7\x14\x16\x14\xbc\xff\xed"
+ "\xa6\x4d\xd4\xa2\x3b\x17\x3e\x3a\x2b\x2a\xfc\xa2\x09\xc0\x8b\x16\x2d\x1a\x13\x1f\x17\xf7\x42\x01"
+ "\x44\x0b\x17\x08\x00\x78\x97\x05\x75\x85\x7d\xb2\xa9\xea\x34\x8f\xe8\xab\xe6\x5a\x34\xcc\xa3\xe6"
+ "\xbc\x82\x82\xb7\xb0\x10\x41\x3b\x58\x93\x25\x46\xb3\x01\x06\x98\x2e\x88\x80\xf8\x1d\x56\x50\x7c"
+ "\xe8\xa5\x62\xd1\xb9\x57\x24\x83\xac\x3f\x04\xf7\x06\x14\x52\x70\xee\xed\x82\xa2\xa2\xb7\x01\xee"
+ "\xc7\xa0\x9f\xa9\xb5\x6d\x59\xf7\x66\x25\xb3\x01\x5e\xb8\x70\xe1\x48\x44\x2b\x3e\xc9\x8d\xd0\xdc"
+ "\xa5\x47\xee\xd5\x8b\x3c\x0a\x50\x2c\x23\x88\x5e\x48\xfe\xe9\x27\xa1\xa8\xb8\x78\xe5\xa6\x4d\x9b"
+ "\xc8\xb9\x9a\x81\xcb\x5e\x98\x05\x30\xc0\x74\xc0\x22\xc2\x5c\x2c\xc0\x78\x11\x60\x16\x9d\x7b\x45"
+ "\x32\x98\xfc\x43\x46\xe0\x16\xd4\x63\xc7\x8f\x0b\x45\x85\x85\xdb\x10\x99\xc2\x60\x7a\x4d\xdc\x93"
+ "\xc6\x8d\x9b\x05\xf0\x83\x0f\x3e\x18\x11\x1e\x12\x32\x93\x5a\xb3\xce\xbd\xc6\x64\x35\xfd\x9d\x00"
+ "\x23\xf1\x0b\x37\x91\x5f\x3c\x75\xfa\xf4\x1f\x01\x6e\x97\x10\x21\xd3\x77\x90\x57\xc3\x2c\x80\x17"
+ "\xbc\xf0\xc2\x78\x57\x77\xf7\x68\xa4\x11\xd2\x39\x57\x1e\xbd\xc5\x5a\x14\xcd\x88\x24\x11\x10\x4c"
+ "\xdf\x08\x9b\xf7\xcf\xd8\xad\xc8\x75\x6a\x8b\x14\xd5\x00\x63\x04\x1a\xf6\xec\xd9\xc3\x85\x7b\x3b"
+ "\x69\x21\x41\x17\xcf\xf2\x30\x22\xbd\x2e\xa4\xa6\x0a\xc8\xd0\xb3\x69\xc7\x8e\x1d\x7b\xe4\x5d\xa5"
+ "\xae\x96\x6a\x80\x91\x79\x35\xc4\xdb\xcb\x6b\x1c\x3d\x56\x04\x56\x07\x57\x1e\x00\xf4\x54\xe5\xe4"
+ "\xe4\x30\x92\xb3\x20\xf3\xc2\x85\xd5\xa0\x9b\x26\xe6\x50\x4f\xad\xab\x06\xf8\xa9\xa7\x9e\x8a\x35"
+ "\x38\x39\x45\x52\x51\xd0\xc1\xed\x89\xbc\x77\xff\x4e\x3f\xc1\x95\x2b\x57\x04\xc4\xd7\x6e\xfa\x29"
+ "\x25\x85\x51\x96\x16\x2d\xaa\x01\x1e\x18\x13\x33\x12\xc9\x3a\x9d\x10\x20\xaa\x03\x2c\x13\x22\xce"
+ "\xbd\x8c\xc3\x86\x49\x54\x7e\xe5\xda\xb5\x2d\x60\x0c\xd5\xab\x44\x32\x9b\x14\x54\xed\x4d\xe2\xfc"
+ "\xeb\xe5\xe5\xf5\x00\xa3\x23\x18\x6d\x48\x0e\xd6\x0f\xd3\x34\x20\x28\xf0\x31\xd3\x3c\x3a\x88\xc8"
+ "\x0d\xae\x12\x59\xbc\xa8\xe5\x60\x2f\x57\x37\xb7\x41\x12\xb8\x16\xef\xe5\x7d\xd2\x00\xa7\x33\x2c"
+ "\x1e\xb4\x55\x55\x57\xff\x03\x0c\x61\xd1\xb9\x57\x22\x99\x2a\x80\x13\x12\x12\xfc\xa0\x2c\x84\x31"
+ "\xf8\x9b\x81\xe9\x7a\x31\x4d\x01\x2e\x9d\x32\xc0\xaf\xbe\xa1\xa1\x18\xbb\x30\x4e\x9a\xbe\x42\x9b"
+ "\x1a\xaa\x00\x1e\x1c\x13\x13\x0c\x80\x7d\xf9\x32\x0a\x31\xc4\x54\x9b\xbe\xdc\xdf\x77\x81\xf6\xcc"
+ "\xfd\x50\x08\xca\xcf\x80\xdd\x9b\xdb\x5b\x0f\xab\x0a\x60\xff\x80\x80\x20\xd8\xbf\x2e\xf4\x5e\x71"
+ "\xee\xd5\x8b\x69\x0a\x90\x56\x14\xd1\xd8\x14\x45\xcd\xb9\x23\xc5\x8f\xe9\xeb\xcc\xad\xa1\x0a\x60"
+ "\x57\x0f\x8f\x40\xee\xbd\x91\x14\x2b\x73\x3b\x61\x0b\xd7\x73\x97\x05\xb7\xa9\x62\xb3\xdb\x15\xd0"
+ "\x4d\xd3\xe0\xf6\x7b\xd1\x4f\x15\xc0\xd8\x7e\xe1\x4d\x95\x5f\x07\xf8\x5e\xa4\xed\x7a\x8e\x53\x19"
+ "\x6d\xe0\x9a\xfa\x7a\xb3\x22\x34\xba\xde\xd5\xf4\x7f\x6a\x01\xf6\x64\x87\x29\x76\x78\xe8\xc5\x34"
+ "\x05\x3a\x68\xd5\x02\x31\x5d\x65\xba\xb6\x76\x35\x14\xdb\xc1\xb0\x81\xb1\x31\xde\xde\x9d\x33\xaf"
+ "\xc4\xc1\xfa\xa7\x69\x1b\x98\x34\x82\xde\xd2\x0c\x25\x4b\xd3\xf5\x5e\x53\x43\x41\x0d\x07\xdb\x41"
+ "\x7b\x76\x14\x35\xe8\x0e\x07\x87\xa9\x46\xf4\xf3\xa0\x00\xcc\x24\xac\x9b\x03\xe7\xde\x9b\x7f\x49"
+ "\x77\x35\x00\x77\x6e\x7c\x96\x38\x57\x07\x50\x1e\x05\xb0\x09\xce\x09\x1b\xd6\x9d\xe5\xd5\xd6\xa6"
+ "\x96\x2a\x80\x39\xeb\x52\x2b\xa4\x93\x43\x77\x74\xc8\x03\x02\x33\x9b\x80\x4d\xea\x8e\x6e\x06\x43"
+ "\xaf\xbe\xe3\x50\x0d\xc0\x6d\x50\xf7\x6f\x51\x23\xd4\x39\x58\x1e\xb8\xac\xc5\x48\x35\xec\xf2\xb7"
+ "\x0b\x08\x0c\x0c\x92\x7f\x95\xf9\x35\x15\x03\xcc\x49\xe4\xb5\xd7\x5e\x6b\x90\xbc\x58\xba\x27\x4b"
+ "\x1e\x08\x6d\x30\x2b\x99\xaf\x03\xbb\xfb\x23\xe4\x5d\xa1\x4d\x2d\xc5\x00\xb3\xd9\x7a\x38\x55\xa1"
+ "\x0d\xea\x22\x5a\x01\x06\x64\x04\x26\x60\xf3\xf5\xf5\x1d\xca\xd5\x38\xf0\x89\x59\xbb\x06\xe5\x36"
+ "\xad\x0a\x60\xc8\xe7\x1a\xbc\x6d\x53\x17\xd1\x72\xa9\x8c\x7a\x9c\xce\x38\x0f\xfb\xf8\xfa\x0e\x43"
+ "\xf2\x19\x3f\xfc\xd4\x2b\x19\x6b\x55\x01\x8c\x39\xb8\x82\x6e\x37\x8e\x4a\x76\x5c\x2f\x32\x28\x00"
+ "\x3a\x71\x79\x15\xdb\x6b\x63\x66\xcf\x9e\x3d\xd8\xaa\x01\x46\xb2\x92\x52\xc4\x62\x21\xb7\x5b\xab"
+ "\x83\x0e\xb0\x0c\x70\x3b\xaa\x30\xfa\x05\x09\xc9\xdd\x90\x8c\x66\x02\xb8\x39\x19\xb4\xb3\x38\x77"
+ "\xa8\xe2\x60\x64\x6f\xab\x80\xcb\xad\x0e\x23\xd2\x8b\x62\x47\x2f\xf2\x28\xc0\x44\xa8\x34\x2b\xfb"
+ "\x47\x44\x4c\x03\x27\xaf\xc1\x55\x65\xf2\xae\x54\x5f\x4b\x15\xc0\x57\xaf\x5e\x2d\x03\x07\x57\xc1"
+ "\x54\xf2\x62\xde\xa7\x5e\x18\x88\xea\x9f\xd0\x8a\xae\x24\x9d\xf8\x32\x10\x98\x4a\x0f\x21\x13\xdf"
+ "\x23\xe8\xda\x4e\x4b\x77\x4f\x15\xc0\xc8\x03\x5a\x05\x80\x8b\x10\xdf\x1b\xc1\x30\x50\x1d\x60\xf9"
+ "\x30\x21\xa2\x83\x0e\x0f\x27\xe4\x31\x99\x0f\xe9\x77\x00\xb4\xab\x93\x7f\xb5\xf2\x9a\xaa\x00\x46"
+ "\x33\xb5\x88\x4e\xb8\x09\x31\x3d\x9a\xc9\xc6\xf4\x15\x25\xf9\x84\x27\x33\x20\xaa\x52\x40\x72\xd3"
+ "\xa9\x1f\x2e\x5f\xfe\x38\xae\xdc\x2e\xff\x6a\xe5\x35\xd5\x02\x7c\x0b\xa6\xf0\x65\xe6\x97\x44\x74"
+ "\xa5\xce\xc1\x0a\xe9\xce\xbd\x5c\xb0\x42\x9c\x9f\x9c\x3d\xfb\x75\x24\x3b\x3d\x81\x50\x5a\x8b\x99"
+ "\x4c\x8a\x97\x0b\xf9\x2c\x18\x85\x6d\xd8\x0b\x9c\x29\x6d\x3a\x93\xd6\x85\xf5\xcf\x9f\xd7\xc8\x4d"
+ "\xd1\x02\xef\x81\x10\x42\x82\x82\xc6\x21\xdd\xd4\x8b\x10\xd5\x6a\x19\xcd\xe4\xd0\x52\x7d\x63\xc4"
+ "\xf7\x66\x61\xd3\x59\x3d\xe6\x61\x37\x46\x77\xe8\x45\x19\x05\x18\x61\x99\x76\xf1\xa2\xf0\xe8\xf8"
+ "\xf1\xaf\xac\x5e\xbd\xfa\x2c\xae\xfe\x41\xd9\x1d\xe4\xd5\x56\x8d\xcc\xb5\x6b\xd7\xb2\xab\x6b\x6a"
+ "\x72\xe9\xf0\x60\x31\x35\x62\xf5\xf3\x5d\xb9\x9b\xe6\x25\x77\xf6\x23\xbf\xb5\x3b\x32\xde\xae\x7c"
+ "\xf9\xe5\x97\x1f\x96\x07\x99\xb2\x5a\xaa\x01\x66\x42\x6d\x24\xd0\x4c\xe3\x48\xa4\xe2\xa0\x1f\xca"
+ "\x69\x40\xa8\x4e\x9f\x3e\x2d\x40\x12\x46\x2e\x5d\xba\x74\x1d\x72\x7b\x3e\xa0\x0c\x3e\xd3\xb5\x55"
+ "\x03\x0c\x40\x1b\x31\x0f\xa7\x30\x05\xaf\xce\x9d\x5d\xb9\x53\x2e\x3d\xc8\x14\x74\x5f\x26\x23\x6d"
+ "\x12\xb2\xdd\xc6\x23\x9f\xf5\xd7\x48\x68\x93\x60\x1a\x36\xf9\x35\x54\x03\xcc\x26\xa0\xfd\xa5\x60"
+ "\x2b\x46\x13\xf7\xbb\xea\x1c\xac\x9c\x83\x49\x33\x16\xae\xcc\x21\x15\x06\x35\xeb\x07\x96\x2d\x5b"
+ "\xb6\xe9\xa3\x8f\x3e\x9a\x0a\x11\x6e\x16\x36\xe2\x8d\xf1\xc7\xac\x6c\xb3\x48\xa4\x1d\x8a\xac\xb2"
+ "\xfb\xc6\x25\x26\xc6\x21\x05\xbe\x1e\xdd\x21\x51\x55\xc5\x27\x17\x6e\xa8\xac\x8e\x4d\x4c\x14\x90"
+ "\x11\xbf\x7c\xff\xfe\xfd\x4b\x67\xce\x9c\xf9\x15\x06\x81\x59\x41\xf2\xaa\xb5\x68\x3e\x03\xf2\x3f"
+ "\x97\x60\xfe\x38\x8a\xd7\xae\xc6\x01\x6c\x7d\x1b\x8b\x0a\x60\x8d\x2f\x61\x18\xd4\x51\x64\xdc\x89"
+ "\x1d\x36\xcc\x0f\xc9\x48\x3f\xc1\xab\x08\x12\x00\xf2\x5f\x91\x28\xbc\x3d\xbb\x9c\x71\x65\x99\xdf"
+ "\xcd\xe2\x60\xb6\x31\x7e\xfc\xf8\xb9\xa3\x47\x8f\xde\x3c\x72\xe4\x48\x7b\x2e\x3b\x58\x7c\x79\x44"
+ "\xe6\x83\xfd\x62\xab\x75\xcc\xcb\x81\x41\x41\xc2\x23\x8f\x3c\xc2\xdc\x95\x57\xc0\xcd\x1f\x3c\xfd"
+ "\xf4\xd3\xdb\xf0\x4c\x55\xe0\x68\x45\x24\x36\x1b\x60\x44\x28\x44\xe1\x35\x34\x07\x1e\x1e\x37\x2e"
+ "\x06\xc9\xac\x75\x2e\xd6\x68\x64\x51\x51\xe3\x42\xce\xf0\x11\x23\xe8\xd6\x6c\x43\xda\x87\xbd\x5f"
+ "\x7f\xfd\xf5\xe2\xe5\xcb\x97\x67\x28\x69\xc2\x2c\x11\xcd\x86\xe0\xcd\xca\x85\x36\x7d\x10\x09\xbd"
+ "\x62\x44\x31\xad\x6c\x80\x29\xe9\xab\x4d\xd5\xa5\x9d\xcc\xc0\xc6\x33\x30\xa3\x52\x53\x53\xed\x90"
+ "\x87\x6c\x0a\x9c\x4b\x21\x20\x82\x22\x80\xcd\xe6\x60\x52\x1d\xfb\x85\x67\x20\x67\xd6\x0f\x63\x46"
+ "\x8f\x76\xd2\x57\x97\xb4\x1d\x87\x4c\x75\xc8\xa4\x2d\x69\x69\x69\x27\xb7\x6d\xdb\x36\x1d\x12\x5a"
+ "\xd1\x1a\xb2\xd9\x1c\xcc\xc7\xc9\xc8\xc8\x38\xd9\x2f\x3c\xfc\x42\x45\x65\xe5\x43\x01\x78\x55\x8c"
+ "\xc2\x69\x42\x5b\x8a\xdc\x67\x77\x63\x90\x40\x29\xd2\x1d\xc2\x84\xda\x8d\x47\x2b\x57\xfa\x78\x9a"
+ "\x00\x0c\x6f\x56\x09\x34\xe9\x1f\xf2\xf2\xf2\x1e\xc2\x9c\xcc\xd5\x08\xa5\xfd\xd0\xeb\x77\x43\x01"
+ "\xbe\x1d\x95\x2f\xd0\x04\x6d\x2b\x90\x76\x69\x8f\x52\x05\x8b\xb7\xd4\x04\x60\x36\xdc\xbf\x7f\xff"
+ "\x1d\x88\x16\x5c\x14\xd5\xbf\x7f\x88\xa8\x6c\xe9\x20\x77\x03\x99\x82\x9f\x40\x3f\x7a\x3a\x10\x5c"
+ "\x41\x73\xf4\x10\x32\xfa\xa6\x2b\xb8\xba\xb3\xaa\x26\x00\xf3\x6e\xc8\xb9\x78\x19\x2f\xbf\xda\x9e"
+ "\x97\x9f\xff\xbb\xc1\x83\x06\xe9\xda\x74\x27\x89\xd5\x7d\xa1\x92\xc5\xf7\x4c\x01\xe0\x56\x28\xb2"
+ "\xdf\x81\x87\x54\x25\x2a\xd5\x0c\x60\x74\xa0\x79\xe8\xd0\xa1\x1b\x7d\x7d\x7c\xfe\x0d\x9e\x18\x4f"
+ "\xbe\x8c\x11\xbf\xa9\x7b\x3a\xfd\x2a\x31\xbd\x7f\x21\xb8\x17\x41\x15\x67\xe0\xf0\x38\xac\x96\x24"
+ "\x9a\x01\xcc\x0e\x20\x6b\xf9\xe9\x88\xf0\xf0\x5d\xf9\x79\x79\xcf\xc5\x0c\x18\xa0\x03\xac\x12\x15"
+ "\x3a\x8c\x10\x0e\x25\x26\x2c\x85\x7e\xf3\x2d\xcc\xa3\x62\x95\xb7\xd2\x66\x0e\x96\x1a\x07\xc7\x36"
+ "\xc6\xc7\xc7\xaf\xf7\xc9\xce\x7e\x32\x38\x24\xc4\x9d\x7b\x71\xf4\xbd\x4b\x12\x75\xe4\x7f\xda\xc1"
+ "\x34\xe2\xdc\x0b\x37\x70\x16\x6c\xe0\x1d\xf2\xaf\xbc\xbb\xa6\xa6\x1c\xcc\xdb\x5f\xbc\x78\xf1\x78"
+ "\x50\x40\xc0\x0f\xb0\xdd\xfe\x5d\x9c\x8b\x75\x31\x7d\x37\xd5\xef\xf5\x0b\xe6\x5e\x24\x6a\x11\x5f"
+ "\xad\x03\xf1\xfc\x25\x1c\x1c\x37\xef\x55\xdd\xd4\x39\xcd\x01\x26\x17\x0f\x1a\x34\xe8\x33\x4f\x6f"
+ "\xef\x19\xc1\xc1\xc1\xbe\x9e\xfa\x2a\x93\x29\x0c\xba\x9c\xe7\xab\x75\x98\x3d\x1f\x8a\xd5\x25\xbc"
+ "\x62\x87\xca\x95\x59\x8a\x8c\x26\x6b\x8e\x5d\x7a\x88\x7f\x90\x4d\xf5\x34\x02\x3e\x36\x30\x24\x85"
+ "\x3e\x55\xf6\x51\x3f\x4c\xd3\x80\x74\xa4\xe6\x7c\x13\x9e\x2b\xcc\xbd\x6b\x40\xbf\xec\x3b\x69\xab"
+ "\xf4\x7f\xcd\x39\x98\x1d\x00\x98\xcd\xfd\xfa\xf5\x5b\x8b\xed\x19\x4f\x22\x2c\x34\x06\xf6\xb1\x1e"
+ "\x3b\x2d\x03\x19\x9a\x46\x04\x17\x73\xef\x09\x4c\x75\x66\x73\x2f\x9b\xb4\x08\xc0\xbc\x31\xbc\x5a"
+ "\x97\x21\xa2\x57\x82\x9b\x57\x23\x76\xda\x8e\x2b\x23\x40\x9e\xa7\xf4\xd2\x0d\x05\xb8\xd8\x0f\x87"
+ "\x15\xe9\x76\x0b\x61\x50\x1f\x42\xc9\xd2\xe4\x95\xef\x16\x03\x18\x5c\xdc\x86\x11\xf9\xbf\x00\x77"
+ "\x06\x14\xae\x29\xd1\xd1\xd1\xa2\x98\xee\xe6\xd9\xf4\x9f\xc0\xb9\xdc\x79\x78\xfd\xfa\x75\x8a\xe6"
+ "\x6d\x27\x4f\x9e\xd4\x2c\xcd\xbf\xc5\x00\x26\x6a\xc0\xb8\x62\xc8\x90\x21\xcb\x60\x2e\x8d\xf1\xf1"
+ "\xf1\xf1\xc3\xa1\x8b\xea\x6e\x86\x33\x33\xd1\x82\x73\xf9\x0e\x25\xf0\x42\x0e\x5f\x69\x57\xdf\x4d"
+ "\x35\x55\x3f\x59\x44\xc9\x32\xee\x09\x22\xf8\x8f\xa3\xe3\x2b\xf9\xd2\x45\x06\x97\xb1\xe0\x01\xf4"
+ "\xa3\x83\x06\x9c\x77\xb9\xa0\x00\x85\xaa\x15\x73\xef\x7b\x70\x16\xa5\x1a\xd3\xcf\xdc\xef\x16\xe5"
+ "\xe0\x0e\x30\x6f\x43\x4c\xaf\x03\x17\x4f\x04\x07\x4f\xc6\xbb\x85\x75\x51\xdd\x81\x1a\xc1\xe5\xa0"
+ "\xc7\x76\x5c\x01\x31\xe6\x5b\x8f\x1e\x3d\xba\x09\x83\x5f\x53\x45\xc5\xe2\x00\xf3\x59\x30\x32\x4b"
+ "\x31\x07\xff\x09\x3b\x11\xe3\x01\x76\x48\x40\x40\x80\x2e\xaa\x41\x17\xba\x24\xc1\xb9\x14\xcd\x99"
+ "\x98\x7f\x97\x02\x5b\xb3\xdf\x36\x4a\x7a\x1b\x97\x5e\x01\x98\x0d\xe2\x41\x52\xc0\xc1\x6f\x43\x04"
+ "\xad\x01\x37\x3b\x20\xe3\x9b\x4d\x83\xec\x00\xad\x39\x1f\x0e\x0d\xcc\xb9\x35\xf0\x19\xbc\x8e\xad"
+ "\x40\x97\x8c\x81\xd1\xea\x7b\xaf\x01\x4c\xd1\x03\x91\xb4\x11\xf9\x1a\x47\x61\x5e\x5e\x18\x17\x17"
+ "\x27\xbe\xed\x5a\x63\x89\xa4\x15\x5d\x2c\x7a\x1f\x9a\x44\x58\xc4\xa7\x43\xa8\xad\xba\xb2\x72\x19"
+ "\xd6\x7a\x35\xd3\x9a\xef\xec\x78\xaf\x01\xcc\x86\x01\x66\x3d\x02\xf3\xfe\x02\x90\x87\x70\x4e\x46"
+ "\xb4\xa0\xd8\x1f\x5b\x02\x99\xe0\xc2\x14\x12\xdf\x17\x8c\x79\xf7\xef\xc7\x4e\x9c\x58\x83\xe7\x6f"
+ "\xb9\x13\x18\xad\xfe\xef\x55\x80\xd9\x69\x38\xd0\xf3\xe1\xe5\x7a\x05\x0f\xba\x15\x40\x0f\x8e\x8c"
+ "\x8c\x14\x1d\x20\x9a\x6a\x16\x5a\x51\x47\xe3\xfb\x10\x5c\xbe\x29\x8e\x2f\x83\x86\xaf\x79\x37\x36"
+ "\x9e\xbd\x05\x70\xcd\xda\xb9\x60\xaa\x8b\xbd\x0e\x30\x3b\x84\xf8\xa2\xf3\xb0\x8f\xff\x00\xef\xd6"
+ "\x46\x1c\xc1\xa1\xa1\xa1\x22\xc8\x60\x71\x53\xfd\x55\x7f\x1e\x1a\x2b\x0b\x35\xd7\x2e\x85\xe6\x8a"
+ "\xf4\x83\x05\xdb\x67\x7c\x15\xb7\xda\x12\x5c\x28\x55\xc9\x99\x99\x99\x8b\xc0\xc9\x9a\x78\xab\xa4"
+ "\xee\x77\xf7\xd9\x27\x00\xb3\x23\x98\x87\x0f\x60\x44\xff\x1e\x5f\xd7\xe3\xf0\x0d\x09\x09\x69\x27"
+ "\x34\x89\x7c\x27\x08\xbc\x40\x45\x21\x98\x22\xa0\xb8\x27\x77\xf1\xd1\x5b\x24\xa6\x32\xc2\x02\x08"
+ "\x0b\x89\x4e\x17\xaa\x74\xf0\x7f\x4e\x17\x9a\x4e\x19\xb8\x1f\xef\xdb\x48\xce\xc5\xae\x7e\x6c\xd8"
+ "\x3b\x05\x85\x73\x21\x16\xf1\xaf\xab\x78\x24\xc5\x97\xf4\x19\xc0\x20\x22\x95\xae\xed\x88\xa3\x36"
+ "\xa0\xd7\x9f\x22\xc8\xdb\x1f\xa1\x3e\x22\xb8\xe6\x10\x58\x02\x95\xab\x58\x5c\x99\x81\x89\x26\x1e"
+ "\x9c\xf7\x20\x1e\xdb\xb0\x13\xb2\x0e\xf7\x6f\xec\x68\x1f\xd8\x3a\xba\x23\xbc\xc8\xc0\xcd\x73\x30"
+ "\xe1\xc4\x83\x01\xfc\x52\x7c\xb7\x39\x7d\x21\x1a\xd2\x9c\xcb\x94\x0d\xd0\x96\x93\xb1\xe1\x7b\x21"
+ "\x00\x56\x14\xbc\xae\x18\x55\xa3\x0b\xfa\x0c\x60\xf6\x01\xc4\x6b\x05\x20\x5b\x01\x2e\xd2\xe6\xdd"
+ "\xfe\x14\x61\x2a\xfd\x38\x27\x33\x69\x27\x01\x52\x52\x48\x48\x16\xce\x71\x74\xda\x63\x5b\x2b\xe7"
+ "\xb9\x66\x88\xc5\xcb\x70\x26\x9c\xc1\x71\x0e\x80\x5f\xc1\xff\x45\x00\xbd\x1a\xed\xb6\x02\x58\x17"
+ "\xd8\xe6\xfe\x30\xd9\xfa\xe3\x73\x04\x74\x82\xd1\x50\xfe\x68\xab\x7b\x73\x05\xcc\xcf\xcf\x4f\xa0"
+ "\x39\xc7\x41\x23\xa6\x6d\x54\xd0\x21\x5e\xc3\x02\x71\x2c\x3a\x32\xd0\xe4\x0e\x80\xbc\x18\x9c\x7b"
+ "\x4d\xc1\x6d\xcc\xae\xda\xa7\x00\xb3\xf7\x1d\x20\xef\x04\x67\x95\xe1\x58\x09\xcd\x72\x4c\x34\x16"
+ "\x26\xc8\x4d\xe2\x79\xae\x27\x8b\xdf\xba\xfe\x11\xc9\x07\x22\xd2\x8f\xcb\x5d\x79\x04\x95\x2f\x7e"
+ "\x24\xb0\x0d\x75\x75\x99\x0d\x4d\x4d\x7b\xa1\xd0\xed\x85\x03\xe1\x02\x40\x2f\x41\x3b\xf7\xcc\xee"
+ "\x0a\x40\x38\x42\xbc\x22\x22\x22\x06\xf9\xfb\xfb\xff\x0b\xee\x35\x03\xe0\x8e\x01\xd0\xce\x04\xdb"
+ "\xdb\xdb\x9b\xf9\xad\xc4\xbe\x90\xab\x79\x74\x57\x08\x2c\xfb\xd4\x04\x0f\x15\x74\x0d\x71\x75\x08"
+ "\xd2\xe3\xd3\x13\x27\x4e\xbc\x8f\x6b\x4a\xba\xbb\xc6\x92\xbf\x69\xb2\x75\x45\xab\x0e\x22\x68\xbe"
+ "\x3f\xa2\x41\x5e\xf7\xf4\xf2\x9a\x8f\x9d\x12\xae\x58\x6e\x14\x39\x48\xe2\x4e\xe3\x76\xc8\xe1\x54"
+ "\x5a\xc0\xa5\x22\x97\x60\x89\xad\x16\x40\x1e\xc4\xb1\x0d\x21\xbc\x47\x00\x78\x1e\x08\xaa\xfa\xed"
+ "\x9e\x00\xca\x17\x66\x5c\x02\xfa\x34\x07\x5c\x3d\x0d\x03\x2e\x9c\x1e\x38\x06\xf6\xbb\x83\xab\xf9"
+ "\xde\x28\x89\x4b\xa5\x7e\x11\x74\xf6\x89\x83\x8c\x51\x19\xb0\x71\xd3\x6a\xea\xea\xfe\x8a\x37\x9d"
+ "\x6d\xc7\xb9\x5e\x79\x57\xa1\xd4\x17\xe9\xd3\xaa\x00\x66\xa7\x40\x34\x97\xd8\xd8\xd8\x49\xe0\x98"
+ "\x17\x31\x17\x4e\x04\x41\x5d\x10\x38\x20\x30\xe1\x1a\x09\x4a\x65\x89\x44\xe4\x9c\x0a\x6e\xa7\x48"
+ "\xbe\x8a\xff\xf7\x00\xe8\xad\x10\x81\x67\x40\x48\x4d\x33\xc7\xa1\x4d\xa7\xb0\xb0\xb0\x01\xe0\xea"
+ "\x49\xe8\xcf\x34\xf4\x63\x0c\x3e\x03\x29\x61\x28\xbe\x21\xd6\x45\x5a\x72\xa3\x18\xfb\xc4\x01\xc7"
+ "\xa9\x00\xfd\xfa\x16\x5e\xaa\x6f\x00\xf4\x0d\xb1\x42\x1f\xfd\xb1\x3a\x80\x25\x3a\x80\xb0\x5e\x08"
+ "\xa4\x1f\x03\x70\x27\x41\x11\x1a\x05\xa5\x27\x18\xbf\xd9\x83\x73\x9b\x00\x72\x21\x3e\x33\x30\xaf"
+ "\x9e\x82\xd2\x72\x1a\xab\x31\x39\x00\xd6\x62\xce\x02\xa3\x3e\xb9\xc3\x86\x8f\xc1\xe0\x1b\x05\xae"
+ "\x7e\x08\x7d\x1a\x82\x23\x10\xfd\x72\x40\x7f\x6a\x70\x64\x61\xb0\x1d\x01\xa8\x49\x58\xaf\xcf\x46"
+ "\x9f\x94\x29\x12\x52\x43\x1a\x7e\x5a\x2d\xc0\xd2\x33\x82\x78\x9c\x6e\xdd\x70\xb8\xe2\xe0\x3c\x49"
+ "\x20\x19\xe5\x2f\x6a\xc2\xf8\xec\x93\xc2\xc1\x86\x86\xd9\x27\x1e\xec\x63\x33\x8e\xda\xde\x18\x68"
+ "\x68\x47\x76\xb1\x7a\x80\x65\x3f\x89\x5e\xb1\x5b\x0a\xb4\xdb\x16\xdd\x9e\xd2\x7f\xbc\x1f\x28\xf0"
+ "\xff\x3e\x1b\x79\xbe\x07\x89\x2d\xea\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82";
+
+/* Small Apple JPEG image */
+unsigned char
+jpeg_sm[] =
+ "\xff\xd8\xff\xe0\x00\x10\x4a\x46\x49\x46\x00\x01\x01\x01\x00\x48\x00\x48\x00\x00\xff\xe2\x0c\x58"
+ "\x49\x43\x43\x5f\x50\x52\x4f\x46\x49\x4c\x45\x00\x01\x01\x00\x00\x0c\x48\x4c\x69\x6e\x6f\x02\x10"
+ "\x00\x00\x6d\x6e\x74\x72\x52\x47\x42\x20\x58\x59\x5a\x20\x07\xce\x00\x02\x00\x09\x00\x06\x00\x31"
+ "\x00\x00\x61\x63\x73\x70\x4d\x53\x46\x54\x00\x00\x00\x00\x49\x45\x43\x20\x73\x52\x47\x42\x00\x00"
+ "\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\xf6\xd6\x00\x01\x00\x00\x00\x00\xd3\x2d\x48\x50"
+ "\x20\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
+ "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
+ "\x00\x11\x63\x70\x72\x74\x00\x00\x01\x50\x00\x00\x00\x33\x64\x65\x73\x63\x00\x00\x01\x84\x00\x00"
+ "\x00\x6c\x77\x74\x70\x74\x00\x00\x01\xf0\x00\x00\x00\x14\x62\x6b\x70\x74\x00\x00\x02\x04\x00\x00"
+ "\x00\x14\x72\x58\x59\x5a\x00\x00\x02\x18\x00\x00\x00\x14\x67\x58\x59\x5a\x00\x00\x02\x2c\x00\x00"
+ "\x00\x14\x62\x58\x59\x5a\x00\x00\x02\x40\x00\x00\x00\x14\x64\x6d\x6e\x64\x00\x00\x02\x54\x00\x00"
+ "\x00\x70\x64\x6d\x64\x64\x00\x00\x02\xc4\x00\x00\x00\x88\x76\x75\x65\x64\x00\x00\x03\x4c\x00\x00"
+ "\x00\x86\x76\x69\x65\x77\x00\x00\x03\xd4\x00\x00\x00\x24\x6c\x75\x6d\x69\x00\x00\x03\xf8\x00\x00"
+ "\x00\x14\x6d\x65\x61\x73\x00\x00\x04\x0c\x00\x00\x00\x24\x74\x65\x63\x68\x00\x00\x04\x30\x00\x00"
+ "\x00\x0c\x72\x54\x52\x43\x00\x00\x04\x3c\x00\x00\x08\x0c\x67\x54\x52\x43\x00\x00\x04\x3c\x00\x00"
+ "\x08\x0c\x62\x54\x52\x43\x00\x00\x04\x3c\x00\x00\x08\x0c\x74\x65\x78\x74\x00\x00\x00\x00\x43\x6f"
+ "\x70\x79\x72\x69\x67\x68\x74\x20\x28\x63\x29\x20\x31\x39\x39\x38\x20\x48\x65\x77\x6c\x65\x74\x74"
+ "\x2d\x50\x61\x63\x6b\x61\x72\x64\x20\x43\x6f\x6d\x70\x61\x6e\x79\x00\x00\x64\x65\x73\x63\x00\x00"
+ "\x00\x00\x00\x00\x00\x12\x73\x52\x47\x42\x20\x49\x45\x43\x36\x31\x39\x36\x36\x2d\x32\x2e\x31\x00"
+ "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x12\x73\x52\x47\x42\x20\x49\x45\x43\x36\x31\x39\x36\x36"
+ "\x2d\x32\x2e\x31\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
+ "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
+ "\x00\x00\x00\x00\x00\x00\x58\x59\x5a\x20\x00\x00\x00\x00\x00\x00\xf3\x51\x00\x01\x00\x00\x00\x01"
+ "\x16\xcc\x58\x59\x5a\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x58\x59"
+ "\x5a\x20\x00\x00\x00\x00\x00\x00\x6f\xa2\x00\x00\x38\xf5\x00\x00\x03\x90\x58\x59\x5a\x20\x00\x00"
+ "\x00\x00\x00\x00\x62\x99\x00\x00\xb7\x85\x00\x00\x18\xda\x58\x59\x5a\x20\x00\x00\x00\x00\x00\x00"
+ "\x24\xa0\x00\x00\x0f\x84\x00\x00\xb6\xcf\x64\x65\x73\x63\x00\x00\x00\x00\x00\x00\x00\x16\x49\x45"
+ "\x43\x20\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x65\x63\x2e\x63\x68\x00\x00\x00\x00\x00"
+ "\x00\x00\x00\x00\x00\x00\x16\x49\x45\x43\x20\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x65"
+ "\x63\x2e\x63\x68\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
+ "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
+ "\x00\x00\x64\x65\x73\x63\x00\x00\x00\x00\x00\x00\x00\x2e\x49\x45\x43\x20\x36\x31\x39\x36\x36\x2d"
+ "\x32\x2e\x31\x20\x44\x65\x66\x61\x75\x6c\x74\x20\x52\x47\x42\x20\x63\x6f\x6c\x6f\x75\x72\x20\x73"
+ "\x70\x61\x63\x65\x20\x2d\x20\x73\x52\x47\x42\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x2e\x49"
+ "\x45\x43\x20\x36\x31\x39\x36\x36\x2d\x32\x2e\x31\x20\x44\x65\x66\x61\x75\x6c\x74\x20\x52\x47\x42"
+ "\x20\x63\x6f\x6c\x6f\x75\x72\x20\x73\x70\x61\x63\x65\x20\x2d\x20\x73\x52\x47\x42\x00\x00\x00\x00"
+ "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x65\x73\x63\x00\x00"
+ "\x00\x00\x00\x00\x00\x2c\x52\x65\x66\x65\x72\x65\x6e\x63\x65\x20\x56\x69\x65\x77\x69\x6e\x67\x20"
+ "\x43\x6f\x6e\x64\x69\x74\x69\x6f\x6e\x20\x69\x6e\x20\x49\x45\x43\x36\x31\x39\x36\x36\x2d\x32\x2e"
+ "\x31\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x2c\x52\x65\x66\x65\x72\x65\x6e\x63\x65\x20\x56"
+ "\x69\x65\x77\x69\x6e\x67\x20\x43\x6f\x6e\x64\x69\x74\x69\x6f\x6e\x20\x69\x6e\x20\x49\x45\x43\x36"
+ "\x31\x39\x36\x36\x2d\x32\x2e\x31\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
+ "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x76\x69\x65\x77\x00\x00\x00\x00\x00\x13\xa4\xfe\x00\x14"
+ "\x5f\x2e\x00\x10\xcf\x14\x00\x03\xed\xcc\x00\x04\x13\x0b\x00\x03\x5c\x9e\x00\x00\x00\x01\x58\x59"
+ "\x5a\x20\x00\x00\x00\x00\x00\x4c\x09\x56\x00\x50\x00\x00\x00\x57\x1f\xe7\x6d\x65\x61\x73\x00\x00"
+ "\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
+ "\x02\x8f\x00\x00\x00\x02\x73\x69\x67\x20\x00\x00\x00\x00\x43\x52\x54\x20\x63\x75\x72\x76\x00\x00"
+ "\x00\x00\x00\x00\x04\x00\x00\x00\x00\x05\x00\x0a\x00\x0f\x00\x14\x00\x19\x00\x1e\x00\x23\x00\x28"
+ "\x00\x2d\x00\x32\x00\x37\x00\x3b\x00\x40\x00\x45\x00\x4a\x00\x4f\x00\x54\x00\x59\x00\x5e\x00\x63"
+ "\x00\x68\x00\x6d\x00\x72\x00\x77\x00\x7c\x00\x81\x00\x86\x00\x8b\x00\x90\x00\x95\x00\x9a\x00\x9f"
+ "\x00\xa4\x00\xa9\x00\xae\x00\xb2\x00\xb7\x00\xbc\x00\xc1\x00\xc6\x00\xcb\x00\xd0\x00\xd5\x00\xdb"
+ "\x00\xe0\x00\xe5\x00\xeb\x00\xf0\x00\xf6\x00\xfb\x01\x01\x01\x07\x01\x0d\x01\x13\x01\x19\x01\x1f"
+ "\x01\x25\x01\x2b\x01\x32\x01\x38\x01\x3e\x01\x45\x01\x4c\x01\x52\x01\x59\x01\x60\x01\x67\x01\x6e"
+ "\x01\x75\x01\x7c\x01\x83\x01\x8b\x01\x92\x01\x9a\x01\xa1\x01\xa9\x01\xb1\x01\xb9\x01\xc1\x01\xc9"
+ "\x01\xd1\x01\xd9\x01\xe1\x01\xe9\x01\xf2\x01\xfa\x02\x03\x02\x0c\x02\x14\x02\x1d\x02\x26\x02\x2f"
+ "\x02\x38\x02\x41\x02\x4b\x02\x54\x02\x5d\x02\x67\x02\x71\x02\x7a\x02\x84\x02\x8e\x02\x98\x02\xa2"
+ "\x02\xac\x02\xb6\x02\xc1\x02\xcb\x02\xd5\x02\xe0\x02\xeb\x02\xf5\x03\x00\x03\x0b\x03\x16\x03\x21"
+ "\x03\x2d\x03\x38\x03\x43\x03\x4f\x03\x5a\x03\x66\x03\x72\x03\x7e\x03\x8a\x03\x96\x03\xa2\x03\xae"
+ "\x03\xba\x03\xc7\x03\xd3\x03\xe0\x03\xec\x03\xf9\x04\x06\x04\x13\x04\x20\x04\x2d\x04\x3b\x04\x48"
+ "\x04\x55\x04\x63\x04\x71\x04\x7e\x04\x8c\x04\x9a\x04\xa8\x04\xb6\x04\xc4\x04\xd3\x04\xe1\x04\xf0"
+ "\x04\xfe\x05\x0d\x05\x1c\x05\x2b\x05\x3a\x05\x49\x05\x58\x05\x67\x05\x77\x05\x86\x05\x96\x05\xa6"
+ "\x05\xb5\x05\xc5\x05\xd5\x05\xe5\x05\xf6\x06\x06\x06\x16\x06\x27\x06\x37\x06\x48\x06\x59\x06\x6a"
+ "\x06\x7b\x06\x8c\x06\x9d\x06\xaf\x06\xc0\x06\xd1\x06\xe3\x06\xf5\x07\x07\x07\x19\x07\x2b\x07\x3d"
+ "\x07\x4f\x07\x61\x07\x74\x07\x86\x07\x99\x07\xac\x07\xbf\x07\xd2\x07\xe5\x07\xf8\x08\x0b\x08\x1f"
+ "\x08\x32\x08\x46\x08\x5a\x08\x6e\x08\x82\x08\x96\x08\xaa\x08\xbe\x08\xd2\x08\xe7\x08\xfb\x09\x10"
+ "\x09\x25\x09\x3a\x09\x4f\x09\x64\x09\x79\x09\x8f\x09\xa4\x09\xba\x09\xcf\x09\xe5\x09\xfb\x0a\x11"
+ "\x0a\x27\x0a\x3d\x0a\x54\x0a\x6a\x0a\x81\x0a\x98\x0a\xae\x0a\xc5\x0a\xdc\x0a\xf3\x0b\x0b\x0b\x22"
+ "\x0b\x39\x0b\x51\x0b\x69\x0b\x80\x0b\x98\x0b\xb0\x0b\xc8\x0b\xe1\x0b\xf9\x0c\x12\x0c\x2a\x0c\x43"
+ "\x0c\x5c\x0c\x75\x0c\x8e\x0c\xa7\x0c\xc0\x0c\xd9\x0c\xf3\x0d\x0d\x0d\x26\x0d\x40\x0d\x5a\x0d\x74"
+ "\x0d\x8e\x0d\xa9\x0d\xc3\x0d\xde\x0d\xf8\x0e\x13\x0e\x2e\x0e\x49\x0e\x64\x0e\x7f\x0e\x9b\x0e\xb6"
+ "\x0e\xd2\x0e\xee\x0f\x09\x0f\x25\x0f\x41\x0f\x5e\x0f\x7a\x0f\x96\x0f\xb3\x0f\xcf\x0f\xec\x10\x09"
+ "\x10\x26\x10\x43\x10\x61\x10\x7e\x10\x9b\x10\xb9\x10\xd7\x10\xf5\x11\x13\x11\x31\x11\x4f\x11\x6d"
+ "\x11\x8c\x11\xaa\x11\xc9\x11\xe8\x12\x07\x12\x26\x12\x45\x12\x64\x12\x84\x12\xa3\x12\xc3\x12\xe3"
+ "\x13\x03\x13\x23\x13\x43\x13\x63\x13\x83\x13\xa4\x13\xc5\x13\xe5\x14\x06\x14\x27\x14\x49\x14\x6a"
+ "\x14\x8b\x14\xad\x14\xce\x14\xf0\x15\x12\x15\x34\x15\x56\x15\x78\x15\x9b\x15\xbd\x15\xe0\x16\x03"
+ "\x16\x26\x16\x49\x16\x6c\x16\x8f\x16\xb2\x16\xd6\x16\xfa\x17\x1d\x17\x41\x17\x65\x17\x89\x17\xae"
+ "\x17\xd2\x17\xf7\x18\x1b\x18\x40\x18\x65\x18\x8a\x18\xaf\x18\xd5\x18\xfa\x19\x20\x19\x45\x19\x6b"
+ "\x19\x91\x19\xb7\x19\xdd\x1a\x04\x1a\x2a\x1a\x51\x1a\x77\x1a\x9e\x1a\xc5\x1a\xec\x1b\x14\x1b\x3b"
+ "\x1b\x63\x1b\x8a\x1b\xb2\x1b\xda\x1c\x02\x1c\x2a\x1c\x52\x1c\x7b\x1c\xa3\x1c\xcc\x1c\xf5\x1d\x1e"
+ "\x1d\x47\x1d\x70\x1d\x99\x1d\xc3\x1d\xec\x1e\x16\x1e\x40\x1e\x6a\x1e\x94\x1e\xbe\x1e\xe9\x1f\x13"
+ "\x1f\x3e\x1f\x69\x1f\x94\x1f\xbf\x1f\xea\x20\x15\x20\x41\x20\x6c\x20\x98\x20\xc4\x20\xf0\x21\x1c"
+ "\x21\x48\x21\x75\x21\xa1\x21\xce\x21\xfb\x22\x27\x22\x55\x22\x82\x22\xaf\x22\xdd\x23\x0a\x23\x38"
+ "\x23\x66\x23\x94\x23\xc2\x23\xf0\x24\x1f\x24\x4d\x24\x7c\x24\xab\x24\xda\x25\x09\x25\x38\x25\x68"
+ "\x25\x97\x25\xc7\x25\xf7\x26\x27\x26\x57\x26\x87\x26\xb7\x26\xe8\x27\x18\x27\x49\x27\x7a\x27\xab"
+ "\x27\xdc\x28\x0d\x28\x3f\x28\x71\x28\xa2\x28\xd4\x29\x06\x29\x38\x29\x6b\x29\x9d\x29\xd0\x2a\x02"
+ "\x2a\x35\x2a\x68\x2a\x9b\x2a\xcf\x2b\x02\x2b\x36\x2b\x69\x2b\x9d\x2b\xd1\x2c\x05\x2c\x39\x2c\x6e"
+ "\x2c\xa2\x2c\xd7\x2d\x0c\x2d\x41\x2d\x76\x2d\xab\x2d\xe1\x2e\x16\x2e\x4c\x2e\x82\x2e\xb7\x2e\xee"
+ "\x2f\x24\x2f\x5a\x2f\x91\x2f\xc7\x2f\xfe\x30\x35\x30\x6c\x30\xa4\x30\xdb\x31\x12\x31\x4a\x31\x82"
+ "\x31\xba\x31\xf2\x32\x2a\x32\x63\x32\x9b\x32\xd4\x33\x0d\x33\x46\x33\x7f\x33\xb8\x33\xf1\x34\x2b"
+ "\x34\x65\x34\x9e\x34\xd8\x35\x13\x35\x4d\x35\x87\x35\xc2\x35\xfd\x36\x37\x36\x72\x36\xae\x36\xe9"
+ "\x37\x24\x37\x60\x37\x9c\x37\xd7\x38\x14\x38\x50\x38\x8c\x38\xc8\x39\x05\x39\x42\x39\x7f\x39\xbc"
+ "\x39\xf9\x3a\x36\x3a\x74\x3a\xb2\x3a\xef\x3b\x2d\x3b\x6b\x3b\xaa\x3b\xe8\x3c\x27\x3c\x65\x3c\xa4"
+ "\x3c\xe3\x3d\x22\x3d\x61\x3d\xa1\x3d\xe0\x3e\x20\x3e\x60\x3e\xa0\x3e\xe0\x3f\x21\x3f\x61\x3f\xa2"
+ "\x3f\xe2\x40\x23\x40\x64\x40\xa6\x40\xe7\x41\x29\x41\x6a\x41\xac\x41\xee\x42\x30\x42\x72\x42\xb5"
+ "\x42\xf7\x43\x3a\x43\x7d\x43\xc0\x44\x03\x44\x47\x44\x8a\x44\xce\x45\x12\x45\x55\x45\x9a\x45\xde"
+ "\x46\x22\x46\x67\x46\xab\x46\xf0\x47\x35\x47\x7b\x47\xc0\x48\x05\x48\x4b\x48\x91\x48\xd7\x49\x1d"
+ "\x49\x63\x49\xa9\x49\xf0\x4a\x37\x4a\x7d\x4a\xc4\x4b\x0c\x4b\x53\x4b\x9a\x4b\xe2\x4c\x2a\x4c\x72"
+ "\x4c\xba\x4d\x02\x4d\x4a\x4d\x93\x4d\xdc\x4e\x25\x4e\x6e\x4e\xb7\x4f\x00\x4f\x49\x4f\x93\x4f\xdd"
+ "\x50\x27\x50\x71\x50\xbb\x51\x06\x51\x50\x51\x9b\x51\xe6\x52\x31\x52\x7c\x52\xc7\x53\x13\x53\x5f"
+ "\x53\xaa\x53\xf6\x54\x42\x54\x8f\x54\xdb\x55\x28\x55\x75\x55\xc2\x56\x0f\x56\x5c\x56\xa9\x56\xf7"
+ "\x57\x44\x57\x92\x57\xe0\x58\x2f\x58\x7d\x58\xcb\x59\x1a\x59\x69\x59\xb8\x5a\x07\x5a\x56\x5a\xa6"
+ "\x5a\xf5\x5b\x45\x5b\x95\x5b\xe5\x5c\x35\x5c\x86\x5c\xd6\x5d\x27\x5d\x78\x5d\xc9\x5e\x1a\x5e\x6c"
+ "\x5e\xbd\x5f\x0f\x5f\x61\x5f\xb3\x60\x05\x60\x57\x60\xaa\x60\xfc\x61\x4f\x61\xa2\x61\xf5\x62\x49"
+ "\x62\x9c\x62\xf0\x63\x43\x63\x97\x63\xeb\x64\x40\x64\x94\x64\xe9\x65\x3d\x65\x92\x65\xe7\x66\x3d"
+ "\x66\x92\x66\xe8\x67\x3d\x67\x93\x67\xe9\x68\x3f\x68\x96\x68\xec\x69\x43\x69\x9a\x69\xf1\x6a\x48"
+ "\x6a\x9f\x6a\xf7\x6b\x4f\x6b\xa7\x6b\xff\x6c\x57\x6c\xaf\x6d\x08\x6d\x60\x6d\xb9\x6e\x12\x6e\x6b"
+ "\x6e\xc4\x6f\x1e\x6f\x78\x6f\xd1\x70\x2b\x70\x86\x70\xe0\x71\x3a\x71\x95\x71\xf0\x72\x4b\x72\xa6"
+ "\x73\x01\x73\x5d\x73\xb8\x74\x14\x74\x70\x74\xcc\x75\x28\x75\x85\x75\xe1\x76\x3e\x76\x9b\x76\xf8"
+ "\x77\x56\x77\xb3\x78\x11\x78\x6e\x78\xcc\x79\x2a\x79\x89\x79\xe7\x7a\x46\x7a\xa5\x7b\x04\x7b\x63"
+ "\x7b\xc2\x7c\x21\x7c\x81\x7c\xe1\x7d\x41\x7d\xa1\x7e\x01\x7e\x62\x7e\xc2\x7f\x23\x7f\x84\x7f\xe5"
+ "\x80\x47\x80\xa8\x81\x0a\x81\x6b\x81\xcd\x82\x30\x82\x92\x82\xf4\x83\x57\x83\xba\x84\x1d\x84\x80"
+ "\x84\xe3\x85\x47\x85\xab\x86\x0e\x86\x72\x86\xd7\x87\x3b\x87\x9f\x88\x04\x88\x69\x88\xce\x89\x33"
+ "\x89\x99\x89\xfe\x8a\x64\x8a\xca\x8b\x30\x8b\x96\x8b\xfc\x8c\x63\x8c\xca\x8d\x31\x8d\x98\x8d\xff"
+ "\x8e\x66\x8e\xce\x8f\x36\x8f\x9e\x90\x06\x90\x6e\x90\xd6\x91\x3f\x91\xa8\x92\x11\x92\x7a\x92\xe3"
+ "\x93\x4d\x93\xb6\x94\x20\x94\x8a\x94\xf4\x95\x5f\x95\xc9\x96\x34\x96\x9f\x97\x0a\x97\x75\x97\xe0"
+ "\x98\x4c\x98\xb8\x99\x24\x99\x90\x99\xfc\x9a\x68\x9a\xd5\x9b\x42\x9b\xaf\x9c\x1c\x9c\x89\x9c\xf7"
+ "\x9d\x64\x9d\xd2\x9e\x40\x9e\xae\x9f\x1d\x9f\x8b\x9f\xfa\xa0\x69\xa0\xd8\xa1\x47\xa1\xb6\xa2\x26"
+ "\xa2\x96\xa3\x06\xa3\x76\xa3\xe6\xa4\x56\xa4\xc7\xa5\x38\xa5\xa9\xa6\x1a\xa6\x8b\xa6\xfd\xa7\x6e"
+ "\xa7\xe0\xa8\x52\xa8\xc4\xa9\x37\xa9\xa9\xaa\x1c\xaa\x8f\xab\x02\xab\x75\xab\xe9\xac\x5c\xac\xd0"
+ "\xad\x44\xad\xb8\xae\x2d\xae\xa1\xaf\x16\xaf\x8b\xb0\x00\xb0\x75\xb0\xea\xb1\x60\xb1\xd6\xb2\x4b"
+ "\xb2\xc2\xb3\x38\xb3\xae\xb4\x25\xb4\x9c\xb5\x13\xb5\x8a\xb6\x01\xb6\x79\xb6\xf0\xb7\x68\xb7\xe0"
+ "\xb8\x59\xb8\xd1\xb9\x4a\xb9\xc2\xba\x3b\xba\xb5\xbb\x2e\xbb\xa7\xbc\x21\xbc\x9b\xbd\x15\xbd\x8f"
+ "\xbe\x0a\xbe\x84\xbe\xff\xbf\x7a\xbf\xf5\xc0\x70\xc0\xec\xc1\x67\xc1\xe3\xc2\x5f\xc2\xdb\xc3\x58"
+ "\xc3\xd4\xc4\x51\xc4\xce\xc5\x4b\xc5\xc8\xc6\x46\xc6\xc3\xc7\x41\xc7\xbf\xc8\x3d\xc8\xbc\xc9\x3a"
+ "\xc9\xb9\xca\x38\xca\xb7\xcb\x36\xcb\xb6\xcc\x35\xcc\xb5\xcd\x35\xcd\xb5\xce\x36\xce\xb6\xcf\x37"
+ "\xcf\xb8\xd0\x39\xd0\xba\xd1\x3c\xd1\xbe\xd2\x3f\xd2\xc1\xd3\x44\xd3\xc6\xd4\x49\xd4\xcb\xd5\x4e"
+ "\xd5\xd1\xd6\x55\xd6\xd8\xd7\x5c\xd7\xe0\xd8\x64\xd8\xe8\xd9\x6c\xd9\xf1\xda\x76\xda\xfb\xdb\x80"
+ "\xdc\x05\xdc\x8a\xdd\x10\xdd\x96\xde\x1c\xde\xa2\xdf\x29\xdf\xaf\xe0\x36\xe0\xbd\xe1\x44\xe1\xcc"
+ "\xe2\x53\xe2\xdb\xe3\x63\xe3\xeb\xe4\x73\xe4\xfc\xe5\x84\xe6\x0d\xe6\x96\xe7\x1f\xe7\xa9\xe8\x32"
+ "\xe8\xbc\xe9\x46\xe9\xd0\xea\x5b\xea\xe5\xeb\x70\xeb\xfb\xec\x86\xed\x11\xed\x9c\xee\x28\xee\xb4"
+ "\xef\x40\xef\xcc\xf0\x58\xf0\xe5\xf1\x72\xf1\xff\xf2\x8c\xf3\x19\xf3\xa7\xf4\x34\xf4\xc2\xf5\x50"
+ "\xf5\xde\xf6\x6d\xf6\xfb\xf7\x8a\xf8\x19\xf8\xa8\xf9\x38\xf9\xc7\xfa\x57\xfa\xe7\xfb\x77\xfc\x07"
+ "\xfc\x98\xfd\x29\xfd\xba\xfe\x4b\xfe\xdc\xff\x6d\xff\xff\xff\xe1\x00\x74\x45\x78\x69\x66\x00\x00"
+ "\x4d\x4d\x00\x2a\x00\x00\x00\x08\x00\x04\x01\x1a\x00\x05\x00\x00\x00\x01\x00\x00\x00\x3e\x01\x1b"
+ "\x00\x05\x00\x00\x00\x01\x00\x00\x00\x46\x01\x28\x00\x03\x00\x00\x00\x01\x00\x02\x00\x00\x87\x69"
+ "\x00\x04\x00\x00\x00\x01\x00\x00\x00\x4e\x00\x00\x00\x00\x00\x00\x00\x48\x00\x00\x00\x01\x00\x00"
+ "\x00\x48\x00\x00\x00\x01\x00\x02\xa0\x02\x00\x04\x00\x00\x00\x01\x00\x00\x00\x30\xa0\x03\x00\x04"
+ "\x00\x00\x00\x01\x00\x00\x00\x30\x00\x00\x00\x00\xff\xdb\x00\x43\x00\x02\x02\x02\x02\x02\x01\x02"
+ "\x02\x02\x02\x02\x02\x02\x03\x03\x06\x04\x03\x03\x03\x03\x07\x05\x05\x04\x06\x08\x07\x08\x08\x08"
+ "\x07\x08\x08\x09\x0a\x0d\x0b\x09\x09\x0c\x0a\x08\x08\x0b\x0f\x0b\x0c\x0d\x0e\x0e\x0e\x0e\x09\x0b"
+ "\x10\x11\x0f\x0e\x11\x0d\x0e\x0e\x0e\xff\xdb\x00\x43\x01\x02\x02\x02\x03\x03\x03\x06\x04\x04\x06"
+ "\x0e\x09\x08\x09\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e"
+ "\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e"
+ "\x0e\x0e\x0e\x0e\x0e\x0e\xff\xc0\x00\x11\x08\x00\x30\x00\x30\x03\x01\x22\x00\x02\x11\x01\x03\x11"
+ "\x01\xff\xc4\x00\x1f\x00\x00\x01\x05\x01\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01"
+ "\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\xff\xc4\x00\xb5\x10\x00\x02\x01\x03\x03\x02\x04\x03\x05"
+ "\x05\x04\x04\x00\x00\x01\x7d\x01\x02\x03\x00\x04\x11\x05\x12\x21\x31\x41\x06\x13\x51\x61\x07\x22"
+ "\x71\x14\x32\x81\x91\xa1\x08\x23\x42\xb1\xc1\x15\x52\xd1\xf0\x24\x33\x62\x72\x82\x09\x0a\x16\x17"
+ "\x18\x19\x1a\x25\x26\x27\x28\x29\x2a\x34\x35\x36\x37\x38\x39\x3a\x43\x44\x45\x46\x47\x48\x49\x4a"
+ "\x53\x54\x55\x56\x57\x58\x59\x5a\x63\x64\x65\x66\x67\x68\x69\x6a\x73\x74\x75\x76\x77\x78\x79\x7a"
+ "\x83\x84\x85\x86\x87\x88\x89\x8a\x92\x93\x94\x95\x96\x97\x98\x99\x9a\xa2\xa3\xa4\xa5\xa6\xa7\xa8"
+ "\xa9\xaa\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xd2\xd3\xd4\xd5"
+ "\xd6\xd7\xd8\xd9\xda\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9"
+ "\xfa\xff\xc4\x00\x1f\x01\x00\x03\x01\x01\x01\x01\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x01"
+ "\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\xff\xc4\x00\xb5\x11\x00\x02\x01\x02\x04\x04\x03\x04\x07"
+ "\x05\x04\x04\x00\x01\x02\x77\x00\x01\x02\x03\x11\x04\x05\x21\x31\x06\x12\x41\x51\x07\x61\x71\x13"
+ "\x22\x32\x81\x08\x14\x42\x91\xa1\xb1\xc1\x09\x23\x33\x52\xf0\x15\x62\x72\xd1\x0a\x16\x24\x34\xe1"
+ "\x25\xf1\x17\x18\x19\x1a\x26\x27\x28\x29\x2a\x35\x36\x37\x38\x39\x3a\x43\x44\x45\x46\x47\x48\x49"
+ "\x4a\x53\x54\x55\x56\x57\x58\x59\x5a\x63\x64\x65\x66\x67\x68\x69\x6a\x73\x74\x75\x76\x77\x78\x79"
+ "\x7a\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x92\x93\x94\x95\x96\x97\x98\x99\x9a\xa2\xa3\xa4\xa5\xa6"
+ "\xa7\xa8\xa9\xaa\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xd2\xd3"
+ "\xd4\xd5\xd6\xd7\xd8\xd9\xda\xe2\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9"
+ "\xfa\xff\xda\x00\x0c\x03\x01\x00\x02\x11\x03\x11\x00\x3f\x00\xfd\xfc\xa2\x8a\xe4\xf5\x4f\x16\xd8"
+ "\xd8\x5c\x34\x11\x15\x9e\x55\x3c\xe0\xf1\x40\x1d\x65\x72\xda\xa6\xbb\x05\xac\x13\x4f\x24\xa6\x2b"
+ "\x48\x10\xc9\x23\x0c\x8f\x90\x0c\x93\xc7\x3d\x3a\x01\xed\xeb\x81\x8e\x3c\x69\x6f\x71\x04\xf0\x49"
+ "\xfb\x82\xf1\x95\x49\x00\xfb\xa4\x8c\x67\x19\x3d\x3a\xf5\x15\xc6\xdb\xcd\x1c\x77\xd6\xd3\xeb\x57"
+ "\xf6\xfa\xa9\xb7\x91\x5e\x2b\x4b\x48\x8a\x41\xbd\x79\x57\x72\xcc\x4c\x84\x10\x08\x19\x55\x04\x03"
+ "\x82\x40\x21\x5c\x69\x1e\xc9\xa5\x7d\xa7\xfe\x11\x9d\x3c\xde\xef\x17\x86\xd9\x0c\xe1\xfa\x87\x2a"
+ "\x37\x03\xf8\xe6\xaf\xd7\x0f\x65\xe3\x5b\x39\xee\x84\x77\x0a\x23\xc9\xc2\xb7\x4f\xea\x7f\x9d\x76"
+ "\xb1\xc9\x1c\xd0\x2c\xb1\x3a\xbc\x6c\x32\xac\x3a\x1a\x62\x39\x8f\x19\xeb\x5f\xd8\x5e\x00\xbb\xbd"
+ "\x04\x89\x19\x96\x24\xc7\xab\x1c\x13\xf9\x64\xd7\xcc\xef\xae\x99\x25\x67\x79\x77\x3b\x1c\x93\x9e"
+ "\xa6\xbd\x9b\xe3\x6b\x4b\x0f\xc0\x7b\x9b\xc8\xc1\x61\x6f\x7b\x03\x49\x8e\xca\xcf\xe5\xe7\xf3\x71"
+ "\x5f\x18\xff\x00\xc2\x40\x3f\xbc\x68\x1a\x67\xb3\x7f\x6d\x0f\xf9\xe9\xfa\xd1\xfd\xb4\x3f\xe7\xa7"
+ "\xeb\x5e\x33\xff\x00\x09\x00\xfe\xf1\xa3\xfe\x12\x01\xfd\xe3\x40\xf9\x8f\xa0\x3c\x3b\x6f\x3f\x8a"
+ "\xfc\x6b\x65\xa2\x45\x3c\xd0\x5b\x48\x1a\x5b\xd9\xa2\x6c\x3a\x40\x98\xdc\x14\x8e\x8c\xcc\xc8\x99"
+ "\xea\x03\x12\x39\x02\xbe\xa1\xb3\xb3\xb5\xd3\xf4\xab\x7b\x1b\x1b\x78\xad\x2c\xe0\x8c\x24\x30\xc4"
+ "\xbb\x55\x14\x74\x00\x57\xc7\x7f\x05\x7c\x57\x67\x0f\xc6\x58\xed\xae\xa7\x48\xbe\xd7\x6b\x24\x11"
+ "\x17\x38\x05\x89\x46\x03\x3f\xf0\x0a\xfb\x36\x81\x37\x73\x9e\xf1\x66\x81\x0f\x8a\xbe\x1a\x6b\x9e"
+ "\x1d\x9d\xfc\xa4\xd4\x2c\xde\x05\x97\xbc\x4c\x47\xca\xe3\xdd\x5b\x0d\xf8\x57\xe4\x96\xa7\x79\xa8"
+ "\x68\xfe\x22\xbf\xd2\x75\x48\x9a\xcf\x53\xb2\xb8\x7b\x7b\xb8\x0f\xfc\xb3\x91\x09\x56\x1e\xe3\x23"
+ "\x83\xdc\x60\xf4\x35\xfb\x1d\x5f\x20\x7e\xd1\xdf\x00\x2f\xfc\x6f\x70\x7c\x6f\xe0\x58\x62\x7f\x15"
+ "\x24\x61\x35\x1d\x38\xc8\x23\x1a\x8a\x28\xc2\xba\x31\xc2\x89\x94\x0d\xbf\x31\x01\x94\x01\x90\x54"
+ "\x64\x11\xf1\x17\xf6\xf1\xff\x00\x9e\x9f\xad\x1f\xdb\xc7\xfe\x7a\x7e\xb5\xd5\xf8\x5b\xf6\x71\xf8"
+ "\xd3\xe2\x7d\x49\xa2\x7f\x0c\x7f\xc2\x35\x6c\x8d\x87\xbb\xd7\x2e\x05\xba\x7f\xc0\x55\x77\xc8\xc7"
+ "\xe8\x98\xf7\xad\xaf\x15\xfe\xcb\x5f\x18\xfc\x37\x65\xf6\xab\x0b\x1d\x2b\xc5\xd6\xe0\x65\xc6\x8f"
+ "\x79\x99\x93\xeb\x1c\xab\x19\x3f\xf0\x02\xc7\xda\x80\x3c\xf1\x3c\x45\x24\x33\x2c\xc9\x70\x61\x78"
+ "\xce\xe5\x90\x36\xd2\xa4\x73\x9c\xf6\xc7\xad\x7e\xa5\xfc\x1d\x97\xc5\x37\x5f\xb3\xd7\x87\xef\xfc"
+ "\x5f\x75\x2d\xce\xad\x79\x17\xda\x10\x4b\x18\x57\x8a\x06\xff\x00\x52\xad\xdc\xb6\xcd\xac\x73\xc8"
+ "\x2c\x47\x6a\xf8\xbb\xe0\x7f\xec\xcd\xe2\x8d\x5b\xc6\xb6\xbe\x21\xf8\x9b\xa4\xcb\xa1\xf8\x72\xca"
+ "\x41\x24\x7a\x45\xd1\x53\x3e\xa3\x20\x39\x51\x22\x82\x76\x42\x08\xc9\x0d\xf3\x3f\xdd\xc0\x52\x49"
+ "\xfd\x20\xe8\x30\x38\x14\x01\xff\xd9";
+
+/* Large Apple JPEG image */
+unsigned char
+jpeg_lrg[] =
+ "\xff\xd8\xff\xe0\x00\x10\x4a\x46\x49\x46\x00\x01\x01\x01\x00\x48\x00\x48\x00\x00\xff\xe2\x0c\x58"
+ "\x49\x43\x43\x5f\x50\x52\x4f\x46\x49\x4c\x45\x00\x01\x01\x00\x00\x0c\x48\x4c\x69\x6e\x6f\x02\x10"
+ "\x00\x00\x6d\x6e\x74\x72\x52\x47\x42\x20\x58\x59\x5a\x20\x07\xce\x00\x02\x00\x09\x00\x06\x00\x31"
+ "\x00\x00\x61\x63\x73\x70\x4d\x53\x46\x54\x00\x00\x00\x00\x49\x45\x43\x20\x73\x52\x47\x42\x00\x00"
+ "\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\xf6\xd6\x00\x01\x00\x00\x00\x00\xd3\x2d\x48\x50"
+ "\x20\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
+ "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
+ "\x00\x11\x63\x70\x72\x74\x00\x00\x01\x50\x00\x00\x00\x33\x64\x65\x73\x63\x00\x00\x01\x84\x00\x00"
+ "\x00\x6c\x77\x74\x70\x74\x00\x00\x01\xf0\x00\x00\x00\x14\x62\x6b\x70\x74\x00\x00\x02\x04\x00\x00"
+ "\x00\x14\x72\x58\x59\x5a\x00\x00\x02\x18\x00\x00\x00\x14\x67\x58\x59\x5a\x00\x00\x02\x2c\x00\x00"
+ "\x00\x14\x62\x58\x59\x5a\x00\x00\x02\x40\x00\x00\x00\x14\x64\x6d\x6e\x64\x00\x00\x02\x54\x00\x00"
+ "\x00\x70\x64\x6d\x64\x64\x00\x00\x02\xc4\x00\x00\x00\x88\x76\x75\x65\x64\x00\x00\x03\x4c\x00\x00"
+ "\x00\x86\x76\x69\x65\x77\x00\x00\x03\xd4\x00\x00\x00\x24\x6c\x75\x6d\x69\x00\x00\x03\xf8\x00\x00"
+ "\x00\x14\x6d\x65\x61\x73\x00\x00\x04\x0c\x00\x00\x00\x24\x74\x65\x63\x68\x00\x00\x04\x30\x00\x00"
+ "\x00\x0c\x72\x54\x52\x43\x00\x00\x04\x3c\x00\x00\x08\x0c\x67\x54\x52\x43\x00\x00\x04\x3c\x00\x00"
+ "\x08\x0c\x62\x54\x52\x43\x00\x00\x04\x3c\x00\x00\x08\x0c\x74\x65\x78\x74\x00\x00\x00\x00\x43\x6f"
+ "\x70\x79\x72\x69\x67\x68\x74\x20\x28\x63\x29\x20\x31\x39\x39\x38\x20\x48\x65\x77\x6c\x65\x74\x74"
+ "\x2d\x50\x61\x63\x6b\x61\x72\x64\x20\x43\x6f\x6d\x70\x61\x6e\x79\x00\x00\x64\x65\x73\x63\x00\x00"
+ "\x00\x00\x00\x00\x00\x12\x73\x52\x47\x42\x20\x49\x45\x43\x36\x31\x39\x36\x36\x2d\x32\x2e\x31\x00"
+ "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x12\x73\x52\x47\x42\x20\x49\x45\x43\x36\x31\x39\x36\x36"
+ "\x2d\x32\x2e\x31\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
+ "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
+ "\x00\x00\x00\x00\x00\x00\x58\x59\x5a\x20\x00\x00\x00\x00\x00\x00\xf3\x51\x00\x01\x00\x00\x00\x01"
+ "\x16\xcc\x58\x59\x5a\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x58\x59"
+ "\x5a\x20\x00\x00\x00\x00\x00\x00\x6f\xa2\x00\x00\x38\xf5\x00\x00\x03\x90\x58\x59\x5a\x20\x00\x00"
+ "\x00\x00\x00\x00\x62\x99\x00\x00\xb7\x85\x00\x00\x18\xda\x58\x59\x5a\x20\x00\x00\x00\x00\x00\x00"
+ "\x24\xa0\x00\x00\x0f\x84\x00\x00\xb6\xcf\x64\x65\x73\x63\x00\x00\x00\x00\x00\x00\x00\x16\x49\x45"
+ "\x43\x20\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x65\x63\x2e\x63\x68\x00\x00\x00\x00\x00"
+ "\x00\x00\x00\x00\x00\x00\x16\x49\x45\x43\x20\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x65"
+ "\x63\x2e\x63\x68\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
+ "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
+ "\x00\x00\x64\x65\x73\x63\x00\x00\x00\x00\x00\x00\x00\x2e\x49\x45\x43\x20\x36\x31\x39\x36\x36\x2d"
+ "\x32\x2e\x31\x20\x44\x65\x66\x61\x75\x6c\x74\x20\x52\x47\x42\x20\x63\x6f\x6c\x6f\x75\x72\x20\x73"
+ "\x70\x61\x63\x65\x20\x2d\x20\x73\x52\x47\x42\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x2e\x49"
+ "\x45\x43\x20\x36\x31\x39\x36\x36\x2d\x32\x2e\x31\x20\x44\x65\x66\x61\x75\x6c\x74\x20\x52\x47\x42"
+ "\x20\x63\x6f\x6c\x6f\x75\x72\x20\x73\x70\x61\x63\x65\x20\x2d\x20\x73\x52\x47\x42\x00\x00\x00\x00"
+ "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x65\x73\x63\x00\x00"
+ "\x00\x00\x00\x00\x00\x2c\x52\x65\x66\x65\x72\x65\x6e\x63\x65\x20\x56\x69\x65\x77\x69\x6e\x67\x20"
+ "\x43\x6f\x6e\x64\x69\x74\x69\x6f\x6e\x20\x69\x6e\x20\x49\x45\x43\x36\x31\x39\x36\x36\x2d\x32\x2e"
+ "\x31\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x2c\x52\x65\x66\x65\x72\x65\x6e\x63\x65\x20\x56"
+ "\x69\x65\x77\x69\x6e\x67\x20\x43\x6f\x6e\x64\x69\x74\x69\x6f\x6e\x20\x69\x6e\x20\x49\x45\x43\x36"
+ "\x31\x39\x36\x36\x2d\x32\x2e\x31\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
+ "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x76\x69\x65\x77\x00\x00\x00\x00\x00\x13\xa4\xfe\x00\x14"
+ "\x5f\x2e\x00\x10\xcf\x14\x00\x03\xed\xcc\x00\x04\x13\x0b\x00\x03\x5c\x9e\x00\x00\x00\x01\x58\x59"
+ "\x5a\x20\x00\x00\x00\x00\x00\x4c\x09\x56\x00\x50\x00\x00\x00\x57\x1f\xe7\x6d\x65\x61\x73\x00\x00"
+ "\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
+ "\x02\x8f\x00\x00\x00\x02\x73\x69\x67\x20\x00\x00\x00\x00\x43\x52\x54\x20\x63\x75\x72\x76\x00\x00"
+ "\x00\x00\x00\x00\x04\x00\x00\x00\x00\x05\x00\x0a\x00\x0f\x00\x14\x00\x19\x00\x1e\x00\x23\x00\x28"
+ "\x00\x2d\x00\x32\x00\x37\x00\x3b\x00\x40\x00\x45\x00\x4a\x00\x4f\x00\x54\x00\x59\x00\x5e\x00\x63"
+ "\x00\x68\x00\x6d\x00\x72\x00\x77\x00\x7c\x00\x81\x00\x86\x00\x8b\x00\x90\x00\x95\x00\x9a\x00\x9f"
+ "\x00\xa4\x00\xa9\x00\xae\x00\xb2\x00\xb7\x00\xbc\x00\xc1\x00\xc6\x00\xcb\x00\xd0\x00\xd5\x00\xdb"
+ "\x00\xe0\x00\xe5\x00\xeb\x00\xf0\x00\xf6\x00\xfb\x01\x01\x01\x07\x01\x0d\x01\x13\x01\x19\x01\x1f"
+ "\x01\x25\x01\x2b\x01\x32\x01\x38\x01\x3e\x01\x45\x01\x4c\x01\x52\x01\x59\x01\x60\x01\x67\x01\x6e"
+ "\x01\x75\x01\x7c\x01\x83\x01\x8b\x01\x92\x01\x9a\x01\xa1\x01\xa9\x01\xb1\x01\xb9\x01\xc1\x01\xc9"
+ "\x01\xd1\x01\xd9\x01\xe1\x01\xe9\x01\xf2\x01\xfa\x02\x03\x02\x0c\x02\x14\x02\x1d\x02\x26\x02\x2f"
+ "\x02\x38\x02\x41\x02\x4b\x02\x54\x02\x5d\x02\x67\x02\x71\x02\x7a\x02\x84\x02\x8e\x02\x98\x02\xa2"
+ "\x02\xac\x02\xb6\x02\xc1\x02\xcb\x02\xd5\x02\xe0\x02\xeb\x02\xf5\x03\x00\x03\x0b\x03\x16\x03\x21"
+ "\x03\x2d\x03\x38\x03\x43\x03\x4f\x03\x5a\x03\x66\x03\x72\x03\x7e\x03\x8a\x03\x96\x03\xa2\x03\xae"
+ "\x03\xba\x03\xc7\x03\xd3\x03\xe0\x03\xec\x03\xf9\x04\x06\x04\x13\x04\x20\x04\x2d\x04\x3b\x04\x48"
+ "\x04\x55\x04\x63\x04\x71\x04\x7e\x04\x8c\x04\x9a\x04\xa8\x04\xb6\x04\xc4\x04\xd3\x04\xe1\x04\xf0"
+ "\x04\xfe\x05\x0d\x05\x1c\x05\x2b\x05\x3a\x05\x49\x05\x58\x05\x67\x05\x77\x05\x86\x05\x96\x05\xa6"
+ "\x05\xb5\x05\xc5\x05\xd5\x05\xe5\x05\xf6\x06\x06\x06\x16\x06\x27\x06\x37\x06\x48\x06\x59\x06\x6a"
+ "\x06\x7b\x06\x8c\x06\x9d\x06\xaf\x06\xc0\x06\xd1\x06\xe3\x06\xf5\x07\x07\x07\x19\x07\x2b\x07\x3d"
+ "\x07\x4f\x07\x61\x07\x74\x07\x86\x07\x99\x07\xac\x07\xbf\x07\xd2\x07\xe5\x07\xf8\x08\x0b\x08\x1f"
+ "\x08\x32\x08\x46\x08\x5a\x08\x6e\x08\x82\x08\x96\x08\xaa\x08\xbe\x08\xd2\x08\xe7\x08\xfb\x09\x10"
+ "\x09\x25\x09\x3a\x09\x4f\x09\x64\x09\x79\x09\x8f\x09\xa4\x09\xba\x09\xcf\x09\xe5\x09\xfb\x0a\x11"
+ "\x0a\x27\x0a\x3d\x0a\x54\x0a\x6a\x0a\x81\x0a\x98\x0a\xae\x0a\xc5\x0a\xdc\x0a\xf3\x0b\x0b\x0b\x22"
+ "\x0b\x39\x0b\x51\x0b\x69\x0b\x80\x0b\x98\x0b\xb0\x0b\xc8\x0b\xe1\x0b\xf9\x0c\x12\x0c\x2a\x0c\x43"
+ "\x0c\x5c\x0c\x75\x0c\x8e\x0c\xa7\x0c\xc0\x0c\xd9\x0c\xf3\x0d\x0d\x0d\x26\x0d\x40\x0d\x5a\x0d\x74"
+ "\x0d\x8e\x0d\xa9\x0d\xc3\x0d\xde\x0d\xf8\x0e\x13\x0e\x2e\x0e\x49\x0e\x64\x0e\x7f\x0e\x9b\x0e\xb6"
+ "\x0e\xd2\x0e\xee\x0f\x09\x0f\x25\x0f\x41\x0f\x5e\x0f\x7a\x0f\x96\x0f\xb3\x0f\xcf\x0f\xec\x10\x09"
+ "\x10\x26\x10\x43\x10\x61\x10\x7e\x10\x9b\x10\xb9\x10\xd7\x10\xf5\x11\x13\x11\x31\x11\x4f\x11\x6d"
+ "\x11\x8c\x11\xaa\x11\xc9\x11\xe8\x12\x07\x12\x26\x12\x45\x12\x64\x12\x84\x12\xa3\x12\xc3\x12\xe3"
+ "\x13\x03\x13\x23\x13\x43\x13\x63\x13\x83\x13\xa4\x13\xc5\x13\xe5\x14\x06\x14\x27\x14\x49\x14\x6a"
+ "\x14\x8b\x14\xad\x14\xce\x14\xf0\x15\x12\x15\x34\x15\x56\x15\x78\x15\x9b\x15\xbd\x15\xe0\x16\x03"
+ "\x16\x26\x16\x49\x16\x6c\x16\x8f\x16\xb2\x16\xd6\x16\xfa\x17\x1d\x17\x41\x17\x65\x17\x89\x17\xae"
+ "\x17\xd2\x17\xf7\x18\x1b\x18\x40\x18\x65\x18\x8a\x18\xaf\x18\xd5\x18\xfa\x19\x20\x19\x45\x19\x6b"
+ "\x19\x91\x19\xb7\x19\xdd\x1a\x04\x1a\x2a\x1a\x51\x1a\x77\x1a\x9e\x1a\xc5\x1a\xec\x1b\x14\x1b\x3b"
+ "\x1b\x63\x1b\x8a\x1b\xb2\x1b\xda\x1c\x02\x1c\x2a\x1c\x52\x1c\x7b\x1c\xa3\x1c\xcc\x1c\xf5\x1d\x1e"
+ "\x1d\x47\x1d\x70\x1d\x99\x1d\xc3\x1d\xec\x1e\x16\x1e\x40\x1e\x6a\x1e\x94\x1e\xbe\x1e\xe9\x1f\x13"
+ "\x1f\x3e\x1f\x69\x1f\x94\x1f\xbf\x1f\xea\x20\x15\x20\x41\x20\x6c\x20\x98\x20\xc4\x20\xf0\x21\x1c"
+ "\x21\x48\x21\x75\x21\xa1\x21\xce\x21\xfb\x22\x27\x22\x55\x22\x82\x22\xaf\x22\xdd\x23\x0a\x23\x38"
+ "\x23\x66\x23\x94\x23\xc2\x23\xf0\x24\x1f\x24\x4d\x24\x7c\x24\xab\x24\xda\x25\x09\x25\x38\x25\x68"
+ "\x25\x97\x25\xc7\x25\xf7\x26\x27\x26\x57\x26\x87\x26\xb7\x26\xe8\x27\x18\x27\x49\x27\x7a\x27\xab"
+ "\x27\xdc\x28\x0d\x28\x3f\x28\x71\x28\xa2\x28\xd4\x29\x06\x29\x38\x29\x6b\x29\x9d\x29\xd0\x2a\x02"
+ "\x2a\x35\x2a\x68\x2a\x9b\x2a\xcf\x2b\x02\x2b\x36\x2b\x69\x2b\x9d\x2b\xd1\x2c\x05\x2c\x39\x2c\x6e"
+ "\x2c\xa2\x2c\xd7\x2d\x0c\x2d\x41\x2d\x76\x2d\xab\x2d\xe1\x2e\x16\x2e\x4c\x2e\x82\x2e\xb7\x2e\xee"
+ "\x2f\x24\x2f\x5a\x2f\x91\x2f\xc7\x2f\xfe\x30\x35\x30\x6c\x30\xa4\x30\xdb\x31\x12\x31\x4a\x31\x82"
+ "\x31\xba\x31\xf2\x32\x2a\x32\x63\x32\x9b\x32\xd4\x33\x0d\x33\x46\x33\x7f\x33\xb8\x33\xf1\x34\x2b"
+ "\x34\x65\x34\x9e\x34\xd8\x35\x13\x35\x4d\x35\x87\x35\xc2\x35\xfd\x36\x37\x36\x72\x36\xae\x36\xe9"
+ "\x37\x24\x37\x60\x37\x9c\x37\xd7\x38\x14\x38\x50\x38\x8c\x38\xc8\x39\x05\x39\x42\x39\x7f\x39\xbc"
+ "\x39\xf9\x3a\x36\x3a\x74\x3a\xb2\x3a\xef\x3b\x2d\x3b\x6b\x3b\xaa\x3b\xe8\x3c\x27\x3c\x65\x3c\xa4"
+ "\x3c\xe3\x3d\x22\x3d\x61\x3d\xa1\x3d\xe0\x3e\x20\x3e\x60\x3e\xa0\x3e\xe0\x3f\x21\x3f\x61\x3f\xa2"
+ "\x3f\xe2\x40\x23\x40\x64\x40\xa6\x40\xe7\x41\x29\x41\x6a\x41\xac\x41\xee\x42\x30\x42\x72\x42\xb5"
+ "\x42\xf7\x43\x3a\x43\x7d\x43\xc0\x44\x03\x44\x47\x44\x8a\x44\xce\x45\x12\x45\x55\x45\x9a\x45\xde"
+ "\x46\x22\x46\x67\x46\xab\x46\xf0\x47\x35\x47\x7b\x47\xc0\x48\x05\x48\x4b\x48\x91\x48\xd7\x49\x1d"
+ "\x49\x63\x49\xa9\x49\xf0\x4a\x37\x4a\x7d\x4a\xc4\x4b\x0c\x4b\x53\x4b\x9a\x4b\xe2\x4c\x2a\x4c\x72"
+ "\x4c\xba\x4d\x02\x4d\x4a\x4d\x93\x4d\xdc\x4e\x25\x4e\x6e\x4e\xb7\x4f\x00\x4f\x49\x4f\x93\x4f\xdd"
+ "\x50\x27\x50\x71\x50\xbb\x51\x06\x51\x50\x51\x9b\x51\xe6\x52\x31\x52\x7c\x52\xc7\x53\x13\x53\x5f"
+ "\x53\xaa\x53\xf6\x54\x42\x54\x8f\x54\xdb\x55\x28\x55\x75\x55\xc2\x56\x0f\x56\x5c\x56\xa9\x56\xf7"
+ "\x57\x44\x57\x92\x57\xe0\x58\x2f\x58\x7d\x58\xcb\x59\x1a\x59\x69\x59\xb8\x5a\x07\x5a\x56\x5a\xa6"
+ "\x5a\xf5\x5b\x45\x5b\x95\x5b\xe5\x5c\x35\x5c\x86\x5c\xd6\x5d\x27\x5d\x78\x5d\xc9\x5e\x1a\x5e\x6c"
+ "\x5e\xbd\x5f\x0f\x5f\x61\x5f\xb3\x60\x05\x60\x57\x60\xaa\x60\xfc\x61\x4f\x61\xa2\x61\xf5\x62\x49"
+ "\x62\x9c\x62\xf0\x63\x43\x63\x97\x63\xeb\x64\x40\x64\x94\x64\xe9\x65\x3d\x65\x92\x65\xe7\x66\x3d"
+ "\x66\x92\x66\xe8\x67\x3d\x67\x93\x67\xe9\x68\x3f\x68\x96\x68\xec\x69\x43\x69\x9a\x69\xf1\x6a\x48"
+ "\x6a\x9f\x6a\xf7\x6b\x4f\x6b\xa7\x6b\xff\x6c\x57\x6c\xaf\x6d\x08\x6d\x60\x6d\xb9\x6e\x12\x6e\x6b"
+ "\x6e\xc4\x6f\x1e\x6f\x78\x6f\xd1\x70\x2b\x70\x86\x70\xe0\x71\x3a\x71\x95\x71\xf0\x72\x4b\x72\xa6"
+ "\x73\x01\x73\x5d\x73\xb8\x74\x14\x74\x70\x74\xcc\x75\x28\x75\x85\x75\xe1\x76\x3e\x76\x9b\x76\xf8"
+ "\x77\x56\x77\xb3\x78\x11\x78\x6e\x78\xcc\x79\x2a\x79\x89\x79\xe7\x7a\x46\x7a\xa5\x7b\x04\x7b\x63"
+ "\x7b\xc2\x7c\x21\x7c\x81\x7c\xe1\x7d\x41\x7d\xa1\x7e\x01\x7e\x62\x7e\xc2\x7f\x23\x7f\x84\x7f\xe5"
+ "\x80\x47\x80\xa8\x81\x0a\x81\x6b\x81\xcd\x82\x30\x82\x92\x82\xf4\x83\x57\x83\xba\x84\x1d\x84\x80"
+ "\x84\xe3\x85\x47\x85\xab\x86\x0e\x86\x72\x86\xd7\x87\x3b\x87\x9f\x88\x04\x88\x69\x88\xce\x89\x33"
+ "\x89\x99\x89\xfe\x8a\x64\x8a\xca\x8b\x30\x8b\x96\x8b\xfc\x8c\x63\x8c\xca\x8d\x31\x8d\x98\x8d\xff"
+ "\x8e\x66\x8e\xce\x8f\x36\x8f\x9e\x90\x06\x90\x6e\x90\xd6\x91\x3f\x91\xa8\x92\x11\x92\x7a\x92\xe3"
+ "\x93\x4d\x93\xb6\x94\x20\x94\x8a\x94\xf4\x95\x5f\x95\xc9\x96\x34\x96\x9f\x97\x0a\x97\x75\x97\xe0"
+ "\x98\x4c\x98\xb8\x99\x24\x99\x90\x99\xfc\x9a\x68\x9a\xd5\x9b\x42\x9b\xaf\x9c\x1c\x9c\x89\x9c\xf7"
+ "\x9d\x64\x9d\xd2\x9e\x40\x9e\xae\x9f\x1d\x9f\x8b\x9f\xfa\xa0\x69\xa0\xd8\xa1\x47\xa1\xb6\xa2\x26"
+ "\xa2\x96\xa3\x06\xa3\x76\xa3\xe6\xa4\x56\xa4\xc7\xa5\x38\xa5\xa9\xa6\x1a\xa6\x8b\xa6\xfd\xa7\x6e"
+ "\xa7\xe0\xa8\x52\xa8\xc4\xa9\x37\xa9\xa9\xaa\x1c\xaa\x8f\xab\x02\xab\x75\xab\xe9\xac\x5c\xac\xd0"
+ "\xad\x44\xad\xb8\xae\x2d\xae\xa1\xaf\x16\xaf\x8b\xb0\x00\xb0\x75\xb0\xea\xb1\x60\xb1\xd6\xb2\x4b"
+ "\xb2\xc2\xb3\x38\xb3\xae\xb4\x25\xb4\x9c\xb5\x13\xb5\x8a\xb6\x01\xb6\x79\xb6\xf0\xb7\x68\xb7\xe0"
+ "\xb8\x59\xb8\xd1\xb9\x4a\xb9\xc2\xba\x3b\xba\xb5\xbb\x2e\xbb\xa7\xbc\x21\xbc\x9b\xbd\x15\xbd\x8f"
+ "\xbe\x0a\xbe\x84\xbe\xff\xbf\x7a\xbf\xf5\xc0\x70\xc0\xec\xc1\x67\xc1\xe3\xc2\x5f\xc2\xdb\xc3\x58"
+ "\xc3\xd4\xc4\x51\xc4\xce\xc5\x4b\xc5\xc8\xc6\x46\xc6\xc3\xc7\x41\xc7\xbf\xc8\x3d\xc8\xbc\xc9\x3a"
+ "\xc9\xb9\xca\x38\xca\xb7\xcb\x36\xcb\xb6\xcc\x35\xcc\xb5\xcd\x35\xcd\xb5\xce\x36\xce\xb6\xcf\x37"
+ "\xcf\xb8\xd0\x39\xd0\xba\xd1\x3c\xd1\xbe\xd2\x3f\xd2\xc1\xd3\x44\xd3\xc6\xd4\x49\xd4\xcb\xd5\x4e"
+ "\xd5\xd1\xd6\x55\xd6\xd8\xd7\x5c\xd7\xe0\xd8\x64\xd8\xe8\xd9\x6c\xd9\xf1\xda\x76\xda\xfb\xdb\x80"
+ "\xdc\x05\xdc\x8a\xdd\x10\xdd\x96\xde\x1c\xde\xa2\xdf\x29\xdf\xaf\xe0\x36\xe0\xbd\xe1\x44\xe1\xcc"
+ "\xe2\x53\xe2\xdb\xe3\x63\xe3\xeb\xe4\x73\xe4\xfc\xe5\x84\xe6\x0d\xe6\x96\xe7\x1f\xe7\xa9\xe8\x32"
+ "\xe8\xbc\xe9\x46\xe9\xd0\xea\x5b\xea\xe5\xeb\x70\xeb\xfb\xec\x86\xed\x11\xed\x9c\xee\x28\xee\xb4"
+ "\xef\x40\xef\xcc\xf0\x58\xf0\xe5\xf1\x72\xf1\xff\xf2\x8c\xf3\x19\xf3\xa7\xf4\x34\xf4\xc2\xf5\x50"
+ "\xf5\xde\xf6\x6d\xf6\xfb\xf7\x8a\xf8\x19\xf8\xa8\xf9\x38\xf9\xc7\xfa\x57\xfa\xe7\xfb\x77\xfc\x07"
+ "\xfc\x98\xfd\x29\xfd\xba\xfe\x4b\xfe\xdc\xff\x6d\xff\xff\xff\xe1\x00\x74\x45\x78\x69\x66\x00\x00"
+ "\x4d\x4d\x00\x2a\x00\x00\x00\x08\x00\x04\x01\x1a\x00\x05\x00\x00\x00\x01\x00\x00\x00\x3e\x01\x1b"
+ "\x00\x05\x00\x00\x00\x01\x00\x00\x00\x46\x01\x28\x00\x03\x00\x00\x00\x01\x00\x02\x00\x00\x87\x69"
+ "\x00\x04\x00\x00\x00\x01\x00\x00\x00\x4e\x00\x00\x00\x00\x00\x00\x00\x48\x00\x00\x00\x01\x00\x00"
+ "\x00\x48\x00\x00\x00\x01\x00\x02\xa0\x02\x00\x04\x00\x00\x00\x01\x00\x00\x00\x78\xa0\x03\x00\x04"
+ "\x00\x00\x00\x01\x00\x00\x00\x78\x00\x00\x00\x00\xff\xdb\x00\x43\x00\x02\x02\x02\x02\x02\x01\x02"
+ "\x02\x02\x02\x02\x02\x02\x03\x03\x06\x04\x03\x03\x03\x03\x07\x05\x05\x04\x06\x08\x07\x08\x08\x08"
+ "\x07\x08\x08\x09\x0a\x0d\x0b\x09\x09\x0c\x0a\x08\x08\x0b\x0f\x0b\x0c\x0d\x0e\x0e\x0e\x0e\x09\x0b"
+ "\x10\x11\x0f\x0e\x11\x0d\x0e\x0e\x0e\xff\xdb\x00\x43\x01\x02\x02\x02\x03\x03\x03\x06\x04\x04\x06"
+ "\x0e\x09\x08\x09\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e"
+ "\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e\x0e"
+ "\x0e\x0e\x0e\x0e\x0e\x0e\xff\xc0\x00\x11\x08\x00\x78\x00\x78\x03\x01\x22\x00\x02\x11\x01\x03\x11"
+ "\x01\xff\xc4\x00\x1f\x00\x00\x01\x05\x01\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01"
+ "\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\xff\xc4\x00\xb5\x10\x00\x02\x01\x03\x03\x02\x04\x03\x05"
+ "\x05\x04\x04\x00\x00\x01\x7d\x01\x02\x03\x00\x04\x11\x05\x12\x21\x31\x41\x06\x13\x51\x61\x07\x22"
+ "\x71\x14\x32\x81\x91\xa1\x08\x23\x42\xb1\xc1\x15\x52\xd1\xf0\x24\x33\x62\x72\x82\x09\x0a\x16\x17"
+ "\x18\x19\x1a\x25\x26\x27\x28\x29\x2a\x34\x35\x36\x37\x38\x39\x3a\x43\x44\x45\x46\x47\x48\x49\x4a"
+ "\x53\x54\x55\x56\x57\x58\x59\x5a\x63\x64\x65\x66\x67\x68\x69\x6a\x73\x74\x75\x76\x77\x78\x79\x7a"
+ "\x83\x84\x85\x86\x87\x88\x89\x8a\x92\x93\x94\x95\x96\x97\x98\x99\x9a\xa2\xa3\xa4\xa5\xa6\xa7\xa8"
+ "\xa9\xaa\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xd2\xd3\xd4\xd5"
+ "\xd6\xd7\xd8\xd9\xda\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9"
+ "\xfa\xff\xc4\x00\x1f\x01\x00\x03\x01\x01\x01\x01\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x01"
+ "\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\xff\xc4\x00\xb5\x11\x00\x02\x01\x02\x04\x04\x03\x04\x07"
+ "\x05\x04\x04\x00\x01\x02\x77\x00\x01\x02\x03\x11\x04\x05\x21\x31\x06\x12\x41\x51\x07\x61\x71\x13"
+ "\x22\x32\x81\x08\x14\x42\x91\xa1\xb1\xc1\x09\x23\x33\x52\xf0\x15\x62\x72\xd1\x0a\x16\x24\x34\xe1"
+ "\x25\xf1\x17\x18\x19\x1a\x26\x27\x28\x29\x2a\x35\x36\x37\x38\x39\x3a\x43\x44\x45\x46\x47\x48\x49"
+ "\x4a\x53\x54\x55\x56\x57\x58\x59\x5a\x63\x64\x65\x66\x67\x68\x69\x6a\x73\x74\x75\x76\x77\x78\x79"
+ "\x7a\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x92\x93\x94\x95\x96\x97\x98\x99\x9a\xa2\xa3\xa4\xa5\xa6"
+ "\xa7\xa8\xa9\xaa\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xd2\xd3"
+ "\xd4\xd5\xd6\xd7\xd8\xd9\xda\xe2\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9"
+ "\xfa\xff\xda\x00\x0c\x03\x01\x00\x02\x11\x03\x11\x00\x3f\x00\xfd\xfc\xa2\x8a\x28\x00\xa2\x8a\x28"
+ "\x00\xa2\x8a\x28\x00\xa2\x8a\x82\xe6\xe1\x2d\x6c\x9e\x79\x03\x30\x5c\x00\xaa\x32\xcc\x49\xc0\x51"
+ "\xee\x49\x00\x7d\x68\x01\x2e\x6e\xa2\xb5\x88\x34\x9b\x99\xd8\xe2\x38\xd0\x65\xe4\x3e\x80\x77\xfe"
+ "\x9d\xf0\x2b\x0a\x7d\x4a\xe5\xcb\x0f\x35\x2d\x07\x65\x85\x44\x92\x0f\xab\x1f\x94\x7d\x00\x6f\xad"
+ "\x67\x4f\x70\xe6\xe6\x47\x91\xc3\xdc\xb8\xc4\xae\xa7\x21\x47\xfc\xf3\x5f\xf6\x47\xaf\xf1\x1e\x7d"
+ "\x00\xce\xbb\xbe\xb6\xb0\xd2\xee\x6f\xae\xe4\x58\x6d\x6d\xe2\x69\x66\x91\x8e\x02\xa2\x82\x49\xfc"
+ "\x81\xa9\x6c\xa5\x13\xa6\xf0\xee\xa9\x26\xa9\x6b\xa9\xb3\xb3\x38\xb6\xbf\x7b\x75\x66\xc6\xe2\x15"
+ "\x53\x39\xc0\x03\xa9\x3d\xab\xa1\xae\x03\xe1\x94\x37\x03\xe1\x0d\x86\xa3\x77\x1c\x90\xdd\x6a\xb2"
+ "\xc9\xa8\xc9\x1c\x83\x0c\x82\x67\x2e\xa0\xfd\x14\xad\x77\xf5\x44\x85\x14\x51\x40\x05\x14\x51\x40"
+ "\x05\x14\x51\x40\x05\x14\x55\x7b\x8b\xab\x7b\x58\xc3\x4f\x28\x4d\xc7\x0a\xb8\x25\x98\xfa\x00\x39"
+ "\x27\xe9\x40\x16\x28\xae\x72\xe7\xc4\x31\x40\xc4\x08\xa3\x42\x1b\x04\x5c\x4e\xa8\x7f\xef\x95\xdc"
+ "\xc3\xf1\x02\xaa\xff\x00\xc2\x53\x17\x6f\xec\xe2\x7d\x3e\xd1\x28\xfe\x71\x50\x16\x3a\xda\xe4\xf5"
+ "\xed\x41\x63\xd6\xa0\xb4\x0c\x43\xc5\x6e\xd3\xe3\x1f\xc4\xc7\x62\x9f\xc0\x79\x87\xeb\x8a\xd4\x83"
+ "\x5b\xb5\x92\x3d\xd2\x83\x02\x71\x99\x43\xac\x91\x67\xfd\xf5\x24\x2f\xfc\x0b\x6d\x79\x67\x8f\xaf"
+ "\x7c\x49\x61\xf1\x0a\xda\xef\x44\xf0\x76\xbd\xe2\xfb\x2b\xbd\x36\x38\xd5\xf4\xc9\x20\x09\x13\xac"
+ "\x92\x1f\x9c\xc8\xeb\x80\x43\x82\x08\xcd\x03\x5b\x9b\x5e\x77\xbd\x79\xfd\xd7\x99\xf1\x2b\xc7\xad"
+ "\xe0\xad\x2d\x8b\xf8\x62\xc2\x75\x7f\x15\xdf\xa7\xdc\x7d\xa4\x32\xd8\xa3\x74\x2e\xc4\x03\x26\x3e"
+ "\xea\xf0\x79\x6a\x85\x7c\x39\xf1\x0f\xc5\x37\x3f\x65\xf1\x15\xdd\xaf\xc3\xdd\x11\xbf\xd7\x58\xe9"
+ "\x37\x3f\x6d\xd5\xee\x10\xf3\xb4\xca\xa3\x64\x00\xf4\x2c\xa1\x8f\xa3\x0a\xf5\x6d\x15\xf4\x0f\x08"
+ "\xf8\x56\xcf\x42\xf0\xf6\x9b\xa7\xe9\x7a\x5d\xba\xe1\x21\x6b\x91\xbb\x3d\xd9\xb6\x07\x25\x89\xe4"
+ "\x96\x39\x27\xad\x2b\x0d\xb3\xbf\x44\x48\xe2\x58\xe3\x55\x44\x50\x02\xaa\x8c\x00\x07\x61\x4e\xae"
+ "\x4c\x78\xa6\x22\xc0\x2f\xf6\x73\x7f\xdb\xd4\x83\xff\x00\x42\x88\x0f\xd6\xb5\xa1\xd6\x6d\x24\x5d"
+ "\xd2\x6f\xb7\x4c\xe0\x4a\xc5\x5a\x33\xff\x00\x03\x52\x54\x7e\x24\x53\x24\xd6\xa2\x8a\x28\x00\xa2"
+ "\x8a\x28\x00\xa2\x8a\x6b\xba\xa4\x4c\xee\xc1\x11\x46\x59\x89\xc0\x03\xd6\x80\x33\x75\x4d\x49\x34"
+ "\xfb\x32\x73\x18\x94\xa9\x60\x5c\xfc\xa8\xa3\xab\xb7\xb0\xc8\xe0\x72\x49\x00\x75\xaf\x24\xd4\x3c"
+ "\x43\x3d\xd5\xcc\xbe\x4c\x92\xa2\x37\x0d\x2b\x1c\x49\x20\xf7\x23\xee\xaf\xfb\x23\x8f\xa9\xe6\xa9"
+ "\x78\xab\xc4\x46\xff\x00\x50\x31\x46\xc4\x23\x62\x49\x3f\xf6\x44\xfa\x2a\x9c\xff\x00\xbc\xcd\xed"
+ "\x5c\x8f\xda\x7d\xe9\x32\xd2\x3a\x1f\xb4\x7d\x68\xfb\x4f\xd6\xb9\xef\xb4\xfb\xd1\xf6\x9f\x7a\x56"
+ "\x19\xd3\x43\x7f\x35\xbc\xe2\x58\x25\x96\x19\x07\x46\x46\x20\xd6\xa4\x7e\x24\xba\x8e\x37\x5f\x26"
+ "\xd9\x8b\x7d\xe6\x01\xa3\xdd\xf5\x08\xca\x0f\xe2\x2b\x85\xfb\x4f\xbd\x1f\x69\xf7\xa2\xcc\x0e\xb6"
+ "\x6d\x5e\xea\x78\x3c\xa6\x93\xcb\x83\xfe\x78\xc4\xa1\x13\xf2\x03\x04\xfb\x9e\x6a\x9f\xda\x3e\xb5"
+ "\xcf\x7d\xa7\xde\x8f\xb4\xfb\xd1\x66\x07\x43\xf6\x9f\xad\x4d\x06\xa1\x3d\xb4\xfe\x6d\xbc\xb2\x44"
+ "\xfd\x32\xa7\xa8\xf4\x3e\xa3\xda\xb9\x8f\xb4\xfb\xd3\x25\xbe\x8e\x1b\x69\x26\x9a\x54\x8a\x18\xd4"
+ "\xb4\x8e\xed\x85\x55\x03\x24\x93\xd8\x01\x45\x80\xf6\x2d\x07\xc5\x30\xc6\x8c\x97\x06\x3b\x78\xd0"
+ "\x6e\x92\x32\x76\xa6\x3b\xba\x7f\x74\x8e\xa5\x3a\x1e\xab\x83\xc1\xf4\x94\x75\x92\x25\x74\x60\xe8"
+ "\xc3\x2a\xc0\xe4\x10\x7b\xd7\xca\x5e\x03\xf0\x4c\xdf\x14\xee\xed\xfc\x5b\xe2\xa8\xa6\x8b\xc0\x11"
+ "\x4a\x24\xd0\xb4\x57\x05\x7f\xb5\x0a\x9e\x2e\xee\x47\x78\xf3\xcc\x71\x9e\x08\xc3\x36\x72\x00\xfa"
+ "\xb9\x55\x52\x35\x55\x50\xaa\xa3\x00\x01\x80\x05\x51\x0c\x5a\x28\xa2\x81\x05\x72\x1e\x3b\xd4\x86"
+ "\x99\xf0\xc3\x51\x98\x49\xe5\xbc\xdb\x2d\xd0\xff\x00\xd7\x46\x08\x7f\x42\x6b\xaf\xaf\x1f\xf8\xd7"
+ "\x3f\x93\xf0\xb7\x4d\x5c\x90\x24\xd6\x61\x53\xf8\x2c\x8d\xfc\xd4\x50\x07\x8a\xcb\x7c\x65\xb9\x92"
+ "\x56\x61\xb9\xd8\xb1\xfc\x69\x9f\x6b\xff\x00\x6a\xb9\x8f\xb5\xd1\xf6\xba\x0d\x0e\x9f\xed\x7f\xed"
+ "\x51\xf6\xbf\xf6\xab\x98\xfb\x5d\x1f\x6b\xa0\x0e\x9f\xed\x7f\xed\x51\xf6\xbf\xf6\xab\x98\xfb\x5d"
+ "\x1f\x6b\xa0\x0e\x9f\xed\x7f\xed\x51\xf6\xbf\xf6\xab\x98\xfb\x5d\x1f\x6b\xa0\x0e\x9f\xed\x7f\xed"
+ "\x56\x6b\xe9\x4f\xe3\x6f\x88\x5e\x1a\xf0\x26\xe6\xfb\x06\xa7\x3b\x4f\xac\x15\x38\x26\xca\x00\x1a"
+ "\x44\xff\x00\xb6\x8c\x52\x33\xec\xcd\x59\x5f\x6b\xaf\x4c\xf8\x2b\x12\xdc\xfc\x76\xd7\x2f\x5d\x41"
+ "\x68\x34\x28\xe3\x88\x9e\xa3\x7c\xe4\xb7\xfe\x80\xb4\x09\xec\x7d\x49\x0c\x51\x5b\xda\xc5\x04\x11"
+ "\xa4\x50\xc6\x81\x23\x44\x18\x55\x50\x30\x00\x1d\x80\x15\x25\x14\x50\x40\x51\x45\x14\x00\x57\x86"
+ "\xfe\xd0\x2e\x61\xf8\x29\xa7\xdc\xff\x00\x0c\x3a\xed\xae\xe3\xe8\x1b\x74\x7f\xcd\xc5\x7b\x95\x79"
+ "\x1f\xc7\x6d\x3d\xef\xff\x00\x65\x2f\x18\x34\x31\x19\x67\xb2\xb5\x5b\xf8\x94\x75\x26\xdd\xd6\x63"
+ "\xfa\x21\xa0\x0f\x8f\xbe\xd9\xef\x47\xdb\x3d\xeb\x8f\x1a\x82\xba\x07\x56\xca\xb0\xca\x9f\x50\x69"
+ "\x7e\xdd\xef\x40\x1d\x7f\xdb\x3d\xe8\xfb\x67\xbd\x72\x1f\x6e\xf7\xa3\xed\xde\xf4\x01\xd7\xfd\xb3"
+ "\xde\x8f\xb6\x7b\xd7\x21\xf6\xef\x7a\x3e\xdd\xef\x40\x1d\x7f\xdb\x3d\xe8\xfb\x67\xbd\x72\x1f\x6e"
+ "\xf7\xa3\xed\xde\xf4\x01\xd7\xfd\xb3\xde\xbd\x97\xe0\x7e\xa3\x1c\x5f\x16\x2e\x11\xb6\xe6\xee\xc9"
+ "\xa0\x24\x9c\x72\x08\x75\xfe\x4e\x3f\x1a\xf9\xaf\xed\xde\xf5\xd3\x78\x43\xc5\x43\xc3\xde\x3d\xb0"
+ "\xd4\xa4\x69\x05\xb2\xc8\x04\xe5\x06\x59\x57\x3f\x78\x0e\xe5\x4e\x0e\x3b\xe3\x1d\xe8\x03\xf4\x9a"
+ "\x8a\xca\xd1\xf5\x6b\x6d\x63\x44\x82\xee\xda\x68\x66\x0f\x1a\xb9\x31\x36\x55\x83\x0c\x86\x53\xdd"
+ "\x4f\x50\x7f\x03\xc8\x20\x6a\xd0\x01\x45\x14\x50\x01\x55\x6f\xac\xe0\xd4\x74\x5b\xcd\x3e\xe9\x04"
+ "\x96\xb7\x50\x3c\x33\x21\xfe\x25\x65\x2a\x47\xe4\x4d\x5a\xa2\x80\x3f\x20\xda\xde\xeb\xc3\xba\xc6"
+ "\xab\xe1\x6b\xfd\xc2\xff\x00\x42\xbf\x97\x4e\x9b\x71\xc9\x6f\x29\xb0\x8f\xff\x00\x02\x8f\x63\xff"
+ "\x00\xc0\xa9\xdf\x6d\x1e\xb5\xed\x5f\xb5\x6f\x83\xe4\xf0\xcf\xc6\xfd\x27\xc7\xd6\x71\x15\xd1\xbc"
+ "\x4b\x1a\xd8\x6a\x4c\xa3\xe5\x8a\xfa\x25\x26\x17\x3e\x9e\x64\x40\xa6\x7d\x62\x51\xde\xbe\x6a\xfb"
+ "\x67\xbd\x00\x75\x7f\x6d\x1e\xb4\x7d\xb4\x7a\xd7\x29\xf6\xcf\x7a\x3e\xd9\xef\x40\x1d\x5f\xdb\x47"
+ "\xad\x1f\x6d\x1e\xb5\xca\x7d\xb3\xde\x8f\xb6\x7b\xd0\x07\x57\xf6\xd1\xeb\x47\xdb\x47\xad\x72\x9f"
+ "\x6c\xf7\xa3\xed\x9e\xf4\x01\xd5\xfd\xb4\x7a\xd1\xf6\xd1\xeb\x5c\xa7\xdb\x3d\xe8\xfb\x67\xbd\x00"
+ "\x7d\x07\xf0\xe3\xe3\x16\xa7\xe0\x7b\xc8\xad\x2e\x3c\xeb\xfd\x0b\x79\x3e\x52\xb0\xf3\x2d\xb2\x72"
+ "\xc6\x3c\xf0\x54\xf5\x28\x78\x27\x90\x54\xf3\x5f\x74\x78\x0f\xe2\x0e\x81\xf1\x0b\x40\xbd\xbe\xd0"
+ "\x2e\xbe\xd9\x1d\x95\xc0\xb6\xba\x71\x13\xa2\xac\xbb\x15\xca\xfc\xc0\x72\x03\x0c\x81\x90\x33\x8c"
+ "\x9a\xfc\x88\xbf\xd5\xfe\xc3\xa4\xcd\x72\x23\x7b\x89\x14\x01\x14\x28\x32\xd2\xc8\xc4\x2a\x22\x8e"
+ "\xe5\x98\x80\x07\xbd\x7e\xac\xfc\x11\xf0\x1c\x9f\x0e\x7f\x66\xaf\x0d\xf8\x72\xf3\x6b\x6b\x26\x23"
+ "\x77\xab\xc8\x3f\x8e\xee\x63\xe6\x4b\xf8\x06\x6d\xa3\xd9\x45\x00\x7a\xc5\x14\x51\x40\x05\x14\x51"
+ "\x40\x1c\x3f\xc4\x8f\x02\x69\x5f\x12\xfe\x0b\x6b\xde\x0c\xd6\x33\x1d\xbe\xa1\x06\x21\xb8\x41\x97"
+ "\xb5\x99\x4e\xe8\xa6\x4f\xf6\x91\xc2\xb0\xfa\x57\xe3\x9e\xa1\x69\xad\x78\x73\xc5\xfa\xc7\x85\xbc"
+ "\x4b\x6e\x2c\xfc\x49\xa3\x5c\x9b\x5d\x42\x20\x30\xac\xc3\x95\x95\x3d\x63\x91\x48\x75\x3e\x87\x1d"
+ "\x41\xaf\xdc\x4a\xf9\x13\xf6\xa1\xf8\x0f\x75\xf1\x03\xc3\xf0\xf8\xf3\xc1\x36\x88\xff\x00\x10\x74"
+ "\x7b\x63\x1c\x96\x8a\x42\xff\x00\x6c\xda\x02\x58\xdb\x93\xd3\xcd\x53\x96\x8d\x8f\x72\x54\xf0\xdc"
+ "\x00\x7e\x77\x7d\xac\xfa\xd1\xf6\xb3\xeb\x5c\xbd\xbe\xa0\x97\x30\xb3\xa0\x96\x37\x47\x68\xe5\x8a"
+ "\x54\x29\x24\x2e\xa7\x0d\x1b\xa9\xe5\x5d\x4e\x41\x53\xc8\x22\xa7\xfb\x41\xf5\xa0\x0e\x87\xed\x67"
+ "\xd6\x8f\xb5\x9f\x5a\xe7\x8d\xc6\x14\x92\x70\x07\x52\x4f\x4a\xc5\x9b\xc5\x7a\x04\x17\x0d\x0c\xda"
+ "\xe6\x97\x1c\xab\xf7\x90\xdc\xa9\x23\xeb\x83\x40\x1d\xdf\xda\xcf\xad\x1f\x6b\x3e\xb5\xc9\x59\xeb"
+ "\x16\x3a\x84\x5b\xec\x2f\xad\x2f\x53\xb9\x82\x65\x7c\x7e\x46\xae\x7d\xa0\xfa\xd0\x07\x43\xf6\xb3"
+ "\xeb\x47\xda\xcd\x73\xdf\x68\x3e\xb5\xd6\x7c\x3c\xf0\x27\x89\xfe\x2f\xfc\x57\x8f\xc1\x7e\x12\x32"
+ "\x5b\xaa\x6d\x7d\x73\x5a\xd9\xba\x2d\x22\xdc\xf5\x62\x7a\x19\x98\x64\x22\x75\xcf\x27\x80\x68\x03"
+ "\xdd\xbf\x66\x2f\x86\xf2\xfc\x48\xf8\xf8\x9e\x2f\xd4\xad\xcb\xf8\x2b\xc2\x17\x41\xe3\x2e\xbf\x25"
+ "\xfe\xa6\x06\x51\x47\xf7\x96\x10\x77\x9f\xf6\xca\x0e\xc6\xbf\x52\xeb\x94\xf0\x47\x82\xfc\x3f\xf0"
+ "\xf3\xe1\x66\x8d\xe0\xef\x0c\x59\xad\x96\x8d\xa6\xc0\x22\x85\x33\x97\x73\xd5\xa4\x76\xea\xce\xcc"
+ "\x4b\x33\x1e\x49\x26\xba\xba\x00\x28\xa2\x8a\x00\x28\xa2\x8a\x00\x28\xa2\x8a\x00\xf9\x47\xe3\x5f"
+ "\xec\xa7\xe1\x6f\x8a\x1a\xf5\xcf\x8a\xfc\x39\xa8\xb7\x81\x7c\x79\x28\x1f\x68\xbe\x82\xdc\x4b\x6b"
+ "\xa8\x90\x30\x3e\xd3\x06\x46\xe6\xed\xe6\x29\x57\xf5\x24\x71\x5f\x2b\x45\xfb\x14\xfc\x6f\x93\x56"
+ "\x36\xd3\x78\x97\xe1\x95\xa5\x9e\x71\xf6\xe5\x7b\xb9\x58\x8f\x51\x0e\xc5\xe7\xdb\x7f\xe3\x45\x14"
+ "\x01\xf4\x2f\x81\x3f\x62\x2f\x86\xba\x2a\xc3\x7b\xf1\x0a\xff\x00\x53\xf8\x9d\xab\x2f\x26\x1b\xd3"
+ "\xf6\x6d\x35\x0f\xa2\xdb\x46\x70\xc3\xfe\xba\x33\xd7\xd5\x3a\x47\x81\xfc\x17\xa0\x69\x49\x63\xa1"
+ "\xf8\x4b\xc3\x5a\x45\x9a\x2e\xd5\x86\xcf\x4d\x8a\x25\x03\xe8\xaa\x28\xa2\x80\x38\x3f\x1b\x7e\xcf"
+ "\x9f\x06\xfe\x20\x5b\xbf\xfc\x24\x5e\x01\xd0\x7e\xdc\x54\x84\xd4\x6c\x20\xfb\x1d\xe4\x67\xd5\x66"
+ "\x87\x6b\xe7\xf1\x22\xbe\x44\xf1\x67\xec\x2d\xaf\x5a\xde\x49\x3f\xc3\x9f\x88\xf0\x5c\xd9\x92\x4a"
+ "\x69\xde\x2a\xb3\x2e\xe8\x3b\x28\xb9\x87\x04\x8f\xf7\xa3\x27\xde\x8a\x28\x03\x0b\xc3\x1f\xb0\xf7"
+ "\xc4\x6d\x4b\x5a\x8c\x78\xef\xc7\x1e\x1b\xf0\xf6\x8a\x1b\xf7\xd1\xf8\x72\x39\x2e\x6e\xe6\x5f\x45"
+ "\x92\x65\x55\x8f\x3e\xbb\x58\xd7\xe8\x37\xc3\xef\x87\x5e\x0f\xf8\x5f\xf0\xe6\xdb\xc2\xde\x0a\xd1"
+ "\xe1\xd2\x74\xa8\x8e\xf7\xc1\x2f\x2d\xc4\x87\xef\x4b\x2c\x87\xe6\x92\x43\xdd\x98\xe6\x8a\x28\x03"
+ "\xb7\xa2\x8a\x28\x00\xa2\x8a\x28\x03\xff\xd9";
+
#else
/* Small Tux PNG image */
unsigned char
diff --git 1/minidlna.c 2/minidlna.c
index be34fe3..4166ee3 100644
--- 1/minidlna.c
+++ 2/minidlna.c
@@ -856,7 +856,7 @@ init(int argc, char **argv)
DPRINTF(E_FATAL, L_GENERAL, "Option -%c takes one argument.\n", argv[i][1]);
break;
break;
-#ifdef __linux__
+#if defined(__linux__) || defined(__APPLE__)
case 'S':
SETFLAG(SYSTEMD_MASK);
break;
@@ -878,7 +878,7 @@ init(int argc, char **argv)
"\t\t[-i network_interface] [-u uid_to_run_as]\n"
"\t\t[-t notify_interval] [-P pid_filename]\n"
"\t\t[-s serial] [-m model_number]\n"
-#ifdef __linux__
+#if defined(__linux__) || defined(__APPLE__)
"\t\t[-w url] [-R] [-L] [-S] [-V] [-h]\n"
#else
"\t\t[-w url] [-R] [-L] [-V] [-h]\n"
@@ -891,8 +891,8 @@ init(int argc, char **argv)
"\t-h displays this text\n"
"\t-R forces a full rescan\n"
"\t-L do not create playlists\n"
-#ifdef __linux__
- "\t-S changes behaviour for systemd\n"
+#if defined(__linux__) || defined(__APPLE__)
+ "\t-S changes behaviour for systemd/launchd\n"
#endif
"\t-V print the version number\n",
argv[0], pidfilename);
@sorin-ionescu
Copy link
Author

Yes, it does.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment