// https://syzkaller.appspot.com/bug?id=8ddfd9363c0b29693bd928b821ae2b41cdaae6f4 // 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 #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 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; } static void setup_gadgetfs(); static void setup_binderfs(); static void setup_fusectl(); static void sandbox_common_mount_tmpfs(void) { write_file("/proc/sys/fs/mount-max", "100000"); if (mkdir("./syz-tmp", 0777)) exit(1); if (mount("", "./syz-tmp", "tmpfs", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot", 0777)) exit(1); if (mkdir("./syz-tmp/newroot/dev", 0700)) exit(1); unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE; if (mount("/dev", "./syz-tmp/newroot/dev", NULL, bind_mount_flags, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/proc", 0700)) exit(1); if (mount("syz-proc", "./syz-tmp/newroot/proc", "proc", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/selinux", 0700)) exit(1); const char* selinux_path = "./syz-tmp/newroot/selinux"; if (mount("/selinux", selinux_path, NULL, bind_mount_flags, NULL)) { if (errno != ENOENT) exit(1); if (mount("/sys/fs/selinux", selinux_path, NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); } if (mkdir("./syz-tmp/newroot/sys", 0700)) exit(1); if (mount("/sys", "./syz-tmp/newroot/sys", 0, bind_mount_flags, NULL)) exit(1); if (mount("/sys/kernel/debug", "./syz-tmp/newroot/sys/kernel/debug", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/sys/fs/smackfs", "./syz-tmp/newroot/sys/fs/smackfs", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/proc/sys/fs/binfmt_misc", "./syz-tmp/newroot/proc/sys/fs/binfmt_misc", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/newroot/syz-inputs", 0700)) exit(1); if (mount("/syz-inputs", "./syz-tmp/newroot/syz-inputs", NULL, bind_mount_flags | MS_RDONLY, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/pivot", 0777)) exit(1); if (syscall(SYS_pivot_root, "./syz-tmp", "./syz-tmp/pivot")) { if (chdir("./syz-tmp")) exit(1); } else { if (chdir("/")) exit(1); if (umount2("./pivot", MNT_DETACH)) exit(1); } if (chroot("./newroot")) exit(1); if (chdir("/")) exit(1); setup_gadgetfs(); setup_binderfs(); setup_fusectl(); } static void setup_gadgetfs() { if (mkdir("/dev/gadgetfs", 0777)) { } if (mount("gadgetfs", "/dev/gadgetfs", "gadgetfs", 0, NULL)) { } } static void setup_fusectl() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } } static void setup_binderfs() { if (mkdir("/dev/binderfs", 0777)) { } if (mount("binder", "/dev/binderfs", "binder", 0, NULL)) { } if (symlink("/dev/binderfs", "./binderfs")) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); if (getppid() == 1) exit(1); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = (200 << 20); setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 128 << 20; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); if (unshare(CLONE_NEWNS)) { } if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(0x02000000)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } typedef struct { const char* name; const char* value; } sysctl_t; static const sysctl_t sysctls[] = { {"/proc/sys/kernel/shmmax", "16777216"}, {"/proc/sys/kernel/shmall", "536870912"}, {"/proc/sys/kernel/shmmni", "1024"}, {"/proc/sys/kernel/msgmax", "8192"}, {"/proc/sys/kernel/msgmni", "1024"}, {"/proc/sys/kernel/msgmnb", "1024"}, {"/proc/sys/kernel/sem", "1024 1048576 500 1024"}, }; unsigned i; for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++) write_file(sysctls[i].name, sysctls[i].value); } static int wait_for_loop(int pid) { if (pid < 0) exit(1); int status = 0; while (waitpid(-1, &status, __WALL) != pid) { } return WEXITSTATUS(status); } static void drop_caps(void) { struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) exit(1); const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE); cap_data[0].effective &= ~drop; cap_data[0].permitted &= ~drop; cap_data[0].inheritable &= ~drop; if (syscall(SYS_capset, &cap_hdr, &cap_data)) exit(1); } static int do_sandbox_none(void) { if (unshare(CLONE_NEWPID)) { } int pid = fork(); if (pid != 0) return wait_for_loop(pid); sandbox_common(); drop_caps(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); sandbox_common_mount_tmpfs(); loop(); exit(1); } 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 loop(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 4; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } uint64_t r[1] = {0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x301c802 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // chdir: int8 = 0x11 (1 bytes) // size: len = 0x605b (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x605b) // } // ] // returns fd_dir memcpy((void*)0x200000000400, "jfs\000", 4); memcpy((void*)0x200000000140, "./file0\000", 8); memcpy( (void*)0x200000000440, "\x78\x9c\xec\xdd\xcb\x8e\x1c\x57\x19\x07\xf0\xaf\x2f\xd3\x73\x09\x71" "\xac\x08\x45\xc6\x62\xe1\x38\x10\x12\x42\x7c\xb7\x21\x40\x88\xc3\x82" "\x05\x20\x81\x84\xbc\xc6\xd6\x64\x12\x19\x1c\x40\xb6\x41\x24\xb2\xf0" "\x44\x5e\x20\x16\x5c\x1e\x01\x36\xd9\xb0\xc8\x8b\x84\x57\x40\x3c\x00" "\x96\x6c\x56\x91\x20\x14\xaa\xe9\x73\xec\x9a\x72\x8f\x7b\x8c\x3d\x5d" "\xdd\x73\x7e\x3f\x69\x5c\xf5\xf5\xe9\x9a\xfe\xca\xff\xa9\xe9\xee\xa9" "\xaa\xae\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xe2\xbb\xdf\xf9\xd1\xc9\x5e\x44\x5c\xfc\x55\xba\xe1\x60\xc4\x67\x62" "\x10\xd1\x8f\x58\xad\xeb\x23\x51\xcf\x9c\xcf\xf7\x1f\x46\xc4\xa1\xd8" "\x1a\x8e\xe7\x22\x62\xb0\x1c\x51\x2f\xbf\xf5\xcf\x33\x11\x67\x22\xe2" "\xe3\x03\x11\x77\xee\xde\x58\xaf\x6f\x3e\xb5\xcb\x3e\xce\x9e\xb8\x7e" "\xf5\xd3\xef\x7d\xfb\xef\xbf\xfd\xe3\xad\x43\x3f\x79\xeb\xc7\x1f\xb6" "\xc7\x7f\xf8\xd9\xd3\x1f\xfd\xee\x66\xc4\xc1\x1f\xbc\xf6\xd1\xa7\x37" "\x9f\xcc\xba\x03\x00\x00\x40\x29\xaa\xaa\xaa\x7a\xe9\x6d\xfe\xe1\xf4" "\xfe\xbe\xdf\x75\x53\x00\xc0\x4c\xe4\xe7\xff\x2a\xc9\xb7\xab\xd5\x6a" "\xb5\xfa\x89\xd6\x7f\xe8\xcf\x57\x3f\xbb\xaf\x57\x62\xbe\xfa\x51\x3f" "\x56\xdd\x54\x4d\x76\xb3\x59\x44\xc4\x66\x73\x99\xfa\x35\x83\xdd\xf1" "\x00\xb0\x60\x36\xe3\x93\xae\x5b\xa0\x43\xf2\x2f\xda\x30\x22\x9e\xea" "\xba\x09\x60\xae\xf5\xba\x6e\x80\x3d\x71\xe7\xee\x8d\xf5\x5e\xca\xb7" "\xd7\x7c\x3e\x38\x32\x1e\xcf\x7f\xa7\xdc\x96\xff\x66\xef\xde\xf9\x1d" "\x3b\x4d\xa7\x69\x1f\x63\x32\xab\x9f\xaf\x5b\x31\x88\x67\x77\xe8\x67" "\x75\x46\x3d\xcc\x93\x9c\x7f\xbf\x9d\xff\xc5\xf1\xf8\x28\xdd\x2f\xe7" "\xf3\x7a\xec\x4d\xfe\xb3\xb2\x53\xfe\xa3\xf1\xa9\x4f\xc5\xc9\xf9\x0f" "\xda\xf9\xb7\x6c\xdb\x3e\xff\x14\x11\x0b\x9b\x7f\x7f\x62\xfe\xa5\xca" "\xf9\x0f\x1f\x25\xff\xcd\xc1\x02\x6f\xff\xf2\x07\x00\x00\x00\x00\x60" "\xff\xcb\x7f\xff\x3f\xd8\xf1\xfe\xdf\xe5\xc7\x5f\x95\x5d\x79\xd8\xfe" "\xdf\x23\x33\xea\x01\x00\x00\x00\x00\x00\x00\x00\x9e\xb4\xc7\xbd\xfe" "\xdf\x3d\xae\xff\x07\x00\x00\x00\x73\xab\x7e\xaf\x5e\xfb\xf3\x81\xfb" "\xb7\x35\x8f\xf5\x6f\xcf\x5f\xe8\x45\x3c\xdd\xba\x3f\x50\x98\x74\xb2" "\xcc\x5a\xd7\x7d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x49\x86" "\xe3\x63\x78\x2f\xf4\x22\x96\x22\xe2\xe9\xb5\xb5\xaa\xaa\xea\xaf\xa6" "\x76\xfd\xa8\x1e\x77\xf9\x45\x57\xfa\xfa\x43\xc9\xba\xfe\x25\x0f\x00" "\x00\x63\x1f\x1f\x68\x9d\xcb\xdf\x8b\x58\x89\x88\x0b\xe9\xb3\xfe\x96" "\xd6\xd6\xd6\xaa\x6a\x65\x75\xad\x5a\xab\x56\x97\xf3\xeb\xd9\xd1\xf2" "\x4a\xb5\xda\x78\x5f\x9b\xa7\xf5\x6d\xcb\xa3\x5d\xbc\x20\x1e\x8e\xaa" "\xfa\x9b\xad\x34\x96\x6b\x9a\xf6\x7e\x79\xda\x78\xfb\xfb\xd5\x8f\x35" "\xaa\x06\xbb\x68\x6c\x36\x3a\x0c\x1c\x00\x22\x62\xfc\x6c\x74\xc7\x33" "\xd2\x3e\x53\x55\xcf\x44\xd7\xaf\x72\x58\x0c\xb6\xff\xfd\xc7\xf6\xcf" "\x6e\x74\xfd\x73\x0a\x00\x00\x00\xec\xbd\xaa\xaa\xaa\x5e\xfa\x38\xef" "\xc3\x69\x9f\x7f\xbf\xeb\xa6\x00\x80\x59\x58\xc9\xcf\xff\xed\xfd\x02" "\x6a\xb5\x5a\xad\x56\xab\xf7\x5f\xdd\x54\x4d\x76\xb3\x59\x44\xc4\x66" "\x73\x99\xfa\x35\x83\xcb\xf1\x03\xc0\x82\xd9\x8c\x4f\xba\x6e\x81\x0e" "\xc9\xbf\x68\xc3\x88\x38\xd4\x75\x13\xc0\x5c\xeb\x75\xdd\x00\x7b\xe2" "\xce\xdd\x1b\xeb\xbd\x94\x6f\xaf\xf9\x7c\x90\xae\xef\x9e\x8f\x05\xd9" "\x96\xff\x66\x6f\x6b\xb9\xbc\xfc\xa4\xe9\x34\xed\x63\x4c\x66\xf5\xf3" "\x75\x2b\x06\xf1\xec\x0e\xfd\x3c\x37\xa3\x1e\xe6\x49\xce\xbf\xdf\xce" "\xff\xe2\x78\x7c\x94\xee\xb7\xd7\xf9\xcf\xca\x4e\xf9\xd7\xeb\x79\xb0" "\x83\x7e\xba\x96\xf3\x1f\xb4\xf3\x6f\xd9\x3f\xf9\xf7\x27\xe6\x5f\xaa" "\x9c\xff\xf0\x91\xf2\x1f\xc8\x1f\x00\x00\x00\x00\x00\xe6\x58\xfe\xfb" "\xff\x41\xfb\x7f\xf3\x2a\x03\x00\x00\x00\x00\x00\x00\xc0\xc2\xb9\x73" "\xf7\xc6\x7a\x3e\xef\x35\xef\xff\xff\xfc\x84\xfb\xf5\x9a\x73\xce\xff" "\xdc\x37\x72\xfe\xbd\x5d\xe7\xef\xfc\xdf\xfd\x24\xe7\xdf\x6f\xe7\xdf" "\x3a\x20\x67\xd0\x98\xbf\xfd\xe6\xfd\xfc\xff\x75\xf7\xc6\xfa\x87\xd7" "\xff\xf9\xb9\x3c\x9d\xfb\xfc\x97\x06\xa3\xfa\xb1\x97\x7a\xfd\xc1\x30" "\x1d\xf3\x53\x2d\xbd\x1d\x97\xe3\x4a\x6c\xc4\x89\x07\xee\x3f\xdc\x36" "\x7e\xf2\x81\xf1\xa5\x6d\xe3\xa7\xa6\x8c\x9f\x7e\x60\x7c\x54\x8f\xaf" "\xe6\xf1\x63\xb1\x1e\x3f\x8f\x2b\xf1\xd6\xbd\xf1\xe5\x29\x07\x46\xad" "\x4c\x19\xaf\xa6\x8c\xe7\xfc\x07\xb6\xff\x22\xe5\xfc\x87\x8d\xaf\x3a" "\xff\xb5\x34\xde\x6b\x4d\x6b\xb7\x3f\xe8\x3f\xb0\xdd\x37\xa7\x93\x1e" "\xe7\xfc\x5f\xff\xf3\xe2\x83\x5b\xd7\xec\xdd\x8a\xc1\xbd\x75\x6b\xaa" "\xd7\xef\x68\x07\xfd\x6c\xfd\x9f\x3c\x35\x8a\x5f\x5e\xdb\xb8\x7a\xec" "\xd7\x97\xae\x5f\xbf\x7a\x32\xd2\x64\xdb\xad\xa7\x22\x4d\x9e\xb0\x9c" "\xff\x52\xfa\xca\xf9\xbf\xf4\xc2\x78\x3c\xff\xde\x6f\x6e\xaf\xb7\x3f" "\x18\x3d\x72\xfe\xf3\xe2\x56\x0c\x77\xcc\xff\x85\xc6\x7c\xbd\xbe\x2f" "\xcf\xb8\xb7\x2e\xe4\xfc\x47\xe9\x2b\xe7\x9f\x9f\x81\x26\x6f\xff\x8b" "\x9c\xff\xce\xdb\xff\x2b\x1d\xf4\x03\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x0f\x53\x55\xd5\xd6\x29\xa2\xe7\x23\xe2\x5c\x3a\xff" "\xa7\xab\x73\x33\x01\x80\x99\xfa\xfd\xf7\xd3\x4c\x95\x84\x7a\x5c\xf7" "\x62\xbe\xfa\x51\xab\xd5\x6a\xb5\xfa\x09\xd4\x4d\xd5\x64\x6f\x34\x8b" "\x58\xd9\xbe\xcc\xb9\x88\xf8\xcd\xa4\x6f\x06\x00\xcc\xb3\xff\x46\xc4" "\x3f\xba\x6e\x82\xce\xc8\xbf\x60\xf9\xf3\xfe\xea\xe9\x17\xba\x6e\x06" "\x98\xa9\x6b\xef\xbd\xff\xd3\x4b\x57\xae\x6c\x5c\xbd\xd6\x75\x27\x00" "\x00\x00\x00\x00\x00\x00\xc0\xff\x2b\x5f\xff\xf3\x48\xe3\xfa\xcf\x5b" "\xc7\x01\xb5\xae\x1b\xbd\xed\xfa\xaf\x6f\xc6\x91\x85\xbd\xfe\x67\x7f" "\x34\xd8\xba\xd6\x79\x5a\xa1\xe7\xe3\xe1\xd7\xff\x3e\x1a\x0f\xbf\xfe" "\xf7\x70\xca\xe3\x2d\x4d\x19\x1f\x4d\x19\x5f\x9e\x32\xbe\x32\x65\x7c" "\xe2\x89\x1e\x0d\x39\xff\xe7\x53\xc6\x39\xff\xc3\x69\xc5\x4a\xba\xfe" "\xeb\x4b\x1d\xf4\xd3\xb5\x9c\xff\xd1\x74\xad\xe7\x9c\xff\x97\x5a\xf7" "\x6b\xe6\x5f\xfd\x65\x91\xf3\xef\x6f\xcb\xff\xf8\xf5\x77\x7f\x71\xfc" "\xda\x7b\xef\xbf\x7a\xf9\xdd\x4b\xef\x6c\xbc\xb3\xf1\xb3\x93\x27\xce" "\x9d\x39\x7d\xf6\xcc\xe9\xb3\x67\x8f\xbf\x7d\xf9\xca\xc6\x89\xf1\xbf" "\x1d\x76\xbc\xb7\x72\xfe\xf9\xda\xd7\x8e\x03\x2d\x4b\xce\x3f\x67\x2e" "\xff\xb2\xe4\xfc\xbf\x98\x6a\xf9\x97\x25\xe7\xff\x62\xaa\xe5\x5f\x96" "\x9c\x7f\x7e\xbd\x27\xff\xb2\xe4\xfc\xf3\x7b\x1f\xf9\x97\x25\xe7\xff" "\x72\xaa\xe5\x5f\x96\x9c\xff\x97\x53\x2d\xff\xb2\xe4\xfc\x5f\x49\xb5" "\xfc\xcb\x92\xf3\xff\x4a\xaa\xe5\x5f\x96\x9c\xff\xab\xa9\x96\x7f\x59" "\x72\xfe\xc7\x52\x2d\xff\xb2\xe4\xfc\x8f\xa7\x5a\xfe\x65\xc9\xf9\xe7" "\x3d\x5c\xf2\x2f\x4b\xce\x3f\x1f\xd9\x20\xff\xb2\xe4\xfc\x4f\xa5\x5a" "\xfe\x65\xc9\xf9\x9f\x4e\xb5\xfc\xcb\x92\xf3\x3f\x93\x6a\xf9\x97\x25" "\xe7\x7f\x36\xd5\xf2\x2f\x4b\xce\xff\x5c\xaa\xe5\x5f\x96\x9c\xff\x57" "\x53\x2d\xff\xb2\xe4\xfc\xbf\x96\x6a\xf9\x97\x25\xe7\xff\x5a\xaa\xe5" "\x5f\x96\x9c\xff\xd7\x53\x2d\xff\xb2\xe4\xfc\xbf\x91\x6a\xf9\x97\x25" "\xe7\xff\xcd\x54\xcb\xbf\x2c\x39\xff\xd7\x53\x2d\xff\xb2\xe4\xfc\xbf" "\x95\x6a\xf9\x97\x25\xe7\xff\x46\xaa\xe5\x5f\x96\xfb\x9f\xff\x6f\x66" "\xc6\x33\xff\xfe\x5b\xc4\x1c\xb4\x61\xc6\xcc\xa4\x99\xae\x7f\x33\x01" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6d\xb3\x38\x9c\xb8\xeb\x75" "\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xf8\x1f\x3b\x70\x20\x00\x00\x00\x00\x00\xe4\xff\xda\x08" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\xd8" "\x81\x03\x01\x00\x00\x00\x00\x20\xff\xd7\x46\xa8\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xc2\xde\xdd\xc5\xc8\x75\xd6" "\xf7\x03\x7f\xf6\xcd\x5e\x27\x81\xf8\x4f\x42\x08\x21\x10\xc7\x79\xc1" "\x10\x27\xbb\x7e\x4d\x4c\x30\x98\xd7\x7f\x1a\x5a\x9a\x06\x42\x4b\x0b" "\x4d\x82\xbd\x4e\x0c\x7e\xab\xd7\x86\x04\xa1\x66\x69\x68\x0b\x02\xa9" "\x51\xdb\x0b\x7a\x51\x0a\x88\x22\xa4\xb6\x4a\x84\x90\x4a\x25\x8a\x22" "\x15\xa9\xbd\x2b\x57\xa0\xdc\xa0\x56\x42\x6a\xa4\x86\x2a\x44\x50\x89" "\x16\xd8\xea\xcc\x79\x9e\x67\x67\x66\x67\xe7\xec\xda\xbb\xf1\x99\x73" "\x3e\x9f\x28\xf9\xc5\x3b\x67\x66\x9e\x39\x73\x66\x76\xbf\x6b\x7d\xe7" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\xbb\xfe\x6d\x73\x7f" "\x3c\x16\x42\x28\xfe\xed\xfc\x67\x6b\x08\x97\x15\xff\xbf\x25\x1c\x2a" "\xfe\xb8\xb0\xff\x62\xaf\x10\x00\x00\x00\xb8\x50\xbf\xe8\xfc\xf7\x6f" "\x2f\xcf\x5f\x38\xb4\x8a\x2b\x75\x6d\xf3\xcf\xaf\xf9\xd7\x6f\x2c\x2e" "\x2e\x2e\x86\x0f\xbd\xf0\xec\x2f\xff\x6c\x71\x31\x5f\xb0\x2d\x84\x89" "\xcd\x21\x74\x2e\x4b\xfe\xe5\x67\x3f\x5d\xec\xde\x26\x7a\x3c\x4c\x8f" "\x8d\x77\xfd\x79\xbc\xe2\xee\x27\x2a\x2e\x9f\xac\xb8\x7c\xaa\xe2\xf2" "\x4d\x15\x97\x6f\xae\xb8\x7c\xba\xe2\xf2\x65\x3b\x60\x99\x2d\xe5\xef" "\x63\x3a\x37\x76\x63\xe7\x7f\xb7\x96\xbb\x34\x5c\x19\xa6\x3a\x97\xdd" "\x38\xe0\x5a\x8f\x8f\x6d\x1e\x1f\x4f\xbf\xcb\xe9\x18\xeb\x5c\x67\x71" "\xea\x68\x38\x16\x8e\x87\xb9\x30\xbb\xec\x3a\x63\x9d\x7f\x42\xf8\xd6" "\xf5\xc5\x7d\xdd\x15\xd2\x7d\x8d\x77\xdd\xd7\xb5\x21\x84\xe7\x7f\xfc" "\x89\xc3\x69\x0d\x63\x71\x1f\xdf\x18\x7a\xee\xac\xa3\xfb\xb9\xfb\xd1" "\x5b\xc2\xb6\x17\x7e\xfc\x89\xc3\x5f\x3d\xfb\xdc\x2b\x07\xcd\xca\xdd" "\xb0\x6c\xa5\x21\xec\xd8\x5e\xac\xf3\x53\x21\x2c\xfd\xba\x2a\x8c\x85" "\xcd\x79\x9f\xa4\x75\x8e\x77\xad\xf3\xda\x01\xeb\x9c\xe8\x59\xe7\x58" "\xe7\x7a\xc5\xff\xf7\xaf\xf3\xf9\x55\xae\x33\x3d\xee\xe9\xb8\xce\xef" "\x0e\x59\xe7\xb5\xf1\x6b\x8f\xdc\x10\x42\x58\x08\x2b\x6e\xd3\xef\xf1" "\x30\x1e\x2e\xe9\xbb\xd7\xbc\xbf\xa7\xcb\x23\xa2\xb8\x8d\xe2\xa9\x7c" "\x59\x98\x5c\xd3\x71\x72\xfd\x2a\x8e\x93\xe2\x3a\x3f\xbc\xa1\xf7\x38" "\xe9\x3f\x26\xd3\xfe\xbf\x3e\xee\x93\xc9\x15\xd6\xd0\xfd\x74\xfc\xe8" "\x93\x9b\x96\xed\xf7\xf3\x3d\x4e\x8a\x47\x5d\x87\x63\xb5\xb8\xed\x7b" "\x8a\x3b\x9d\x9e\xee\xfe\xd5\x6a\xcf\xb1\x5a\x6c\xf3\x89\x9b\x56\x3e" "\x06\x06\x3e\x77\x03\x8e\x81\x7c\x2c\x77\x1d\x03\xdb\xab\x8e\x81\xf1" "\x4d\x13\x9d\x63\x60\x7c\x69\xcd\xdb\x7b\x8e\x81\x5d\xcb\xae\x33\x1e" "\xc6\x3a\xf7\xf5\xec\x4d\xc3\x8f\x81\x99\xb3\x27\x4e\xcf\xcc\x3f\xfa" "\xf1\x5b\x8f\x9d\x78\xf0\xa1\xb9\x87\xe6\x4e\xee\x9a\xdd\xbf\x77\xcf" "\xbe\xbd\x7b\xf6\xed\x9b\x39\x7a\xec\xf8\xdc\x6c\xf9\xdf\xb5\xed\xd2" "\x11\x72\x49\x18\xcf\xc7\xe0\xf6\xf8\x5e\x93\x8e\xc1\xd7\xf6\x6d\xdb" "\x7d\x48\x2e\x7e\x69\xfd\x5e\x07\xd3\x35\x79\x1d\x14\x8f\xfd\xbd\x37" "\x17\x0b\xba\x6c\x3c\xac\x70\x8c\x17\xdb\x7c\x6a\xc7\x85\xbf\x0e\xf2" "\xf7\xfd\xae\xd7\xc1\x64\xd7\xeb\x60\xe0\x7b\xea\x80\xd7\xc1\xe4\x2a" "\x5e\x07\xc5\x36\xcf\xef\x58\xdd\xf7\xcc\xc9\xae\x7f\x07\xad\x61\xa3" "\xde\x0b\xb7\x76\x1d\x03\x17\xf3\xfb\x61\x71\x9f\x1f\x78\xdd\xca\xef" "\x85\xd7\xc6\x75\x7d\xfa\xf5\x6b\xfd\x7e\x38\xb1\xec\x18\x48\x0f\x6b" "\x2c\xbe\xf6\x8a\xaf\xe4\x9f\xf7\xa6\xef\x88\xfb\x65\xf9\x71\x71\x4d" "\x71\xc1\xa5\x9b\x3a\x3f\xdb\xdd\xf6\xc8\x83\x67\xcf\x9e\xd9\x15\xe2" "\x78\x51\x5c\xd1\xf5\x5c\xf5\x1f\x2f\x97\x74\x3d\xa6\xb0\xec\x78\x19" "\x5f\xf3\xf1\x72\xe8\x6f\x7e\x7e\xf3\x35\x03\xbe\xbe\x35\xee\xab\xe9" "\x5b\x86\x3f\x57\xc5\x36\x7b\x77\x0e\x7f\xae\x3a\xef\xee\x97\x6e\x0a" "\xe7\xe6\xe7\xce\xc4\xfd\xb9\x29\x94\xfb\xb3\xe7\xab\xbb\x43\x1c\xeb" "\xec\xc5\xde\x9f\x83\xbe\x9b\x15\xfb\x33\x67\x89\x21\xfb\xb3\xd8\xe6" "\x53\xb7\x5e\xf8\xcf\x82\x39\x97\x74\xbd\xff\x4d\x55\xbd\xff\x4d\x4c" "\x4d\x96\xef\x7f\x13\x79\x6f\x4c\xf5\xbc\xff\x2d\x7f\x6a\x26\x3a\x2b" "\x0b\xe1\xf9\x5b\x57\xf7\xfe\x37\x15\xff\x7d\xb1\xdf\xff\xae\xac\xc9" "\xfb\x5f\xb1\xaf\x3e\x70\xdb\xf0\x63\xa0\xd8\xe6\xd3\x33\x6b\x3d\x06" "\x26\x87\xbe\xff\xdd\x10\xe7\x58\x5c\xcf\xeb\x62\x62\x98\xee\xca\xfd" "\xbf\xec\x5c\xbe\x50\x1e\xa6\x5d\xcf\x65\xe5\x71\x33\x39\x39\x15\x8f" "\x9b\xc9\x74\x8f\xbd\xc7\xcd\x9e\x65\xd7\x29\x6e\xad\xb8\xef\x1d\xb3" "\xe7\x77\xdc\xec\xb8\xa1\xf7\xb9\xea\xf9\xb9\x65\xf5\xc7\x4d\xd5\xaf" "\x0f\x6a\x73\xdc\x14\xfb\xea\xcf\x67\x87\x1f\x37\xc5\x36\x4f\xef\xba" "\xf0\xf7\x8e\x2d\xe9\x7f\xbb\xde\x3b\x36\x55\x1d\x03\x53\x13\x9b\x8a" "\xf5\x4e\xe5\x83\xa0\x7c\xbf\x5b\xdc\x92\x8e\x81\xdb\xc2\xe1\x70\x2a" "\x1c\x0f\x47\xf2\x75\x8a\x67\xb9\xb8\xaf\x9d\xbb\x57\x77\x0c\x6c\x8a" "\xff\xbe\xd8\xef\x1d\x57\xd7\xe4\x18\x28\xf6\xd5\xe7\x77\x0f\x3f\x06" "\x8a\x6d\xbe\xb3\x67\x7d\x7f\x76\xda\x11\xbf\x92\xb7\xe9\xfa\xd9\xa9" "\xff\xf7\x0b\x2b\x65\xfe\x6b\x26\x97\x6e\xaf\x7f\xb7\xad\x77\xe6\x2f" "\xd6\xf9\xf6\xef\xbd\x3b\x7f\x6d\x50\x86\x28\xb6\x79\x6e\xef\x5a\x73" "\xc6\xf0\xfd\x74\x4b\xfc\xca\xa5\x03\xf6\x53\xff\xeb\x67\xa5\x63\xfa" "\x48\x78\x71\xf6\xd3\xd5\x71\x9d\xc7\xf7\x0d\xff\xdd\x54\xb1\xcd\x95" "\xfb\x57\x79\x3c\x1d\x0a\x21\x3c\xb3\xeb\x99\xce\xef\xbb\xe2\xef\x77" "\xbf\x7e\xee\x7b\xdf\xe8\xf9\xbd\xef\xa0\xdf\x29\x3f\xb3\xeb\x99\xbb" "\x67\xee\xfd\xfe\x5a\xd6\x0f\x00\xc0\xf9\xfb\x65\xe7\xbf\x0b\x9b\xca" "\x9f\x35\xbb\xfe\xc6\x7a\x35\x7f\xff\x0f\x00\x00\x00\x8c\x84\x94\xfb" "\xc7\xe3\xcc\xe4\x7f\x00\x00\x00\x68\x8c\x94\xfb\x27\xe2\xcc\xe4\x7f" "\x00\x00\x00\x68\x8c\x94\xfb\x27\xe3\xcc\x5a\x92\xff\x1f\xbe\xe3\xc0" "\x93\xbf\x78\x2c\xe4\x4f\x03\x5c\x8c\xd2\xe5\x69\x37\xdc\xf3\xa6\x72" "\xbb\xd4\xf1\x5e\x88\x7f\xde\xb6\xb8\xa4\xf8\xfa\x5b\xbf\x32\xf5\xe4" "\x67\x1e\x5b\xdd\x7d\x8f\x87\x10\x7e\x7e\xf7\xab\x06\x6e\xff\xf0\x9b" "\xd2\xba\x4a\xa7\xd3\x3a\xdf\xd0\xfb\xf5\x65\xae\xbe\x6e\x55\xf7\xff" "\xc0\x7d\x4b\xdb\x75\x7f\x7e\xc2\xf3\x07\xca\xdb\x4f\x8f\x67\xb5\x87" "\x41\xea\x2a\x7f\x6b\x66\x77\xe7\x76\xb7\x3d\xba\xab\x33\x9f\xbe\x3b" "\x74\xe6\xbd\x0b\x9f\x7e\xbc\xbc\xfd\xf2\xcf\x69\xfb\x67\xf7\x94\xdb" "\xff\x65\xfc\xd0\x92\x43\x47\xc7\x7a\xae\xbf\x23\xae\xe7\xc6\x38\xb7" "\xc5\xcf\x94\xb9\xe7\xd0\xd2\x7e\x28\x66\xba\xde\x93\xd7\xbe\xe6\x9f" "\xae\x78\xdf\xd2\xfd\xa5\xeb\x8d\x6d\x7f\x69\xe7\x61\x7e\xfe\xf7\xcb" "\xdb\x4d\x9f\x11\xf5\xc4\x15\xe5\xf6\xe9\x71\xaf\xb4\xfe\x7f\xfc\xec" "\xd7\x9e\x2c\xb6\x7f\xe4\xa6\xc1\xeb\x7f\x6c\x7c\xf0\xfa\x9f\x8d\xb7" "\xfb\xc3\x38\x7f\x76\xb0\xdc\xbe\x7b\x9f\x7f\xa6\x6b\xfd\x7f\x18\xd7" "\x9f\xee\x2f\x5d\xef\xb6\x2f\x7f\x7b\xe0\xfa\x9f\x7a\x45\xb9\xfd\x53" "\xf1\xb8\xf8\x62\x9c\xfd\xeb\x7f\xcb\x9f\xbc\xfa\x17\x83\x9e\xaf\x74" "\x3f\x87\xee\x2c\xaf\x97\xee\x7f\xf6\xbf\xf7\x76\xae\x97\x6e\x2f\xdd" "\x7e\xff\xfa\xa7\x1f\xdb\xd5\xb3\x3f\xfa\x6f\xff\xe9\x17\xca\xdb\x39" "\xf8\xd1\x9f\x4c\x74\x6f\x9f\xbe\x9e\xee\x27\x79\xe0\xce\xde\xe3\x7b" "\x2c\x3e\xbf\x3d\x3d\xf2\x10\xc2\xd7\xfe\x28\xf4\xec\xe7\xf0\xc6\xf2" "\x7a\xff\xd0\xb7\xfe\x74\x7b\xa7\xef\x1c\xbc\xfe\x5b\xfa\xd6\x79\x7a" "\xec\xba\xce\xf5\x97\x1e\xcf\xd6\x9e\xc7\xf5\x85\xbf\xde\x3d\xf0\xf1" "\xa6\xf5\x1c\xfa\xbb\xad\x3d\x8f\xe7\x89\x77\xc4\xfd\xf7\xc2\xcc\x77" "\x8a\xdb\x7d\xf6\xde\x78\x3c\xc6\xcb\xff\xe7\xbb\xe5\xed\xf5\x7f\x18" "\xc9\x53\xef\xe8\x7d\xbf\x49\xdb\x7f\x71\x6b\xf9\xba\x4d\xb7\x37\xd3" "\xb7\xfe\x27\xfa\xd6\xbf\x70\x5d\xb1\xef\xaa\xd7\x7f\xd7\x0b\xe5\xfa" "\x9f\x7a\xf3\xe6\x9e\xf5\x1f\x7a\x67\x3c\x9e\xee\x2a\x67\xd5\xfa\x1f" "\xfa\xab\xcb\x7b\xae\xff\xa5\xaf\x96\xcf\xc7\x99\x8f\xed\x3c\x79\x6a" "\xfe\xdc\xb1\x23\x5d\x7b\xb5\xfb\x75\xbc\x79\x7a\xcb\x25\x97\x5e\xf6" "\x92\x97\x5e\x1e\xdf\x4b\xfb\xff\x7c\xff\xa9\xb3\x0f\xcf\x9d\xd9\x36" "\xbb\x6d\x36\x84\x6d\x23\xf8\x91\x81\x1b\xbd\xfe\x2f\xc7\xf9\x5f\xe5" "\x58\x58\xff\x7b\x28\x7d\xff\x27\xe5\x71\xf7\xb9\x77\x95\xdf\xb7\x5e" "\xfb\xd3\xf2\xcf\x4f\xc4\xaf\x3f\x10\x9f\xcf\xf4\xfd\xf1\x0b\x7f\x31" "\xd5\x73\xbc\xf6\x3f\xef\x0b\x6f\x2e\xe7\x85\xae\xff\xf5\x71\x1d\xab" "\xf5\x8a\xcf\xfe\xfb\x75\xab\xda\xf0\xd9\x0f\x7e\xeb\xdc\xdf\xff\xc1" "\x73\xfd\x3f\x17\xa4\xc7\x73\xfa\xe5\xd3\x9d\xc7\xf7\xf9\xeb\xaf\xea" "\x5c\x36\xf6\x74\x79\x79\xff\xfb\x55\x95\x7f\x7b\x79\xef\xeb\xfa\x07" "\x93\xb3\x9d\xf9\xcd\xb8\x5f\x17\xe3\x27\x33\x6f\xbf\xaa\xbc\xbf\xfe" "\xdb\x4f\x9f\x4d\xf2\xb9\xf7\x94\xaf\xdf\xf4\x93\x5c\xba\x7e\xe8\xfb" "\x3c\x91\xad\x13\xbd\x8f\xe3\x42\xd7\xff\x83\xf8\x73\xcc\xb7\xaf\xee" "\x7d\xff\x4b\xc7\xc7\x37\x1f\xeb\xfb\x34\xe7\xad\x61\xac\x58\xc2\x42" "\x7c\x7f\x08\x0b\xe5\xe5\x69\xab\xb4\xbf\x3f\xf7\xfc\x55\x03\xef\x2f" "\x7d\x0e\x4f\x58\x78\xe5\x5a\x96\xb9\xa2\xf9\x47\xe7\x67\x8e\x1f\x3b" "\x79\xee\x91\x99\xb3\x73\xf3\x67\x67\xe6\x1f\xfd\xf8\xfd\x27\x4e\x9d" "\x3b\x79\xf6\xfe\xce\x67\x97\xde\xff\xe1\xaa\xeb\x2f\xbd\xbe\x2f\xe9" "\xbc\xbe\x8f\xcc\xed\xdf\x1b\x3a\xaf\xf6\x53\xe5\xd8\x60\x17\x7b\xfd" "\xa7\xef\x3b\x7c\xe4\xf6\xd9\x9b\x8f\xcc\x1d\x7d\xf0\xdc\xd1\xb3\xf7" "\x9d\x9e\x3b\xf3\xd0\xe1\xf9\xf9\xc3\x73\x47\xe6\x6f\x7e\xf0\xe8\xd1" "\xb9\x8f\x55\x5d\xff\xd8\x91\x83\xbb\x76\x1f\xd8\x73\xfb\xee\x9d\x0f" "\x1d\x3b\x72\xf0\x8e\x03\x07\xf6\x1c\xd8\x79\xec\xe4\xa9\x62\x19\xe5" "\xa2\x2a\xec\x9f\xfd\xc8\xce\x93\x67\xee\xef\x5c\x65\xfe\xe0\xde\x03" "\xbb\xf6\xed\xdb\x3b\xbb\xf3\xc4\xa9\x23\x73\x07\x6f\x9f\x9d\xdd\x79" "\xae\xea\xfa\x9d\xef\x4d\x3b\x8b\x6b\x7f\x74\xe7\x99\xb9\xe3\x0f\x9e" "\x3d\x76\x62\x6e\xe7\xfc\xb1\x8f\xcf\x1d\xdc\x75\x60\xff\xfe\xdd\x95" "\x9f\xfe\x78\xe2\xf4\xd1\xf9\x6d\x33\x67\xce\x9d\x9c\x39\x37\x3f\x77" "\x66\xa6\x7c\x2c\xdb\xce\x76\xbe\x5c\x7c\xef\xab\xba\x3e\xed\x30\x7f" "\x2a\xbe\xdf\xf5\x19\x8b\x3f\x9d\xbf\xff\x96\xfd\xf9\xf3\x71\x0b\x5f" "\xf9\xe4\x8a\x37\x55\x6e\xd2\xfb\xe3\x69\xf8\x51\xfc\x2c\xa8\xf4\xfd" "\xad\xea\xcf\x29\xf7\x4f\xc5\x99\xb5\x24\xff\x03\x00\x00\x40\x1b\xa4" "\xdc\x1f\x3f\xf8\x7f\xe9\x02\xf9\x1f\x00\x00\x00\x1a\x23\xe5\xfe\xcd" "\x71\x66\xf2\x3f\x00\x00\x00\x34\x46\xca\xfd\x65\xf2\x9f\xce\xa7\x7f" "\x6f\x4b\xfe\x5f\xaf\xfe\xff\x27\xf5\xff\x3b\xf4\xff\xf5\xff\x83\xfe" "\x7f\xa6\xff\xaf\xff\x1f\xf4\xff\xf5\xff\x2b\xe8\xff\xd7\xa2\xff\xff" "\xb0\xfe\xbf\xfe\xbf\xfe\x3f\x1b\xa5\x6e\xfd\xff\x98\xfb\xc3\x96\x10" "\xfc\xfd\x3f\x00\x00\x00\x34\x54\xca\xfd\x97\xc4\x99\xc9\xff\x00\x00" "\x00\xd0\x18\x29\xf7\x5f\x1a\x67\x26\xff\x03\x00\x00\x40\x63\xa4\xdc" "\x7f\x59\x9c\x59\x4b\xf2\xbf\xf3\xff\xeb\xff\xeb\xff\x0f\xeb\xff\xa7" "\x6d\xf5\xff\x83\xfe\x7f\x1d\xfa\xff\x37\xfe\xa7\xfe\xff\x32\xfa\xff" "\xfa\xff\x41\xff\xff\xbc\x5d\xec\xfe\xfc\xa8\xaf\xbf\x86\xfd\xff\x2d" "\xfa\xff\xd4\x4d\xdd\xfa\xff\x29\xf7\xbf\x24\xce\xac\x25\xf9\x1f\x00" "\x00\x00\xda\x20\xe5\xfe\x97\xc6\x99\xc9\xff\x00\x00\x00\x50\x6b\x9b" "\xd7\xb0\x6d\xca\xfd\x97\xc7\x99\xc9\xff\x00\x00\x00\xd0\x18\x29\xf7" "\x6f\x8d\x33\x6b\x49\xfe\xbf\x78\xfd\xff\x4d\xfa\xff\xfa\xff\x1d\xf5" "\xee\xff\x3b\xff\x7f\x37\xfd\xff\x8b\xde\xff\x77\xfe\xff\x01\xf4\xff" "\xf5\xff\x43\x6b\xfa\xff\xe5\x0f\x0b\xfa\xff\xf5\x59\xff\xc6\xf7\xff" "\xff\x74\xe8\xf5\x9d\xff\x9f\x51\x50\xb7\xfe\x7f\xca\xfd\xff\x2f\xce" "\xac\x25\xf9\x1f\x00\x00\x00\xda\x20\xe5\xfe\x97\xc5\x99\xc9\xff\x00" "\x00\x00\xd0\x18\x29\xf7\x5f\x11\x67\x26\xff\x03\x00\x00\x40\x63\xa4" "\xdc\x7f\x65\x9c\x59\x4b\xf2\x7f\x3b\xcf\xff\xff\xc3\x10\x82\xfe\x7f" "\xd0\xff\xd7\xff\xef\x5b\xa7\xfe\xbf\xfe\xff\x46\xd0\xff\xd7\xff\x1f" "\xe6\xe2\xf6\xff\x8b\x9f\x7d\x46\xa9\xff\xef\xfc\xff\x75\x5b\x7f\x0d" "\xcf\xff\xaf\xff\x4f\xed\xd4\xad\xff\x9f\x72\xff\xcb\xe3\xcc\x5a\x92" "\xff\x01\x00\x00\xa0\x0d\x52\xee\xbf\x2a\xce\x4c\xfe\x07\x00\x00\x80" "\xc6\x48\xb9\xff\x15\x71\x66\xf2\x3f\x00\x00\x00\x34\x46\xca\xfd\x57" "\xc7\x99\xb5\x24\xff\xb7\xb3\xff\xef\xfc\xff\xfa\xff\xa5\x0d\xe8\xff" "\x8f\x4d\xea\xff\x67\xfa\xff\xfa\xff\x41\xff\x5f\xff\xbf\x82\xf3\xff" "\xeb\xff\x8f\xf2\xfa\xf5\xff\xf5\xff\xa9\x56\xb7\xfe\x7f\xca\xfd\xaf" "\x8c\x33\x6b\x49\xfe\x07\x00\x00\x80\x36\x48\xb9\xff\x9a\x38\x33\xf9" "\x1f\x00\x00\x00\x1a\x23\xe5\xfe\x57\xc5\x99\xc9\xff\x00\x00\x00\xd0" "\x18\x29\xf7\x5f\x1b\x67\xd6\x92\xfc\xaf\xff\xaf\xff\xaf\xff\xef\xfc" "\xff\xfa\xff\xfa\xff\x1b\x69\xb4\xfa\xff\xe3\x2b\x5e\xa2\xff\x5f\xd2" "\xff\xef\xb5\x7e\xfd\xff\x85\xa5\x05\xe8\xff\x8f\xcc\xfa\xf5\xff\xf5" "\xff\xa9\x56\xb7\xfe\x7f\xca\xfd\xaf\x8e\x33\x6b\x49\xfe\x07\x00\x00" "\x80\x36\x48\xb9\xff\x35\x71\x66\xf2\x3f\x00\x00\x00\x34\x46\xca\xfd" "\xd7\xc5\x99\xc9\xff\x00\x00\x00\x30\xd2\xba\xa3\x7d\xca\xfd\xdb\xe2" "\x1c\xb8\x51\x83\xe9\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xd7\xb4\xff" "\x3f\x11\xf4\xff\x57\xc1\xf9\xff\xf5\xff\x43\x23\xfa\xff\x4b\xf7\xaf" "\xff\x3f\x3a\xeb\xd7\xff\xd7\xff\xa7\x5a\xdd\xfa\xff\x29\xf7\x5f\x1f" "\x67\xd6\x92\xfc\x0f\x00\x00\x00\x6d\x90\x72\xff\xf6\x38\x33\xf9\x1f" "\x00\x00\x00\x1a\x23\xe5\xfe\x1b\xe2\xcc\xe4\x7f\x00\x00\x00\x68\x8c" "\x94\xfb\x6f\x8c\x33\x6b\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7" "\xff\xaf\x69\xff\xdf\xf9\xff\x57\x45\xff\x7f\xa3\xfa\xff\x5b\x82\xfe" "\x7f\x35\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x86\xab\x5b\xff\x3f\xe5\xfe" "\x9b\xe2\xcc\x5a\x92\xff\x01\x00\x00\xa0\x0d\x52\xee\xbf\x39\xce\x4c" "\xfe\x07\x00\x00\x80\xc6\x48\xb9\xff\xb5\x71\x66\xf2\x3f\x00\x00\x00" "\x34\x46\xca\xfd\x3b\xe2\xcc\x5a\x92\xff\xf5\xff\xf5\xff\xf5\xff\x47" "\xb8\xff\x3f\xa1\xff\x1f\xf4\xff\x6b\xaf\x62\xfd\xff\xdb\xf7\x6d\x67" "\xcd\xf4\xff\x9d\xff\x3f\xe8\xff\x9f\xb7\x8b\xdd\x9f\x1f\xf5\xf5\xeb" "\xff\xeb\xff\x53\xad\x6e\xfd\xff\x94\xfb\x5f\x17\x67\xd6\x92\xfc\x0f" "\x00\x00\x00\x6d\x90\x72\xff\xeb\xe3\xcc\xe4\x7f\x00\x00\x00\x68\x8c" "\x94\xfb\x6f\x89\x33\x93\xff\x01\x00\x00\xa0\x31\x52\xee\xdf\x19\x67" "\xd6\x92\xfc\xdf\xf0\xfe\xff\x73\xff\xb1\xc2\x66\xfa\xff\x25\xfd\xff" "\x11\xef\xff\x3b\xff\x7f\xcf\xfa\xf5\xff\xeb\xc9\xf9\xff\xf5\xff\x87" "\xd1\xff\xd7\xff\x1f\xe5\xf5\xeb\xff\xeb\xff\x53\xad\x6e\xfd\xff\x94" "\xfb\x6f\x8d\x33\x6b\x49\xfe\x07\x00\x00\x80\x36\x48\xb9\xff\xb6\x38" "\x33\xf9\x1f\x00\x00\x00\x1a\x23\xe5\xfe\x99\x38\x33\xf9\x1f\x00\x00" "\x00\x1a\x23\xe5\xfe\xd9\x38\xb3\x96\xe4\xff\x86\xf7\xff\x57\xa4\xff" "\x5f\xd2\xff\xd7\xff\x0f\xfa\xff\xfa\xff\x1b\x4c\xff\x5f\xff\x7f\x18" "\xfd\x7f\xfd\xff\x51\x5e\xbf\xfe\xbf\xfe\x3f\xd5\xea\xd6\xff\x4f\xb9" "\x7f\x57\x9c\x59\x4b\xf2\x3f\x00\x00\x00\xb4\x41\xca\xfd\xbb\xe3\xcc" "\xe4\x7f\x00\x00\x00\x68\x8c\x94\xfb\xf7\xc4\x99\xc9\xff\x00\x00\x00" "\xd0\x18\x29\xf7\xef\x8d\x33\x6b\x49\xfe\x1f\x91\xfe\xff\x6d\xb9\x00" "\xa5\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x3f\x52\xf4\xff\x1b\xda\xff" "\x2f\xde\x48\xf4\xff\xf5\xff\x4f\x9d\xcd\x3b\x58\xff\x5f\xff\x5f\xff" "\x9f\xf1\x01\x5f\xab\x5b\xff\x3f\xe5\xfe\x7d\x71\x66\x2d\xc9\xff\x00" "\x00\x00\xd0\x06\x29\xf7\xef\x8f\x33\x93\xff\x01\x00\x00\xa0\x31\x52" "\xee\xbf\x3d\xce\x4c\xfe\x07\x00\x00\x80\xc6\x48\xb9\xff\x8e\x38\xb3" "\x96\xe4\xff\x11\xe9\xff\x3b\xff\xbf\xfe\xbf\xfe\x7f\x17\xfd\x7f\xfd" "\xff\x51\xa2\xff\xdf\xd0\xfe\xbf\xf3\xff\x77\xe8\xff\x3b\xff\xbf\xfe" "\xbf\xfe\x3f\xc3\xd5\xad\xff\x9f\x72\xff\x81\x38\xb3\x96\xe4\x7f\x00" "\x00\x00\x68\x83\x94\xfb\xdf\x10\x67\x26\xff\x03\x00\x00\x40\x63\xa4" "\xdc\x7f\x67\x9c\x99\xfc\x0f\x00\x00\x00\x23\x65\xd0\x79\x08\x93\x94" "\xfb\xdf\x18\x67\xd6\x92\xfc\xaf\xff\xdf\xf4\xfe\xff\xe2\x66\xfd\x7f" "\xfd\x7f\xfd\xff\xe1\xeb\xd7\xff\xdf\x58\xfa\xff\xfa\xff\xc3\xe8\xff" "\xeb\xff\x8f\xf2\xfa\xf5\xff\xf5\xff\xa9\x56\xb7\xfe\x7f\xca\xfd\x07" "\xe3\xcc\x5a\x92\xff\x01\x00\x00\xa0\x0d\x52\xee\x7f\x53\x9c\x99\xfc" "\x0f\x00\x00\x00\x8d\x91\x72\xff\x9b\xe3\xcc\xe4\x7f\x00\x00\x00\x68" "\x8c\x94\xfb\x0f\xc5\x99\xb5\x24\xff\xeb\xff\x37\xbd\xff\xef\xfc\xff" "\xfa\xff\xfa\xff\x55\xeb\xd7\xff\xdf\x58\xfa\xff\xfa\xff\xc3\x34\xb2" "\xff\xbf\xb9\xf9\xfd\xff\xf8\x63\x8b\xfe\x7f\x8d\xfa\xff\xc5\x31\xa4" "\xff\x4f\x1d\xd5\xad\xff\x9f\x72\xff\x5b\xe2\xcc\x5a\x92\xff\x01\x00" "\x00\xa0\x0d\x52\xee\x7f\x6b\x9c\x99\xfc\x0f\x00\x00\x00\x8d\x91\x72" "\xff\xdb\xe2\xcc\xe4\x7f\x00\x00\x00\x68\x8c\x94\xfb\xdf\x1e\x67\xd6" "\x92\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xbf\x91\xf4" "\xff\x37\xac\xff\xdf\x79\x2b\xd4\xff\x2f\xd5\xaa\xff\xef\xfc\xff\xfa" "\xff\xce\xff\xaf\xff\x4f\x56\xb7\xfe\x7f\xca\xfd\xef\x88\x33\x6b\x49" "\xfe\x07\x00\x00\x80\x36\x48\xb9\xff\x9d\x71\x66\xf2\x3f\x00\x00\x00" "\x34\x46\xca\xfd\xff\x3f\xce\x4c\xfe\x07\x00\x00\x80\xc6\x48\xb9\xff" "\xae\x38\xb3\x96\xe4\x7f\xfd\xff\x75\xe9\xff\xe7\x6a\xa1\xfe\xbf\xfe" "\x7f\xd0\xff\xcf\xf4\xff\xf5\xff\x83\xfe\xbf\xf3\xff\x57\xd0\xff\xd7" "\xff\x1f\xe5\xf5\xeb\xff\xeb\xff\x53\xad\x6e\xfd\xff\x94\xfb\x7f\x25" "\xce\xac\x25\xf9\x1f\x00\x00\x00\xda\x20\xe5\xfe\xbb\xe3\xcc\xe4\x7f" "\x00\x00\x00\x68\x8c\x94\xfb\xdf\x15\x67\x26\xff\x03\x00\x00\xc0\x88" "\xd9\xb4\xe2\x25\x29\xf7\xff\x6a\x9c\x59\x4b\xf2\xff\xe8\xf5\xff\xb7" "\xd5\xb1\xff\x5f\x79\xfe\xff\xf1\x7c\xfb\xfa\xff\xfa\xff\xfa\xff\xfa" "\xff\xfa\xff\xeb\x49\xff\x5f\xff\x3f\xe8\xff\x9f\xb7\x8b\xdd\x9f\x1f" "\xf5\xf5\xeb\xff\xeb\xff\x53\xad\x6e\xfd\xff\x94\xfb\x7f\x2d\xce\xac" "\x25\xf9\x1f\x00\x00\x00\xda\x20\xe5\xfe\x77\xc7\x99\xc9\xff\x00\x00" "\x00\xd0\x18\x29\xf7\xff\x7a\x9c\x99\xfc\x0f\x00\x00\x00\x8d\x91\x72" "\xff\x3d\x71\x66\x2d\xc9\xff\xeb\xdd\xff\xef\xbf\xfe\x30\x0d\x3a\xff" "\x7f\x65\xff\xdf\xf9\xff\xf5\xff\x83\xfe\xbf\xfe\x7f\xd7\x5e\xd5\xff" "\x5f\x3f\xfa\xff\xfa\xff\x41\xff\xff\xbc\x5d\xec\xfe\xfc\xa8\xaf\x5f" "\xff\x5f\xff\x9f\x6a\x75\xeb\xff\xa7\xdc\xff\x1b\x71\x66\x2d\xc9\xff" "\x00\x00\x00\xd0\x06\x29\xf7\xdf\x1b\x67\x26\xff\x03\x00\x00\x40\x4d" "\x3d\xbc\xe6\x6b\xa4\xdc\xff\x9e\x38\x33\xf9\x1f\x00\x00\x00\x1a\x23" "\xe5\xfe\xf7\xc6\x99\xb5\x24\xff\x8f\xde\xf9\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\xf5\xff\x47\x89\xfe\xbf\xfe\xff\x30\xfa\xff\xfa\xff\xa3" "\xbc\x7e\xfd\x7f\xfd\x7f\xaa\xd5\xad\xff\x9f\x72\xff\x7d\x71\x66\x2d" "\xc9\xff\x00\x00\x00\xd0\x06\x29\xf7\xbf\x2f\xce\x4c\xfe\x07\x00\x00" "\x80\xc6\x48\xb9\xff\x37\xe3\xcc\xe4\x7f\x00\x00\x00\x68\x8c\x94\xfb" "\x7f\x2b\xce\xac\x25\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f" "\xff\x7f\x23\xe9\xff\x2f\xef\xff\x17\xef\x61\xfa\xff\x25\xfd\x7f\xfd" "\xff\x51\x5e\xbf\xfe\xbf\xfe\x3f\xd5\xea\xd6\xff\x4f\xb9\xff\xfd\x71" "\x66\x2d\xc9\xff\x00\x00\x00\xd0\x06\x29\xf7\xff\x76\x9c\x99\xfc\x0f" "\x00\x00\x00\x8d\x91\x72\xff\xef\xc4\x99\xc9\xff\x00\x00\x00\xd0\x18" "\x29\xf7\x7f\x20\xce\xac\x25\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f" "\xff\x5f\xff\x7f\x23\xe9\xff\x3b\xff\xff\x30\xfa\xff\xfa\xff\xa3\xbc" "\x7e\xfd\x7f\xfd\x7f\xaa\xd5\xad\xff\x9f\x72\xff\x07\xe3\xcc\x5a\x92" "\xff\x01\x00\x00\xa0\x0d\x52\xee\xff\xdd\x38\x33\xf9\x1f\x00\x00\x00" "\x1a\x23\xe5\xfe\xfb\xe3\xcc\xe4\x7f\x00\x00\x00\x68\x8c\x94\xfb\x1f" "\x88\x33\x6b\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff" "\xdf\x48\xfa\xff\xfa\xff\xc3\xe8\xff\xeb\xff\x8f\xf2\xfa\xf5\xff\xf5" "\xff\xa9\x56\xb7\xfe\x7f\xca\xfd\x0f\xc6\x99\x1d\xea\xbd\x1b\x00\x00" "\x00\x60\x74\xa5\xdc\xff\xa1\x38\xb3\x96\xfc\xfd\x3f\x00\x00\x00\xb4" "\x41\xca\xfd\x87\xe3\xcc\xe4\x7f\x00\x00\x00\x68\x8c\x94\xfb\x8f\xc4" "\x99\xb5\x24\xff\xaf\x63\xff\xff\xd2\xa0\xff\x5f\x83\xfe\x7f\xf9\x68" "\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xeb\x42\xff\x5f\xff\x7f\x18\xfd\x7f" "\xfd\xff\x51\x5e\xbf\xfe\xbf\xfe\x3f\xd5\xea\xd6\xff\x4f\xb9\x7f\x2e" "\xce\xac\x25\xf9\x1f\x00\x00\x00\xda\x20\xe5\xfe\xa3\x71\x66\xf2\x3f" "\x00\x00\x00\x34\x46\xca\xfd\x0f\xc5\x99\xc9\xff\x00\x00\x00\xd0\x18" "\x29\xf7\x3f\x1c\x67\xd6\x92\xfc\xef\xfc\xff\x4d\xeb\xff\x3b\xff\xbf" "\xfe\xff\xaa\xfb\xff\xdf\xfd\x7a\xdf\x3a\xf5\xff\xf5\xff\x37\x82\xfe" "\xbf\xfe\xff\x0a\xb6\x04\xfd\x7f\xfd\xff\x11\x5f\xbf\xfe\xbf\xfe\x3f" "\xd5\xea\xd6\xff\x4f\xb9\xff\x58\x9c\x59\x4b\xf2\x3f\x00\x00\x00\xb4" "\x41\xca\xfd\x1f\x8e\x33\x93\xff\x01\x00\x00\xa0\x31\x52\xee\xff\x48" "\x9c\x99\xfc\x0f\x00\x00\x00\x8d\x91\x72\xff\xf1\x38\xb3\x96\xe4\x7f" "\xfd\x7f\xfd\x7f\xfd\xff\xd6\xf6\xff\x57\x77\xfe\xff\x2d\x4b\xf7\xab" "\xff\xaf\xff\x7f\x3e\xf4\xff\xf5\xff\x87\xd1\xff\xd7\xff\x1f\xe5\xf5" "\xeb\xff\xeb\xff\x53\xad\x6e\xfd\xff\x94\xfb\x4f\xc4\x99\xb5\x24\xff" "\x03\x00\x00\x40\x1b\xa4\xdc\x7f\x32\xce\x4c\xfe\x07\x00\x00\x80\xc6" "\x48\xb9\xff\x54\x9c\x99\xfc\x0f\x00\x00\x00\x8d\x91\x72\xff\xe9\x38" "\xb3\x96\xe4\x7f\xfd\xff\xb5\xf5\xff\xc7\x56\xe8\x06\xea\xff\x0f\x5e" "\xbf\xfe\x7f\x03\xfa\xff\x5d\xf4\xff\xf5\xff\xcf\x87\xfe\xbf\xfe\xff" "\x30\xfa\xff\xfa\xff\xa3\xbc\x7e\xfd\x7f\xfd\x7f\xaa\xd5\xad\xff\x9f" "\x72\xff\xef\xc5\x99\xb5\x24\xff\x03\x00\x00\x40\x1b\xa4\xdc\x7f\x26" "\xce\x4c\xfe\x07\x00\x00\x80\xff\x63\xef\x3e\x77\xf4\xba\xab\x3d\x8e" "\x3f\x71\x8e\x7d\x1c\x1d\xe5\x1e\xf2\xe6\x5c\x00\x57\xc0\x0d\x20\x71" "\x0d\x48\x5c\x00\x12\xbd\x27\xd4\x84\x0e\xa1\xb7\xd0\x42\x6f\xa1\x93" "\xd0\x7b\x0f\xbd\xf7\xde\x02\xa1\x57\x09\xe4\xf1\x5a\x2b\xf6\x64\x66" "\xef\xb1\xfd\x3c\x9e\xbd\xff\xeb\xf3\x79\x91\xc5\x3c\x4e\xf0\x0e\x1e" "\x14\x7e\x32\x5f\xed\x61\xe4\xee\xbf\x7f\xdc\x62\xff\x03\x00\x00\xc0" "\x30\x72\xf7\x3f\x20\x6e\x69\xb2\xff\xf5\xff\xde\xff\xaf\xff\xd7\xff" "\xeb\xff\xf5\xff\xbb\xa4\xff\xd7\xff\x4f\xd1\xff\xeb\xff\xd7\xfc\xfc" "\xfa\x7f\xfd\x3f\xf3\x96\xd6\xff\xe7\xee\x7f\x60\xdc\xd2\x64\xff\x03" "\x00\x00\x40\x07\xb9\xfb\x1f\x14\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc" "\xfd\x0f\x8e\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x87\xc4\x2d\x4d" "\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xbb\xa4\xff\x5f" "\x69\xff\xbf\xd9\xe8\xff\x8f\x40\xff\xaf\xff\xef\xdb\xff\x9f\x8a\xab" "\xff\x67\xda\xd2\xfa\xff\xdc\xfd\x0f\x8d\x5b\x9a\xec\x7f\x00\x00\x00" "\xe8\x20\x77\xff\xc3\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xe1" "\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x88\xb8\xa5\xc9\xfe\xd7" "\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\x97\xf4\xff\x2b\xed\xff" "\xbd\xff\xff\x48\xf4\xff\xfa\xff\xbe\xfd\xbf\xf7\xff\x73\x34\x4b\xeb" "\xff\x73\xf7\x3f\x32\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x8f" "\x8a\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x47\xc7\x2d\xf6\x3f\x00" "\x00\x00\x0c\x23\x77\xff\xb5\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff" "\x57\xd8\xff\xff\x8f\xfe\x5f\xff\xbf\x1e\xfa\x7f\xfd\xff\x14\xfd\xbf" "\xfe\x7f\xcd\xcf\x7f\x4e\xff\xff\xff\xf1\x91\xfe\x5f\xff\xcf\x3e\x4b" "\xeb\xff\x73\xf7\x5f\x17\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\x57\xd8\xff\x7b\xff\xbf\xfe\x7f\x45\xf4\xff\xfa\xff\x29\xfa\x7f" "\xfd\xff\x9a\x9f\xdf\xfb\xff\xf5\xff\xcc\x5b\x5a\xff\x9f\xbb\xff\xf1" "\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x42\xdc\x62\xff\x03" "\x00\x00\xc0\x30\x72\xf7\x3f\x31\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9" "\xfb\xaf\x8f\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb" "\xff\x77\x49\xff\xaf\xff\x9f\xa2\xff\xd7\xff\xaf\xf9\xf9\xf5\xff\xfa" "\x7f\xe6\xed\xbc\xff\xbf\xf7\x0d\x7b\xf7\xa8\xfd\x7f\xee\xfe\x1b\xe2" "\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xa4\xb8\xc5\xfe\x07\x00" "\x00\x80\x61\xe4\xee\x7f\x72\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7" "\x3f\x25\x6e\x69\xb2\xff\xf5\xff\xfa\xff\xbb\xfa\xff\xff\x5c\xa1\xff" "\xd7\xff\xeb\xff\xef\xfa\x5c\xff\xbf\x1d\xfa\x7f\xfd\xff\x14\xfd\xbf" "\xfe\x7f\xcd\xcf\xaf\xff\xd7\xff\x33\x6f\xe7\xfd\xff\x4c\xef\xbf\xff" "\xeb\xdc\xfd\x4f\x8d\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xd3" "\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xe9\x71\x8b\xfd\x0f\x00" "\x00\x00\x8b\x77\xfa\x88\x7f\x5e\xee\xfe\x67\xec\xff\xab\x9a\xec\x7f" "\xfd\xbf\xfe\xdf\xfb\xff\xf5\xff\xfa\x7f\xfd\xff\x2e\xe9\xff\x17\xdb" "\xff\xef\xff\xaf\xde\xf9\x76\xd7\xff\x9f\x3a\xf7\x0b\xfd\xbf\xfe\x7f" "\xd9\xcf\x3f\xbd\x28\xa6\xfa\xff\x7b\x1e\xe1\xf9\xf5\xff\x74\x70\x50" "\xff\x7f\xee\x3f\x5b\x2e\x77\xff\x9f\xbb\xff\x99\x71\x4b\x93\xfd\x0f" "\x00\x00\x00\x1d\xe4\xee\x7f\x56\xdc\x62\xff\x03\x00\x00\xc0\x30\x72" "\xf7\xdf\x18\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xcf\x8e\x5b\x9a" "\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x3f\xbf\xff\x3f\xd1\xb2\xff\x3f" "\xf3\x99\xfe\x7f\x37\xf4\xff\x8b\xed\xff\xa7\x79\xff\xff\x91\xe8\xff" "\x47\xef\xff\xa7\x79\xff\xbf\xfe\x9f\x79\x07\xf5\xff\x67\x5c\x11\xff" "\xeb\xfc\x72\xf7\xff\xb9\xfb\x9f\x13\xb7\x34\xd9\xff\x00\x00\x00\xd0" "\x41\xee\xfe\xe7\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xf3\xe2" "\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xf9\x71\x4b\x93\xfd\xaf\xff" "\xd7\xff\xeb\xff\xf5\xff\x97\xf4\xfe\xff\x2b\xc7\xe8\xff\xbd\xff\x7f" "\x77\xf4\xff\xfa\xff\x29\xfa\x7f\xfd\xff\x9a\x9f\x5f\xff\xaf\xff\x67" "\xde\xd2\xfa\xff\xdc\xfd\x2f\x88\x5b\x9a\xec\x7f\x00\x00\x00\x18\xde" "\x89\x4d\xed\xfe\x17\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x8b" "\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xc5\x71\x4b\x93\xfd\xaf" "\xff\xd7\xff\xeb\xff\xf5\xff\x97\xd4\xff\x0f\xf2\xfe\x7f\xfd\xff\xee" "\xe8\xff\xf5\xff\x53\x8e\xda\xff\x6f\xf4\xff\xf5\xf7\x72\xbc\xfd\xff" "\xc9\xf3\xbe\xd2\xff\xeb\xff\xf5\xff\xcc\x59\x5a\xff\x9f\xbb\xff\x25" "\x71\x4b\x93\xfd\x0f\x00\x00\x00\xe3\xb9\xfe\x6e\x9f\xe4\xee\x7f\x69" "\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xdf\x14\xb7\xd8\xff\x00\x00" "\x00\x30\x8c\xdc\xfd\x2f\x8b\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\x77\x49\xff\xaf\xff\x9f\xe2\xfd\xff\x6b\xeb\xff" "\xcf\xa7\xff\xd7\xff\xeb\xff\x99\xb3\xb4\xfe\x3f\x77\xff\xcb\xe3\x96" "\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x8a\xb8\xc5\xfe\x07\x00\x00" "\x80\x61\xe4\xee\x7f\x65\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xbf" "\x2a\x6e\xd9\xbf\xff\x4f\x5c\xce\xa7\xba\x7c\x8e\xb5\xff\xcf\x76\x43" "\xff\xaf\xff\xd7\xff\xef\xd1\xff\xc7\xaf\xab\xfe\x5f\xff\x7f\x01\xf4" "\xff\xfa\xff\xcd\x80\xfd\xff\xe9\x43\x7e\x3e\xfd\xff\xb2\x9e\x5f\xff" "\xaf\xff\x67\xde\xd2\xfa\xff\xdc\xfd\x37\xc7\x2d\x7e\xff\x1f\x00\x00" "\x00\x86\x91\xbb\xff\xd5\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff" "\x9a\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x6d\xdc\xd2\x64\xff" "\x1f\xd6\xff\xdf\xf9\x7f\x67\x7f\xdc\xfb\xff\x8f\x46\xff\x7f\xf0\xf3" "\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\x7b\xfd\xff\x41\xff\x78\xd3" "\xff\x9f\x35\x5a\xff\xef\xfd\xff\xeb\x78\x7e\xfd\xbf\xfe\x9f\x79\x4b" "\xeb\xff\x73\xf7\xbf\x2e\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd" "\xaf\x8f\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x37\xc4\x2d\xf6\x3f" "\x00\x00\x00\x0c\x23\x77\xff\x1b\xe3\x96\x26\xfb\x7f\xfb\xef\xff\xbf" "\xe6\x38\xfa\xff\xbb\xe2\x3a\xfd\xbf\xfe\x5f\xff\xaf\xff\x8f\xcf\x0f" "\xeb\xff\xf7\xd3\xff\xef\x96\xfe\xdf\xfb\xff\xa7\xe8\xff\xf5\xff\x6b" "\x7e\x7e\xfd\xbf\xfe\x9f\x79\x4b\xeb\xff\x73\xf7\xbf\x29\x6e\x69\xb2" "\xff\x01\x00\x00\xa0\x83\xdc\xfd\x6f\x8e\x5b\xec\x7f\x00\x00\x00\x18" "\x46\xee\xfe\xb7\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x5b\xe3" "\x96\x26\xfb\x7f\xfb\xfd\xbf\xf7\xff\xeb\xff\x2f\xb0\xff\x3f\xa1\xff" "\x4f\xfa\xff\xf8\x75\xf5\xfe\x7f\xfd\xff\x05\xd0\xff\xeb\xff\x37\xfa" "\xff\x8b\x76\xdc\xfd\xfc\xda\x9f\x5f\xff\xaf\xff\x67\xde\xd2\xfa\xff" "\xdc\xfd\xb7\xec\x4d\xbd\x7e\xfb\x1f\x00\x00\x00\x3a\xb8\x65\xef\x8f" "\xa7\x37\x6f\x8b\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xb7\xc7\x2d" "\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x3b\xe2\x96\x26\xfb\x5f\xff\xaf" "\xff\x3f\xf6\xfe\xdf\xfb\xff\x8b\xfe\x3f\x7e\x5d\xf5\xff\xfa\xff\x0b" "\xa0\xff\xd7\xff\x6f\xf4\xff\x17\xed\xb8\xfb\xf9\xb5\x3f\xbf\xfe\x5f" "\xff\xcf\xbc\xa5\xf5\xff\xb9\xfb\xdf\x19\xb7\x34\xd9\xff\x00\x00\x00" "\xd0\x41\xee\xfe\x77\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x76\xff\xd9" "\xff\xf3\xbb\xfd\x0f\x00\x00\x00\x43\x7a\xf7\xde\x1f\x4f\x6f\xde\x13" "\xb7\x34\xd9\xff\x8d\xfb\xff\x6b\x2e\xb5\xff\xbf\xea\x9c\x7f\xad\xff" "\x3f\xf8\xf9\xf5\xff\x5b\xe9\xff\x6f\xd9\xff\xbd\xa7\xff\xd7\xff\xaf" "\x89\xfe\x5f\xff\x3f\x45\xff\xaf\xff\x5f\xf3\xf3\x2f\xa7\xff\x8f\x0f" "\xae\xd5\xff\xb3\x3c\x4b\xeb\xff\x73\xf7\xbf\x37\x6e\x69\xb2\xff\x01" "\x00\x00\xa0\x83\xdc\xfd\xb7\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\xe3\xcc" "\xee\xbf\x6e\x73\x7a\x73\xdb\xde\x57\xf6\x3f\x00\x00\x00\x8c\x28\x77" "\xff\xfb\xe2\x96\x26\xfb\xbf\x71\xff\x3f\xc8\xfb\xff\xef\x73\x47\x3c" "\x81\xfe\x7f\xdc\xfe\xdf\xfb\xff\xe3\xea\xff\xf5\xff\x07\xd1\xff\xeb" "\xff\x37\xfa\xff\x8b\x76\xdc\xfd\xfc\xda\x9f\x7f\x39\xfd\xbf\xf7\xff" "\xb3\x5c\x4b\xeb\xff\x73\xf7\xbf\x3f\x6e\x69\xb2\xff\x01\x00\x00\xa0" "\x83\xdc\xfd\x1f\x88\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x0f\xc6" "\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x87\xe2\x96\x26\xfb\x5f\xff" "\xbf\xf6\xfe\xdf\xfb\xff\xf5\xff\xfa\x7f\xfd\xff\xb2\xe9\xff\xf5\xff" "\x53\xf4\xff\xfa\xff\x35\x3f\xbf\xfe\x5f\xff\xcf\xbc\xa5\xf5\xff\xb9" "\xfb\x3f\x1c\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x8f\xc4\x2d" "\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x47\xe3\x16\xfb\x1f\x00\x00\x00" "\x86\x91\xbb\xff\x63\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xef\xaa\xff\x3f" "\xf3\x93\xe8\xff\x9b\xf4\xff\xd7\xe9\xff\x37\xfa\xff\x43\xe9\xff\xf5" "\xff\x53\xf4\xff\xfa\xff\x35\x3f\xbf\xfe\x5f\xff\xcf\xbc\xa5\xf5\xff" "\xb9\xfb\x3f\x1e\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x4f\xc4" "\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x27\xe3\x16\xfb\x1f\x00\x00" "\x00\x86\x91\xbb\xff\x53\x71\xc3\x3d\xae\x3e\xbe\x47\xda\xae\x93\x87" "\x7c\x1e\xbd\xf9\x2a\xfb\xff\x5b\x27\xfe\x4d\xf5\xff\x8b\xe9\xff\xbd" "\xff\xbf\x51\xff\xef\xfd\xff\x7b\xf4\xff\x07\xd3\xff\xeb\xff\xa7\xe8" "\xff\xf5\xff\x6b\x7e\x7e\xfd\xbf\xfe\x9f\x79\x4b\xeb\xff\x73\xf7\x7f" "\x3a\x6e\xf1\xfb\xff\x00\x00\x00\x30\x8c\xdc\xfd\x9f\x89\x5b\xec\x7f" "\x00\x00\x00\x18\x46\xee\xfe\xcf\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23" "\x77\xff\xe7\xe2\x96\x26\xfb\x7f\x95\xfd\xbf\xf7\xff\xeb\xff\xe3\xaf" "\x6d\xde\xff\x5f\xa5\xff\x3f\xff\xf9\xf5\xff\xcb\xa4\xff\xd7\xff\x4f" "\xd1\xff\xeb\xff\xd7\xfc\xfc\xfa\x7f\xfd\x3f\xf3\x96\xd6\xff\xe7\xee" "\xff\x7c\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xbf\x10\xb7\xd8" "\xff\x00\x00\x00\x30\x8c\xdc\xfd\xb7\xc7\x2d\xf6\x3f\x00\x00\x00\x0c" "\x23\x77\xff\x17\xe3\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xaf\xb6\xff" "\xf7\xfe\xff\x7d\xcf\xaf\xff\x5f\x26\xfd\xbf\xfe\x7f\x8a\xfe\x5f\xff" "\xbf\xe6\xe7\xd7\xff\xeb\xff\x99\xb7\xb4\xfe\x3f\x77\xff\x97\xe2\x96" "\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xe5\xb8\xc5\xfe\x07\x00\x00" "\x80\x61\xe4\xee\xff\x4a\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x7f" "\x35\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf" "\xa5\xcb\xde\xff\x9f\xd8\xfe\xcf\xb1\xd1\xff\xeb\xff\x0f\xa1\xff\x1f" "\xac\xff\xbf\x3d\x7f\x44\xff\xaf\xff\x67\x5b\x96\xd6\xff\xe7\xee\xff" "\x5a\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xbf\x1e\xb7\xd8\xff" "\x00\x00\x00\x30\x8c\xdc\xfd\xdf\x88\x5b\xec\x7f\x00\x00\x00\x18\x46" "\xee\xfe\x6f\xc6\x2d\x4d\xf6\xff\xc8\xfd\xff\xd4\x9f\xa6\xff\x3f\x4b" "\xff\xaf\xff\xdf\xe8\xff\xf7\xf7\xff\xa7\xf2\x73\xfd\xff\x76\x78\xff" "\xbf\xfe\x7f\xca\xfa\xfb\xff\x7b\xdd\x74\xe6\xea\xff\x0f\xe8\xff\x4f" "\x6d\xe5\x11\x8f\xef\xf9\xf5\xff\xfa\x7f\xb6\x62\x69\xfd\x7f\xee\xfe" "\x6f\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xdb\x71\x8b\xfd" "\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x9d\xb8\xc5\xfe\x07\x00\x00\x80\x61" "\xe4\xee\xff\x6e\xdc\xd2\x64\xff\x8f\xdc\xff\x4f\xd1\xff\x9f\xa5\xff" "\xd7\xff\x6f\xf4\xff\xde\xff\xbf\x63\xfa\x7f\xfd\xff\x94\xf5\xf7\xff" "\xde\xff\x3f\xd4\xfb\xff\xf5\xff\xfa\x7f\xb6\xee\x98\xfa\xff\x93\x9b" "\x43\xfa\xff\xdc\xfd\xdf\x8b\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77" "\xff\xf7\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x07\x71\x8b\xfd" "\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xc3\xb8\x65\x9c\xfd\x7f\xdf\xdb\x26" "\x7e\x50\xff\xbf\xf5\xfe\x7f\xef\x9b\x48\xff\xaf\xff\xdf\xe8\xff\xf5" "\xff\xfa\xff\x3d\xfa\x7f\xfd\xff\x14\xfd\xbf\xfe\x7f\xcd\xcf\xaf\xff" "\xd7\xff\x33\x6f\x69\xef\xff\xcf\xdd\xff\xa3\xb8\x65\x9c\xfd\x0f\x00" "\x00\x00\xed\xe5\xee\xff\x71\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7" "\xff\x24\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x7f\x1a\xb7\x34\xd9" "\xff\xfa\xff\x8b\xeb\xff\xef\xb7\x2f\x20\xf6\xfe\xff\x83\x9f\x5f\xff" "\xbf\xb8\xfe\xff\xca\xcd\x91\xfa\xff\xfc\x4f\x58\xff\x3f\xdb\xff\x9f" "\xf3\xcd\xac\xff\x3f\x98\xfe\x5f\xff\x3f\x45\xff\xaf\xff\x5f\xf3\xf3" "\xeb\xff\xf5\xff\xcc\x5b\x5a\xff\x9f\xbb\xff\x67\x71\x4b\x93\xfd\x0f" "\x00\x00\x00\x1d\xe4\xee\xff\x79\xdc\x62\xff\x03\x00\x00\xc0\x30\x72" "\xf7\xff\x22\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x7f\x19\xb7\x34" "\xd9\xff\xfa\xff\xad\xbf\xff\x5f\xff\xaf\xff\x5f\x72\xff\xef\xfd\xff" "\xde\xff\x7f\xd9\xe9\xff\xf5\xff\x53\xf4\xff\xfa\xff\x35\x3f\x7f\xf6" "\xff\xf9\x7d\xa7\xff\xd7\xff\x73\x77\x4b\xeb\xff\x73\xf7\xff\x2a\x6e" "\x69\xb2\xff\x01\x00\x00\x60\x68\x57\x9d\xfb\xc5\xe9\xcd\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\xd7\xff\xeb\xff\xf5\xff\xfa\x7f" "\xfd\xbf\xfe\x7f\x97\xf4\xff\xfa\xff\x29\xfa\x7f\xfd\xff\x9a\x9f\xdf" "\xfb\xff\xf5\xff\xcc\x5b\x5a\xff\x9f\xbb\xff\x8e\xb8\xa5\xc9\xfe\x07" "\x00\x00\x80\x0e\x72\xf7\xff\x2e\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9" "\xfb\x7f\x1f\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x77\xc6\x2d\x4d" "\xf6\xbf\xfe\x5f\xff\x3f\x64\xff\xff\xbf\xfa\x7f\xfd\xbf\xfe\x7f\x29" "\xf4\xff\xfa\xff\x29\xfa\x7f\xfd\xff\x9a\x9f\x5f\xff\xaf\xff\x67\xde" "\xd2\xfa\xff\xdc\xfd\x7f\x88\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77" "\xff\x1f\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x4f\x71\x8b\xfd" "\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xe7\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff" "\x2f\xbc\xff\x3f\x59\x7f\xdf\x8b\xed\xff\xbd\xff\x5f\xff\xaf\xff\x5f" "\x8c\x71\xfb\xff\x53\xfa\x7f\xfd\xff\x25\xf7\xff\x37\xde\x7c\xf6\x63" "\xfd\xff\x3a\x9f\x5f\xff\xaf\xff\x67\xde\xd2\xfa\xff\xdc\xfd\x7f\x89" "\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x5f\xe3\x16\xfb\x1f\x00" "\x00\x00\x86\x91\xbb\xff\x6f\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd" "\xff\xf7\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\x87\x7c\xff\xbf\xfe\x5f\xff" "\xaf\xff\x5f\x8c\x71\xfb\x7f\xef\xff\xd7\xff\x7b\xff\xbf\xfe\x5f\xff" "\xaf\xff\x67\xce\xd2\xfa\xff\xdc\xfd\xff\x88\x5b\x9a\xec\x7f\x00\x00" "\x00\xe8\x20\x77\xff\x3f\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff" "\x5f\x71\x8b\xfd\x0f\x00\x00\x00\x2b\x70\xf5\x6c\x33\x73\x46\xee\xfe" "\x7f\xc7\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff" "\xbb\xa4\xff\xd7\xff\x4f\xd1\xff\xeb\xff\xd7\xfc\xfc\xfa\x7f\xfd\x3f" "\xf3\x96\xd6\xff\xe7\xee\xff\x6f\x00\x00\x00\xff\xff\x49\xdd\x2c\x01", 24667); syz_mount_image( /*fs=*/0x200000000400, /*dir=*/0x200000000140, /*flags=MS_LAZYTIME|MS_POSIXACL|MS_REC|MS_STRICTATIME|MS_SILENT|MS_NOSUID|0x800*/ 0x301c802, /*opts=*/0x200000000f80, /*chdir=*/0x11, /*size=*/0x605b, /*img=*/0x200000000440); break; case 1: // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0x42 (4 bytes) // mode: open_mode = 0x0 (2 bytes) // ] // returns fd memcpy((void*)0x200000000180, "./file1\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000180ul, /*flags=O_CREAT|O_RDWR*/ 0x42, /*mode=*/0); if (res != -1) r[0] = res; break; case 2: // pwrite64 arguments: [ // fd: fd (resource) // buf: ptr[in, buffer] { // buffer: {61} (length 0x1) // } // count: len = 0x200000c1 (8 bytes) // pos: intptr = 0x9000 (8 bytes) // ] memset((void*)0x2000000000c0, 97, 1); syscall(__NR_pwrite64, /*fd=*/r[0], /*buf=*/0x2000000000c0ul, /*count=*/0x200000c1ul, /*pos=*/0x9000ul); break; case 3: // setxattr$security_capability arguments: [ // path: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // name: ptr[in, buffer] { // buffer: {73 65 63 75 72 69 74 79 2e 63 61 70 61 62 69 6c 69 74 79 // 00} (length 0x14) // } // val: nil // size: len = 0x0 (8 bytes) // flags: setxattr_flags = 0x1 (8 bytes) // ] memcpy((void*)0x200000000380, "./file0\000", 8); memcpy((void*)0x2000000003c0, "security.capability\000", 20); syscall(__NR_setxattr, /*path=*/0x200000000380ul, /*name=*/0x2000000003c0ul, /*val=*/0ul, /*size=*/0ul, /*flags=XATTR_CREATE*/ 1ul); 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); const char* reason; (void)reason; do_sandbox_none(); return 0; }