// https://syzkaller.appspot.com/bug?id=16d67548870e2a55046efe2db946239f1e4e6891 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void setup_sysctl() { int cad_pid = fork(); if (cad_pid < 0) exit(1); if (cad_pid == 0) { for (;;) sleep(100); } char tmppid[32]; snprintf(tmppid, sizeof(tmppid), "%d", cad_pid); struct { const char* name; const char* data; } files[] = { {"/sys/kernel/debug/x86/nmi_longest_ns", "10000000000"}, {"/proc/sys/kernel/hung_task_check_interval_secs", "20"}, {"/proc/sys/net/core/bpf_jit_kallsyms", "1"}, {"/proc/sys/net/core/bpf_jit_harden", "0"}, {"/proc/sys/kernel/kptr_restrict", "0"}, {"/proc/sys/kernel/softlockup_all_cpu_backtrace", "1"}, {"/proc/sys/fs/mount-max", "100"}, {"/proc/sys/vm/oom_dump_tasks", "0"}, {"/proc/sys/debug/exception-trace", "0"}, {"/proc/sys/kernel/printk", "7 4 1 3"}, {"/proc/sys/kernel/keys/gc_delay", "1"}, {"/proc/sys/vm/oom_kill_allocating_task", "1"}, {"/proc/sys/kernel/ctrl-alt-del", "0"}, {"/proc/sys/kernel/cad_pid", tmppid}, }; for (size_t i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].name, files[i].data)) { } } kill(cad_pid, SIGKILL); while (waitpid(cad_pid, NULL, 0) != cad_pid) ; } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 3; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[1] = {0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x40 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {69 6f 63 68 61 72 73 65 74 3d 6d 61 63 63 72 // 6f 61 74 69 61 6e 2c 64 69 73 63 61 72 64 3d 30 78 30 30 30 30 // 30 30 30 30 30 30 30 30 30 30 30 33 2c 6e 6f 64 69 73 63 61 72 // 64 2c 65 72 72 6f 72 73 3d 63 6f 6e 74 69 6e 75 65 2c 69 6f 63 // 68 61 72 73 65 74 3d 6d 61 63 63 79 72 69 6c 6c 69 63 2c 00 67 // ad d4 ce ec 7c b8 70 2b 1b 4a 0f f3 22 83 9e 69 b5 07 d7 47 8e // 07 06 b0 04 08 dc 59 28 3f 5c 01 59 b8 e3 c0 28 9d cb 18 25 04 // 84 4e f8 e6 97 2c db 3f 50 68 0f c9 60 2e d2 7c 1f 6b 47 a9 1f // 94 1f 15 4a e2 05 d3 4a 9b 7a 7c 67 ef a0 c0 e2 a7 02 51 d6 64 // fc e1 2a e6 4a 5a 52 1a a8 30 80 b7 67 2c 4e 15 66 a6 1a 0a de // 4b 6c 9d 78 15 10 53 d9 fb 31 fd 2c fc 77 f2 69 f8 73 e1 4e 5f // e3 c4 6c 0a cb b2 2d 40 39 1a e3 1d 20 25 dc d9 47 ad f7 67 39 // ae 4e cb e3 b6 30 04 0b 37 e2 b0 9d 78 16 e0 b9 39 81 de 11 47 // 53 2c f2 f4 6d 4d 49 04 f6 8f b4 3c d1 65 b9} (length 0x11a) // } // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x61d9 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x61d9) // } // ] // returns fd_dir memcpy((void*)0x200000000000, "jfs\000", 4); memcpy((void*)0x200000000040, "./file0\000", 8); memcpy( (void*)0x2000000000c0, "\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x6d\x61\x63\x63\x72\x6f\x61" "\x74\x69\x61\x6e\x2c\x64\x69\x73\x63\x61\x72\x64\x3d\x30\x78\x30\x30" "\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x33\x2c\x6e\x6f" "\x64\x69\x73\x63\x61\x72\x64\x2c\x65\x72\x72\x6f\x72\x73\x3d\x63\x6f" "\x6e\x74\x69\x6e\x75\x65\x2c\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d" "\x6d\x61\x63\x63\x79\x72\x69\x6c\x6c\x69\x63\x2c\x00\x67\xad\xd4\xce" "\xec\x7c\xb8\x70\x2b\x1b\x4a\x0f\xf3\x22\x83\x9e\x69\xb5\x07\xd7\x47" "\x8e\x07\x06\xb0\x04\x08\xdc\x59\x28\x3f\x5c\x01\x59\xb8\xe3\xc0\x28" "\x9d\xcb\x18\x25\x04\x84\x4e\xf8\xe6\x97\x2c\xdb\x3f\x50\x68\x0f\xc9" "\x60\x2e\xd2\x7c\x1f\x6b\x47\xa9\x1f\x94\x1f\x15\x4a\xe2\x05\xd3\x4a" "\x9b\x7a\x7c\x67\xef\xa0\xc0\xe2\xa7\x02\x51\xd6\x64\xfc\xe1\x2a\xe6" "\x4a\x5a\x52\x1a\xa8\x30\x80\xb7\x67\x2c\x4e\x15\x66\xa6\x1a\x0a\xde" "\x4b\x6c\x9d\x78\x15\x10\x53\xd9\xfb\x31\xfd\x2c\xfc\x77\xf2\x69\xf8" "\x73\xe1\x4e\x5f\xe3\xc4\x6c\x0a\xcb\xb2\x2d\x40\x39\x1a\xe3\x1d\x20" "\x25\xdc\xd9\x47\xad\xf7\x67\x39\xae\x4e\xcb\xe3\xb6\x30\x04\x0b\x37" "\xe2\xb0\x9d\x78\x16\xe0\xb9\x39\x81\xde\x11\x47\x53\x2c\xf2\xf4\x6d" "\x4d\x49\x04\xf6\x8f\xb4\x3c\xd1\x65\xb9", 282); memcpy( (void*)0x200000006940, "\x78\x9c\xec\xdd\xcb\x8e\x1c\x57\x19\x07\xf0\xaf\xfa\x36\x97\x10\xc7" "\xca\x22\x0a\x16\x42\x93\xc4\x5c\x42\x88\xaf\xc1\x18\x02\x24\x59\xc0" "\x82\x0d\x0b\xe4\x2d\xb2\x35\x99\x44\x16\x0e\x20\xdb\x20\x27\xb2\xf0" "\x44\xb3\x61\xc1\x43\x80\x90\x58\x02\x62\xc9\x8a\x07\xc8\x82\x2d\x3b" "\x1e\x00\x4b\x36\x12\x28\xab\x14\xaa\x99\x73\xc6\x35\x9d\x6e\xf7\xd8" "\xce\x74\xf5\xcc\xf9\xfd\xa4\x71\xd5\xd7\xa7\x6a\xfa\x94\xff\x5d\x7d" "\x99\xaa\xea\x13\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\x40\xfc\xf0\x07\x3f\x3e\x5b\x45\xc4\xe5\x5f\xa5\x1b\x8e\x47\x7c" "\x2e\xfa\x11\xbd\x88\x95\xa6\x5e\x8b\x88\x95\xb5\xe3\x79\xf9\x41\x44" "\x3c\x1f\xdb\xcd\xf1\x5c\x44\x0c\x97\x22\xaa\xdc\xf8\x4c\xc4\x6b\x11" "\xf1\xd1\xb1\x88\x7b\xf7\x6f\xaf\x37\x37\x9d\xdb\x67\x3f\xbe\xff\x97" "\x7f\xfe\xe1\x27\x4f\xfd\xe8\x1f\x7f\x1a\x9e\xfe\xdf\x5f\x6f\xf6\x5f" "\x9f\xb6\xdc\xad\x5b\xbf\xfd\xef\xdf\xee\x3c\xfe\xf6\x02\x00\x00\x40" "\x89\xea\xba\xae\xab\xf4\x31\xff\x44\xfa\x7c\xdf\xeb\xba\x53\x00\xc0" "\x5c\xe4\xd7\xff\x3a\xc9\xb7\xab\x17\xae\xde\x5c\xb0\xfe\xa8\xd5\x6a" "\xb5\xfa\x10\xd6\x6d\xf5\x64\x77\xda\x45\x44\x6c\xb6\xd7\x69\xde\x33" "\x38\x1c\x0f\x00\x87\xcc\x66\x7c\xdc\x75\x17\xe8\x90\xfc\x8b\x36\x88" "\x88\xa7\xba\xee\x04\xb0\xd0\xaa\xae\x3b\xc0\x81\xb8\x77\xff\xf6\x7a" "\x95\xf2\xad\xda\xaf\x07\x6b\x3b\xed\xf9\x5c\x90\x3d\xf9\x6f\x56\xbb" "\xd7\x77\x4c\x9b\xce\x32\x7e\x8e\xc9\xbc\x1e\x5f\x5b\xd1\x8f\x67\xa7" "\xf4\x67\x65\x4e\x7d\x58\x24\x39\xff\xde\x78\xfe\x97\x77\xda\x47\x69" "\xb9\x83\xce\x7f\x5e\xa6\xe5\x3f\xda\xb9\xf4\xa9\x38\x39\xff\xfe\x78" "\xfe\x63\x8e\x4e\xfe\xbd\x89\xf9\x97\x2a\xe7\x3f\x78\xa4\xfc\xfb\xf2" "\x07\x00\x00\x00\x00\x80\x05\x96\xff\xfe\x7f\xbc\xe3\xe3\xbf\x4b\x4f" "\xbe\x29\xfb\xf2\xb0\xe3\xbf\x6b\x73\xea\x03\x00\x00\x00\x00\x00\x00" "\x00\x7c\xd6\x9e\x74\xfc\xbf\x5d\x95\xf1\xff\x00\x00\x00\x60\x51\x35" "\x9f\xd5\x1b\xbf\x3b\xf6\xe0\xb6\x69\xdf\xc5\xd6\xdc\x7e\xa9\x8a\x78" "\x7a\x6c\x79\xa0\x30\xe9\x62\x99\xd5\xae\xfb\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x25\x19\xec\x9c\xc3\x7b\xa9\x8a\x18\x46\xc4\xd3" "\xab\xab\x75\x5d\x37\x3f\x6d\xe3\xf5\xa3\x7a\xd2\xf5\x0f\xbb\xd2\xb7" "\x1f\x4a\xd6\xf5\x93\x3c\x00\x00\xec\xf8\xe8\xd8\xd8\xb5\xfc\x55\xc4" "\x72\x44\x5c\x4a\xdf\xf5\x37\x5c\x5d\x5d\xad\xeb\xe5\x95\xd5\x7a\xb5" "\x5e\x59\xca\xef\x67\x47\x4b\xcb\xf5\x4a\xeb\x73\x6d\x9e\x36\xb7\x2d" "\x8d\xf6\xf1\x86\x78\x30\xaa\x9b\x5f\xb6\xdc\x5a\xaf\x6d\xd6\xe7\xe5" "\x59\xed\xe3\xbf\xaf\xb9\xaf\x51\xdd\xdf\x47\xc7\xe6\xa3\xc3\xc0\x01" "\x20\x22\x76\x5e\x8d\xee\x79\x45\x3a\x62\xea\xfa\x99\xe8\xfa\x5d\x0e" "\x87\x83\xfd\xff\xe8\xb1\xff\xb3\x1f\x5d\x3f\x4e\x01\x00\x00\x80\x83" "\x57\xd7\x75\x5d\xa5\xaf\xf3\x3e\x91\x8e\xf9\xf7\xba\xee\x14\x00\x30" "\x17\xf9\xf5\x7f\xfc\xb8\x80\x5a\xad\x56\xab\xd5\xea\xa3\x57\xb7\xd5" "\x93\xdd\x69\x17\x11\xb1\xd9\x5e\xa7\x79\xcf\x60\x38\x7e\x00\x38\x64" "\x36\xe3\xe3\xae\xbb\x40\x87\xe4\x5f\xb4\x41\x44\x3c\xdf\x75\x27\x80" "\x85\x56\x75\xdd\x01\x0e\xc4\xbd\xfb\xb7\xd7\xab\x94\x6f\xd5\x7e\x3d" "\x48\xe3\xbb\xe7\x73\x41\xf6\xe4\xbf\x59\x6d\xaf\x97\xd7\x9f\x34\x9d" "\x65\xfc\x1c\x93\x79\x3d\xbe\xb6\xa2\x1f\xcf\x4e\xe9\xcf\x73\x73\xea" "\xc3\x22\xc9\xf9\xf7\xc6\xf3\xbf\xbc\xd3\x3e\x4a\xcb\x1d\x74\xfe\xf3" "\x32\x2d\xff\x66\x3b\x8f\x77\xd0\x9f\xae\xe5\xfc\xfb\xe3\xf9\x8f\x39" "\x3a\xf9\xf7\x26\xe6\x5f\xaa\x9c\xff\xe0\x91\xf2\xef\xcb\x1f\x00\x00" "\x00\x00\x00\x16\x58\xfe\xfb\xff\xf1\x85\x3a\xfe\x3b\x7a\xdc\xcd\x99" "\xe9\x61\xc7\x7f\xd7\x0e\xec\x5e\x01\x00\x00\x00\x00\x00\x00\xe0\x60" "\xdd\xbb\x7f\x7b\x3d\x5f\xf7\x9a\x8f\xff\x7f\x61\xc2\x72\xae\xff\x3c" "\x9a\x72\xfe\x95\xfc\x8b\x94\xf3\xef\x8d\xe5\xff\xd5\xb1\xe5\xfa\xad" "\xf9\xbb\x6f\x3d\xc8\xff\x3f\xf7\x6f\xaf\xff\xf1\xe6\xbf\x3f\x9f\xa7" "\xfb\xcd\x7f\x29\xcf\x54\xe9\x91\x55\xa5\x47\x44\x95\xee\xa9\x1a\xa4" "\xe9\x93\x6c\xdd\xa7\x6d\x0d\xfb\xa3\xe6\x9e\x86\x55\xaf\x3f\x48\xe7" "\xfc\xd4\xc3\x77\xe2\x6a\x5c\x8b\x8d\x38\xb3\x67\xd9\x5e\xfa\xff\x78" "\xd0\x7e\x76\x4f\x7b\xd3\xd3\xe1\x76\x7b\xdd\xdf\x69\x3f\xb7\xa7\x7d" "\xb0\xdb\x9e\xd7\x3f\xbf\xa7\x7d\x98\xce\x74\xaa\x57\x72\xfb\xa9\x58" "\x8f\x9f\xc7\xb5\x78\x7b\xbb\xbd\x69\x5b\x9a\xb1\xfd\xcb\x33\xda\xeb" "\x19\xed\x39\xff\xbe\xfd\xbf\x48\x39\xff\x41\xeb\xa7\xc9\x7f\x35\xb5" "\x57\x63\xd3\xc6\xdd\x0f\x7b\x9f\xda\xef\xdb\xd3\x49\xf7\xf3\xe6\xd5" "\x2f\xfe\xe6\xcc\xc1\x6f\xce\x4c\x5b\xd1\xdf\xdd\xb6\xb6\x66\xfb\x5e" "\xec\xa0\x3f\xdb\xff\x27\x4f\x8d\xe2\x97\x37\x36\xae\x9f\xba\x75\xe5" "\xe6\xcd\xeb\x67\x23\x4d\xf6\xdc\x7a\x2e\xd2\xe4\x33\x96\xf3\x1f\xa6" "\x9f\xdd\xe7\xff\x97\x76\xda\xf3\xf3\x7e\x7b\x7f\xbd\xfb\xe1\xe8\x91" "\xf3\x5f\x14\x5b\x31\x98\x9a\xff\x4b\xad\xf9\x66\x7b\x5f\x9e\x73\xdf" "\xba\x90\xf3\x1f\xa5\x9f\x9c\xff\xdb\xa9\x7d\xf2\xfe\x7f\x98\xf3\x9f" "\xbe\xff\xbf\xd2\x41\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xe0\x61\xea\xba\xde\xbe\x44\xf4\xcd\x88\xb8\x90\xae\xff\xe9\xea" "\xda\x4c\x00\x60\xbe\xf2\xeb\x7f\x9d\xe4\xdb\xe7\x55\xf7\x1f\x77\xfd" "\x3f\xef\xdd\x8e\xae\xfa\xaf\x56\xcf\xb9\xae\x16\xac\x3f\x73\xad\x3f" "\xa9\x17\xab\x3f\x6a\xf5\x61\xac\xdb\xea\xc9\xde\x68\x17\x11\xf1\xf7" "\xf6\x3a\xcd\x7b\x86\x5f\x4f\xfa\x65\x00\xc0\x22\xfb\x24\x22\xfe\xd5" "\x75\x27\xe8\x8c\xfc\x0b\x96\xbf\xef\xaf\x99\x9e\xec\xba\x33\xc0\x5c" "\xdd\x78\xff\x83\x9f\x5e\xb9\x76\x6d\xe3\xfa\x8d\xae\x7b\x02\x00\x00" "\x00\x00\x00\x00\x00\x3c\xae\x3c\xfe\xe7\x5a\x6b\xfc\xe7\x93\x75\x5d" "\xdf\x19\x5b\x6e\xcf\xf8\xaf\x6f\xc5\xda\x93\x8e\xff\x39\xc8\x33\xbb" "\x03\x8c\x4e\x19\xa8\xba\xff\xe8\xdb\xf4\x30\x5b\xbd\x51\xbf\xd7\x1a" "\x6e\xfc\x85\x98\x36\xfe\xf7\x70\x77\xee\x61\xe3\x7f\x0f\x66\xdc\xdf" "\x70\x46\xfb\x68\x46\xfb\xd2\x8c\xf6\xe5\x19\xed\x13\x2f\xf4\x68\xc9" "\xf9\xbf\xd0\x1a\xef\xfc\x64\x44\x9c\x18\x1b\x7e\xbd\x84\xf1\x5f\xc7" "\xc7\xbc\x2f\x41\xce\xff\xc5\xd6\xe3\xb9\xc9\xff\x2b\x63\xcb\xb5\xf3" "\xaf\x7f\x7f\x98\xf3\xef\xed\xc9\xff\xf4\xcd\xf7\x7e\x71\xfa\xc6\xfb" "\x1f\xbc\x7a\xf5\xbd\x2b\xef\x6e\xbc\xbb\xf1\xb3\xf3\x67\xcf\x9e\x39" "\x7f\xe1\xc2\xc5\x8b\x17\x4f\xbf\x73\xf5\xda\xc6\x99\x9d\x7f\x3b\xec" "\xf1\xc1\xca\xf9\xe7\xb1\xaf\x9d\x07\x5a\x96\x9c\x7f\xce\x5c\xfe\x65" "\xc9\xf9\x7f\x29\xd5\xf2\x2f\x4b\xce\xff\xcb\xa9\x96\x7f\x59\x72\xfe" "\xf9\xfd\x9e\xfc\xcb\x92\xf3\xcf\x9f\x7d\xe4\x5f\x96\x9c\xff\xcb\xa9" "\x96\x7f\x59\x72\xfe\x5f\x4b\xb5\xfc\xcb\x92\xf3\x7f\x25\xd5\xf2\x2f" "\x4b\xce\xff\xeb\xa9\x96\x7f\x59\x72\xfe\xaf\xa6\x5a\xfe\x65\xc9\xf9" "\x9f\x4a\xb5\xfc\xcb\x92\xf3\x3f\x9d\xea\x7d\xe6\xbf\x72\xd0\xfd\x62" "\x3e\x72\xfe\xf9\x08\x97\xfd\xbf\x2c\x39\xff\x7c\x66\x83\xfc\xcb\x92" "\xf3\x3f\x97\x6a\xf9\x97\x25\xe7\x7f\x3e\xd5\xf2\x2f\x4b\xce\xff\xb5" "\x54\xcb\xbf\x2c\x39\xff\x6f\xa4\x5a\xfe\x65\xc9\xf9\x5f\x48\xb5\xfc" "\xcb\x92\xf3\xff\x66\xaa\xe5\x5f\x96\x9c\xff\xc5\x54\xcb\xbf\x2c\x39" "\xff\x6f\xa5\x5a\xfe\x65\xc9\xf9\x7f\x3b\xd5\xf2\x2f\x4b\xce\xff\xf5" "\x54\xcb\xbf\x2c\x39\xff\xef\xa4\x5a\xfe\x65\xc9\xf9\x7f\x37\xd5\xf2" "\x2f\x4b\xce\xff\x7b\xa9\x96\x7f\x59\x72\xfe\x6f\xa4\x5a\xfe\x65\x79" "\xf0\xfd\xff\x66\xcc\x98\x31\x93\x67\xba\x7e\x66\x02\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xc6\xcd\xe3\x74\xe2\xae\xb7\x11\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\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\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\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\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\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\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\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\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\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\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\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\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\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" "\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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" "\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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" "\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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" "\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\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\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\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\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\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\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\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\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\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xff\xec\xc0\x81\x00\x00" "\x00\x00\x00\x90\xff\x6b\x23\x54\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x61\x07\x0e\x04\x00\x00\x00\x00\x80\xfc\x5f" "\x1b\xa1\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\x0a\x7b\xf7\x16\x23\xd7\x5d\xdf\x01\xfc\xcc\xde\xbc\x76\x20\x31\x10" "\x52\x27\x75\xc2\xda\x31\xc6\x38\x9b\xec\xfa\x12\x5f\x68\x5d\x4c\xb8" "\x36\xdc\x4a\x82\x29\xf4\x82\xed\x7a\xd7\x66\xc1\x37\xbc\x76\x49\xd2" "\xa8\x76\x14\x28\x91\x30\x2a\xaa\x68\x1b\x1e\xda\x02\x8a\xda\xbc\x54" "\x58\x55\x1e\x68\x95\xa0\x3c\xa0\x56\x95\x2a\x91\xf6\x81\xbe\x20\x2a" "\x54\x1e\xa2\x2a\xa0\x80\x84\x44\x2b\xc8\x56\x33\xe7\xff\xff\xef\xcc" "\xec\xec\xcc\xda\x3b\xb6\xcf\x9e\xf3\xf9\x48\xc9\x2f\x3b\x73\x66\xce" "\x99\x33\xff\x99\xdd\xaf\x9d\xef\x0e\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\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\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\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\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\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\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\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\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" "\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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" "\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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" "\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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" "\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\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\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\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x40\xb3\x0d\x6f\x9f\xfe\x7c\x2d\xcb" "\xb2\x5a\xad\x96\x5f\xb0\x36\xcb\x5e\x55\x9f\xab\xc7\xd6\x36\x2e\x79" "\xcb\xf5\x3d\x3e\x00\x00\x00\x60\xf9\x7e\xd9\xf8\xf7\xcb\x37\xa5\x0b" "\xf6\x2f\xe1\x46\x4d\xdb\xfc\xcb\x1d\xdf\x79\x66\x6e\x6e\x6e\x2e\xfb" "\xe8\xe0\x9f\x0f\x7f\x79\x6e\x2e\x5d\x31\x96\x65\xc3\xab\xb2\xac\x71" "\x5d\x74\xe9\x07\x1f\xab\x35\x6f\x13\x3c\x9e\x8d\xd6\x06\x9a\xbe\x1e" "\xe8\xb1\xfb\xc1\x1e\xd7\x0f\xf5\xb8\x7e\xb8\xc7\xf5\x23\x3d\xae\x5f" "\xd5\xe3\xfa\xd1\x1e\xd7\x2f\x38\x01\x0b\xac\xce\x6a\xe9\xce\x36\x35" "\xfe\x73\x6d\x7e\x4a\xb3\x9b\xb3\xe1\xc6\x75\x9b\x3a\xdc\xea\xf1\xda" "\xaa\x81\xfa\xb9\x4b\xb7\xcd\x6a\x8d\xdb\xcc\x0d\x1f\xcd\x66\xb2\xe3" "\xd9\x74\x36\xd9\xb2\x7d\xbe\x6d\xad\xb1\xfd\xb3\x1b\xea\xfb\x7a\x4f" "\x16\xf7\x35\xd0\xb4\xaf\xf5\xf5\x15\xf2\x93\x47\x8f\xc4\x63\xa8\x85" "\x73\xbc\xa9\x65\x5f\xf3\xf7\x19\xfd\xe8\x6d\xd9\xd8\x4f\x7f\xf2\xe8" "\x91\xbf\x3d\xfb\xd2\xad\x9d\x66\xcf\xd3\xd0\x72\x7f\xf9\x71\x6e\xd9" "\x58\x3f\xce\xcf\x86\x4b\xf2\x63\xad\x65\xab\xd2\x39\x89\xc7\x39\xd0" "\x74\x9c\xeb\x3b\x3c\x27\x83\x2d\xc7\x59\x6b\xdc\xae\xfe\xdf\xed\xc7" "\xf9\xf2\x12\x8f\x73\x70\xfe\x30\xaf\xa9\xf6\xe7\x7c\x34\x1b\x68\xfc" "\xf7\x0b\x8d\xf3\x34\x54\xcb\x3a\x9c\xa7\xf5\xe1\xb2\x9f\xdf\x99\x65" "\xd9\x85\xf9\xc3\x6e\xdf\x66\xc1\xbe\xb2\x81\x6c\x4d\xcb\x25\x03\xf3" "\xcf\xcf\x68\xbe\x22\xeb\xf7\x51\x5f\x4a\xaf\xcd\x86\x2e\x6b\x9d\x6e" "\x58\xc2\x3a\xad\xcf\xa9\x4d\xad\xeb\xb4\xfd\x35\x11\x9f\xff\x0d\xe1" "\x76\x43\x8b\x1c\x43\xf3\xd3\xf4\xa3\xc7\x46\x9a\x9e\xf7\x5f\xcc\x5d" "\xc9\x3a\x8d\xea\x8f\x7a\xb1\xd7\x4a\xfb\x1a\xec\xf7\x6b\xa5\x28\x6b" "\x30\xae\x8b\x17\x1a\x0f\xfa\x89\x8e\x6b\x70\x53\x78\xfc\x8f\x6e\x5e" "\x7c\x0d\x76\x5c\x3b\x1d\xd6\x60\x7a\xdc\x4d\x6b\x70\x63\xaf\x35\x38" "\x30\x32\xd8\x38\xe6\xf4\x24\xd4\x1a\xb7\x99\x5f\x83\xdb\x5a\xb6\x1f" "\x6c\xec\xa9\xd6\x98\x2f\x6e\xee\xbe\x06\x27\xce\x9e\x38\x3d\x31\xfb" "\xf0\x23\x77\xcf\x9c\x38\x7c\x6c\xfa\xd8\xf4\xc9\x1d\xdb\xb6\x4d\xee" "\xd8\xb5\x6b\xcf\x9e\x3d\x13\x47\x67\x8e\x4f\x4f\xe6\xff\xbe\xc2\xb3" "\x5d\x7c\x6b\xb2\x81\xf4\x1a\xd8\x18\xce\x5d\x7c\x0d\xbc\xa9\x6d\xdb" "\xe6\xa5\x3a\xf7\xb5\x91\x05\xef\xbf\x57\xfa\x3a\x1c\xed\xf2\x3a\x5c" "\xdb\xb6\x6d\xbf\x5f\x87\x43\xed\x0f\xae\x76\x6d\x5e\x90\x0b\xd7\x74" "\xfe\xda\xf8\x70\xfd\xa4\x8f\x5e\x1c\xc8\x16\x79\x8d\x35\x9e\x9f\xad" "\xcb\x7f\x1d\xa6\xc7\xdd\xf4\x3a\x1c\x6a\x7a\x1d\x76\xfc\x9e\xd2\xe1" "\x75\x38\xb4\x84\xd7\x61\x7d\x9b\xd3\x5b\x97\xf6\x33\xcb\x50\xd3\x3f" "\x9d\x8e\x61\xf1\xef\x05\xcb\x5b\x83\x6b\x9b\xd6\x60\xfb\xcf\x23\xed" "\x6b\xb0\xdf\x3f\x8f\x14\x65\x0d\x8e\x86\x75\xf1\xbd\xad\x8b\x7f\x2f" "\x58\x1f\x8e\xf7\x89\xf1\xcb\xfd\x79\x64\x70\xc1\x1a\x4c\x0f\x37\xbc" "\xf7\xd4\x2f\x49\x3f\xef\x8f\xee\x69\x8c\x4e\xeb\xf2\xb6\xfa\x15\x37" "\x8c\x64\xe7\x66\xa7\xcf\xdc\xf3\xd0\xe1\xb3\x67\xcf\x6c\xcb\xc2\xb8" "\x26\x5e\xd7\xb4\x56\xda\xd7\xeb\x9a\xa6\xc7\x94\x2d\x58\xaf\x03\x97" "\xbd\x5e\xf7\xcf\xdc\xf1\xc4\x6d\x1d\x2e\x5f\x1b\xce\xd5\xe8\xdd\xf5" "\x7f\x8d\x2e\xfa\x5c\xd5\xb7\xd9\x79\x4f\xf7\xe7\xaa\xf1\xdd\xad\xf3" "\xf9\x6c\xb9\x74\x7b\x16\x46\x9f\x5d\xeb\xf3\xd9\xe9\xbb\x79\xfd\x7c" "\x8e\x64\xd9\x57\xbe\xfd\xd8\x03\xcf\x3d\xfa\x95\xb7\x2f\x7a\x3e\xeb" "\x79\xf3\xb3\x13\xcb\xff\x59\x3c\xe5\xd2\xa6\xf7\xdf\xe1\x45\xde\x7f" "\x63\xee\x7f\x25\xdf\x5f\xba\xab\xc7\x07\x87\x87\xf2\xd7\xef\x60\x3a" "\x3b\xc3\x2d\xef\xc7\xad\x4f\xd5\x50\xe3\xbd\xab\xd6\xd8\xf7\xcb\x13" "\x4b\x7b\x3f\x1e\x0e\xff\x5c\xeb\xf7\xe3\x9b\xbb\xbc\x1f\xaf\x6b\xdb" "\xb6\xdf\xef\xc7\xc3\xed\x0f\x2e\xbe\x1f\xd7\x7a\xfd\x69\xc7\xf2\xb4" "\x3f\x9f\xa3\x61\x9d\x1c\x9f\xec\xfe\x7e\x5c\xdf\x66\xdd\xf6\xc5\xd7" "\xe4\x5b\x3b\xed\x2b\x1b\xea\xfa\x7e\x7c\x67\x98\xb5\x70\xfe\xdf\x1c" "\x92\x42\xca\x45\x4d\x6b\x67\xb1\x75\x9b\xf6\x35\x34\x34\x1c\x1e\xd7" "\x50\xdc\x43\xeb\x3a\xdd\xd1\xb2\xfd\x70\xc8\x66\xf5\x7d\x3d\xbd\xfd" "\xca\xd6\xe9\x96\x3b\xf3\xfb\x1a\x4c\x8f\x6e\xde\xb5\x5a\xa7\x63\x6d" "\xdb\xf6\x7b\x9d\xa6\x3f\xfb\x5a\x6c\x9d\xd6\x7a\xfd\xe9\xdb\x95\x69" "\x7f\x3e\x47\xc3\xba\xb8\x79\x47\xf7\x75\x5a\xdf\xe6\xf9\x9d\xcb\x7f" "\xef\x5c\x1d\xff\xb3\xe9\xbd\x73\xa4\xd7\x1a\x1c\x1e\x1c\xa9\x1f\xf3" "\x70\x5a\x84\x8d\xf7\xfb\x6c\x6e\x75\x5c\x83\xf7\x64\x47\xb2\x53\xd9" "\xf1\x6c\xaa\x71\xed\x48\x63\x3d\xd5\x1a\xfb\x1a\xbf\x77\x69\x6b\x70" "\x24\xfc\x73\xad\xdf\x2b\xd7\x75\x59\x83\x5b\xda\xb6\xed\xf7\x1a\x4c" "\xdf\xc7\x16\x5b\x7b\xb5\xa1\x85\x0f\xbe\x0f\xda\x9f\xcf\xd1\xb0\x2e" "\x9e\xbc\xb7\xfb\x1a\xac\x6f\xf3\x8e\xdd\xfd\xfd\xd9\x75\x4b\xb8\x24" "\x6d\xd3\xf4\xb3\x6b\xfb\x9f\xaf\x2d\xf6\x67\x5e\xb7\xb5\x9d\xa6\xab" "\xb5\x56\x86\xc2\x71\x7e\x7b\x77\xf7\x3f\x9b\xad\x6f\x73\x7c\xcf\xe5" "\xe6\xcc\xee\xe7\xe9\xae\x70\xc9\x0d\x1d\xce\x53\xfb\xeb\x77\xb1\xd7" "\xd4\x54\x76\x6d\xce\xd3\xba\x70\x9c\x2f\xed\x59\xfc\x3c\xd5\x8f\xa7" "\xbe\xcd\x97\xf7\x2e\x71\x3d\xed\xcf\xb2\xec\xfc\xa7\xef\x6b\xfc\x79" "\x6f\xf8\xfb\x95\x7f\x38\xf7\xdd\x67\x5a\xfe\xde\xa5\xd3\xdf\xe9\x9c" "\xff\xf4\x7d\x3f\x7e\xf5\xd1\x7f\xbe\x9c\xe3\x07\x60\xe5\x7b\x25\x1f" "\x6b\xf2\xef\x75\x4d\x7f\x33\xb5\x94\xbf\xff\x07\x00\x00\x00\x56\x84" "\x98\xfb\x07\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xe3\xff\x15" "\x9e\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x0f\x85\x99\x54\x24\xff\xaf" "\x7b\xc7\x4b\x33\xaf\x9c\xcf\x52\x33\x7f\x2e\x88\xd7\xa7\xd3\x70\x7f" "\xbe\x5d\xec\xb8\x4e\x86\xaf\xc7\xe6\xe6\xd5\x2f\xbf\xef\xa9\xe9\x9f" "\xfd\xd3\xf9\xa5\xed\x7b\x20\xcb\xb2\x5f\xdc\xff\x47\x1d\xb7\x5f\x77" "\x7f\x3c\xae\xdc\x58\x38\xce\x4b\xef\x6c\xbd\x7c\x81\x67\xee\x5e\xd2" "\xbe\x0f\x1d\x38\x9f\xf6\xdb\xdc\x5f\xff\x6a\xb8\xff\xf8\x78\x96\xba" "\x0c\x3a\x55\x70\x27\xb3\x2c\x7b\xf6\xa6\x2f\x36\xf6\x33\xf6\xb1\x8b" "\x8d\xf9\xfc\xfd\x87\x1a\xf3\x81\x0b\x4f\x3c\x5e\xdf\xe6\xe5\xbd\xf9" "\xd7\xf1\xf6\x2f\xbe\x2e\xdf\xfe\xaf\x42\xf9\x77\xff\xd1\xc3\x2d\xb7" "\x7f\x31\x9c\x87\x1f\x86\x39\xf9\xde\xce\xe7\x23\xde\xee\x1b\x17\xdf" "\xbc\x7e\xf7\x47\xe6\xf7\x17\x6f\x57\xdb\x78\x63\xe3\x61\x3f\xf9\xf1" "\xfc\x7e\xe3\xef\xc9\xf9\xd2\xe3\xf9\xf6\xf1\x3c\x2f\x76\xfc\xcf\x7d" "\xe1\xe9\x6f\xd4\xb7\x7f\xe8\x8d\x9d\x8f\xff\xfc\x40\xe7\xe3\x7f\x3a" "\xdc\xef\x53\x61\xfe\xef\xed\xf9\xf6\xcd\xcf\x41\xfd\xeb\x78\xbb\xcf" "\x85\xe3\x8f\xfb\x8b\xb7\xbb\xe7\xeb\xdf\xea\x78\xfc\x97\x3e\x9f\x6f" "\x7f\xfa\x5d\xf9\x76\x87\xc2\x8c\xfb\xdf\x12\xbe\xde\xf4\xae\x97\x66" "\x9a\xcf\xd7\x43\xb5\xc3\x2d\x8f\x2b\x7b\x77\xbe\x5d\xdc\xff\xe4\x77" "\xff\xb4\x71\x7d\xbc\xbf\x78\xff\xed\xc7\x3f\x7a\xf0\x62\xcb\xf9\x68" "\x5f\x1f\xcf\xff\x47\x7e\x3f\x13\x6d\xdb\xc7\xcb\xe3\x7e\xa2\x7f\x6c" "\xdb\x7f\xfd\x7e\x9a\xd7\x67\xdc\xff\xd3\x7f\x72\xa8\xe5\x3c\xf7\xda" "\xff\xa5\x07\x5e\xbc\xbd\x7e\xbf\xed\xfb\xbf\xab\x6d\xbb\xd3\x9f\xde" "\xda\xd8\xff\xfc\xfd\xb5\xfe\xc6\xa6\xbf\xfe\xdc\x17\x3b\xee\x2f\x1e" "\xcf\xfe\xbf\x3f\xdd\xf2\x78\xf6\x7f\x28\xbc\x8e\xc3\xfe\x9f\xfc\x78" "\x58\x8f\xe1\xfa\xff\xbb\x94\xdf\x5f\xfb\x6f\x57\x38\xf4\xa1\xd6\xf7" "\x9f\xb8\xfd\x57\xd7\x9e\x6f\x79\x3c\xd1\x7b\x7e\x9a\xef\xff\xd2\x5b" "\x8f\x35\xe6\xaa\xd1\xd5\x6b\x6e\x78\xd5\xab\x6f\xbc\xf0\x86\xfa\xb9" "\xcb\xb2\x17\x56\xe5\xf7\xd7\x6b\xff\xc7\xfe\xe6\x54\xcb\xf1\x7f\xed" "\x96\xfc\x7c\xc4\xeb\x63\x47\xbf\x7d\xff\x8b\x89\xfb\x3f\xf3\x99\xf1" "\x93\xa7\x66\xcf\xcd\x4c\xa5\xb3\xfa\xe8\x4d\x8d\xdf\x9d\xf3\xbe\xfc" "\x78\xe2\xf1\xde\x14\xde\x5b\xdb\xbf\x3e\x78\xea\xec\x27\xa6\xcf\x8c" "\x4d\x8e\x4d\x66\xd9\x58\x79\x7f\x85\xde\x15\xfb\x7a\x98\x3f\xce\xc7" "\x85\xee\x5b\xcf\x2d\x78\x07\xdd\x7a\x20\x3c\x9f\xb7\xfd\xe5\xb3\x6b" "\x36\xff\xfb\x17\xe2\xe5\xff\xf9\xe1\xfc\xf2\x8b\xef\xcd\xbf\x6f\xbd" "\x29\x6c\xf7\xa5\x70\xf9\xda\xf0\xfc\x5d\xde\xfe\x17\x7a\x72\xc3\x2d" "\x8d\xd7\x77\xed\xf9\x70\x84\x73\x0b\x7f\x5f\xf0\x72\xac\xdf\xf4\x3f" "\x7b\x96\xb4\x61\x78\xfc\xed\x3f\x17\xc4\xf5\x7e\xfa\xf5\x9f\x68\x9c" "\x87\xfa\x75\x8d\xef\x1b\xf1\x75\xbd\xcc\xe3\xff\xfe\x54\x7e\x3f\xdf" "\x0c\xe7\x75\x2e\xfc\x66\xe6\x8d\xb7\xcc\xef\xaf\x79\xfb\xf8\xbb\x11" "\x2e\x3e\x98\xbf\xde\x97\x7d\xfe\xc2\xdb\x5c\x7c\x5e\xff\x2e\x3c\xdf" "\xef\xff\x61\x7e\xff\xf1\xb8\xe2\xe3\xfd\x7e\xf8\x39\xe6\x5b\xeb\x5a" "\xdf\xef\xe2\xfa\xf8\xe6\xf9\x81\xf6\xfb\x6f\xfc\x16\x8f\x0b\xe1\xfd" "\x24\xbb\x90\x5f\x1f\xb7\x8a\xe7\xfb\xe2\xcb\xb7\x74\x3c\xbc\xf8\x7b" "\x48\xb2\x0b\xb7\x36\xbe\xfe\xb3\x74\x3f\xb7\x5e\xd6\xc3\x5c\xcc\xec" "\xc3\xb3\x13\xc7\x67\x4e\x9e\x7b\x68\xe2\xec\xf4\xec\xd9\x89\xd9\x87" "\x1f\x39\x78\xe2\xd4\xb9\x93\x67\x0f\x36\x7e\x97\xe7\xc1\x4f\xf6\xba" "\xfd\xfc\xfb\xd3\x9a\xc6\xfb\xd3\xd4\xf4\xae\x9d\x59\xe3\xdd\xea\x54" "\x3e\xae\xb2\xeb\x7d\xfc\xa7\x0f\x1c\x99\xda\x3d\xb9\x79\x6a\xfa\xe8" "\xe1\x73\x47\xcf\x1e\x38\x3d\x7d\xe6\xd8\x91\xd9\xd9\x23\xd3\x53\xb3" "\x9b\x0f\x1f\x3d\x3a\xfd\x99\x5e\xb7\x9f\x99\xda\xb7\x6d\xfb\xde\x1d" "\xbb\xb7\x8f\x1f\x9b\x99\xda\xb7\x67\xef\xde\x1d\x7b\xc7\x67\x4e\x9e" "\xaa\x1f\x46\x7e\x50\x3d\xec\x9a\xfc\xd4\xf8\xc9\x33\x07\x1b\x37\x99" "\xdd\xb7\x73\xef\xb6\x7b\xef\xdd\x39\x39\x7e\xe2\xd4\xd4\xf4\xbe\xdd" "\x93\x93\xe3\xe7\x7a\xdd\xbe\xf1\xbd\x69\xbc\x7e\xeb\x3f\x1c\x3f\x33" "\x7d\xfc\xf0\xd9\x99\x13\xd3\xe3\xb3\x33\x8f\x4c\xef\xdb\xb6\x77\xd7" "\xae\xed\x3d\x7f\x1b\xe0\x89\xd3\x47\x67\xc7\x26\xce\x9c\x3b\x39\x71" "\x6e\x76\xfa\xcc\x44\xfe\x58\xc6\xce\x36\x2e\xae\x7f\xef\xcb\xb2\x03" "\xb7\x4f\xfe\xac\xdf\xef\x6a\x14\xdd\xec\x7f\xe5\x3f\xcf\xb6\xab\xe5" "\xbf\x88\x2f\xfb\xe0\x5d\xbb\xd2\xef\x67\xad\x7b\xea\xb1\x45\xef\x2a" "\xdf\xa4\xed\x17\x88\xbe\x14\x7e\x17\xcd\xbf\xbe\xe6\xf4\x9e\xa5\x7c" "\x1d\x73\xff\x70\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\x23" "\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xab\xc2\x4c\xe4\x7f\x00" "\x00\x00\x28\x8d\x98\xfb\x47\xc3\x4c\x2a\x92\xff\x4b\xd7\xff\x5f\x77" "\x7e\x49\xfb\xd7\xff\xd7\xff\x6f\x3e\x5f\xfa\xff\x15\xeb\xff\x3f\x58" "\xb4\xfe\x7f\xfe\x7e\xa1\xff\xdf\x1f\xcb\xed\xdf\xeb\xff\x07\xfa\xff" "\xfa\xff\xfa\xff\xfa\xff\x7d\xef\xff\x53\x45\x45\xeb\xff\xc7\xdc\xbf" "\x3a\xcb\x2a\x99\xff\x01\x00\x00\xa0\x0a\x62\xee\x5f\x13\x66\x22\xff" "\x03\x00\x00\x40\x69\xc4\xdc\x7f\x43\x98\x89\xfc\x0f\x00\x00\x00\xa5" "\x11\x73\xff\xab\xc2\x4c\x2a\x92\xff\xf5\xff\x57\x5a\xff\x3f\x3e\x03" "\xfa\xff\x9d\x8e\x5f\xff\xbf\xe4\xfd\xff\x5a\xeb\xe3\xd1\xff\xd7\xff" "\xef\x44\xff\xbf\x3b\xfd\xff\x1e\xf4\xff\x27\xb2\x6a\xf5\xff\x2f\xf4" "\xf3\xf8\xf5\xff\xf5\xff\x59\xa8\x68\xfd\xff\x98\xfb\x5f\x1d\x66\x52" "\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\x8d\x61\x26\xf2\x3f\x00\x00" "\x00\x94\x46\xcc\xfd\x37\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7" "\xaf\x0d\x33\xa9\x48\xfe\xd7\xff\x5f\x69\xfd\x7f\x9f\xff\xaf\xff\x5f" "\xe1\xfe\x7f\xdb\xe3\xd1\xff\xd7\xff\xef\x44\xff\xbf\x3b\xfd\xff\x1e" "\xf4\xff\x7d\xfe\xbf\xfe\xbf\xfe\x3f\x7d\x55\xb4\xfe\x7f\xcc\xfd\xaf" "\x09\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\xb5\x61\x26\xf2" "\x3f\x00\x00\x00\x14\xcf\xd0\x95\xdd\x2c\xe6\xfe\xd7\x85\x99\x2c\xc8" "\xff\x57\xb8\x03\x00\x00\x00\xe0\xba\x8b\xb9\xff\xe6\xac\xad\x08\x5e" "\x91\xbf\xff\xd7\xff\xd7\xff\x2f\x7e\xff\x7f\x55\xba\x4e\xff\x5f\xff" "\x3f\x2b\x64\xff\x7f\x30\xd3\xff\x2f\x0e\xfd\xff\xee\xf4\xff\x7b\xd0" "\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xaf\x8a\xd6\xff\x6f\xe4\xfe\x6c\x34" "\x7b\x7d\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\xb7\x84\x99" "\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xff\x4a\x98\x89\xfc\x0f\x00\x00" "\x00\xa5\x11\x73\xff\xba\x30\x93\x8a\xe4\x7f\xfd\x7f\xfd\xff\xe2\xf7" "\xff\x7d\xfe\xbf\xfe\x7f\xd1\xfb\xff\x3e\xff\xbf\x48\xf4\xff\xbb\xd3" "\xff\xef\x41\xff\x5f\xff\x5f\xff\x5f\xff\x9f\xbe\x2a\x5a\xff\x3f\xe6" "\xfe\x5b\xc3\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xbf\x2d\xcc" "\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x57\xc3\x4c\xe4\x7f\x00\x00" "\x00\x28\x8d\x98\xfb\xd7\x87\x99\x54\x24\xff\xeb\xff\x17\xbc\xff\x1f" "\x9b\xa3\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x4b\xa2\xff\xdf\x9d" "\xfe\x7f\x0f\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xf4\x55\xd1\xfa\xff\x31" "\xf7\xdf\x1e\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\x1d\x61" "\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x6f\x08\x33\x91\xff\x01\x00" "\x00\xa0\x34\x62\xee\x1f\x0b\x33\xa9\x48\xfe\xd7\xff\x2f\x78\xff\x3f" "\xef\xc1\x8f\xf8\xfc\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xa5\xd1\xff" "\xef\x4e\xff\xbf\x07\xfd\x7f\xfd\xff\xbe\xf4\xff\xe7\xce\xeb\xff\xeb" "\xff\x93\x2b\x5a\xff\x3f\xe6\xfe\x0d\x61\x26\x15\xc9\xff\x00\x00\x00" "\x50\x05\x31\xf7\x6f\x0c\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xbf" "\x33\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\x7f\x53\x98\x49\x45\xf2" "\xbf\xfe\xff\x8a\xe8\xff\x67\xfa\xff\xfa\xff\xfa\xff\x57\xde\xff\x7f" "\xee\xfd\x59\xa6\xff\x5f\x1d\xfa\xff\xdd\xe9\xff\xf7\xa0\xff\xaf\xff" "\xef\xf3\xff\xf5\xff\xe9\xab\xa2\xf5\xff\x63\xee\x7f\x63\x98\x49\x45" "\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\x9b\xc3\x4c\xe4\x7f\x00\x00\x00" "\x28\x8d\x98\xfb\xdf\x14\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xbf" "\x25\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\xec\xfd\x7f" "\x9f\xff\x5f\x2d\xfa\xff\xdd\xe9\xff\xf7\xa0\xff\xaf\xff\xaf\xff\xaf" "\xff\x4f\x5f\x15\xad\xff\x1f\x73\xff\x9b\xc3\x4c\x2a\x92\xff\x01\x00" "\x00\xa0\x0a\x62\xee\xdf\x1a\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc" "\x7f\x57\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x78\x98\x49\x45" "\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xe7\xfd\xeb\xff\xaf" "\x4c\xfa\xff\xdd\xe9\xff\xf7\xa0\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x5f" "\x15\xad\xff\x1f\x73\xff\xdd\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05" "\x31\xf7\xdf\x13\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x3f\x11\x66" "\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x3f\x19\x66\x52\x91\xfc\xaf\xff" "\xaf\xff\xaf\xff\xaf\xff\x7f\x59\xfd\xff\x37\xcc\xdf\xaf\xfe\x7f\x4e" "\xff\xbf\x58\xf4\xff\xbb\xd3\xff\xef\x41\xff\x5f\xff\xff\xba\xf7\xff" "\x87\xf5\xff\x29\x95\xa2\xf5\xff\x63\xee\xdf\x16\x66\x52\x91\xfc\x0f" "\x00\x00\x00\x55\x10\x73\xff\xf6\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23" "\xe6\xfe\x1d\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x3b\xc3\x4c" "\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x7d\xfe\x7f\xe7\xfd\xeb" "\xff\xaf\x4c\xfa\xff\xdd\xf5\xbf\xff\x1f\x1f\xa2\xfe\xbf\xfe\xbf\xfe" "\xbf\xcf\xff\xd7\xff\x67\xa1\xa2\xf5\xff\x63\xee\xbf\x37\xcc\xa4\x22" "\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\x5d\x61\x26\xf2\x3f\x00\x00\x00" "\x94\x46\xcc\xfd\xbb\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xf7" "\x84\x99\x54\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x77\xde" "\xbf\xfe\xff\xca\xa4\xff\xdf\x9d\xcf\xff\xef\x41\xff\x5f\xff\x5f\xff" "\x5f\xff\x9f\x65\x7a\xf0\x8f\x9b\xbf\x2a\x5a\xff\x3f\xe6\xfe\xbd\x61" "\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\xbf\x25\xcc\x44\xfe\x07" "\x00\x00\x80\xd2\x88\xb9\xff\xd7\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d" "\x98\xfb\x7f\x3d\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f" "\xff\xbf\xf3\xfe\xf5\xff\x57\x26\xfd\xff\xee\xf4\xff\x7b\xd0\xff\xd7" "\xff\xd7\xff\xd7\xff\xa7\xaf\x8a\xd6\xff\x8f\xb9\x7f\x5f\x98\x49\x45" "\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\xbf\x11\x66\x22\xff\x03\x00\x00" "\x40\x69\xc4\xdc\xff\xd6\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe" "\xfd\x61\x26\x15\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x9d" "\xf7\x7f\xad\xfb\xff\x23\xf1\x7e\xf5\xff\x97\x45\xff\xbf\x3b\xfd\xff" "\x1e\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xab\xa2\xf5\xff\x63\xee\x7f" "\x5b\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\xf7\x85\x99\xc8" "\xff\x00\x00\x00\x50\x1a\x31\xf7\xbf\x3d\xcc\x44\xfe\x07\x00\x00\x80" "\xd2\x88\xb9\xff\x1d\x61\x26\x15\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa" "\xff\xfa\xff\x9d\xf7\xef\xf3\xff\x57\x26\xfd\xff\xee\xf4\xff\x7b\xd0" "\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xaf\x8a\xd6\xff\x8f\xb9\xff\x9d\x61" "\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\xbf\x2b\xcc\x44\xfe\x07" "\x00\x00\x80\xd2\x88\xb9\xff\xdd\x61\x26\xf2\x3f\x00\x00\x00\x94\x46" "\xcc\xfd\xef\x09\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7" "\xff\xef\xbc\x7f\xfd\xff\x95\x49\xff\xbf\x3b\xfd\xff\x1e\xf4\xff\xf5" "\xff\xf5\xff\xf5\xff\xe9\xab\xa2\xf5\xff\x63\xee\xff\xcd\x30\x93\x8a" "\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\xef\x0f\x33\x91\xff\x01\x00\x00" "\xa0\x34\x62\xee\x7f\x6f\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff" "\xfb\xc2\x4c\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x3b" "\xef\x5f\xff\x7f\x65\xd2\xff\xef\x6e\x85\xf5\xff\x7f\x79\x63\xb8\x5c" "\xff\x3f\xa7\xff\x5f\xec\xe3\xbf\xdc\xfe\xff\x50\xdb\xd7\x57\xa5\xff" "\xff\x83\xc5\xfa\xff\x73\xab\xda\x6f\xaf\xff\xcf\xd5\x50\xb4\xfe\x7f" "\xcc\xfd\xef\x0f\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\x03" "\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x1f\x0c\x33\x91\xff\x01" "\x00\x00\xa0\x34\x62\xee\xff\xad\x30\x93\x8a\xe4\x7f\xfd\xff\xfa\x71" "\xcc\xb7\x97\xf5\xff\xcb\xda\xff\x1f\xd0\xff\xd7\xff\xd7\xff\xaf\x08" "\xfd\xff\xee\x56\x58\xff\xdf\xe7\xff\xb7\xd1\xff\x2f\xf6\xf1\xfb\xfc" "\x7f\xfd\x7f\x16\x2a\x5a\xff\x3f\xe6\xfe\x0f\x85\x99\x54\x24\xff\x03" "\x00\x00\x40\x15\xc4\xdc\xff\x40\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11" "\x73\xff\x83\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x1f\x0e\x33" "\xa9\x48\xfe\xd7\xff\xf7\xf9\xff\xd5\xe8\xff\xfb\xfc\xff\x4c\xff\x5f" "\xff\xbf\x22\xf4\xff\xbb\xd3\xff\xef\x41\xff\x5f\xff\xbf\x68\xfd\xff" "\xff\xd6\xff\x67\x65\x2b\x5a\xff\x3f\xe6\xfe\x03\x61\x26\x15\xc9\xff" "\x00\x00\x00\x50\x05\x31\xf7\x7f\x24\xcc\x44\xfe\x07\x00\x00\x80\xd2" "\x88\xb9\xff\xb7\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x3f\x1a" "\x66\x52\x91\xfc\xaf\xff\xbf\x52\xfa\xff\x63\x2b\xb4\xff\xff\x98\xfe" "\xff\x55\xec\xff\xdf\x71\x63\xbe\x9d\xfe\xbf\xfe\x3f\xf3\xf4\xff\xbb" "\xd3\xff\xef\x41\xff\x5f\xff\xbf\x68\xfd\x7f\x9f\xff\xcf\x0a\x57\xb4" "\xfe\x7f\xcc\xfd\x1f\x0b\x33\x59\x7a\xfe\x1f\x5d\xf2\x96\x00\x00\x00" "\xc0\x75\x11\x73\xff\xef\x84\x99\x54\xe4\xef\xff\x01\x00\x00\xa0\x0a" "\x62\xee\xff\xdd\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xdf\x0b" "\x33\xa9\x48\xfe\xd7\xff\x5f\x29\xfd\x7f\x9f\xff\x9f\xe9\xff\xfb\xfc" "\xff\xb6\xc7\xa3\xff\xaf\xff\xdf\xc9\xb5\xeb\xff\xc7\x77\x1e\xfd\x7f" "\xfd\x7f\xfd\xff\x48\xff\x5f\xff\x5f\xff\x9f\x76\x45\xeb\xff\xc7\xdc" "\xff\xfb\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\x7f\x3c\xcc" "\x44\xfe\x07\x00\x00\x80\x15\xa1\xd3\xff\x93\xdd\x2e\xe6\xfe\x83\x61" "\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x87\xc2\x4c\x2a\x92\xff\xf5" "\xff\xf5\xff\xf5\xff\x0b\xda\xff\xff\x8b\x8d\xff\xf6\xbd\xef\x7c\xe0" "\xd0\x36\xfd\x7f\xfd\x7f\xfd\xff\xcb\x72\x4d\x3f\xff\xbf\xfe\xe2\xf7" "\xf9\xff\xfa\xff\xfa\xff\x89\xfe\xbf\xfe\xbf\xfe\x3f\xed\x8a\xd6\xff" "\x8f\xb9\xff\x70\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\x7f" "\x10\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x7f\x24\xcc\x44\xfe\x07" "\x00\x00\x80\xd2\x88\xb9\x7f\x2a\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f" "\xff\xbf\xa0\xfd\xff\x15\xfc\xf9\xff\xf1\x7c\xe8\xff\xb7\xea\x5b\xff" "\x3f\xbe\xe9\xea\xff\x77\x94\xf7\xef\xd3\x2a\xba\xba\xfd\xff\x8f\xcc" "\xf7\xc4\xf5\xff\x2f\xb7\xff\x3f\xd2\xf1\x52\xfd\x7f\xfd\xff\xab\x70" "\xfc\xab\x33\xfd\x7f\xfd\x7f\xae\x9b\xa2\xf5\xff\x63\xee\x9f\x0e\x33" "\xa9\x48\xfe\x07\x00\x00\x80\x2a\x08\xb9\x7f\xe0\x68\x3e\xe7\xaf\x90" "\xff\x01\x00\x00\xa0\x34\x62\xee\x3f\x16\x66\x22\xff\x03\x00\x00\x40" "\x69\xc4\xdc\xff\x89\x30\x93\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd" "\x7f\x9f\xff\xdf\x79\xff\xdd\xfa\xff\xb5\x21\x9f\xff\x5f\x54\xa9\x7f" "\xff\xf3\xc6\x0b\x45\xff\xbf\x4d\x71\xfa\xff\x9d\xe9\xff\xeb\xff\xaf" "\xe4\xe3\xd7\xff\xd7\xff\x67\xa1\xa2\xf5\xff\x63\xee\x9f\x09\x33\xa9" "\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\x93\x61\x26\xf2\x3f\x00\x00" "\x00\x94\x46\xcc\xfd\x9f\x0a\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee" "\x3f\x1e\x66\x52\x91\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf" "\x79\xff\x85\xfd\xfc\x7f\xfd\xff\xae\x96\xdb\xbf\xd7\xff\x0f\xf4\xff" "\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xe9\x83\xa2\xf5\xff\x63\xee\x3f\x11" "\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\xc9\xff\x67\xef\x4e" "\x9a\x2c\xab\xcb\x3c\x8e\xdf\xec\x2e\xba\xb2\x82\x5e\xf4\xae\x17\xbd" "\xe9\x88\x5e\xf6\x4b\x60\xd1\xbd\xd6\x17\xe0\xc2\x8d\x46\x68\x04\xe1" "\x42\x54\x54\x9c\x29\x9c\x47\x14\x15\x67\x45\x70\x1e\x70\x00\x41\x44" "\x05\xe7\x01\x9c\x50\x9c\x41\xc5\x79\x1e\x70\x42\x94\x28\x83\xac\xe7" "\x79\xaa\x32\xf3\xe4\xb9\x59\x59\x37\x33\xcf\xf9\xff\x3f\x9f\x05\x8f" "\x95\x92\xdc\x2b\x51\x51\x55\xbf\xca\xfa\x7a\xe2\x16\xfb\x1f\x00\x00" "\x00\x9a\x91\xbb\xff\x82\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f" "\x54\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\x9b\xed\xff\xff\x4f\xff\xbf\xd3" "\xeb\xeb\xff\xf5\xff\x2d\xd3\xff\x8f\xd3\xff\x2f\xa1\xff\xd7\xff\xeb" "\xff\xf5\xff\xac\xd4\xd4\xfa\xff\xdc\xfd\x8f\x8e\x5b\x3a\xd9\xff\x00" "\x00\x00\xd0\x83\xdc\xfd\x8f\x89\x5b\xec\x7f\x00\x00\x00\x68\x46\xee" "\xfe\x0b\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xb1\x71\x4b\x27" "\xfb\x7f\x4b\xff\xbf\xb6\xe8\xb3\xff\xcf\x8c\x57\xff\xdf\x52\xff\xef" "\xf9\xff\x3b\xbe\xbe\xfe\x5f\xff\xdf\xb2\x83\xed\xff\x2f\xb9\xff\x47" "\x3e\xfd\xbf\xfe\x5f\xff\x1f\xf4\xff\xbb\xea\xff\x8f\xee\xf4\xf9\xfa" "\x7f\x5a\x34\xb5\xfe\x3f\x77\xff\xe3\xe2\x96\x4e\xf6\x3f\x00\x00\x00" "\xf4\x20\x77\xff\xe3\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xa2" "\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x42\xdc\xd2\xc9\xfe\x5f" "\xdd\xf3\xff\x8f\x6d\x7c\x7c\xa6\xfd\x7f\xd1\xff\xeb\xff\x37\x3e\xa0" "\xff\xd7\xff\xeb\xff\x67\xcb\xf3\xff\xc7\xf5\xd4\xff\x5f\x78\xfb\xb9" "\x8f\xbc\xfb\xfa\xff\xba\xe1\x4c\x5e\x5f\xff\xaf\xff\xf7\xfc\x7f\xfd" "\x3f\xab\x35\xb5\xfe\x3f\x77\xff\x13\xe3\x96\x4e\xf6\x3f\x00\x00\x00" "\xf4\x20\x77\xff\x93\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xc9" "\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x94\xb8\xa5\x93\xfd\xbf" "\xba\xfe\x7f\xd6\xcf\xff\x2f\xfa\x7f\xfd\xff\xc6\x07\xf4\xff\xfa\x7f" "\xfd\xff\x6c\xe9\xff\xc7\xf5\xd4\xff\xef\xe5\xf5\xf5\xff\xfa\x7f\xfd" "\xbf\xfe\x9f\xd5\x9a\x5a\xff\x9f\xbb\xff\xa9\x71\x4b\x27\xfb\x1f\x00" "\x00\x00\x7a\x90\xbb\xff\x69\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd" "\x7f\x71\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x1f\x8f\x5b\x3a\xd9" "\xff\xfa\xff\xfd\xef\xff\xef\xd3\xff\xeb\xff\xe3\xea\xff\xf5\xff\xfa" "\xff\xfd\xa7\xff\x1f\xa7\xff\x5f\x42\xff\xaf\xff\xd7\xff\xeb\xff\x59" "\xa9\xa9\xf5\xff\xb9\xfb\x2f\x89\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83" "\xdc\xfd\x4f\x8f\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x67\xc4\x2d" "\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x33\xe3\x96\x4e\xf6\xbf\xfe\xdf" "\xf3\xff\xf5\xff\xfa\x7f\xfd\xff\xf0\xeb\xeb\xff\xe7\x49\xff\x3f\x4e" "\xff\xbf\x84\xfe\xff\x6c\xfb\xf9\x73\xf4\xff\xcd\xf6\xff\xff\xf6\xd0" "\x25\x9f\xaf\xff\x67\xc8\x19\xf6\xff\xf7\x8e\xfc\xb0\xbd\x92\xfe\x3f" "\x77\xff\xb3\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\xb3\xe3" "\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x39\x71\x8b\xfd\x0f\x00\x00" "\x00\xcd\xc8\xdd\xff\xdc\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5" "\xff\x7b\xee\xff\xb7\x7f\xd7\xdb\xa0\xff\x1f\xa6\xff\x3f\x18\xfa\xff" "\x71\x93\xe9\xff\xd7\x8e\x0c\x7e\x58\xff\x3f\xfb\xfe\xdf\xf3\xff\xdb" "\xed\xff\x3d\xff\x9f\x3d\x99\xda\xf3\xff\x73\xf7\x3f\x2f\x6e\xe9\x64" "\xff\x03\x00\x00\x40\x0f\x72\xf7\x3f\x3f\x6e\x19\xd9\xff\x67\xfc\x9b" "\xf9\x00\x00\x00\xc0\xa1\xca\xdd\xff\x82\xb8\xc5\xd7\xff\x01\x00\x00" "\x60\xf6\xb2\x3a\xcb\xdd\xff\xc2\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xeb" "\xff\xf5\xff\x9e\xff\x3f\xfc\xfa\x63\xfd\xff\x0d\xa7\xbd\x3f\xfd\xff" "\xb4\xe8\xff\xc7\x4d\xa6\xff\xdf\x81\xfe\x5f\xff\x3f\xe7\xf7\xaf\xff" "\xd7\xff\xb3\xdd\xd4\xfa\xff\xdc\xfd\x2f\x8a\x5b\x3a\xd9\xff\x00\x00" "\x00\xd0\x83\xdc\xfd\x97\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff" "\x8b\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x25\x71\x4b\x27\xfb" "\x7f\xb8\xff\x3f\xf5\xdf\xeb\xff\x77\x47\xff\xbf\xf9\xfd\xeb\xff\x87" "\xbf\x7f\xac\xaa\xff\xcf\x7f\xa2\xfe\x7f\xb4\xff\xff\x7f\xcf\xff\xef" "\x93\xfe\x7f\xdc\xc1\xf7\xff\x47\xf5\xff\x9b\xff\xf9\xfa\xff\x7d\x74" "\xd8\xef\xbf\xf1\xfe\xff\xd8\xb2\xcf\xd7\xff\x33\x64\x6a\xfd\x7f\xee" "\xfe\xcb\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x4b\xe3\x16" "\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x65\x71\x8b\xfd\x0f\x00\x00\x00" "\xcd\xc8\xdd\xff\xf2\xb8\xa5\x93\xfd\xef\xf9\xff\xfa\x7f\xfd\xff\xfc" "\xfa\x7f\xcf\xff\x3f\xe9\x30\x9f\xff\xbf\x38\xf0\xfe\xff\x88\xfe\x7f" "\x97\xf4\xff\xe3\x3c\xff\x7f\x09\xfd\xbf\xfe\x5f\xff\xef\xf9\xff\xac" "\xd4\xd4\xfa\xff\xdc\xfd\x97\xc7\x2d\x9d\xec\x7f\x00\x00\x00\xe8\xc1" "\xe5\xf7\x2c\x36\x76\xff\x2b\x16\x0b\xfb\x1f\x00\x00\x00\xe6\xe8\xf4" "\x3f\x3b\xb0\xf5\x0f\x94\x86\xdc\xfd\xaf\x8c\x5b\xec\x7f\x00\x00\x00" "\x68\x46\xee\xfe\x57\xc5\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\x0f\xbf\xfe\xb4\xfa\x7f\xcf\xff\xdf\x2d\xfd\xff\x38\xfd\xff" "\x12\xfa\xff\xfd\xe8\xe7\x8f\x34\xd6\xff\x5f\xb1\xd3\xe7\x4f\xa1\xff" "\xbf\x58\xff\xcf\xc4\x6c\xea\xff\x6f\x3a\xf5\xf1\xc3\xea\xff\x73\xf7" "\xbf\x3a\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\xbf\x26\x6e\xb1" "\xff\x01\x00\x00\xa0\x19\xb9\xfb\x5f\x1b\xb7\xd8\xff\x00\x00\x00\xd0" "\x8c\xdc\xfd\xaf\x8b\x5b\x3a\xd9\xff\xfb\xde\xff\x1f\xdb\xf9\xb5\xf5" "\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x5f\x35\xfd\xff\x38\xfd\xff" "\x12\xfa\x7f\xcf\xff\xf7\xfc\x7f\xfd\x3f\x2b\xb5\xa9\xff\x3f\xcd\x61" "\xf5\xff\xb9\xfb\x5f\x1f\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb" "\xdf\x10\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x57\xc4\x2d\xf6\x3f" "\x00\x00\x00\x34\x23\x77\xff\x1b\xe3\x96\x4e\xf6\xbf\xe7\xff\xeb\xff" "\xf5\xff\xfa\x7f\xfd\xff\xf0\xeb\xeb\xff\xe7\x49\xff\x3f\x4e\xff\xbf" "\x84\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\x52\x53\xeb\xff\x73\xf7\x5f\x19" "\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xaf\x8a\x5b\xec\x7f\x00" "\x00\x00\x68\x46\xee\xfe\x37\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77" "\xff\x9b\xe3\x96\x4e\xf6\xbf\xfe\x7f\x7f\xfb\xff\xfc\xb8\xfe\x5f\xff" "\xbf\xd0\xff\xeb\xff\xf5\xff\x07\xa2\xdb\xfe\x7f\x6d\xe8\x67\xa2\xed" "\x76\xe8\xff\x6f\x3d\xff\xf8\x03\x37\x7f\x44\xff\xaf\xff\xd7\xff\xeb" "\xff\xf5\xff\xac\xc0\x24\xfa\xff\x13\xa7\x7e\x75\x99\xbb\xff\x2d\x71" "\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xad\x71\x8b\xfd\x0f\x00" "\x00\x00\xcd\xc8\xdd\xff\xb6\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee" "\x7f\x7b\xdc\x72\x86\xfb\xff\x3f\x56\xfa\xae\x0e\x8e\xfe\xdf\xf3\xff" "\xf5\xff\xfa\x7f\xfd\xff\xf0\xeb\xeb\xff\xe7\xa9\xdb\xfe\x7f\x97\x3c" "\xff\x7f\x09\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xa5\x26\xd1\xff\x9f\xf6" "\xed\xdc\xfd\xef\x88\x5b\x7c\xfd\x1f\x00\x00\x00\x9a\x91\xbb\xff\x9d" "\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xae\xb8\xc5\xfe\x07\x00" "\x00\x80\x66\xe4\xee\x7f\x77\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\xff\xf0\xeb\xef\xb5\xff\x5f\x5f\x0c\xd3\xff\x1f\x0c\xfd" "\xff\x38\xfd\xff\x12\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x4a\x4d\xad\xff" "\xcf\xdd\x7f\x75\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x4f" "\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xbf\x37\x6e\xb1\xff\x01\x00" "\x00\xa0\x19\xb9\xfb\xdf\x17\xb7\x74\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf" "\xfe\x5f\xff\x3f\xfc\xfa\x9e\xff\x3f\x4f\xfa\xff\x71\xfa\xff\xc5\x62" "\x71\xcd\xc8\x1b\x18\xea\xff\x4f\x1c\xd5\xff\xeb\xff\xf5\xff\xfa\x7f" "\xf6\x68\x6a\xfd\x7f\xee\xfe\xf7\xc7\x2d\x9d\xec\x7f\x00\x00\x00\xe8" "\x41\xee\xfe\x6b\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xda\xb8" "\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x40\xdc\xd2\xc9\xfe\xd7\xff" "\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf0\xeb\xeb\xff\xe7\x49\xff\x3f\x4e" "\xff\xbf\x84\xe7\xff\xeb\xff\xf5\xff\xfa\x7f\x56\x6a\x6a\xfd\x7f\xee" "\xfe\xeb\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\xf5\x71\x8b" "\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xc1\xb8\xc5\xfe\x07\x00\x00\x80" "\x66\xe4\xee\xbf\x21\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff" "\xbe\xf4\xff\xc7\xf5\xff\x5b\xe9\xff\x0f\xc6\xfe\xf5\xff\x0b\xfd\xbf" "\xfe\x5f\xff\xbf\x84\xfe\x5f\xff\xaf\xff\x67\xab\x83\xea\xff\xef\x8d" "\x1f\xef\x97\xf5\xff\xb9\xfb\x3f\x14\xb7\x74\xb2\xff\x01\x00\x00\xa0" "\x07\xb9\xfb\x6f\x8c\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x0f\xc7" "\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x47\xe2\x96\x4e\xf6\xbf\xfe" "\x5f\xff\xaf\xff\xd7\xff\x7b\xfe\xff\xf0\xeb\xeb\xff\xe7\xc9\xf3\xff" "\xc7\xe9\xff\x97\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x56\xea\xa0\xfa\xff" "\x9d\x7a\xff\xad\xdf\xce\xdd\xff\xd1\xb8\xa5\x93\xfd\x0f\x00\x00\x00" "\x3d\xc8\xdd\x7f\x53\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xdf\x1c" "\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x1f\x8b\x5b\x3a\xd9\xff\xfa" "\x7f\xfd\xff\xe6\xfe\x7f\xb1\xd0\xff\xeb\xff\xf5\xff\x27\x1d\x40\xff" "\xbf\xbe\xd0\xff\xaf\x9c\xfe\x7f\x9c\xfe\x7f\x09\xfd\x7f\x9b\xfd\xff" "\xbf\x2c\x1a\xea\xff\x8f\xed\xf8\xf9\xfa\x7f\xa6\x68\x6a\xfd\x7f\xee" "\xfe\x8f\xc7\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x4f\xc4\x2d" "\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x27\xe3\x16\xfb\x1f\x00\x00\x00" "\x9a\x91\xbb\xff\x53\x71\x4b\x4b\xfb\xff\xbe\x9d\xd3\xb7\xf9\xf7\xff" "\x47\xb7\x7c\xa2\xfe\x7f\xb1\x58\xdc\x71\x91\xe7\xff\xeb\xff\x47\x5e" "\x5f\xff\x3f\x99\xfe\xbf\xfe\xad\xea\xff\x57\x47\xff\x3f\x4e\xff\xbf" "\x84\xfe\xbf\xcd\xfe\xdf\xf3\xff\xf5\xff\x1c\x9a\xa9\xf5\xff\xb9\xfb" "\x3f\x1d\xb7\xb4\xb4\xff\x01\x00\x00\xa0\x73\xb9\xfb\x3f\x13\xb7\xd8" "\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x9f\x8d\x5b\xec\x7f\x00\x00\x00\x68" "\x46\xee\xfe\xcf\xc5\x2d\x9d\xec\xff\xf9\xf7\xff\x5b\x3f\x51\xff\xbf" "\x38\xab\xe7\xff\xeb\xff\x37\x3e\xa0\xff\xd7\xff\xeb\xff\x67\xeb\x6c" "\xfb\xfb\x2b\xd7\xe3\xe7\x34\xfd\xbf\xfe\x5f\xff\x3f\xd8\xcf\xaf\xed" "\xf0\xeb\x9e\x85\xfe\x5f\xff\xaf\xff\x67\xc0\xd4\xfa\xff\xdc\xfd\x9f" "\x8f\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xb7\xc4\x2d\xf6\x3f" "\x00\x00\x00\x34\x23\x77\xff\xad\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8" "\xdd\xff\x85\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xe7\xd9\xff\xaf" "\xeb\xff\xf5\xff\xfa\xff\x41\x53\x79\xfe\xff\x79\xe7\x3d\xe0\x36\xfd" "\xbf\xfe\xbf\xc5\xfe\x7f\x8c\xfe\x5f\xff\xaf\xff\x67\xab\xa9\xf5\xff" "\xb9\xfb\xbf\x18\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xbf\x14" "\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x5f\x8e\x5b\xec\x7f\x00\x00" "\x00\x68\x46\xee\xfe\xaf\xc4\x2d\x9d\xec\xff\xed\xfd\xff\x39\x8b\x93" "\x85\xea\x49\x43\xfd\x7f\x34\x6a\xfa\xff\xd3\xe8\xff\x37\xbf\x7f\xfd" "\xff\xf0\xf7\x0f\xcf\xff\xd7\xff\xeb\xff\xf7\xdf\x54\xfa\x7f\xcf\xff" "\xdf\xdb\xfb\xd7\xff\xeb\xff\xe7\xfc\xfe\xcf\xa8\xff\xff\xef\xed\x9f" "\xaf\xff\xa7\x45\x53\xeb\xff\x73\xf7\xdf\x16\xb7\x74\xb2\xff\x01\x00" "\x00\xa0\x07\xb9\xfb\xbf\x1a\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd" "\x5f\x8b\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xdb\xe3\x96\x4e\xf6" "\xbf\xe7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf0\xeb\xeb\xff\xe7\x49" "\xff\x3f\x4e\xff\xbf\x84\xfe\x5f\xff\xef\xf9\xff\x17\x3c\xec\x5f\xf5" "\xff\xac\xce\xd4\xfa\xff\xdc\xfd\x5f\x8f\x5b\x36\x86\xdf\xff\xfc\xfb" "\x1e\xff\x67\x02\x00\x00\x00\x13\x92\xbb\xff\x1b\x71\x4b\x27\x5f\xff" "\x07\x00\x00\x80\x1e\xe4\xee\xff\x66\xdc\x62\xff\x03\x00\x00\x40\x33" "\x72\xf7\x7f\x2b\x6e\xe9\x64\xff\xeb\xff\x67\xdf\xff\x9f\x7f\x64\xe0" "\xb5\xf5\xff\xfa\xff\xb1\xd7\xd7\xff\xeb\xff\x5b\xa6\xff\x1f\xa7\xff" "\x5f\xa2\x9f\xfe\x7f\x7d\xe8\x83\x87\xdd\xcf\x9f\xad\xc3\x7e\xff\xcd" "\xf4\xff\x9e\xff\xcf\x0a\x4d\xad\xff\xcf\xdd\xff\xed\xb8\xa5\x93\xfd" "\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x9d\xb8\xc5\xfe\x07\x00\x00\x80\x66" "\xe4\xee\xff\x6e\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xdf\x11\xb7" "\x74\xb2\xff\xf5\xff\xb3\xef\xff\x3d\xff\x7f\x69\xff\xff\x10\xfd\xff" "\x96\xd7\xd7\xff\xeb\xff\x5b\xa6\xff\xcf\x9f\xd1\x87\xe9\xff\x97\xe8" "\xa7\xff\x1f\x74\xd8\xfd\xfc\xdc\xdf\xbf\xfe\x5f\xff\xcf\x76\x53\xeb" "\xff\x73\xf7\xdf\x19\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xbf" "\x17\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xdf\x8f\x5b\xec\x7f\x00" "\x00\x00\x68\x46\xee\xfe\x1f\xc4\x2d\x9d\xec\x7f\xfd\x7f\x5f\xfd\xff" "\xda\xa2\xc7\xfe\xdf\xf3\xff\xf5\xff\xfa\xff\x9e\xcc\xa7\xff\xbf\xea" "\xc8\xd0\x47\x3d\xff\x5f\xff\xaf\xff\x9f\xef\xfb\xd7\xff\xeb\xff\xd9" "\x6e\x6a\xfd\x7f\xee\xfe\xbb\xd6\x8e\x74\xb9\xff\x01\x00\x00\x60\xae" "\x1e\xf4\xbf\x8f\xb8\x73\xb7\x7f\xef\x5d\x1b\x7f\x5d\x5f\xfc\x30\x6e" "\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x7f\x14\xb7\xd8\xff\x00\x00\x00" "\xd0\x8c\xdc\xfd\x3f\x8e\x5b\x3a\xd9\xff\xfa\xff\xbe\xfa\xff\x3e\x9f" "\xff\xaf\xff\xd7\xff\xeb\xff\x7b\x32\x9f\xfe\x7f\x98\xfe\x5f\xff\xaf" "\xff\x9f\xef\xfb\xd7\xff\xeb\xff\xd9\x6e\x6a\xfd\x7f\xee\xfe\x9f\xc4" "\x2d\xa7\x0d\xbf\xc1\xff\x83\x1e\x00\x00\x00\x60\x36\x72\xf7\xff\x34" "\x6e\xe9\xe4\xeb\xff\x00\x00\x00\xd0\x83\xdc\xfd\x3f\x8b\x5b\xb6\xed" "\xff\x13\xbb\xfc\x53\xed\x00\x00\x00\xc0\xd4\xe4\xee\xff\x79\xdc\xd2" "\xc9\xd7\xff\xf5\xff\x13\xef\xff\x17\xfb\xd4\xff\xc7\xdf\xa7\xff\x3f" "\x49\xff\xaf\xff\x1f\x7a\x7d\xfd\xff\x3c\xe9\xff\xc7\x9d\x65\xff\x7f" "\x62\x4d\xff\xaf\xff\x1f\xa1\xff\xd7\xff\xeb\xff\xd9\x6a\x6a\xfd\x7f" "\xee\xfe\x1b\xaf\x5b\x74\xb9\xff\x01\x00\x00\xa0\x51\x9b\x7e\x47\xe1" "\x17\x1b\x7f\x5d\x5f\xfc\x32\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb" "\x7f\x15\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xbf\x8e\x5b\x3a\xd9" "\xff\xfa\xff\x89\xf7\xff\x7b\x7a\xfe\xff\xb1\xfa\x4f\x9e\xff\xdf\x79" "\xff\x7f\xe9\xfa\xe0\xeb\xeb\xff\xf5\xff\x2d\xd3\xff\x8f\xf3\xfc\xff" "\x25\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x95\x3a\x83\xfe\x7f\x63\x90\xee" "\x77\xff\x9f\xbb\xff\x37\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb" "\xff\xb7\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xbb\xb8\xc5\xfe" "\x07\x00\x00\x80\x66\xe4\xee\xff\x7d\xdc\xd2\xc9\xfe\xd7\xff\x1f\x42" "\xff\x7f\xd9\xd1\xc5\x62\x5f\xfb\xff\x5d\x3c\xff\x5f\xff\xdf\x47\xff" "\xbf\xc3\xeb\xb7\xd3\xff\xff\xe7\xb9\xc7\x6f\x79\xf0\xc3\xaf\xbd\x5a" "\xff\xcf\x29\x07\xd9\xff\xe7\xf7\x05\xfd\xbf\xfe\x5f\xff\x7f\x92\xfe" "\x5f\xff\xaf\xff\x67\xab\xa9\x3d\xff\x3f\x77\xff\x1f\xe2\x96\x4e\xf6" "\x3f\x00\x00\x00\xf4\x20\x77\xff\xdd\x71\x8b\xfd\x0f\x00\x00\x00\xcd" "\xc8\xdd\xff\xc7\xb8\xe5\xfe\xfd\x7f\xf3\x61\xbd\x2b\x00\x00\x00\x60" "\x95\x72\xf7\xff\x29\x6e\xe9\xe4\xeb\xff\xfa\xff\x16\x9f\xff\x3f\xcf" "\xfe\x3f\xff\x5d\x1f\x42\xff\x7f\x7c\x7e\xfd\x7f\x36\xc5\xbd\xf7\xff" "\x9e\xff\xaf\xff\xdf\xce\xf3\xff\xc7\xe9\xff\x97\xd0\xff\xeb\xff\xf5" "\xff\xfa\x7f\x56\x6a\x6a\xfd\x7f\xee\xfe\x3f\xc7\x2d\x9d\xec\x7f\x00" "\x00\x00\xe8\x41\xee\xfe\xbf\xc4\x2d\xb9\xff\xd7\xce\xf8\xb7\xee\x01" "\x00\x00\x80\x89\xc9\xdd\xff\xd7\xb8\xc5\xd7\xff\x01\x00\x00\xa0\x19" "\xb9\xfb\xef\x89\x5b\x3a\xd9\xff\xfa\x7f\xfd\xff\x54\xfa\xff\xe4\xf9" "\xff\xa7\x3e\x6f\x9a\xcf\xff\x3f\x56\xdf\xd2\xff\x9f\xa4\xff\x9f\x16" "\xfd\xff\x38\xfd\xff\x12\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x4a\x4d\xad" "\xff\xcf\xdd\xff\xb7\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\x7f" "\x6f\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x3d\x6e\xb1\xff\x01" "\x00\x00\xa0\x19\xb9\xfb\xff\x11\xb7\x74\xb2\xff\xf5\xff\xfa\x7f\xfd" "\xbf\xfe\xdf\xf3\xff\x87\x5f\x5f\xff\x3f\x4f\xfa\xff\x71\xfa\xff\x25" "\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x95\x9a\x5a\xff\x9f\xbb\xff\x9f\x01" "\x00\x00\xff\xff\x27\xda\x73\x60", 25049); syz_mount_image(/*fs=*/0x200000000000, /*dir=*/0x200000000040, /*flags=MS_MANDLOCK*/ 0x40, /*opts=*/0x2000000000c0, /*chdir=*/1, /*size=*/0x61d9, /*img=*/0x200000006940); break; case 1: // openat$dir arguments: [ // fd: const = 0xffffffffffffff9c (8 bytes) // file: ptr[in, buffer] { // buffer: {2e 00} (length 0x2) // } // flags: open_flags = 0x0 (4 bytes) // mode: open_mode = 0x0 (2 bytes) // ] // returns fd_dir memcpy((void*)0x200000000040, ".\000", 2); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x200000000040ul, /*flags=*/0, /*mode=*/0); if (res != -1) r[0] = res; break; case 2: // getdents64 arguments: [ // fd: fd_dir (resource) // ent: nil // count: len = 0x0 (8 bytes) // ] syscall(__NR_getdents64, /*fd=*/r[0], /*ent=*/0ul, /*count=*/0ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); setup_sysctl(); const char* reason; (void)reason; use_temporary_dir(); loop(); return 0; }