// https://syzkaller.appspot.com/bug?id=351daa89a803aed4a7ae4bff3015324b4cbd56bb // 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); if (call == 1) break; 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); } } void execute_call(int call) { 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 31 00} (length 0x8) // } // flags: mount_flags = 0x0 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // chdir: int8 = 0xfd (1 bytes) // size: len = 0x620a (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x620a) // } // ] // returns fd_dir memcpy((void*)0x200000000080, "jfs\000", 4); memcpy((void*)0x200000000000, "./file1\000", 8); memcpy( (void*)0x20000000b800, "\x78\x9c\xec\xdd\xcf\x6f\x1c\x67\xfd\x07\xf0\xcf\xec\x2f\xff\xc8\xb7" "\xa9\xd5\x43\xd5\x6f\x84\x90\x9b\x96\x1f\xa5\x34\x89\x93\x12\x02\x05" "\xda\x1e\xe0\xc0\xa5\x07\x94\x23\x28\x91\xeb\x56\x11\x29\xa0\x24\xa0" "\xb4\xb2\x88\x2b\x5f\x38\x70\xe2\x2f\x00\x21\x71\x44\x88\x23\xe2\xc0" "\x1f\xd0\x03\x57\x6e\x9c\x38\x11\xc9\x46\x02\xf5\xc4\xa0\xb1\x9f\x27" "\x99\xdd\xec\xd6\x76\x6d\xef\xac\x3d\xaf\x97\xe4\xcc\x7c\xe6\x99\xb5" "\x9f\xd9\xf7\xce\xfe\xc8\xcc\xec\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\x7c\xf7\x3b\xdf\x5b\x29\x22\xe2\xc6\xcf" "\xd2\x82\xa5\x88\xff\x8b\x6e\x44\x27\x62\xa1\xaa\x97\x23\x62\x61\x79" "\x29\xaf\xdf\x8b\x88\xe7\x62\xa7\x39\x9e\x8d\x88\xfe\x5c\x44\x75\xfb" "\x9d\x7f\x9e\x8e\x78\x35\x22\x3e\x3a\x1b\xb1\xb5\xbd\xbe\x5a\x2d\xbe" "\xbc\xcf\x7e\x7c\xfb\x0f\x7f\xfb\xed\x0f\xce\xbc\xf5\xd7\xdf\xf7\x2f" "\xfe\xe7\x8f\xf7\xba\xaf\x4d\x5a\xef\xfe\xfd\x5f\xfe\xfb\x4f\x0f\x0e" "\xb7\xcd\x00\x00\x00\xd0\x36\x65\x59\x96\x45\xfa\x98\x7f\x2e\x7d\xbe" "\xef\x34\xdd\x29\x00\x60\x2a\xf2\xeb\x7f\x99\xe4\xe5\xa7\xbe\xfe\xd5" "\x3f\xde\xfa\xf3\x2c\xf5\x47\xad\x56\xab\xd5\xea\x29\xd4\x75\xe5\x78" "\x0f\xea\x45\x44\x6c\xd4\x6f\x53\xbd\x67\x70\x38\x1e\x00\x4e\x98\x8d" "\xf8\xb8\xe9\x2e\xd0\x20\xf9\xb7\x5a\x2f\x22\xce\x34\xdd\x09\x60\xa6" "\x15\x4d\x77\x80\x63\xb1\xb5\xbd\xbe\x5a\xa4\x7c\x8b\xfa\xeb\xc1\xf2" "\x6e\x7b\x3e\x17\x64\x28\xff\x8d\xe2\xd1\xf5\x1d\x93\xa6\x7b\x19\x3d" "\xc7\x64\x5a\x8f\xaf\xcd\xe8\xc6\x33\x13\xfa\xb3\x30\xa5\x3e\xcc\x92" "\x9c\x7f\x67\x34\xff\x1b\xbb\xed\x83\xb4\xde\x71\xe7\x3f\x2d\x93\xf2" "\x1f\xec\x5e\xfa\xd4\x3a\x39\xff\xee\x68\xfe\x23\x4e\x4f\xfe\x9d\xb1" "\xf9\xb7\x55\xce\xbf\x77\xa0\xfc\xbb\xf2\x07\x00\x00\x00\x00\x80\x19" "\x96\xff\xff\x7f\xa9\xe1\xe3\xbf\x73\x87\xdf\x94\x7d\xf9\xa4\xe3\xbf" "\xcb\x53\xea\x03\x00\x00\x00\x00\x00\x00\x00\x1c\xb5\xc3\x8e\xff\xf7" "\x88\xf1\xff\x00\x00\x00\x60\x66\x55\x9f\xd5\x2b\xbf\x3e\xfb\x78\xd9" "\xa4\xef\x62\xab\x96\x5f\x2f\x22\x9e\x1a\x59\x1f\x68\x99\x74\xb1\xcc" "\x62\xd3\xfd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x36\xe9\xed" "\x9e\xc3\x7b\xbd\x88\xe8\x47\xc4\x53\x8b\x8b\x65\x59\x56\x3f\x75\xa3" "\xf5\x41\x1d\xf6\xf6\x27\x5d\xdb\xb7\x1f\xda\xa1\x18\xbb\xb4\xe9\x27" "\x79\x00\x00\xd8\xf5\xd1\xd9\x91\x6b\xf9\x8b\x88\xf9\x88\xb8\x9e\xbe" "\xeb\xaf\xbf\xb8\xb8\x58\x96\xf3\x0b\x8b\xe5\x62\xb9\x30\x97\xdf\xcf" "\x0e\xe6\xe6\xcb\x85\xda\xe7\xda\x3c\xad\x96\xcd\x0d\xf6\xf1\x36\xb9" "\x37\x28\xab\x5f\x36\x5f\xbb\x5d\xdd\x5e\x9f\x97\xf7\x6a\x1f\xfd\x7d" "\xd5\xdf\x1a\x94\xdd\x7d\x74\xec\x88\xf4\xd3\xbd\x39\xa1\xb9\xa1\xb0" "\x01\x20\xd9\x7d\x35\xda\xf2\x8a\x74\xca\x94\xe5\xd3\x93\xde\x7c\xc0" "\x10\xfb\xff\x29\xb4\x14\x4b\x4d\x3f\xae\x98\x7d\x4d\x3f\x4c\x01\x00" "\x00\x80\xe3\x57\x96\x65\x59\xa4\xaf\xf3\x3e\x97\x8e\xf9\x77\x9a\xee" "\x14\x00\x30\x15\xf9\xf5\x7f\xf4\xb8\xc0\xa1\xea\xce\x84\xf6\x88\xa3" "\xf9\xfd\x6a\xb5\x5a\xad\x56\xab\x3f\x55\x5d\x57\x8e\xf7\xa0\x5e\x44" "\xc4\x46\xfd\x36\xd5\x7b\x06\xc3\xf1\x03\xc0\x09\xb3\x11\x1f\x37\xdd" "\x05\x1a\x24\xff\x56\xeb\x45\xc4\x73\x4d\x77\x02\x98\x69\x45\xd3\x1d" "\xe0\x58\x6c\x6d\xaf\xaf\x16\x29\xdf\xa2\xfe\x7a\x90\xc6\x77\xcf\xe7" "\x82\x0c\xe5\xbf\x51\xec\xdc\x2e\xdf\x7e\xdc\x74\x2f\xa3\xe7\x98\x4c" "\xeb\xf1\xb5\x19\xdd\x78\x66\x42\x7f\x9e\x9d\x52\x1f\x66\x49\xce\xbf" "\x33\x9a\xff\x8d\xdd\xf6\x41\x5a\xef\xb8\xf3\x9f\x96\x49\xf9\x0f\x76" "\x2e\x99\x6b\x9f\x9c\x7f\x77\x34\xff\x11\xa7\x27\xff\xce\xd8\xfc\xdb" "\x2a\xe7\xdf\x3b\x50\xfe\x5d\xf9\x03\x00\x00\x00\x00\xc0\x0c\xcb\xff" "\xff\xbf\xe4\xf8\x6f\xde\x64\x00\x00\x00\x00\x00\x00\x00\x38\x71\xb6" "\xb6\xd7\x57\xf3\x75\xaf\xf9\xf8\xff\x67\xc6\xac\xe7\xfa\xcf\xd3\x29" "\xe7\x5f\x1c\x34\xff\x85\x34\x2f\xff\x13\x2d\xe7\xdf\x19\xc9\xff\x8b" "\x23\xeb\x75\x6b\xf3\x0f\xdf\x7c\xbc\xff\xff\x6b\x7b\x7d\xf5\x77\xf7" "\xfe\xf9\xff\x79\xba\xdf\xfc\xe7\xf2\x4c\x91\x1e\x59\x45\x7a\x44\x14" "\xe9\x2f\x15\xbd\x34\x3d\xcc\xd6\x3d\x69\xb3\xdf\x1d\x54\x7f\xa9\x5f" "\x74\xba\xbd\x74\xce\x4f\xf9\xa8\x33\x97\x86\xd6\xed\xa4\xfb\xa3\xec" "\xbf\x13\xb7\xe2\x76\xac\xc5\xca\x50\x7b\xd5\xd3\xfe\x50\xfb\xe5\xa1" "\xf6\xde\x13\xed\x57\x86\xda\xfb\xe9\x7b\x07\xca\x85\xdc\x7e\x21\x56" "\xe3\xc7\x71\x3b\xde\xde\x69\x1f\x0c\xdf\xed\x63\xcd\xef\x71\xff\x94" "\x7b\xb4\xe7\xfc\xbb\x9e\xff\x5b\x29\xe7\xdf\xab\xfd\x54\xf9\x2f\xa6" "\xf6\x62\x64\x5a\x79\xf8\x61\xe7\x89\xfd\xbe\x3e\x1d\xf7\x77\xde\xb8" "\xf5\xd9\x5f\x5c\x3a\xfe\xcd\xd9\xd3\x66\x74\x1f\x6d\x5b\x5d\xb5\x7d" "\xe7\x1b\xe8\xcf\xce\x7d\x72\x66\x10\x3f\xbd\xbb\x76\xe7\xc2\xfd\x9b" "\xf7\xee\xdd\x59\x89\x34\x19\x5a\x7a\x39\xd2\xe4\x88\xe5\xfc\xfb\x3b" "\x3f\x73\x8f\x9f\xff\x5f\xd8\x6d\xcf\x4f\x40\xf5\xfd\xf5\xe1\x87\x83" "\x03\xe7\x3f\x2b\x36\xa3\x37\x31\xff\x17\x6a\xf3\xd5\xf6\xbe\x34\xe5" "\xbe\x35\x21\xe7\x3f\x48\x3f\x39\xff\xb7\x53\xfb\xf8\xfd\xff\x24\xe7" "\x3f\x79\xff\x7f\xb9\x81\xfe\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xc0\x27\x29\xcb\x72\xe7\x12\xd1\x37\x22\xe2\x6a\xba\xfe\xa7" "\xa9\x6b\x33\x01\x80\xe9\xca\xaf\xff\x65\x92\x97\xab\x8f\xbc\xfe\xfe" "\x99\x88\x59\xea\x8f\x5a\xad\x56\xab\x5b\x58\xd7\x95\xe3\xbd\x5e\x2f" "\x22\xe2\x2f\xf5\xdb\x54\xef\x19\x7e\x3e\xee\x97\x01\x00\xb3\xec\xbf" "\x11\xf1\xf7\xa6\x3b\x41\x63\xe4\xdf\x62\xf9\xfb\xfe\xaa\xe9\x8b\x4d" "\x77\x06\x98\xaa\xbb\xef\x7f\xf0\xc3\x9b\xb7\x6f\xaf\xdd\xb9\xdb\x74" "\x4f\x00\x00\x00\x00\x00\x00\x00\x80\x4f\x2b\x8f\xff\xb9\x5c\x1b\xff" "\xf9\xc5\x88\x58\x1a\x59\x6f\x68\xfc\xd7\x37\x63\xf9\xb0\xe3\x7f\xf6" "\xf2\xcc\xa3\x01\x46\x8f\x78\xa0\xef\x09\x36\x3b\x83\x6e\xa7\x36\xdc" "\xf8\xf3\xb1\x33\x3e\xf7\x85\xdd\xf1\xb7\x9f\x1c\xff\xfb\x7c\x3c\x39" "\xfe\x77\x1e\x13\xb7\x5b\xdf\x8e\x09\xfa\x7b\xb4\x0f\xf6\x68\x9f\xdb" "\xa3\x7d\x7e\xec\xd2\xc7\x69\x8d\xbd\xd0\xa3\x26\xe7\xff\x7c\x6d\xbc" "\xf3\x2a\xff\x73\x23\xc3\xaf\xb7\x61\xfc\xd7\xd1\x31\xef\xdb\x20\xe7" "\x7f\xbe\xf6\x78\xae\xf2\xff\xc2\xc8\x7a\xf5\xfc\xcb\xdf\xcc\x5c\xfe" "\x1b\xfb\x5d\x71\x33\x3a\x43\xf9\x5f\xbc\xf7\xde\x4f\x2e\xde\x7d\xff" "\x83\x57\x6e\xbd\x77\xf3\xdd\xb5\x77\xd7\x7e\x74\x65\x65\xe5\xd2\x95" "\xab\x57\xaf\x5d\xbb\x76\xf1\x9d\x5b\xb7\xd7\x2e\xed\xfe\x7b\x3c\xbd" "\x9e\x01\x39\xff\x3c\xf6\xb5\xf3\x40\xdb\x25\xe7\x9f\x33\x97\x7f\xbb" "\xe4\xfc\x3f\x97\x6a\xf9\xb7\x4b\xce\xff\xf3\xa9\x96\x7f\xbb\xe4\xfc" "\xf3\xfb\x3d\xf9\xb7\x4b\xce\x3f\x7f\xf6\x91\x7f\xbb\xe4\xfc\x5f\x4a" "\xb5\xfc\xdb\x25\xe7\xff\xa5\x54\xcb\xbf\x5d\xb6\xb6\xd7\xe7\xaa\xfc" "\x5f\x4e\xb5\xfc\xdb\x25\xef\xff\x5f\x4e\xb5\xfc\xdb\x25\xe7\xff\x4a" "\xaa\xe5\xdf\x2e\x39\xff\x0b\xa9\x96\x7f\xbb\xe4\xfc\x2f\xa6\x7a\x1f" "\xf9\xfb\x7a\xf8\x53\x24\xe7\x9f\x8f\x70\xd9\xff\xdb\x25\xe7\xbf\x92" "\x6a\xf9\xb7\x4b\xce\xff\x72\xaa\xe5\xdf\x2e\x39\xff\x2b\xa9\x96\x7f" "\xbb\xe4\xfc\x5f\x4d\xb5\xfc\xdb\x25\xe7\xff\x95\x54\xcb\xbf\x5d\x72" "\xfe\x57\x53\x2d\xff\x76\xc9\xf9\x7f\x35\xd5\xf2\x6f\x97\x9c\xff\xb5" "\x54\xcb\xbf\x5d\x72\xfe\x5f\x4b\xb5\xfc\xdb\x25\xe7\xff\xf5\x54\xcb" "\xbf\x5d\x72\xfe\xaf\xa5\x5a\xfe\xed\x92\xf3\xff\x46\xaa\xe5\xdf\x2e" "\x39\xff\x6f\xa6\x5a\xfe\xed\x92\xf3\xff\x56\xaa\xe5\xdf\x2e\x39\xff" "\xd7\x53\x2d\xff\x76\x79\xfc\xfd\xff\x66\xcc\x98\x31\x93\x67\x9a\x7e" "\x66\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x46\x4d\xe3\x74\xe2" "\xa6\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\xe0\x7f\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\x1a\x23\xd7\x59\xdf\x0f\xfc\xcc\xde\xbc\x76" "\x08\x31\x10\x82\x93\xbf\x81\x8d\x63\x8c\x71\x96\xec\xfa\x12\x5f\xf8" "\xd7\xc5\x84\x7b\x80\x52\x20\xa1\xd0\x0b\xb6\xeb\x5d\x9b\x05\xdf\xf0" "\xda\x25\x50\x24\x9b\x06\x4a\x24\x8c\x8a\x2a\xaa\xa6\x2f\xda\x02\x42" "\x6d\xa4\xaa\xc2\xaa\x78\x41\x2b\x4a\xf3\xa2\xea\xe5\x55\x69\x5f\xd0" "\x37\x15\x55\x25\xa4\x46\x55\x40\x01\x15\xa9\xad\x68\xb6\x9a\x73\x9e" "\xe7\xf1\xcc\xec\xec\xcc\xae\x77\xbc\x3e\x7b\xce\xe7\x23\xd9\xbf\xdd" "\x99\x73\xe6\x5c\xe6\x39\x67\xe6\xb7\xbb\xdf\x39\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xad\xee" "\x7d\xe3\xec\xe7\x1a\x59\x96\x35\xff\xe5\xff\x6d\xce\xb2\x17\x34\xbf" "\xde\x38\xb1\x39\xbf\xed\x75\xb7\x7a\x0d\x01\x00\x00\x80\xd5\xfa\xdf" "\xfc\xff\xe7\xee\x48\x37\x1c\x59\xc6\x4c\x2d\xd3\xfc\xed\x2b\xfe\xe1" "\x1b\x0b\x0b\x0b\x0b\xd9\x07\x86\x7f\x67\xf4\x4b\x0b\x0b\xe9\x8e\x89" "\x2c\x1b\xdd\x90\x65\xf9\x7d\xd1\xb5\x7f\xfb\x60\xa3\x75\x9a\xe0\xf1" "\x6c\xbc\x31\xd4\xf2\xfd\x50\x9f\xc5\x0f\xf7\xb9\x7f\xa4\xcf\xfd\xa3" "\x7d\xee\x1f\xeb\x73\xff\x86\x3e\xf7\x8f\xf7\xb9\x7f\xd1\x0e\x58\x64" "\x63\xf1\xf3\x98\xfc\xc1\xb6\xe7\x5f\x6e\x2e\x76\x69\x76\x67\x36\x9a" "\xdf\xb7\xbd\xcb\x5c\x8f\x37\x36\x0c\x0d\xc5\x9f\xe5\xe4\x1a\xf9\x3c" "\x0b\xa3\x27\xb3\xb9\xec\x74\x36\x9b\x4d\xb7\x4d\x5f\x4c\xdb\xc8\xa7" "\xff\xd6\xbd\xcd\x65\xbd\x2d\x8b\xcb\x1a\x6a\x59\xd6\xd6\xe6\x08\xf9" "\xd1\xa7\x4e\xc4\x75\x68\x84\x7d\xbc\xbd\x6d\x59\xd7\x1f\x33\xfa\xc1" "\x1b\xb2\x89\x1f\xff\xe8\x53\x27\xfe\xe8\xe2\xb3\x77\x77\xab\x7d\x77" "\x43\xdb\xe3\x15\xeb\xb9\x73\x5b\x73\x3d\x3f\x13\x6e\x29\xd6\xb5\x91" "\x6d\x48\xfb\x24\xae\xe7\x50\xcb\x7a\x6e\xed\xf2\x9c\x0c\xb7\xad\x67" "\x23\x9f\xaf\xf9\x75\xe7\x7a\x3e\xb7\xcc\xf5\x1c\xbe\xbe\x9a\x6b\xaa" "\xf3\x39\x1f\xcf\x86\xf2\xaf\xbf\x93\xef\xa7\x91\xd6\x1f\xeb\xa5\xfd" "\xb4\x35\xdc\xf6\x5f\xf7\x65\x59\x76\xe5\xfa\x6a\x77\x4e\xb3\x68\x59" "\xd9\x50\xb6\xa9\xed\x96\xa1\xeb\xcf\xcf\x78\x31\x22\x9b\x8f\xd1\x1c" "\x4a\x2f\xce\x46\x56\x34\x4e\xef\x5d\xc6\x38\x6d\xd6\x99\xed\xed\xe3" "\xb4\xf3\x98\x88\xcf\xff\xbd\x61\xbe\x91\x25\xd6\xa1\xf5\x69\xfa\xc1" "\xa7\xc7\x16\x3d\xef\x2b\x1d\xa7\x51\x73\xab\x97\x3a\x56\x3a\xc7\xe0" "\xa0\x8f\x95\xb2\x8c\xc1\x38\x2e\xbe\x93\x6f\xf4\x13\x5d\xc7\xe0\xf6" "\xb0\xfd\x9f\xda\xb1\xf4\x18\xec\x3a\x76\xba\x8c\xc1\xb4\xdd\x2d\x63" "\x70\x5b\xbf\x31\x38\x34\x36\x9c\xaf\x73\x7a\x12\x1a\xf9\x3c\xd7\xc7" "\xe0\xee\xb6\xe9\x87\xf3\x25\x35\xf2\xfa\xcc\x8e\xde\x63\x70\xea\xe2" "\x99\xf3\x53\xf3\x9f\xf8\xe4\x6b\xe7\xce\x1c\x3f\x35\x7b\x6a\xf6\xec" "\xde\xdd\xbb\xa7\xf7\xee\xdf\x7f\xf0\xe0\xc1\xa9\x93\x73\xa7\x67\xa7" "\x8b\xff\x6f\x70\x6f\x97\xdf\xa6\x6c\x28\x1d\x03\xdb\xc2\xbe\x8b\xc7" "\xc0\xab\x3b\xa6\x6d\x1d\xaa\x0b\x5f\x19\xdc\x71\x38\xde\xe3\x38\xdc" "\xdc\x31\xed\xa0\x8f\xc3\x91\xce\x8d\x6b\xac\xcd\x01\xb9\x78\x4c\x17" "\xc7\xc6\x23\xcd\x9d\x3e\x7e\x75\x28\x5b\xe2\x18\xcb\x9f\x9f\x5d\xab" "\x3f\x0e\xd3\x76\xb7\x1c\x87\x23\x2d\xc7\x61\xd7\xd7\x94\x2e\xc7\xe1" "\xc8\x32\x8e\xc3\xe6\x34\xe7\x77\x2d\xef\x3d\xcb\x48\xcb\xbf\x6e\xeb" "\x70\xb3\x5e\x0b\x36\xb7\x8c\xc1\xce\xf7\x23\x9d\x63\x70\xd0\xef\x47" "\xca\x32\x06\xc7\xc3\xb8\xf8\x97\x5d\x4b\xbf\x16\x6c\x0d\xeb\xfb\xc4" "\xe4\x4a\xdf\x8f\x0c\x2f\x1a\x83\x69\x73\xc3\xb9\xa7\x79\x4b\x7a\xbf" "\x3f\x7e\x30\x2f\xdd\xc6\xe5\x3d\xcd\x3b\x6e\x1b\xcb\x2e\xcd\xcf\x5e" "\x78\xe0\xb1\xe3\x17\x2f\x5e\xd8\x9d\x85\xb2\x26\x5e\xd2\x32\x56\x3a" "\xc7\xeb\xa6\x96\x6d\xca\x16\x8d\xd7\xa1\x15\x8f\xd7\x23\x73\xaf\x78" "\xe2\x9e\x2e\xb7\x6f\x0e\xfb\x6a\xfc\xb5\xcd\xff\xc6\x97\x7c\xae\x9a" "\xd3\xec\x7b\xa0\xf7\x73\x95\xbf\xba\x75\xdf\x9f\x6d\xb7\xee\xc9\x42" "\x19\xb0\xb5\xde\x9f\xdd\x5e\xcd\x9b\xfb\x33\xf5\x92\x3d\xf6\x67\x73" "\x9a\xcf\x4c\xad\xfe\xbd\x78\xea\x4b\x5b\xce\xbf\xa3\x4b\x9c\x7f\x63" "\xdf\xff\x7c\xb1\xbc\xf4\x50\x8f\x0f\x8f\x8e\x14\xc7\xef\x70\xda\x3b" "\xa3\x6d\xe7\xe3\xf6\xa7\x6a\x24\x3f\x77\x35\xf2\x65\x3f\x37\xb5\xbc" "\xf3\xf1\x68\xf8\xb7\xd6\xe7\xe3\x3b\x7b\x9c\x8f\xb7\x74\x4c\x3b\xe8" "\xf3\xf1\x68\xe7\xc6\xc5\xf3\x71\xa3\xdf\x4f\x3b\x56\xa7\xf3\xf9\x1c" "\x0f\xe3\xe4\xf4\x74\xef\xf3\x71\x73\x9a\x2d\x7b\x56\x3a\x26\x47\x7a" "\x9e\x8f\xef\x0b\xb5\x11\xf6\xff\x6b\x42\xa7\x90\xfa\xa2\x96\xb1\xb3" "\xd4\xb8\x4d\xcb\x1a\x19\x19\x0d\xdb\x35\x12\x97\xd0\x3e\x4e\xf7\xb6" "\x4d\x3f\x1a\x7a\xb3\xe6\xb2\x9e\xda\x73\x63\xe3\x74\xe7\x7d\xc5\x63" "\x0d\xa7\xad\xbb\x6e\xad\xc6\xe9\x44\xc7\xb4\x83\x1e\xa7\xe9\x7c\xb5" "\xd4\x38\x6d\xf4\xfb\xe9\xdb\x8d\xe9\x7c\x3e\xc7\xc3\xb8\xb8\x73\x6f" "\xef\x71\xda\x9c\xe6\xe9\x7d\xab\x3f\x77\x6e\x8c\x5f\xb6\x9c\x3b\xc7" "\xfa\x8d\xc1\xd1\xe1\xb1\xe6\x3a\x8f\xa6\x41\x58\x9c\xef\x17\x36\xc6" "\x31\xf8\x40\x76\x22\x3b\x97\x9d\xce\x66\xf2\x7b\xc7\xf2\xf1\xd4\xc8" "\x97\x35\xf9\xe0\xf2\xc6\xe0\x58\xf8\xb7\xd6\xe7\xca\x2d\x3d\xc6\xe0" "\xce\x8e\x69\x07\x3d\x06\xd3\xeb\xd8\x52\x63\xaf\x31\xb2\x78\xe3\x07" "\xa0\xf3\xf9\x1c\x0f\xe3\xe2\xc9\x07\x7b\x8f\xc1\xe6\x34\x6f\x3a\x30" "\xd8\xf7\xae\x3b\xc3\x2d\x69\x9a\x96\xf7\xae\x9d\x3f\x5f\x5b\xea\x67" "\x5e\xf7\x74\xec\xa6\x9b\xf9\x33\xaf\xe6\x7a\xfe\xf5\x81\xde\x3f\x9b" "\x6d\x4e\x73\xfa\xe0\x4a\xfb\xcc\xde\xfb\xe9\xfe\x70\xcb\x6d\xc5\x4d" "\x63\xad\xfb\xa9\xf3\xf8\x5d\xea\x98\x9a\xc9\xd6\x66\x3f\x6d\x09\xeb" "\xf9\xec\xc1\xa5\xf7\x53\x73\x7d\x9a\xd3\x7c\xe9\xd0\x32\xc7\xd3\x91" "\x2c\xcb\x2e\x7f\xec\xa1\xfc\xe7\xbd\xe1\xf7\x2b\x7f\x76\xe9\xbb\xdf" "\x68\xfb\xbd\x4b\xb7\xdf\xe9\x5c\xfe\xd8\x43\x3f\xbc\xfd\xe4\xdf\xac" "\x64\xfd\x01\x58\xff\x9e\x2f\xca\xa6\xe2\xb5\xae\xe5\x37\x53\xcb\xf9" "\xfd\x3f\x00\x00\x00\xb0\x2e\xc4\xbe\x7f\x28\xd4\x44\xff\x0f\x00\x00" "\x00\x95\x11\xfb\xfe\xf8\x57\xe1\x89\xfe\x1f\x00\x00\x00\x2a\x23\xf6" "\xfd\x23\xa1\x26\x35\xe9\xff\xb7\xbc\xe9\xd9\xb9\xe7\x2f\x67\x29\x99" "\xbf\x10\xc4\xfb\xd3\x6e\x78\xb8\x98\x2e\x66\x5c\xa7\xc3\xf7\x13\x0b" "\xd7\x35\x6f\x7f\xe8\x6b\xb3\x3f\xf9\x8b\xcb\xcb\x5b\xf6\x50\x96\x65" "\x3f\x7d\xf8\xd7\xbb\x4e\xbf\xe5\xe1\xb8\x5e\x85\x89\xb0\x9e\xd7\xde" "\xdc\x7e\xfb\xe2\x19\x2f\x2f\x6b\xf9\xc7\x1e\xbd\x3e\x5d\x6b\x7e\xfd" "\xcb\xe1\xf1\xe3\xf6\x2c\x77\x18\x74\x8b\xe0\x4e\x67\x59\xf6\xad\x3b" "\xbe\x90\x2f\x67\xe2\x83\x57\xf3\xfa\xf4\xc3\xc7\xf2\xfa\xde\x2b\x4f" "\x3c\xde\x9c\xe6\xb9\x43\xc5\xf7\x71\xfe\x67\x5e\x52\x4c\xff\xfb\x21" "\xfc\x7b\xe4\xe4\xf1\xb6\xf9\x9f\x09\xfb\xe1\xfb\xa1\x4e\xbf\xa3\xfb" "\xfe\x88\xf3\x7d\xfd\xea\x6b\xb6\x1e\x78\xff\xf5\xe5\xc5\xf9\x1a\xdb" "\x5e\x98\x6f\xf6\x93\x1f\x2a\x1e\x37\x7e\x4e\xce\x17\x1f\x2f\xa6\x8f" "\xfb\x79\xa9\xf5\xff\xcb\xcf\x3f\xf5\xf5\xe6\xf4\x8f\xbd\xaa\xfb\xfa" "\x5f\x1e\xea\xbe\xfe\x4f\x85\xc7\xfd\x5a\xa8\xff\xfd\xf2\x62\xfa\xd6" "\xe7\xa0\xf9\x7d\x9c\xef\xb3\x61\xfd\xe3\xf2\xe2\x7c\x0f\x7c\xf5\xdb" "\x5d\xd7\xff\xda\xe7\x8a\xe9\xcf\xbf\xa5\x98\xee\x58\xa8\x71\xf9\x3b" "\xc3\xf7\xdb\xdf\xf2\xec\x5c\xeb\xfe\x7a\xac\x71\xbc\x6d\xbb\xb2\xb7" "\x16\xd3\xc5\xe5\x4f\x7f\xf7\xb7\xf2\xfb\xe3\xe3\xc5\xc7\xef\x5c\xff" "\xf1\xa3\x57\xdb\xf6\x47\xe7\xf8\x78\xfa\x9f\x8a\xc7\x99\xea\x98\x3e" "\xde\x1e\x97\x13\xfd\x79\xc7\xf2\x9b\x8f\xd3\x3a\x3e\xe3\xf2\x9f\xfa" "\xcd\x63\x6d\xfb\xb9\xdf\xf2\xaf\xbd\xf7\x99\x97\x37\x1f\xb7\x73\xf9" "\xf7\x77\x4c\x37\xdc\x31\x7f\xe7\x27\x36\xfd\xc1\x67\xbf\xd0\x75\x79" "\x71\x7d\x8e\xfc\xe9\xf9\xb6\xed\x39\xf2\x9e\x70\x1c\x87\xe5\x3f\xf9" "\xa1\x30\x1e\xc3\xfd\xff\x73\xed\x0b\x6d\xcb\x8d\x8e\xbd\xa7\xfd\xfc" "\x13\xa7\xff\xf2\xe6\xcb\x6d\xdb\x13\xbd\xed\xc7\xc5\xf2\xaf\xbd\xfe" "\x54\x5e\xff\x7d\xe2\x27\xbf\x77\xdb\x0b\x6e\x7f\xe1\x95\x57\x36\xf7" "\x5d\x96\x7d\xe7\x7d\xc5\xe3\xf5\x5b\xfe\xa9\x3f\x3c\xd7\xb6\xfe\x5f" "\xb9\x6b\x57\xfe\x7c\xc4\xfb\x63\x46\xbf\x73\xf9\x4b\x89\xcb\xbf\xf0" "\xf1\xc9\xb3\xe7\xe6\x2f\xcd\xcd\xb4\xec\xd5\xfc\xb3\x73\xde\x59\xac" "\xcf\x86\xf1\x8d\x9b\x9a\xeb\x7b\x47\x38\xb7\x76\x7e\x7f\xf4\xdc\xc5" "\x0f\xcf\x5e\x98\x98\x9e\x98\xce\xb2\x89\xea\x7e\x84\xde\x0d\xfb\x6a" "\xa8\x3f\x2c\xca\x95\x95\xce\xbf\xeb\xd1\xf0\x7c\xde\xf3\xbb\xdf\xda" "\xb4\xe3\x1f\x3f\x1f\x6f\xff\xe7\x47\x8a\xdb\xaf\xbe\xa3\x78\xdd\x7a" "\x75\x98\xee\x8b\xe1\xf6\xcd\xc5\xf3\xb7\xd0\x58\xe5\xf2\x9f\xbc\xf7" "\xae\xfc\xf8\x6e\x3c\x5d\x7c\xdf\x96\x63\x1f\x80\xad\xdb\xff\xe3\xe0" "\xb2\x26\x0c\xdb\xdf\xf9\xbe\x20\x8e\xf7\xf3\x2f\xfd\x70\xbe\x1f\x9a" "\xf7\xe5\xaf\x1b\xf1\xb8\x5e\xe5\xfa\x7f\x6f\xa6\x78\x9c\x6f\x86\xfd" "\xba\x10\x3e\x99\x79\xdb\x5d\xd7\x97\xd7\x3a\x7d\xfc\x6c\x84\xab\xef" "\x2b\x8e\xf7\x55\xef\xbf\x70\x9a\x8b\xcf\xeb\x1f\x87\xe7\xfb\x5d\xdf" "\x2f\x1e\x3f\xae\x57\xdc\xde\xef\x85\xf7\x31\xdf\xde\xd2\x7e\xbe\x8b" "\xe3\xe3\x9b\x97\x87\x3a\x1f\x3f\xff\x14\x8f\x2b\xe1\x7c\x92\x5d\x29" "\xee\x8f\x53\xc5\xfd\x7d\xf5\xb9\xbb\xba\xae\x5e\xfc\x1c\x92\xec\xca" "\xdd\xf9\xf7\xbf\x9d\x1e\xe7\xee\x15\x6d\xe6\x52\xe6\x3f\x31\x3f\x75" "\x7a\xee\xec\xa5\xc7\xa6\x2e\xce\xce\x5f\x9c\x9a\xff\xc4\x27\x8f\x9e" "\x39\x77\xe9\xec\xc5\xa3\xf9\x67\x79\x1e\xfd\x48\xbf\xf9\xaf\x9f\x9f" "\x36\xe5\xe7\xa7\x99\xd9\xfd\xfb\xb2\xe9\x8d\x59\x96\x9d\xcb\xa6\xd7" "\xe0\x84\x35\xf0\xf5\x4f\x1f\x08\xb4\xbc\xf5\x3f\xff\xe8\x89\x99\x03" "\xd3\x3b\x66\x66\x4f\x1e\xbf\x74\xf2\xe2\xa3\xe7\x67\x2f\x9c\x3a\x31" "\x3f\x7f\x62\x76\x66\x7e\xc7\xf1\x93\x27\x67\x3f\xde\x6f\xfe\xb9\x99" "\xc3\xbb\xf7\x1c\xda\x7b\x60\xcf\xe4\xa9\xb9\x99\xc3\x07\x0f\x1d\xda" "\x7b\x68\x72\xee\xec\xb9\xe6\x6e\x2c\x56\xaa\x8f\xfd\xd3\x1f\x9d\x3c" "\x7b\xe1\x68\x3e\xcb\xfc\xe1\x7d\x87\x76\x3f\xf8\xe0\xbe\xe9\xc9\x33" "\xe7\x66\x66\x0f\x1f\x98\x9e\x9e\xbc\xd4\x6f\xfe\xfc\xb5\x69\xb2\x39" "\xf7\xaf\x4d\x5e\x98\x3d\x7d\xfc\xe2\xdc\x99\xd9\xc9\xf9\xb9\x4f\xce" "\x1e\xde\x7d\x68\xff\xfe\x3d\x7d\x3f\x0d\xf0\xcc\xf9\x93\xf3\x13\x53" "\x17\x2e\x9d\x9d\xba\x34\x3f\x7b\x61\xaa\xd8\x96\x89\x8b\xf9\xcd\xcd" "\xd7\xbe\x7e\xf3\x53\x4d\xf3\xff\x5a\xbc\x9f\xed\xd4\x28\x3e\x88\x2f" "\x7b\xf7\xfd\xfb\xd3\xe7\xb3\x36\x7d\xed\xd3\x4b\x3e\x54\x31\x49\xc7" "\x07\x88\x3e\x1b\x3e\x8b\xe6\xef\x5f\x74\xfe\xe0\x72\xbe\x8f\x7d\xff" "\x68\xa8\x49\x4d\xfa\x7f\x00\x00\x00\xa8\x83\xd8\xf7\x8f\x85\x9a\xe8" "\xff\x01\x00\x00\xa0\x32\x62\xdf\xbf\x21\xd4\x44\xff\x0f\x00\x00\x00" "\x95\x11\xfb\xfe\xf1\x50\x93\x9a\xf4\xff\xf2\xff\xf2\xff\xcb\xcb\xff" "\x17\xf7\xcb\xff\xd7\x2b\xff\x7f\xfe\x63\x45\xae\x74\xbd\xe7\xff\x63" "\x7e\x5e\xfe\xbf\x1e\x6e\x71\xfe\x7f\xd5\xcb\x97\xff\x97\xff\xaf\x5e" "\xfe\xbf\xf9\xd5\x3a\xcd\xff\xaf\x70\xfd\xe5\xff\xe5\xff\x59\xac\x6c" "\xf9\xff\xd8\xf7\x6f\xcc\xb2\x5a\xf6\xff\x00\x00\x00\x50\x07\xb1\xef" "\xdf\x14\x6a\xa2\xff\x07\x00\x00\x80\xca\x88\x7d\xff\x6d\xa1\x26\xfa" "\x7f\x00\x00\x00\xa8\x8c\xd8\xf7\xbf\x20\xd4\xa4\x26\xfd\xbf\xfc\xff" "\xb2\xf2\xff\x7b\xfa\x05\xae\xaa\x9f\xff\x77\xfd\x7f\xf9\xff\x6c\x7d" "\xe6\xff\xe3\x93\x23\xff\x5f\x1b\x2b\xce\xdf\xbf\xff\x91\xb6\x6f\xe5" "\xff\x03\xf9\x7f\xf9\x7f\xf9\x7f\xf9\x7f\xf9\x7f\x56\x6d\x74\xc9\x7b" "\x6e\x55\xfe\x3f\xf6\xfd\xb7\x87\x9a\xd4\xa4\xff\x07\x00\x00\x80\x3a" "\x88\x7d\xff\x0b\x43\x4d\xf4\xff\x00\x00\x00\x50\x19\xb1\xef\xbf\x23" "\xd4\x44\xff\x0f\x00\x00\x00\x95\x11\xfb\xfe\xcd\xa1\x26\x35\xe9\xff" "\xe5\xff\x5d\xff\x5f\xfe\x5f\xfe\xbf\xd2\xf9\xff\xd5\x5e\xff\xbf\x65" "\x65\xe4\xff\xd7\x07\xd7\xff\xef\x6d\xc5\xf9\xff\x0d\xf2\xff\xcb\xcb" "\xff\x8f\xcb\xff\xaf\xc7\xfc\xff\xe8\x60\xd7\xbf\xdc\xf9\xff\xbe\xab" "\x2f\xff\xcf\x4d\x51\xb6\xeb\xff\xc7\xbe\xff\x45\xa1\x26\x35\xe9\xff" "\x01\x00\x00\xa0\x0e\x62\xdf\xff\xe2\x50\x13\xfd\x3f\x00\x00\x00\x54" "\x46\xec\xfb\x5f\x12\x6a\xa2\xff\x07\x00\x00\x80\xca\x88\x7d\xff\x9d" "\xa1\x26\x35\xe9\xff\xe5\xff\xe5\xff\xeb\x9c\xff\x7f\xaa\xf8\x00\x50" "\xf9\x7f\xf9\xff\xae\xcb\xef\x7f\xfd\xff\xe2\x2b\xf9\xff\x72\x91\xff" "\xef\xcd\xf5\xff\xfb\x70\xfd\xff\x7a\xe5\xff\x07\xbc\xfe\xe5\xce\xff" "\x0f\xfa\xfa\xff\xa3\x6f\xee\x9c\x5f\xfe\x9f\x6e\xca\x96\xff\x8f\x7d" "\xff\x4b\x43\x4d\x6a\xd2\xff\x03\x00\x00\x40\x1d\xc4\xbe\xff\xae\x50" "\x13\xfd\x3f\x00\x00\x00\x54\x46\xec\xfb\x5f\x16\x6a\xa2\xff\x07\x00" "\x00\x80\xca\x88\x7d\xff\x96\x50\x93\x9a\xf4\xff\xf2\xff\xf2\xff\x75" "\xce\xff\x47\xf2\xff\xf2\xff\xdd\x96\xdf\x3f\xff\x5f\x90\xff\x2f\x17" "\xf9\xff\xde\xe4\xff\xfb\x90\xff\x97\xff\x97\xff\x5f\x5e\xfe\xbf\xcb" "\x9b\x5f\xf9\x7f\xba\x29\x5b\xfe\x3f\xf6\xfd\x77\x87\x9a\xd4\xa4\xff" "\x07\x00\x00\x80\x3a\x88\x7d\xff\x3d\xa1\x26\xfa\x7f\x00\x00\x00\xa8" "\x8c\xd8\xf7\xff\xbf\x50\x13\xfd\x3f\x00\x00\x00\x54\x46\xec\xfb\xb7" "\x86\x9a\xd4\xa4\xff\x97\xff\x97\xff\x97\xff\xaf\x57\xfe\xff\xfe\x31" "\xf9\x7f\xf9\xff\x6a\xab\x66\xfe\x7f\x70\x6f\x4a\xe4\xff\xfb\x90\xff" "\x97\xff\x2f\x6b\xfe\x7f\xe1\xf9\xf6\x83\xb1\x8b\xb5\xbd\xfe\xff\x62" "\x2b\xc9\xff\x6f\xe8\xf7\x60\x54\x46\xd9\xf2\xff\xb1\xef\x7f\x79\xa8" "\x85\x2d\x23\x75\xe9\xff\x01\x00\x00\xa0\x0e\x62\xdf\xff\x8a\x50\x13" "\xfd\x3f\x00\x00\x00\x54\x46\xec\xfb\x5f\x19\x6a\xa2\xff\x07\x00\x00" "\x80\xca\x88\x7d\xff\x44\xa8\x49\x4d\xfa\x7f\xf9\xff\x6a\xe5\xff\xff" "\xe4\xaf\x9e\x7c\x65\x26\xff\x2f\xff\xdf\x67\xf9\x15\xcd\xff\xc7\x61" "\x20\xff\x5f\x73\xd5\xcc\xff\x0f\x8e\xfc\x7f\x1f\xf2\xff\xf2\xff\x65" "\xcd\xff\x97\xed\xfa\xff\x5d\xb8\xfe\x3f\xdd\x94\x2d\xff\x1f\xfb\xfe" "\x7b\x43\x4d\x6a\xd2\xff\x03\x00\x00\x40\x1d\xc4\xbe\x7f\x5b\xa8\x89" "\xfe\x1f\x00\x00\x00\x2a\x23\xf6\xfd\xf7\x85\x9a\xe8\xff\x01\x00\x00" "\xa0\x32\x62\xdf\xbf\x3d\xd4\xa4\x26\xfd\xbf\xfc\x7f\xb5\xf2\xff\x91" "\xfc\xbf\xfc\x7f\xaf\xe5\x57\x34\xff\x9f\xc8\xff\xd7\x9b\xfc\x7f\x17" "\x2d\x07\xa9\xfc\x7f\x1f\xf2\xff\xf2\xff\xb5\xcf\xff\xc7\x77\xbf\xf2" "\xff\x0c\x46\xd9\xf2\xff\xb1\xef\x7f\x55\xa8\x49\x4d\xfa\x7f\x00\x00" "\x00\xa8\x83\xd8\xf7\xef\x08\x35\xd1\xff\x03\x00\x00\x40\x65\xc4\xbe" "\xff\xd5\xa1\x26\xfa\x7f\x00\x00\x00\xa8\x8c\xd8\xf7\xef\x0c\x35\xa9" "\x49\xff\x2f\xff\x2f\xff\x2f\xff\x2f\xff\x2f\xff\xdf\x7d\xf9\xf2\xff" "\xeb\x93\xfc\x7f\x6f\x2b\xcd\xff\x8f\xc9\xff\xcb\xff\xcb\xff\xd7\x2c" "\xff\xef\xfa\xff\x0c\x56\xd9\xf2\xff\xb1\xef\x7f\x4d\xa8\x49\x4d\xfa" "\x7f\x00\x00\x00\xa8\x83\xd8\xf7\xef\x0a\x35\xd1\xff\x03\x00\x00\x40" "\x65\xc4\xbf\xdf\x2c\xfe\xee\x55\xff\x0f\x00\x00\x00\x55\x14\xfb\xfe" "\xc9\x50\x93\x9a\xf4\xff\xf2\xff\xf2\xff\x75\xca\xff\x37\xe4\xff\xe5" "\xff\xe5\xff\x2b\x4f\xfe\xbf\x37\xd7\xff\xef\x43\xfe\x5f\xfe\x5f\xfe" "\x7f\x71\xfe\x7f\x43\xdf\x4d\xcf\xc9\xff\xd3\x4d\xd9\xf2\xff\xb1\xef" "\x7f\x6d\xa8\x49\x4d\xfa\x7f\x00\x00\x00\xa8\x83\xd8\xf7\x3f\x10\x6a" "\xa2\xff\x07\x00\x00\x80\xca\x88\x7d\xff\x54\xa8\x89\xfe\x1f\x00\x00" "\x00\x2a\x23\xf6\xfd\xd3\xa1\x26\x35\xe9\xff\xe5\xff\xe5\xff\xeb\x94" "\xff\x2f\xff\xf5\xff\xdb\x73\xa2\xf2\xff\x05\xf9\x7f\xf9\xff\x95\x90" "\xff\xef\x4d\xfe\xbf\x0f\xf9\x7f\xf9\xff\xaa\xe5\xff\xb3\xcc\xf5\xff" "\xb9\xa5\xca\x96\xff\x8f\x7d\xff\xee\x50\x93\x9a\xf4\xff\x00\x00\x00" "\x50\x07\xb1\xef\xdf\x13\x6a\xa2\xff\x07\x00\x00\x80\xca\x88\x7d\xff" "\xde\x50\x13\xfd\x3f\x00\x00\x00\x54\x46\xec\xfb\xf7\x85\x9a\xd4\xa4" "\xff\x97\xff\xaf\x6a\xfe\x7f\x21\x93\xff\x5f\x8f\xf9\x7f\xd7\xff\x97" "\xff\x97\xff\x5f\x2d\xf9\xff\xde\xe4\xff\xfb\x90\xff\x97\xff\xaf\x5a" "\xfe\x7f\x10\xd7\xff\x97\xff\x67\x15\xca\x96\xff\x8f\x7d\xff\x83\xa1" "\x26\x35\xe9\xff\x01\x00\x00\xa0\x0e\x62\xdf\xbf\x3f\xd4\x44\xff\x0f" "\x00\x00\x00\x95\x11\xfb\xfe\x03\xa1\x26\xa1\xff\xef\xf6\x77\xdd\x00" "\x00\x00\xc0\xfa\x12\xfb\xfe\x83\xa1\x26\x35\xf9\xfd\xbf\xfc\x7f\x45" "\xf2\xff\xbf\xf1\x77\x6d\xcb\x76\xfd\x7f\xf9\xff\x5e\xcb\x1f\x4c\xfe" "\x7f\xa3\xfc\x7f\xa8\xf2\xff\xe5\x52\xd1\xfc\x7f\xe7\x61\x71\xc3\xe4" "\xff\xfb\x90\xff\x97\xff\x97\xff\x97\xff\x67\xa0\xca\x96\xff\x8f\x7d" "\xff\xa1\x50\x93\x9a\xf4\xff\x00\x00\x00\x50\x07\xb1\xef\x7f\x5d\xa8" "\x89\xfe\x1f\x00\x00\x00\x2a\x23\xf6\xfd\xff\x3f\xd4\x44\xff\x0f\x00" "\x00\x00\x95\x11\xfb\xfe\x9f\x09\x35\xa9\x49\xff\x2f\xff\x5f\x91\xfc" "\x7f\x07\xf9\x7f\xf9\xff\x5e\xcb\x77\xfd\x7f\xf9\xff\x2a\xab\x68\xfe" "\x7f\x60\x2a\x95\xff\x1f\x92\xff\x97\xff\x2f\xd7\xfa\xcb\xff\xcb\xff" "\xb3\xd8\xcd\xcf\xff\xc7\xaf\x96\x97\xff\x8f\x7d\xff\xe1\x50\x93\x9a" "\xf4\xff\x00\x00\x00\x50\x07\xb1\xef\xff\xd9\x50\x13\xfd\x3f\x00\x00" "\x00\x54\x46\xec\xfb\x5f\x1f\x6a\xa2\xff\x07\x00\x00\x80\xca\x88\x7d" "\xff\x91\x50\x93\x9a\xf4\xff\xf2\xff\xf2\xff\xf2\xff\xf2\xff\x37\x27" "\xff\xff\xfa\xac\x53\x19\xf3\xff\xcd\xc1\x23\xff\x5f\x2d\xf2\xff\xbd" "\x55\x2a\xff\xef\xfa\xff\xf2\xff\x25\x5b\x7f\xf9\x7f\xf9\x7f\x16\x2b" "\xdb\xf5\xff\x63\xdf\xff\x86\x50\x93\x9a\xf4\xff\x00\x00\x00\x50\x07" "\xb1\xef\x7f\x28\xd4\x44\xff\x0f\x00\x00\x00\x95\x11\xfb\xfe\x37\x86" "\x9a\xe8\xff\x01\x00\x00\xa0\x32\x62\xdf\xff\xa6\x50\x93\x9a\xf4\xff" "\xf2\xff\xf2\xff\xf2\xff\xf2\xff\xae\xff\xdf\x7d\xf9\xf2\xff\xeb\x93" "\xfc\x7f\x6f\xf2\xff\x7d\xc8\xff\xcb\xff\xcb\xff\xcb\xff\x33\x50\x65" "\xcb\xff\xc7\xbe\xff\xcd\xa1\x26\x35\xe9\xff\x01\x00\x00\xa0\x0e\x62" "\xdf\xff\x96\x50\x13\xfd\x3f\x00\x00\x00\x54\x46\xec\xfb\xdf\x1a\x6a" "\xa2\xff\x07\x00\x00\x80\xca\x88\x7d\xff\xdb\x42\x4d\x6a\xd2\xff\xcb" "\xff\xcb\xff\xcb\xff\xcb\xff\xcb\xff\x77\x5f\xbe\xfc\xff\xfa\x24\xff" "\xdf\x9b\xfc\x7f\x1f\xf2\xff\xf2\xff\xf2\xff\xf2\xff\x0c\x54\xd9\xf2" "\xff\xb1\xef\x7f\x7b\xa8\x49\x4d\xfa\x7f\x00\x00\x00\xa8\x83\xd8\xf7" "\x3f\x1c\x6a\xa2\xff\x07\x00\x00\x80\xca\x88\x7d\xff\x3b\x42\x4d\xf4" "\xff\x00\x00\x00\x50\x19\xb1\xef\x7f\x67\xa8\x49\x4d\xfa\x7f\xf9\x7f" "\xf9\x7f\xf9\x7f\xf9\x7f\xf9\xff\xee\xcb\x97\xff\x5f\x9f\xe4\xff\x7b" "\x93\xff\xef\x43\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x9f\x81\x2a\x5b\xfe\x3f" "\xf6\xfd\xef\x0a\x35\xa9\x49\xff\x0f\x00\x00\x00\x75\x10\xfb\xfe\x9f" "\x0b\x35\xd1\xff\x03\x00\x00\x40\x65\xc4\xbe\xff\xdd\xa1\x26\xfa\x7f" "\x00\x00\x00\xa8\x8c\xd8\xf7\xff\x7c\xa8\x49\x4d\xfa\x7f\xf9\x7f\xf9" "\xff\x72\xe5\xff\x17\x2e\xb7\xce\x27\xff\x2f\xff\x9f\x0d\x2a\xff\xdf" "\x9c\x69\x79\xf9\xff\xb1\xf8\x38\xf2\xff\xeb\x93\xfc\x7f\x6f\xf2\xff" "\x7d\x74\xc9\xff\x6f\x90\xff\x97\xff\x97\xff\x97\xff\xe7\x86\x95\x2d" "\xff\x1f\xfb\xfe\xf7\x84\x9a\xd4\xa4\xff\x07\x00\x00\x80\x3a\x88\x7d" "\xff\x7b\x43\x4d\xf4\xff\x00\x00\x00\x50\x19\xb1\xef\x7f\x5f\xa8\x89" "\xfe\x1f\x00\x00\x00\x2a\x23\xf6\xfd\x8f\x84\x9a\xd4\xa4\xff\x97\xff" "\xaf\x65\xfe\x3f\x6d\x72\xf9\xf2\xff\xae\xff\x2f\xff\xef\xfa\xff\xf2" "\xff\xab\x23\xff\xdf\x9b\xfc\x7f\x1f\xae\xff\x2f\xff\x2f\xff\x2f\xff" "\xcf\x40\x95\x2d\xff\x1f\xfb\xfe\x47\x43\x0d\x7e\x3c\xe0\x97\x5b\x00" "\x00\x00\xe0\x16\x8a\x7d\xff\xfb\x43\x4d\x6a\xf2\xfb\x7f\x00\x00\x00" "\xa8\x83\xd8\xf7\xff\x42\xa8\x89\xfe\x1f\x00\x00\x00\x2a\x23\xf6\xfd" "\x1f\x08\x35\xa9\x49\xff\x7f\x43\xf9\xff\x18\x7a\x95\xff\x4f\xd6\x59" "\xfe\xbf\xc4\xd7\xff\xaf\x5a\xfe\x7f\xa4\x6d\x7c\xd4\x29\xff\x3f\xde" "\xf2\x7c\xa6\x71\x29\xff\x2f\xff\xbf\x06\xe4\xff\x7b\x93\xff\xef\x43" "\xfe\x5f\xfe\xbf\xcc\xf9\xff\x30\x9a\x37\x2e\x31\xbf\xfc\x3f\x65\x54" "\xb6\xfc\x7f\xec\xfb\x3f\x18\x6a\x52\x93\xfe\x1f\x00\x00\x00\xea\x20" "\xf6\xfd\xbf\x18\x6a\xa2\xff\x07\x00\x00\x80\xf5\x60\x7e\x39\x13\xc5" "\xbe\xff\x97\x42\x4d\xf4\xff\x00\x00\x00\x50\x19\xb1\xef\xff\xe5\x50" "\x93\x9a\xf4\xff\xae\xff\x2f\xff\x2f\xff\xdf\x9a\xff\x7f\xbb\xeb\xff" "\xbb\xfe\xbf\xfc\xff\x3a\x27\xff\xdf\x9b\xfc\x7f\x1f\xf2\xff\xf2\xff" "\x65\xce\xff\xf7\x21\xff\x4f\x19\x95\x2d\xff\x1f\xfb\xfe\x5f\x09\x35" "\x59\xb2\xf1\xfb\xe1\x7f\x2e\x63\x33\x01\x00\x00\x80\x12\x89\x7d\xff" "\x87\x42\x4d\x6a\xf2\xfb\x7f\x00\x00\x00\xa8\x83\xd8\xf7\x1f\x0d\x35" "\xd1\xff\x03\x00\x00\x40\x65\xc4\xbe\xff\x58\xa8\x49\x4d\xfa\x7f\xf9" "\xff\xce\xfc\x7f\xbc\xa2\xaa\xfc\x7f\x3d\xf3\xff\x83\xbe\xfe\x7f\xfb" "\xf8\x90\xff\x97\xff\x97\xff\xbf\xf9\x06\x97\xff\x7f\xd9\xed\x59\x26" "\xff\x2f\xff\x2f\xff\x2f\xff\xbf\x96\xf9\xff\x21\xf9\x7f\x2a\xa7\x6c" "\xf9\xff\xd8\xf7\x1f\x0f\x35\xa9\x49\xff\x0f\x00\x00\x00\x75\x10\xfb" "\xfe\x5f\x0d\x35\xd1\xff\x03\x00\x00\x40\x65\xc4\xbe\xff\x44\xa8\x89" "\xfe\x1f\x00\x00\x00\x2a\x23\xf6\xfd\x33\xa1\x26\x55\xec\xff\x3b\x43" "\xb5\xb7\x36\xff\x3f\x5a\xce\xfc\xbf\xeb\xff\xdf\x68\xfe\xff\xa7\xf2" "\xff\x55\xcb\xff\x5f\xce\xe4\xff\xe5\xff\xd7\x21\xd7\xff\xef\x4d\xfe" "\xbf\x0f\xf9\x7f\xf9\x7f\xd7\xff\x5f\x75\xfe\xbf\x39\x4e\xe5\xff\x89" "\xca\x96\xff\x8f\x7d\xff\x6c\xa8\x49\x15\xfb\x7f\x00\x00\x00\xa8\x97" "\xf4\xe3\xe0\xd8\xf7\x9f\x0c\x35\xd1\xff\x03\x00\x00\x40\x65\xc4\xbe" "\xff\x54\xa8\x89\xfe\x1f\x00\x00\x00\x2a\x23\xf6\xfd\x1f\x0e\x35\xa9" "\x49\xff\xef\xfa\xff\xf2\xff\xae\xff\x7f\x2b\xf2\xff\x23\x6d\xd3\x97" "\x34\xff\x5f\xe6\xeb\xff\xe7\xb3\xc8\xff\xcb\xff\x77\x23\xff\xdf\x9b" "\xfc\x7f\x1f\xf2\xff\xf2\xff\xf2\xff\xae\xff\xcf\x40\x95\x2d\xff\x1f" "\xfb\xfe\xb9\x50\x93\x9a\xf4\xff\x00\x00\x00\x50\x07\xb1\xef\xff\x48" "\xa8\x89\xfe\x1f\x00\x00\x00\x2a\x23\xf6\xfd\x1f\x0d\x35\xd1\xff\x03" "\x00\x00\x40\x65\xc4\xbe\xff\x74\xa8\x49\x4d\xfa\x7f\xf9\x7f\xf9\xff" "\xba\xe7\xff\x1b\x59\x76\xc5\xf5\xff\xd7\x5d\xfe\x3f\x27\xff\x2f\xff" "\xdf\x8d\xfc\x7f\x6f\xf2\xff\x7d\xc8\xff\xcb\xff\xcb\xff\xcb\xff\xf3" "\x7f\xec\xdd\x47\x8f\x9d\xf7\x75\xc7\xf1\x2b\x45\x62\x01\x02\x24\x2f" "\x21\xeb\xac\xb2\x4c\x56\xca\x4b\xc8\x26\x8b\xec\x02\x64\xad\x54\xa5" "\xdb\x96\xe4\xde\x6d\xb9\xca\xdd\x96\x7b\xef\xbd\xc9\xbd\xf7\xde\xe5" "\xde\xab\x5c\x65\x03\x34\x48\x9e\x73\xc8\x99\xb9\x7c\x2e\xc9\xb9\x33" "\xf7\x79\xfe\xe7\xf3\xd9\x9c\x90\x10\x3d\x33\xd2\x50\xc1\xcf\xc4\xd7" "\xff\xad\x9a\x5b\xff\x9f\xbb\xff\xc6\xb8\xa5\xc9\xfe\x07\x00\x00\x80" "\x0e\x72\xf7\xff\x73\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x4b" "\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x6b\xdc\xd2\x64\xff\xeb" "\xff\xf5\xff\xdd\xfb\xff\xd5\x4e\xde\xff\xdf\xfb\xd7\xeb\xff\xcf\xd3" "\xff\xeb\xff\xb7\xe1\x40\x7f\x7f\xdd\xfa\xbf\xee\x52\x51\xf8\x25\xfb" "\xff\xbf\xfa\xeb\x9b\xfe\x51\xff\xaf\xff\xd7\xff\x4f\xd2\xff\xeb\xff" "\xf5\xff\xec\x37\xb7\xfe\x3f\x77\xff\xbf\xc5\x2d\x4d\xf6\x3f\x00\x00" "\x00\x74\x90\xbb\xff\xdf\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff" "\x3f\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xa6\xb8\xa5\xc9\xfe" "\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x3d\xfd\xff\x9d\xfa\x7f\xfd\xff\xb2" "\x79\xff\x7f\x9a\xfe\x7f\x03\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xab\xe6" "\xd6\xff\xe7\xee\xff\xcf\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7" "\xff\x57\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x77\xdc\x62\xff" "\x03\x00\x00\xc0\x30\x72\xf7\xff\x4f\xdc\xd2\x64\xff\xeb\xff\xf5\xff" "\xfa\xff\xa5\xf4\xff\x27\xbc\xff\xbf\xef\xeb\xd1\xff\xeb\xff\xd7\xd1" "\xff\x4f\xd3\xff\x6f\xa0\xff\xd7\xff\xeb\xff\xf5\xff\x6c\xd5\xdc\xfa" "\xff\xdc\xfd\xff\x1b\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xff" "\x8b\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xff\x8f\x5b\xec\x7f\x00" "\x00\x00\x18\x46\xee\xfe\x7b\xc5\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff" "\x5f\x4a\xff\x7f\x4c\xef\xff\xeb\xff\xf5\xff\x0b\x77\xc7\xea\xc2\xbf" "\x13\x8e\xbb\xff\x3f\xb1\x85\xff\xfd\x01\xfd\xff\xbc\xfb\xff\xd5\x4a" "\xff\x3f\xe5\xb2\xfb\xf9\xf5\x5f\xde\x72\x3e\xff\x4b\xd0\xff\xeb\xff" "\x39\x68\x6e\xfd\x7f\xee\xfe\x7b\xc7\x2d\x7f\xbb\x5a\x9d\xb8\xda\x2f" "\x12\x00\x00\x00\x98\x95\xdc\xfd\xf7\x89\x5b\x9a\xfc\xf9\x3f\x00\x00" "\x00\x74\x90\xbb\xff\xe6\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xbf" "\x25\x6e\x69\xb2\xff\xf5\xff\xfa\xff\xab\xeb\xff\xcf\x7f\xbf\xe8\xff" "\xf5\xff\xfa\x7f\xfd\xff\xdc\x78\xff\x7f\xda\xe1\xfb\xff\xbf\xfc\xf3" "\x1b\xff\xa9\x6f\xff\xef\xfd\xff\x69\xde\xff\xdf\x76\xff\x7f\xf6\x3b" "\x43\xff\xcf\xb2\xcd\xad\xff\xcf\xdd\x7f\x6b\xdc\xd2\x64\xff\x03\x00" "\x00\x40\x07\xb9\xfb\xef\x1b\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd" "\xf7\x8b\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xfb\xc7\x2d\x4d\xf6" "\xbf\xfe\x7f\xb4\xfe\xff\x4f\xf6\xfc\xba\x8b\xfa\xff\x73\xb5\x8b\xf7" "\xff\xf5\xff\xfa\x7f\xfd\xff\xe8\xf4\xff\xd3\xbc\xff\xbf\xc1\xb9\x7f" "\xcd\x9d\xae\x1f\xea\xff\xf5\xff\xde\xff\xd7\xff\x73\x38\x73\xeb\xff" "\x73\xf7\x3f\x20\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x0f\x8c" "\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x07\xc5\x2d\xf6\x3f\x00\x00" "\x00\x0c\x23\x77\xff\x83\xe3\x96\x26\xfb\x5f\xff\x3f\x5a\xff\xbf\xf7" "\xd7\x1d\xdd\xfb\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x3f\x4f\xfa\xff\x69" "\xfa\xff\x0d\x46\x79\xff\xff\x2a\xbf\x6b\x76\xdd\xcf\x1f\xd6\xae\x3f" "\x7f\xfd\xbf\xfe\x9f\x83\xe6\xd6\xff\xe7\xee\x7f\x48\xdc\xd2\x64\xff" "\x03\x00\x00\x40\x07\xb9\xfb\x1f\x1a\xb7\xd8\xff\x00\x00\x00\x30\x8c" "\xdc\xfd\x0f\x8b\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x87\xc7\x2d" "\x4d\xf6\xbf\xfe\x5f\xff\xbf\x8c\xfe\x3f\x3f\x82\xfe\x5f\xff\x7f\xf4" "\xfd\x7f\xd2\xff\x2f\x93\xfe\x7f\x9a\xfe\x7f\x83\x51\xfa\xff\xab\xb4" "\xeb\x7e\x7e\xe9\x9f\xbf\xfe\x5f\xff\xcf\x41\x73\xeb\xff\x73\xf7\x3f" "\x22\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x8f\x8c\x5b\xec\x7f" "\x00\x00\x00\x18\x46\xee\xfe\x47\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23" "\x77\xff\xa3\xe3\x96\x26\xfb\x5f\xff\xaf\xff\x5f\x46\xff\xef\xfd\x7f" "\xfd\xbf\xf7\xff\xf5\xff\x97\x47\xff\x3f\x4d\xff\xbf\x81\xfe\x5f\xff" "\xaf\xff\xd7\xff\xb3\x55\x73\xeb\xff\x73\xf7\xdf\x16\xb7\x34\xd9\xff" "\x00\x00\x00\xd0\x41\xee\xfe\xc7\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23" "\x77\xff\x63\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x71\x71\x4b" "\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xf5\x1f\x5f\xff\xbf" "\x4c\xfa\xff\x69\xfa\xff\x0d\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\xad\x9a" "\x51\xff\x7f\xd1\xaf\x3a\xb5\x7a\x7c\xdc\xd2\x64\xff\x03\x00\x00\x40" "\x07\xb9\xfb\x9f\x10\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x4f\x8c" "\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xdb\xe3\x96\x26\xfb\x5f\xff" "\x3f\x9b\xfe\xff\x5c\xce\x37\x56\xff\x7f\x7a\xb5\x5a\xe9\xff\x57\x4d" "\xfb\xff\xd3\x17\xfd\xf3\xac\xef\x4b\xfd\xbf\xfe\xff\x18\xe8\xff\xa7" "\xe9\xff\x37\x38\xfb\x1b\xf2\xcc\x35\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf" "\x96\x1c\x6f\xff\x7f\xf6\xdf\xf9\xd3\xff\x7b\x00\xb9\xfb\x9f\x14\xb7" "\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x27\xc7\x2d\xf6\x3f\x00\x00" "\x00\x0c\x23\x77\xff\x53\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff" "\xa9\x71\x4b\x93\xfd\xaf\xff\x9f\x4d\xff\x7f\xce\x58\xfd\xbf\xf7\xff" "\xf7\x7f\x7f\x74\xea\xff\xbd\xff\x7f\x90\xfe\xff\x78\xe8\xff\xa7\xe9" "\xff\x37\xf0\xfe\xff\xa1\xfb\xf9\x6b\x57\xfa\x7f\xfd\xbf\xfe\x9f\x0b" "\x8e\xb7\xff\xdf\xfc\xe3\xdc\xfd\x4f\x8b\x9b\x4e\x5c\x7f\xd5\x5f\x22" "\x00\x00\x00\x30\x33\xb9\xfb\x9f\x1e\xb7\x34\xf9\xf3\x7f\x00\x00\x00" "\xe8\x20\x77\xff\x33\xe2\x16\xfb\x1f\x00\x00\x00\x16\xea\xb6\x03\x3f" "\x93\xbb\xff\x99\x71\x4b\x93\xfd\xaf\xff\xdf\x6e\xff\x7f\xe2\xa2\x9f" "\xd3\xff\xeb\xff\xf7\x7f\x7f\xe8\xff\xf5\xff\xfa\xff\xa3\xa7\xff\x9f" "\xa6\xff\xdf\x40\xff\xef\xfd\x7f\xfd\xbf\xfe\x9f\xad\x9a\x5b\xff\x9f" "\xbb\xff\x59\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xbf\x23\x6e" "\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x9f\x1d\xb7\xd8\xff\x00\x00\x00" "\x30\x8c\xdc\xfd\xcf\x89\x5b\x9a\xec\x7f\xfd\xbf\xf7\xff\xf5\xff\xfa" "\x7f\xfd\xff\xfa\x8f\xaf\xff\x5f\x26\xfd\xff\x34\xfd\xff\x06\xfa\x7f" "\xfd\xff\x6e\xfb\xff\x93\x17\xfe\xcf\xa3\xed\xff\x4f\xaf\xf9\xf5\xfa" "\x7f\x8e\xc2\x15\xf4\xff\x67\xce\x9c\xb9\xf9\xc8\xfb\xff\xdc\xfd\xcf" "\x8d\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xf3\xe2\x16\xfb\x1f" "\x00\x00\x00\x86\x91\xbb\xff\xf9\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8" "\xdd\xff\x82\xb8\xa5\xc9\xfe\xd7\xff\x37\xed\xff\xf3\x5b\x7d\x59\xfd" "\xff\x2d\xab\x95\xfe\x5f\xff\xaf\xff\xd7\xff\x4f\xd3\xff\x4f\xd3\xff" "\x6f\xa0\xff\xd7\xff\x7b\xff\x5f\xff\xcf\x56\xcd\xed\xfd\xff\xdc\xfd" "\x2f\x8c\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x8b\xe2\x16\xfb" "\x1f\x00\x00\x00\x86\x91\xbb\xff\xc5\x71\x8b\xfd\x0f\x00\x00\x00\xc3" "\xc8\xdd\xff\x92\xb8\xa5\xc9\xfe\xd7\xff\x37\xed\xff\xbd\xff\xaf\xff" "\xd7\xff\x1f\x77\xff\x7f\xcf\x4a\xff\x7f\x2c\x16\xd1\xff\xaf\x7b\x78" "\x3b\xcc\xbd\xff\xbf\x55\xff\xaf\xff\x9f\xd0\xae\xff\xff\xbb\xbf\xd9" "\xf3\x43\xfd\xbf\xfe\x9f\x83\xe6\xd6\xff\xe7\xee\x7f\x69\xdc\xd2\x64" "\xff\x03\x00\x00\x40\x07\xb9\xfb\x5f\x16\xb7\xd8\xff\x00\x00\x00\x30" "\x8c\xdc\xfd\x2f\x8f\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x57\xc4" "\x4d\xd7\x35\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x5f\xff\xf1" "\x8f\xf9\xfd\xff\x13\xab\xd5\x4a\xff\xbf\x05\x8b\xe8\xff\x27\xcc\xbd" "\xff\xdf\xce\xfb\xff\xfb\x7f\x97\x5f\xa0\xff\xd7\xff\x2f\xf9\xf3\xd7" "\xff\xeb\xff\x39\x68\x6e\xfd\x7f\xee\xfe\x57\xc6\x2d\x4d\xf6\x3f\x00" "\x00\x00\x74\x90\xbb\xff\x55\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd" "\xff\xea\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x4d\xdc\xd2\x64" "\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf0\xfd\xff\xad\x8b\xe8\xff\xbd" "\xff\xbf\x25\xfa\xff\x69\xf3\xe8\xff\x2f\x4d\xff\xaf\xff\x5f\xf2\xe7" "\xaf\xff\xd7\xff\x73\xf9\x76\xd5\xff\xe7\xee\x7f\x6d\xdc\xd2\x64\xff" "\x03\x00\x00\x40\x07\xb9\xfb\x5f\x17\xb7\xd8\xff\x00\x00\x00\x30\x8c" "\xdc\xfd\xaf\x8f\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x37\xc4\x2d" "\x4d\xf6\xbf\xfe\x5f\xff\x7f\x25\xfd\x7f\x7e\x9e\xfa\xff\xb1\xfa\xff" "\x93\xb3\xeb\xff\x4f\xed\xf9\xcf\x6b\xf2\xfe\xbf\xfe\x7f\x4b\xf4\xff" "\xd3\xf4\xff\x1b\xe8\xff\xf5\xff\xfa\xff\xdb\xf4\xff\x6c\xd3\xdc\xde" "\xff\xcf\xdd\xff\xc6\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xbf" "\x29\x6e\xfd\x57\xb7\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x9b\xe3\x16" "\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x2d\x71\x4b\x93\xfd\xaf\xff\xd7" "\xff\x7b\xff\x5f\xff\x3f\xfc\xfb\xff\xfa\xff\x56\xf4\xff\xd3\xf4\xff" "\x1b\xe8\xff\xf5\xff\xfa\x7f\xef\xff\xb3\x55\x73\xeb\xff\x73\xf7\xbf" "\x35\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x6f\x8b\x5b\xec\x7f" "\x00\x00\x00\x18\x46\xee\xfe\xb7\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23" "\x77\xff\x9d\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff" "\xf3\xff\x0c\xf5\xff\x63\xd0\xff\x4f\x3b\x9e\xfe\xff\xb4\xfe\x5f\xff" "\x5f\xfd\xfc\x35\xf1\xbb\x40\xff\xaf\xff\xdf\xf4\xeb\x19\xd3\xdc\xfa" "\xff\xdc\xfd\xef\x88\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x3b" "\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x5d\x71\x8b\xfd\x0f\x00" "\x00\x00\x8b\x74\xdd\x9a\x9f\xcb\xdd\xff\xee\xb8\xa5\xc9\xfe\xd7\xff" "\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xfa\x8f\xaf\xff\x5f\xa6\x9d\xf4\xff" "\xf9\x4d\xa1\xff\xf7\xfe\x7f\xe8\xd3\xff\xff\xc5\x9e\x1f\x2d\xed\xfd" "\xff\xfd\xff\xff\x4b\xff\xaf\xff\x67\xfb\xe6\xd6\xff\xe7\xee\x7f\x4f" "\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xdf\x1b\xb7\xd8\xff\x00" "\x00\x00\x30\x8c\xdc\xfd\xef\x8b\x5b\xec\x7f\x00\x00\x00\x18\x46\xee" "\xfe\xf7\xc7\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x4f\xf4\xff" "\xab\xd5\xed\xd7\xe8\xff\x83\xfe\x7f\x19\xbc\xff\x3f\x4d\xff\xbf\x81" "\xfe\x7f\xa7\xef\xe7\x2f\xfd\xf3\xd7\xff\xeb\xff\x39\x68\x6e\xfd\x7f" "\xee\xfe\x0f\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x83\x71" "\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xa1\xb8\xc5\xfe\x07\x00\x00" "\x80\x61\x9c\xdb\xfd\x19\x97\x35\xdc\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\xef\xfd\xff\xf5\x1f\x5f\xff\xbf\x4c\xfa\xff\x69\xfa\xff\x0d\xf4\xff" "\xfa\x7f\xfd\xbf\xfe\x9f\xad\x9a\x5b\xff\xff\xe1\x73\xbf\xea\xd4\xea" "\x23\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x68\xdc\x62\xff" "\x03\x00\x00\xc0\x30\x72\xf7\x7f\x2c\x6e\xb1\xff\x01\x00\x00\x60\x18" "\xb9\xfb\x3f\x1e\xb7\x34\xd9\xff\xfa\x7f\xfd\xff\x32\xfa\xff\x33\x67" "\xce\xdc\xac\xff\xd7\xff\xef\xfd\x7a\x2e\xf4\xff\x77\xe9\xff\x29\xfa" "\xff\x69\xfa\xff\x0d\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\xad\x9a\x5b\xff" "\x9f\xbb\xff\x13\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x64" "\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x7f\x2a\x6e\xb1\xff\x01\x00" "\x00\x60\x18\xb9\xfb\x3f\x1d\xb7\x34\xd9\xff\xfa\xff\x19\xf4\xff\xa7" "\xf4\xff\xde\xff\xd7\xff\xaf\xbc\xff\xaf\xff\xdf\x12\xfd\xff\x34\xfd" "\xff\x06\x23\xf6\xff\xa7\x2e\xff\xcb\xdf\x75\x3f\x7f\x58\xbb\xfe\xfc" "\xf5\xff\xfa\x7f\x0e\x9a\x5b\xff\x9f\xbb\xff\x33\x71\x4b\x93\xfd\x0f" "\x00\x00\x00\x1d\xe4\xee\xff\x6c\xdc\x62\xff\x03\x00\x00\xc0\x30\x72" "\xf7\x7f\x2e\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x3f\x1f\xb7\x34" "\xd9\xff\xfa\xff\xe3\xeb\xff\xcf\xfe\xbd\xeb\xf2\xfe\xff\xe9\xd5\xfa" "\xcf\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x8f\x9a\xfe\x7f\x9a\xfe\x7f\x83" "\x11\xfb\xff\x2b\xb0\xeb\x7e\x7e\xe9\x9f\xbf\xfe\x5f\xff\xcf\x41\x73" "\xeb\xff\x73\xf7\x7f\x21\x6e\xd9\x3b\xfc\xae\xbf\xb2\xaf\x12\x00\x00" "\x00\x98\x93\xdc\xfd\x5f\x8c\x5b\x9a\xfc\xf9\x3f\x00\x00\x00\x74\x90" "\xbb\xff\x4b\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xe5\xb8\xa5" "\xc9\xfe\xd7\xff\xcf\xe0\xfd\xff\x01\xfb\x7f\xef\xff\xaf\xff\xfe\xd0" "\xff\xcf\xba\xff\xbf\x56\xff\x3f\x06\xfd\xff\x34\xfd\xff\x06\xfa\x7f" "\xfd\xbf\xfe\x7f\x4b\xfd\x7f\x7e\x37\xeb\xff\xbb\x9b\x5b\xff\x9f\xbb" "\xff\x2b\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x6a\xdc\x62" "\xff\x03\x00\x00\xc0\x30\x72\xf7\x7f\x2d\x6e\xb1\xff\x01\x00\x00\x60" "\x18\xb9\xfb\xef\x8a\x5b\x2e\xda\xff\xeb\xda\xee\x51\xe8\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xfe\x7f\xfd\xc7\xd7\xff\x2f\x93\xfe\x7f\xda\xe5\xf6" "\xff\x27\x57\x87\xeb\xff\x93\xfe\x5f\xff\xaf\xff\xef\xda\xff\x7b\xff" "\x9f\xf3\xe6\xd6\xff\xe7\xee\xff\x7a\xdc\xe2\xcf\xff\x01\x00\x00\x60" "\x71\xae\xbf\xc4\xcf\xe7\xee\xff\x46\xdc\x62\xff\x03\x00\x00\xc0\x30" "\x72\xf7\x7f\x33\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xbf\x15\xb7" "\xdc\x7d\xed\xae\x3e\xa5\x63\xa5\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff" "\xf5\x1f\x5f\xff\xbf\x4c\xfa\xff\x69\xde\xff\xdf\x40\xff\xbf\x8d\x7e" "\xfe\x06\xfd\xff\x18\xfd\xff\x6a\xa5\xff\xe7\xf0\xe6\xd6\xff\xe7\xee" "\xff\x76\xdc\xe2\xcf\xff\x01\x00\x00\x60\x18\xb9\xfb\xbf\x13\xb7\xd8" "\xff\x00\x00\x00\x30\x8c\xdc\xfd\xdf\x8d\x5b\xec\x7f\x00\x00\x00\x18" "\x46\xee\xfe\xef\xc5\x2d\x4d\xf6\xbf\xfe\x5f\xff\x7f\xc8\xfe\xff\x5c" "\x9a\xa9\xff\x3f\x6f\xdc\xfe\x3f\xff\x13\xf4\xff\xdb\xec\xff\xff\xf4" "\xa2\xbf\xab\xfa\xff\xed\xd1\xff\x4f\xd3\xff\x6f\xa0\xff\xf7\xfe\xbf" "\xfe\xdf\xfb\xff\x6c\xd5\xdc\xfa\xff\xdc\xfd\xdf\x8f\x5b\x9a\xec\x7f" "\x00\x00\x00\xe8\x20\x77\xff\x0f\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91" "\xbb\xff\x87\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xa3\xb8\xa5" "\xc9\xfe\xdf\x59\xff\x1f\x7f\xab\xf5\xff\x8b\xef\xff\xbd\xff\x7f\xe4" "\xfd\xff\xd9\xaf\x6e\xd7\xfd\x7f\xd2\xff\x7b\xff\x7f\xfe\xf4\xff\xd3" "\xf4\xff\x1b\xe8\xff\xf5\xff\x8d\xfa\xff\xbf\xdf\xf7\x63\xfd\x3f\x47" "\x61\x6e\xfd\x7f\xee\xfe\x1f\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90" "\xbb\xff\x27\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xd3\xb8\xc5" "\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x59\xdc\xd2\x64\xff\x7b\xff\x5f" "\xff\xaf\xff\x9f\x7b\xff\x3f\x87\xf7\xff\xd3\xd6\xfb\xff\xd5\x4a\xff" "\xaf\xff\xdf\x32\xfd\xff\x34\xfd\xff\x7a\xf5\x0f\x4a\xff\xaf\xff\x6f" "\xd4\xff\xef\xa7\xff\xe7\x28\xcc\xad\xff\xcf\xdd\xff\xf3\xb8\xa5\xc9" "\xfe\x07\x00\x00\x80\x0e\x72\xf7\xff\x22\x6e\xb1\xff\x01\x00\x00\x60" "\x18\xb9\xfb\xef\x8e\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x5f\xc6" "\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x7b\xff\x7f\xfd\xc7\xd7" "\xff\x2f\x93\xfe\x7f\xda\x2e\xfb\xff\x7f\xf8\xb3\xcd\x1f\xd6\xfb\xff" "\x3b\xef\xff\xf3\x53\xd0\xff\xeb\xff\xf5\xff\x6c\xc5\xdc\xfa\xff\xdc" "\xfd\xbf\x8a\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xaf\xe3\x16" "\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x37\x71\x8b\xfd\x0f\x00\x00\x00" "\xc3\xc8\xdd\xff\xdb\xb8\xa5\xc9\xfe\xdf\xd0\xff\x9f\xac\xbf\x50\xff" "\x3f\x49\xff\xbf\xf7\xf3\xd7\xff\xaf\xff\xfe\xd0\xff\xeb\xff\xf5\xff" "\x47\x4f\xff\x3f\x6d\xba\xff\xbf\xe8\x77\x73\xb3\xf7\xff\x8b\xfe\xdf" "\xfb\xff\xfa\x7f\xfd\x3f\x5b\x35\xb7\xfe\x3f\x77\xff\xef\xe2\x96\x26" "\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\x7f\x4f\xdc\x62\xff\x03\x00\x00\xc0" "\x30\x72\xf7\xff\x3e\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xff\x10" "\xb7\x34\xd9\xff\xde\xff\x5f\x52\xff\x7f\x83\xfe\x5f\xff\xaf\xff\xd7" "\xff\xeb\xff\x37\xd0\xff\x4f\xdb\xe5\xfb\xff\x97\x43\xff\xaf\xff\x5f" "\xf2\xe7\xaf\xff\xd7\xff\x73\xd0\xdc\xfa\xff\xdc\xfd\x7f\x0c\x00\x00" "\xff\xff\x4f\x20\x4b\xd4", 25098); syz_mount_image(/*fs=*/0x200000000080, /*dir=*/0x200000000000, /*flags=*/0, /*opts=*/0x200000001000, /*chdir=*/0xfd, /*size=*/0x620a, /*img=*/0x20000000b800); break; case 1: // creat arguments: [ // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // mode: open_mode = 0x0 (8 bytes) // ] // returns fd memcpy((void*)0x2000000002c0, "./file0\000", 8); syscall(__NR_creat, /*file=*/0x2000000002c0ul, /*mode=*/0ul); break; case 2: // link arguments: [ // old: nil // new: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 00} (length 0xfe) // } // ] memcpy((void*)0x200000000280, "./" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 254); syscall(__NR_link, /*old=*/0ul, /*new=*/0x200000000280ul); 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; }