// https://syzkaller.appspot.com/bug?id=e2c3120dce1d421ce5fa3cf845d6fd4a8c120e51 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) 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); } void loop(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // 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 32 00} (length 0x8) // } // flags: mount_flags = 0x800c08 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {2c 75 6d 61 73 6b 3d 30 00 04 00 00 00 00 00 00 // 00 00 00} (length 0x13) // } // union ANYUNION { // ANYRES8: ANYRES8 (resource) // } // union ANYUNION { // ANYRES16: ANYRES16 (resource) // } // union ANYUNION { // ANYRESDEC: ANYRES64 (resource) // } // union ANYUNION { // ANYRES8: ANYRES8 (resource) // } // union ANYUNION { // ANYRESHEX: ANYRES64 (resource) // } // union ANYUNION { // ANYRESDEC: ANYRES64 (resource) // } // union ANYUNION { // ANYRES64: ANYRES64 (resource) // } // union ANYUNION { // ANYRES8: ANYRES8 (resource) // } // union ANYUNION { // ANYRES8: ANYRES8 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {c4 9e cf dd 87 11 04 8b ea 9e b5 55 74 81 0b 5c // bc 45 4c cd 5a 63 c7 94 1b a3 93 a8 6e 5b 7a 8f dc f7 b7 5e 9b d7 // 45 9f 7e 12 9f ad ab ee f1 e9 b0 84 a7 56 8c 9c e9 00 14 06 91 21 // b0 70 0a 4f 94 89 41 c5 9d 1e 8e 3f 80 ff a6 01 a2 0f 97 9d d6 e1 // fe 15 0b a2 83 f1 49 99 be 8b 6f e5 30 f6 7d ba c2 44 3d a6 56 08 // 40 9a bd 01 60 29 80 fb 52 27 c2 72 18 01 71 df a0 99 78 bf 40 bd // 65 0d 5c 4a 54 e6 ce cf cf d2 e4 1e 9e c8 5c 6a 27 4e 66 8e 74 43 // cd d2 c3 cb a6 97 2c cf fb 41 48 7a 82 02 81 6a c3 ba 65 bb 5c b3 // d1 32 31 94 c1 02 f3 9a ae 52 e4 65 00 84 96 60 e4 84 f3 92 10 87 // 2d 95 8d 69 f6 1e 13 11 c5 1a 34 b6 4f 81 cb 8a 5c c3 0b f5 68 18 // 5b 0b b1 f0 d4 38 77 7c 83 3a 9b 36 2a 10 ca ce 72 8b 50 8e b7 64 // 22 44} (length 0xee) // } // } // } // chdir: int8 = 0x21 (1 bytes) // size: len = 0x627f (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x627f) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x200000000400, "jfs\000", 4)); NONFAILING(memcpy((void*)0x2000000000c0, "./file2\000", 8)); NONFAILING(memcpy((void*)0x200000000540, "\x2c\x75\x6d\x61\x73\x6b\x3d\x30\x00\x04\x00\x00\x00\x00" "\x00\x00\x00\x00\x00", 19)); NONFAILING(*(uint8_t*)0x200000000553 = 0); NONFAILING(*(uint16_t*)0x200000000554 = 0); NONFAILING(sprintf((char*)0x200000000556, "%020llu", (long long)-1)); NONFAILING(*(uint8_t*)0x20000000056a = 0); NONFAILING(sprintf((char*)0x20000000056b, "0x%016llx", (long long)0)); NONFAILING(sprintf((char*)0x20000000057d, "%020llu", (long long)-1)); NONFAILING(*(uint64_t*)0x200000000591 = -1); NONFAILING(*(uint8_t*)0x200000000599 = -1); NONFAILING(*(uint8_t*)0x20000000059a = 0); NONFAILING(memcpy( (void*)0x20000000059b, "\xc4\x9e\xcf\xdd\x87\x11\x04\x8b\xea\x9e\xb5\x55\x74\x81\x0b\x5c\xbc\x45" "\x4c\xcd\x5a\x63\xc7\x94\x1b\xa3\x93\xa8\x6e\x5b\x7a\x8f\xdc\xf7\xb7\x5e" "\x9b\xd7\x45\x9f\x7e\x12\x9f\xad\xab\xee\xf1\xe9\xb0\x84\xa7\x56\x8c\x9c" "\xe9\x00\x14\x06\x91\x21\xb0\x70\x0a\x4f\x94\x89\x41\xc5\x9d\x1e\x8e\x3f" "\x80\xff\xa6\x01\xa2\x0f\x97\x9d\xd6\xe1\xfe\x15\x0b\xa2\x83\xf1\x49\x99" "\xbe\x8b\x6f\xe5\x30\xf6\x7d\xba\xc2\x44\x3d\xa6\x56\x08\x40\x9a\xbd\x01" "\x60\x29\x80\xfb\x52\x27\xc2\x72\x18\x01\x71\xdf\xa0\x99\x78\xbf\x40\xbd" "\x65\x0d\x5c\x4a\x54\xe6\xce\xcf\xcf\xd2\xe4\x1e\x9e\xc8\x5c\x6a\x27\x4e" "\x66\x8e\x74\x43\xcd\xd2\xc3\xcb\xa6\x97\x2c\xcf\xfb\x41\x48\x7a\x82\x02" "\x81\x6a\xc3\xba\x65\xbb\x5c\xb3\xd1\x32\x31\x94\xc1\x02\xf3\x9a\xae\x52" "\xe4\x65\x00\x84\x96\x60\xe4\x84\xf3\x92\x10\x87\x2d\x95\x8d\x69\xf6\x1e" "\x13\x11\xc5\x1a\x34\xb6\x4f\x81\xcb\x8a\x5c\xc3\x0b\xf5\x68\x18\x5b\x0b" "\xb1\xf0\xd4\x38\x77\x7c\x83\x3a\x9b\x36\x2a\x10\xca\xce\x72\x8b\x50\x8e" "\xb7\x64\x22\x44", 238)); NONFAILING(memcpy( (void*)0x200000001600, "\x78\x9c\xec\xdd\x4b\x8f\x1c\x57\xd9\x07\xf0\xa7\xaf\x73\xf1\x1b\xc7\xca" "\x22\xca\x6b\x21\x34\x49\xcc\x25\x84\xf8\x1a\x8c\x21\x40\x92\x05\x2c\xd8" "\xb0\x40\xde\x22\x5b\x93\x49\x64\xe1\x00\xb2\x0d\x72\x22\x0b\x4f\x34\x1b" "\x16\x7c\x08\x10\x12\x4b\x84\x58\xb2\xe2\x03\x64\xc1\x96\x1d\x1f\x00\x4b" "\x36\x12\x28\xab\x14\xaa\x99\x73\xc6\x35\xe5\x69\xf7\x8c\xed\xe9\xea\x99" "\xf3\xfb\x49\xe3\xea\xa7\x4e\x55\xf7\x29\xff\xbb\xa6\xbb\xa7\xaa\xfa\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\x10\x3f\xfc\xc1\x8f" "\xcf\xf5\x22\xe2\xca\xaf\xd2\x8c\x13\x11\xff\x17\x83\x88\x7e\xc4\x52\x5d" "\xaf\x44\xc4\xd2\xca\x89\xe6\x3a\x2f\xc5\x66\x73\xbc\x18\x11\xa3\x85\x88" "\x7a\xfd\xcd\x7f\x9e\x8f\x78\x33\x22\x3e\x3d\x1e\x71\xff\xc1\x9d\xd5\x7a" "\xf6\xf9\x3d\xf6\xe3\xfb\x7f\xfe\xc7\x1f\x7e\x72\xec\x47\x7f\xff\xd3\xe8" "\xcc\x7f\xff\x72\x6b\xf0\xd6\xa4\xe5\x6e\xdf\xfe\xed\x7f\xfe\x7a\xf7\xc9" "\xb7\x17\x00\x00\x00\x4a\x54\x55\x55\xd5\x4b\x1f\xf3\x4f\x46\xc4\x30\x7d" "\xb6\x07\x00\x8e\xbe\xfc\xfa\x5f\x25\x79\xbe\x7a\xee\xea\xf5\x39\xeb\x8f" "\x5a\xad\x56\xab\x0f\x61\xdd\x54\xed\xee\x6e\xb3\x88\x88\xf5\xe6\x3a\xf5" "\x7b\x06\x87\xe3\x01\xe0\x90\x59\x8f\xcf\xba\xee\x02\x1d\x92\x7f\xd1\x86" "\x11\x71\xac\xeb\x4e\x00\x73\xad\xd7\x75\x07\x38\x10\xf7\x1f\xdc\x59\xed" "\xa5\x7c\x7b\xcd\xd7\x83\x95\xad\xf6\x7c\x2e\xc8\x8e\xfc\xd7\x7b\xdb\xd7" "\x77\x4c\x9a\x4e\xd3\x3e\xc7\x64\x56\xcf\xaf\x8d\x18\xc4\x0b\x13\xfa\xb3" "\x34\xa3\x3e\xcc\x93\x9c\x7f\xbf\x9d\xff\x95\xad\xf6\x71\x5a\xee\xa0\xf3" "\x9f\x95\x49\xf9\x8f\xb7\x2e\x7d\x2a\x4e\xce\x7f\xd0\xce\xbf\xe5\xe8\xe4" "\xdf\xdf\x35\xff\x52\xe5\xfc\x87\xfb\xca\x7f\x20\x7f\x00\x00\x00\x00\x00" "\x98\x63\xf9\xef\xff\x27\x3a\x3e\xfe\xbb\xf0\xf4\x9b\xb2\x27\x8f\x3b\xfe" "\xbb\x32\xa3\x3e\x00\x00\x00\x00\x00\x00\x00\xc0\xb3\xb6\xdf\xf1\xff\x86" "\xad\xf1\xff\xb6\x19\xff\x0f\x00\x00\x00\xe6\x56\xfd\x59\xbd\xf6\xbb\xe3" "\x0f\xe7\x4d\xfa\x2e\xb6\x7a\xfe\xe5\x5e\xc4\x73\xad\xe5\x81\xc2\xa4\x8b" "\x65\x96\xbb\xee\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x94\x64\xb8" "\x75\x0e\xef\xe5\x5e\xc4\x28\x22\x9e\x5b\x5e\xae\xaa\xaa\xfe\x69\x6a\xd7" "\xfb\xf5\xb4\xeb\x1f\x76\xa5\x6f\x3f\x94\xac\xeb\x5f\xf2\x00\x00\xb0\xe5" "\xd3\xe3\xad\x6b\xf9\x7b\x11\x8b\x11\x71\x39\x7d\xd7\xdf\x68\x79\x79\xb9" "\xaa\x16\x97\x96\xab\xe5\x6a\x69\x21\xbf\x9f\x1d\x2f\x2c\x56\x4b\x8d\xcf" "\xb5\x79\x5a\xcf\x5b\x18\xef\xe1\x0d\xf1\x70\x5c\xd5\x77\xb6\xd8\x58\xaf" "\x69\xda\xe7\xe5\x69\xed\xed\xfb\xab\x1f\x6b\x5c\x0d\xf6\xd0\xb1\xd9\xe8" "\x30\x70\x00\x88\x88\xad\x57\xa3\xfb\x5e\x91\x8e\x98\xaa\x7a\x3e\xba\x7e" "\x97\xc3\xe1\x60\xff\x3f\x7a\xec\xff\xec\x45\xd7\xcf\x53\x00\x00\x00\xe0" "\xe0\x55\x55\x55\xf5\xd2\xd7\x79\x9f\x4c\xc7\xfc\xfb\x5d\x77\x0a\x00\x98" "\x89\xfc\xfa\xdf\x3e\x2e\xa0\x56\xab\xd5\x6a\xb5\xfa\xe8\xd5\x4d\xd5\xee" "\xee\x36\x8b\x88\x58\x6f\xae\x53\xbf\x67\x30\x1c\x3f\x00\x1c\x32\xeb\xf1" "\x59\xd7\x5d\xa0\x43\xf2\x2f\xda\x30\x22\x5e\xea\xba\x13\xc0\x5c\xeb\x75" "\xdd\x01\x0e\xc4\xfd\x07\x77\x56\x7b\x29\xdf\x5e\xf3\xf5\x20\x8d\xef\x9e" "\xcf\x05\xd9\x91\xff\x7a\x6f\x73\xbd\xbc\xfe\x6e\xd3\x69\xda\xe7\x98\xcc" "\xea\xf9\xb5\x11\x83\x78\x61\x42\x7f\x5e\x9c\x51\x1f\xe6\x49\xce\xbf\xdf" "\xce\xff\xca\x56\xfb\x38\x2d\x77\xd0\xf9\xcf\xca\xa4\xfc\xeb\xed\x3c\xd1" "\x41\x7f\xba\x96\xf3\x1f\xb4\xf3\x6f\x39\x3a\xf9\xf7\x77\xcd\xbf\x54\x39" "\xff\xe1\xbe\xf2\x1f\xc8\x1f\x00\x00\x00\x00\x00\xe6\x58\xfe\xfb\xff\x89" "\xb9\x3a\xfe\x3b\x7e\xd2\xcd\x99\xea\x71\xc7\x7f\x57\x0e\xec\x51\x01\x00" "\x00\x00\x00\x00\x00\xe0\x60\xdd\x7f\x70\x67\x35\x5f\xf7\x9a\x8f\xff\x7f" "\x61\x97\xe5\x5c\xff\x79\x34\xe5\xfc\x7b\xf2\x2f\x52\xce\xbf\xdf\xca\xff" "\xab\xad\xe5\x06\x8d\xdb\xf7\xde\x7d\x98\xff\xbf\x1f\xdc\x59\xfd\xe3\xad" "\x7f\xfd\x7f\x9e\xee\x31\xff\x87\x77\xd7\x4b\xcf\xac\x5e\x7a\x46\xf4\x52" "\x53\x6f\x98\xa6\x4f\xb3\x75\x8f\xda\x18\x0d\xc6\xf5\x23\x8d\x7a\xfd\xc1" "\x30\x9d\xf3\x53\x8d\xde\x8f\x6b\x71\x3d\xd6\xe2\xec\x8e\x65\xfb\xe9\xff" "\xe3\x61\xfb\xb9\x47\x36\x62\xb4\xd9\x5e\x0d\xb6\xda\xcf\xef\x68\x1f\x6e" "\xb7\xe7\xf5\x2f\xec\x68\x1f\xa5\x33\x9d\xaa\xa5\xdc\x7e\x3a\x56\xe3\xe7" "\x71\x3d\xde\xdb\x6c\xaf\xdb\x16\xa6\x6c\xff\xe2\x94\xf6\x6a\x4a\x7b\xce" "\x7f\x60\xff\x2f\x52\xce\x7f\xd8\xf8\xa9\xf3\x5f\x4e\xed\xbd\xd6\xb4\x76" "\xef\x93\xfe\x23\xfb\x7d\x73\xba\xdb\xe3\xbc\x73\xed\x8b\xbf\x39\x7b\xf0" "\x9b\x33\xd5\x46\x0c\xb6\xb7\xad\xa9\xde\xbe\x57\x3a\xe8\xcf\xe6\xff\xc9" "\xb1\x71\xfc\xf2\xe6\xda\x8d\xd3\xb7\xaf\xde\xba\x75\xe3\x5c\xa4\xc9\x8e" "\xb9\xe7\x23\x4d\x9e\xb1\x9c\xff\x28\xfd\x6c\xff\xfe\x7f\x75\xab\x3d\xff" "\xa2\x6e\xee\xaf\xf7\x3e\x19\xef\x3b\xff\x79\xb1\x11\xc3\x89\xf9\xbf\xda" "\xb8\x5d\x6f\xef\x6b\x33\xee\x5b\x17\x72\xfe\xe3\xf4\x93\xf3\x7f\x2f\xb5" "\xef\xbe\xff\x1f\xe6\xfc\x27\xef\xff\xaf\x77\xd0\x1f\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x78\x9c\xaa\xaa\x36\x2f\x11\x7d\x27\x22\x2e" "\xa6\xeb\x7f\xba\xba\x36\x13\x00\x98\xad\xfc\xfa\x5f\x25\x79\xfe\xac\xea" "\xc1\x8c\x1f\x4f\xad\x3e\xe4\x75\x6f\xce\xfa\x33\xd3\xfa\xf3\xea\x59\xdd" "\xdf\x30\xe6\x61\x7b\xd4\xea\x2e\xea\xa6\x6a\x77\x6f\x37\x8b\x88\xf8\x5b" "\x73\x9d\xfa\x3d\xc3\xaf\x77\xbb\x33\x00\x60\x9e\x7d\x1e\x11\xff\xec\xba" "\x13\x74\x46\xfe\x05\xcb\xdf\xf7\x57\x4f\x4f\x75\xdd\x19\x60\xa6\x6e\x7e" "\xf4\xf1\x4f\xaf\x5e\xbf\xbe\x76\xe3\x66\xd7\x3d\x01\x00\x00\x00\x00\x00" "\x00\x00\x9e\x54\x1e\xff\x73\xa5\x31\xfe\xf3\xa9\xaa\xaa\xee\xb6\x96\xdb" "\x31\xfe\xeb\xbb\xb1\xf2\xb4\xe3\x7f\x0e\xf3\x8d\xed\x01\x46\x27\x0c\x54" "\x3d\xd8\xff\x36\x3d\xce\x46\x7f\x3c\xe8\x37\x86\x1b\x7f\x39\x26\x8d\xff" "\x3d\xda\xbe\xf5\xb8\xf1\xbf\x87\x53\x1e\x6f\x34\xa5\x7d\x3c\xa5\x7d\xe1" "\xd1\x59\x4b\xcd\x62\x71\xca\xfa\xbb\x5e\xe8\xd1\x90\xf3\x7f\xb9\x31\xde" "\xf9\xa9\x88\x38\xd9\x1a\x7e\xbd\x84\xf1\x5f\xdb\x63\xde\x97\x20\xe7\xff" "\x4a\xe3\xf9\x5c\xe7\xff\x95\xd6\x72\xcd\xfc\xab\xdf\x1f\xe6\xfc\xfb\x3b" "\xf2\x3f\x73\xeb\xc3\x5f\x9c\xb9\xf9\xd1\xc7\x6f\x5c\xfb\xf0\xea\x07\x6b" "\x1f\xac\xfd\xec\xc2\xb9\x73\x67\x2f\x5c\xbc\x78\xe9\xd2\xa5\x33\xef\x5f" "\xbb\xbe\x76\x76\xeb\xdf\x0e\x7b\x7c\xb0\x72\xfe\x79\xec\x6b\xe7\x81\x96" "\x25\xe7\x9f\x33\x97\x7f\x59\x72\xfe\x5f\x4a\xb5\xfc\xcb\x92\xf3\xff\x72" "\xaa\xe5\x5f\x96\x9c\x7f\x7e\xbf\x27\xff\xb2\xe4\xfc\xf3\x67\x1f\xf9\x97" "\x25\xe7\xff\x5a\xaa\xe5\x5f\x96\x9c\xff\xd7\x52\x2d\xff\xb2\xe4\xfc\x5f" "\x4f\xb5\xfc\xcb\x92\xf3\xff\x7a\xaa\xe5\x5f\x96\x9c\xff\x1b\xa9\x96\x7f" "\x59\x72\xfe\xa7\x53\x2d\xff\xb2\xe4\xfc\xcf\xa4\x7a\x8f\xf9\x2f\x1d\x74" "\xbf\x98\x8d\x9c\x7f\x3e\xc2\x65\xff\x2f\x4b\xce\x3f\x9f\xd9\x20\xff\xb2" "\xe4\xfc\xcf\xa7\x5a\xfe\x65\xc9\xf9\x5f\x48\xb5\xfc\xcb\x92\xf3\x7f\x33" "\xd5\xf2\x2f\x4b\xce\xff\x1b\xa9\x96\x7f\x59\x72\xfe\x17\x53\x2d\xff\xb2" "\xe4\xfc\xbf\x99\x6a\xf9\x97\x25\xe7\x7f\x29\xd5\xf2\x2f\x4b\xce\xff\x5b" "\xa9\x96\x7f\x59\x72\xfe\xdf\x4e\xb5\xfc\xcb\x92\xf3\x7f\x2b\xd5\xf2\x2f" "\x4b\xce\xff\x3b\xa9\x96\x7f\x59\x72\xfe\xdf\x4d\xb5\xfc\xcb\x92\xf3\xff" "\x5e\xaa\xe5\x5f\x96\x9c\xff\xdb\xa9\x96\x7f\x59\x1e\x7e\xff\xbf\x1b\x6e" "\xcc\xf8\xc6\xc8\xd3\x6f\x7e\x6f\x74\xfd\x9b\x09\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x68\x9b\xc5\xe9\xc4\x5d\x6f\x23\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xc0\xff\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\x0e\x1c\x08\x00\x00\x00" "\x00\x00\xf9\xbf\x36\x42\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x15\xf6\xee" "\x36\x46\x8e\xbb\xbe\x03\xf8\xdc\xf9\xee\x7c\x76\x20\x31\x10\x52\x27\x35" "\x70\x76\x4c\x08\x89\x93\x3b\x3f\xc4\x0f\xb4\x29\x26\x3c\x36\x3c\x07\x42" "\xa1\x0f\xd8\xae\xef\x6c\x0e\xfc\x84\xcf\x2e\x81\x46\xb2\x51\xa0\x44\xc2" "\xa8\xa8\xa2\x6d\x78\xd1\x16\x10\x2a\x79\x83\x88\x2a\x54\xd1\x0a\x50\x5e" "\xa0\x56\x55\x2b\x41\xfb\x82\xbe\x41\x54\xb4\xbc\x88\xaa\x80\x02\x6a\xa5" "\xb6\x02\xae\xda\x99\xff\xff\x7f\xbb\x7b\x7b\xbb\x7b\xbe\xcd\x79\x76\xe6" "\xf3\x91\xe2\x9f\x6f\x77\x76\x67\x76\x76\x76\xee\xbe\xe7\x7c\x77\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9a\x6d\x7f\xf5\xdc\x27\x46\xb2" "\x2c\x6b\xfc\x97\xff\xb1\x25\xcb\x9e\xd3\xf8\xfb\xa6\xa9\x2d\xf9\x65\xaf" "\xb8\xd6\x5b\x08\x00\x00\x00\xac\xd5\xcf\xf3\x3f\x9f\xb9\x21\x5d\x70\xb8" "\x8f\x1b\x35\x2d\xf3\xf7\x2f\xfe\xf6\x57\x17\x17\x17\x17\xb3\x77\x6f\xf8" "\xe3\xf1\xcf\x2c\x2e\xa6\x2b\xa6\xb2\x6c\x7c\x63\x96\xe5\xd7\x45\x4f\xfc" "\xe0\x3d\x23\xcd\xcb\x04\x8f\x64\x93\x23\xa3\x4d\x5f\x8f\xf6\x58\xfd\x86" "\x1e\xd7\x8f\xf5\xb8\x7e\xbc\xc7\xf5\x13\x3d\xae\xdf\xd8\xe3\xfa\xc9\x1e" "\xd7\x2f\xdb\x01\xcb\x6c\x2a\x7e\x1f\x93\xdf\xd9\xce\xfc\xaf\x5b\x8a\x5d" "\x9a\xdd\x98\x8d\xe7\xd7\xed\xec\x70\xab\x47\x46\x36\x8e\x8e\xc6\xdf\xe5" "\xe4\x46\xf2\xdb\x2c\x8e\x9f\xc8\xe6\xb3\x53\xd9\x5c\x36\xd3\xb2\x7c\xb1" "\xec\x48\xbe\xfc\xd7\xb7\x37\xd6\xf5\x86\x2c\xae\x6b\xb4\x69\x5d\xdb\x1a" "\x47\xc8\x4f\x1e\x3e\x1e\xb7\x61\x24\xec\xe3\x9d\x2d\xeb\x5a\xba\xcf\xe8" "\x47\xaf\xca\xa6\x7e\xfa\x93\x87\x8f\xff\xe5\x85\xa7\x6f\xee\x34\x7b\xee" "\x86\x96\xfb\x2b\xb6\xf3\xf6\x1d\x8d\xed\xfc\x58\xb8\xa4\xd8\xd6\x91\x6c" "\x63\xda\x27\x71\x3b\x47\x9b\xb6\x73\x5b\x87\xe7\x64\x43\xcb\x76\x8e\xe4" "\xb7\x6b\xfc\xbd\x7d\x3b\x9f\xe9\x73\x3b\x37\x2c\x6d\xe6\xba\x6a\x7f\xce" "\x27\xb3\xd1\xfc\xef\xdf\xc9\xf7\xd3\x58\xf3\xaf\xf5\xd2\x7e\xda\x16\x2e" "\xfb\x9f\x5b\xb3\x2c\xbb\xbc\xb4\xd9\xed\xcb\x2c\x5b\x57\x36\x9a\x6d\x6e" "\xb9\x64\x74\xe9\xf9\x99\x2c\x8e\xc8\xc6\x7d\x34\x0e\xa5\xe7\x67\x63\xab" "\x3a\x4e\xb7\xf7\x71\x9c\x36\xe6\xec\xce\xd6\xe3\xb4\xfd\x35\x11\x9f\xff" "\xed\xe1\x76\x63\x2b\x6c\x43\xf3\xd3\xf4\xa3\x8f\x4e\x34\x3d\xef\x3f\x5b" "\xbc\x9a\xe3\x34\x6a\x3c\xea\x95\x5e\x2b\xed\xc7\xe0\xa0\x5f\x2b\x65\x39" "\x06\xe3\x71\xf1\x9d\xfc\x41\x3f\xda\xf1\x18\xdc\x19\x1e\xff\xc3\xb7\xad" "\x7c\x0c\x76\x3c\x76\x3a\x1c\x83\xe9\x71\x37\x1d\x83\x3b\x7a\x1d\x83\xa3" "\x13\x1b\xf2\x6d\x1e\xfd\xd2\xe6\xb8\xf6\x1d\x2d\xc7\xe0\xee\x96\xe5\x37" "\xe4\x6b\x1a\xc9\xe7\x53\xb7\x75\x3f\x06\xa7\x2f\x9c\x3e\x37\xbd\xf0\xe1" "\x8f\xdc\x35\x7f\xfa\xd8\xc9\xb9\x93\x73\x67\xf6\xee\xde\x3d\xb3\x77\xff" "\xfe\x83\x07\x0f\x4e\x9f\x98\x3f\x35\x37\x53\xfc\x79\xd5\xfb\xbb\xec\x36" "\x67\xa3\xe9\x35\xb0\x23\xec\xbb\xf8\x1a\x78\x59\xdb\xb2\xcd\x87\xea\xe2" "\xe7\x27\x96\x9d\x7f\xaf\xf6\x75\x38\xd9\xe5\x75\xb8\xa5\x6d\xd9\x41\xbf" "\x0e\xc7\xda\x1f\xdc\xc8\xfa\xbc\x20\x97\x8e\xe9\x78\x49\xf1\xda\x78\x67" "\x63\xa7\x4f\x5e\x19\xcd\x56\x78\x8d\xe5\xcf\xcf\x1d\x6b\x7f\x1d\xa6\xc7" "\xdd\xf4\x3a\x1c\x6b\x7a\x1d\x76\xfc\x9e\xb2\x6c\x9b\x47\xf2\xdb\xf4\x7a" "\x1d\x36\x96\x39\x77\x47\x7f\x3f\xb3\x8c\x35\xfd\xd7\x69\x1b\x56\xfe\x5e" "\xb0\xb6\x63\x70\x4b\xd3\x31\xd8\xfe\xf3\x48\xfb\x31\x38\xe8\x9f\x47\xca" "\x72\x0c\x4e\x86\xe3\xe2\x7b\x77\xac\xfc\xbd\x60\x5b\xd8\xde\x47\x77\xad" "\xf6\xe7\x91\x0d\xcb\x8e\xc1\xf4\x70\xc3\xb9\xa7\x71\x49\xfa\x79\x7f\xf2" "\x60\x3e\x3a\x1d\x97\xb7\x34\xae\xb8\x6e\x22\xbb\xb8\x30\x77\xfe\xee\x87" "\x8e\x5d\xb8\x70\x7e\x77\x16\xc6\xba\x78\x41\xd3\xb1\xd2\x7e\xbc\x6e\x6e" "\x7a\x4c\xd9\xb2\xe3\x75\x74\xd5\xc7\xeb\xe1\xf9\x17\x3f\x7a\x4b\x87\xcb" "\xb7\x84\x7d\x35\x79\x57\xe3\x8f\xc9\x15\x9f\xab\xc6\x32\xfb\xee\xee\xfe" "\x5c\xe5\xdf\xdd\x3a\xef\xcf\x96\x4b\xf7\x64\x61\x0c\xd8\x7a\xef\xcf\x4e" "\xdf\xcd\x1b\xfb\x73\x22\xcb\x3e\xfb\xad\x8f\x3e\xf0\x8d\x87\x3f\xfb\xea" "\x15\xf7\x67\x23\x6f\x7e\x6c\x7a\xed\x3f\x8b\xa7\x5c\xda\x74\xfe\x1d\x5f" "\xe1\xfc\x1b\x73\xff\x2f\x8a\xf5\xa5\xbb\x7a\x64\xc3\xf8\x58\xf1\xfa\xdd" "\x90\xf6\xce\x78\xcb\xf9\xb8\xf5\xa9\x1a\xcb\xcf\x5d\x23\xf9\xba\x9f\x99" "\xee\xef\x7c\x3c\x1e\xfe\x5b\xef\xf3\xf1\x8d\x5d\xce\xc7\x5b\xdb\x96\x1d" "\xf4\xf9\x78\xbc\xfd\xc1\xc5\xf3\xf1\x48\xaf\xdf\x76\xac\x4d\xfb\xf3\x39" "\x19\x8e\x93\x53\x33\xdd\xcf\xc7\x8d\x65\xb6\xee\x59\xed\x31\x39\xd6\xf5" "\x7c\x7c\x6b\x98\x23\x61\xff\xbf\x3c\x24\x85\x94\x8b\x9a\x8e\x9d\x95\x8e" "\xdb\xb4\xae\xb1\xb1\xf1\xf0\xb8\xc6\xe2\x1a\x5a\x8f\xd3\xbd\x2d\xcb\x8f" "\x87\x6c\xd6\x58\xd7\xe3\x7b\xae\xee\x38\xbd\xfd\xd6\xe2\xbe\x36\xa4\x47" "\xb7\x64\xbd\x8e\xd3\xa9\xb6\x65\x07\x7d\x9c\xa6\xdf\x7d\xad\x74\x9c\x8e" "\xf4\xfa\xed\xdb\xd5\x69\x7f\x3e\x27\xc3\x71\x71\xe3\xde\xee\xc7\x69\x63" "\x99\x27\xf7\xad\xfd\xdc\xb9\x29\xfe\xb5\xe9\xdc\x39\xd1\xeb\x18\x1c\xdf" "\x30\xd1\xd8\xe6\xf1\x74\x10\xe6\xe7\xfb\x6c\x71\x53\x3c\x06\xef\xce\x8e" "\x67\x67\xb3\x53\xd9\x6c\x7e\xed\x44\x7e\x3c\x8d\xe4\xeb\xda\x75\x4f\x7f" "\xc7\xe0\x44\xf8\x6f\xbd\xcf\x95\x5b\xbb\x1c\x83\xb7\xb7\x2d\x3b\xe8\x63" "\x30\x7d\x1f\x5b\xe9\xd8\x1b\x19\x5b\xfe\xe0\x07\xa0\xfd\xf9\x9c\x0c\xc7" "\xc5\x63\xf7\x74\x3f\x06\x1b\xcb\xbc\xe6\xc0\x60\x7f\x76\xbd\x3d\x5c\x92" "\x96\x69\xfa\xd9\xb5\xfd\xf7\x6b\x2b\xfd\xce\xeb\x96\xb6\xdd\xf4\x6c\x1d" "\x2b\x63\x61\x3b\xbf\x75\xa0\xfb\xef\x66\x1b\xcb\x9c\x3a\xb8\xda\x9c\xd9" "\x7d\x3f\xdd\x19\x2e\xb9\xae\xc3\x7e\x6a\x7f\xfd\xae\xf4\x9a\x9a\xcd\xd6" "\x67\x3f\x6d\x0d\xdb\xf9\xf4\xc1\x95\xf7\xd3\x97\xb7\x67\xf9\x32\x9f\x39" "\xd4\xe7\xf1\x74\x38\xcb\xb2\x4b\x1f\xbc\x2f\xff\x7d\x6f\xf8\xf7\x95\xbf" "\xba\xf8\xdd\xaf\xb6\xfc\xbb\x4b\xa7\x7f\xd3\xb9\xf4\xc1\xfb\x7e\xfc\xdc" "\x13\x7f\xb7\x9a\xed\x07\x60\xf8\xfd\xa2\x18\x9b\x8b\xef\x75\x4d\xff\x32" "\xd5\xcf\xbf\xff\x03\x00\x00\x00\x43\x21\xe6\xfe\xd1\x30\x13\xf9\x1f\x00" "\x00\x00\x2a\x23\xe6\xfe\xf8\x7f\x85\x27\xf2\x3f\x00\x00\x00\x54\x46\xcc" "\xfd\x63\x61\x26\x35\xc9\xff\x5b\x5f\xf3\xf4\xfc\x2f\x2e\x65\xa9\x99\xbf" "\x18\xc4\xeb\xd3\x6e\xb8\xbf\x58\x2e\x76\x5c\x67\xc2\xd7\x53\x8b\x4b\x1a" "\x97\xdf\xf7\xc5\xb9\xff\xfe\xdb\x4b\xfd\xad\x7b\x34\xcb\xb2\x9f\xdd\xff" "\xfb\x1d\x97\xdf\x7a\x7f\xdc\xae\xc2\x54\xd8\xce\x27\x5e\xdb\x7a\xf9\x32" "\x5f\xbd\xab\xaf\x75\x1f\x7d\xf0\x52\x5a\x6f\x73\x7f\xfd\x73\xe1\xfe\xe3" "\xe3\xe9\xf7\x30\xe8\x54\xc1\x9d\xc9\xb2\xec\xeb\x37\x7c\x2a\x5f\xcf\xd4" "\x7b\xae\xe4\xf3\xc9\xfb\x8f\xe6\xf3\x81\xcb\x8f\x3e\xd2\x58\xe6\x99\x43" "\xc5\xd7\xf1\xf6\x4f\xbd\xa0\x58\xfe\xcf\x42\xf9\xf7\xf0\x89\x63\x2d\xb7" "\x7f\x2a\xec\x87\x1f\x86\x39\xf3\xc6\xce\xfb\x23\xde\xee\x2b\x57\x5e\xbe" "\xed\xc0\xbb\x96\xd6\x17\x6f\x37\xb2\xe3\xfa\xfc\x61\x3f\xf6\xde\xe2\x7e" "\xe3\xfb\xe4\x7c\xfa\x91\x62\xf9\xb8\x9f\x57\xda\xfe\x6f\x7c\xf2\xf1\xaf" "\x34\x96\x7f\xe8\xa5\x9d\xb7\xff\xd2\x68\xe7\xed\x7f\x3c\xdc\xef\x17\xc3" "\xfc\xdf\x17\x15\xcb\x37\x3f\x07\x8d\xaf\xe3\xed\x3e\x1e\xb6\x3f\xae\x2f" "\xde\xee\xee\x2f\x7c\xb3\xe3\xf6\x3f\xf1\x89\x62\xf9\x73\xaf\x2b\x96\x3b" "\x1a\x66\x5c\xff\xed\xe1\xeb\x9d\xaf\x7b\x7a\xbe\x79\x7f\x3d\x34\x72\xac" "\xe5\x71\x65\xaf\x2f\x96\x8b\xeb\x9f\xf9\xee\x1f\xe6\xd7\xc7\xfb\x8b\xf7" "\xdf\xbe\xfd\x93\x47\xae\xb4\xec\x8f\xf6\xe3\xe3\xc9\x7f\x29\xee\x67\xba" "\x6d\xf9\x78\x79\x5c\x4f\xf4\x37\x6d\xeb\x6f\xdc\x4f\xf3\xf1\x19\xd7\xff" "\xf8\x1f\x1c\x6d\xd9\xcf\xbd\xd6\xff\xc4\x03\x4f\xbd\xa8\x71\xbf\xed\xeb" "\xbf\xb3\x6d\xb9\x73\x1f\xbc\x23\x5f\xff\xd2\xfd\xb5\xbe\x63\xd3\x9f\x7f" "\xfc\x53\x1d\xd7\x17\xb7\xe7\xf0\x97\xcf\xb5\x3c\x9e\xc3\x6f\x0f\xaf\xe3" "\xb0\xfe\xc7\xde\x1b\x8e\xc7\x70\xfd\xff\x3d\x51\xdc\x5f\xfb\xbb\x2b\x1c" "\x7d\x7b\xeb\xf9\x27\x2e\xff\xb9\x2d\x97\x5a\x1e\x4f\xf4\x86\x9f\x16\xeb" "\x7f\xe2\x95\x27\xf3\xb9\x71\x72\xd3\xe6\xeb\x9e\xf3\xdc\xeb\x2f\xbf\xa4" "\xb1\xef\xb2\xec\x3b\x1b\x8b\xfb\xeb\xb5\xfe\x93\x7f\x71\xb6\x65\xfb\x3f" "\x7f\x53\xb1\x3f\xe2\xf5\xb1\xa3\xdf\xbe\xfe\x95\xc4\xf5\x9f\xff\xd0\xae" "\x33\x67\x17\x2e\xce\xcf\xa6\xbd\xfa\xf0\x0d\xf9\x7b\xe7\xbc\xa9\xd8\x9e" "\xb8\xbd\x37\x84\x73\x6b\xfb\xd7\x47\xce\x5e\x78\xdf\xdc\xf9\xa9\x99\xa9" "\x99\x2c\x9b\xaa\xee\x5b\xe8\x5d\xb5\x2f\x84\xf9\xe3\x62\x5c\xee\xbe\xf4" "\xe2\xb2\x33\xe8\x1d\x0f\x86\xe7\xf3\x96\x3f\xfd\xfa\xe6\xdb\xfe\xf9\x93" "\xf1\xf2\x7f\x7d\x67\x71\xf9\x95\x37\x16\xdf\xb7\x5e\x16\x96\xfb\x74\xb8" "\x7c\x4b\x78\xfe\x56\xb7\xfe\xe5\x1e\xdb\x7e\x53\xfe\xfa\x1e\x79\x32\x6c" "\xe1\xe2\xf2\xf7\x0b\x5e\x8b\x6d\x3b\xff\xf3\x60\x5f\x0b\x86\xc7\xdf\xfe" "\x73\x41\x3c\xde\xcf\xbd\xf0\x7d\xf9\x7e\x68\x5c\x97\x7f\xdf\x88\xaf\xeb" "\x35\x6e\xff\xf7\x67\x8b\xfb\xf9\x5a\xd8\xaf\x8b\xe1\x9d\x99\x77\xdc\xb4" "\xb4\xbe\xe6\xe5\xe3\x7b\x23\x5c\x79\x47\xf1\x7a\x5f\xf3\xfe\x0b\xa7\xb9" "\xf8\xbc\x7e\x29\x3c\xdf\x6f\xfe\x61\x71\xff\x71\xbb\xe2\xe3\xfd\x7e\xf8" "\x39\xe6\x9b\x5b\x5b\xcf\x77\xf1\xf8\xf8\xda\xa5\xd1\xf6\xfb\xcf\xdf\xc5" "\xe3\x72\x38\x9f\x64\x97\x8b\xeb\xe3\x52\x71\x7f\x5f\x79\xe6\xa6\x8e\x9b" "\x17\xdf\x87\x24\xbb\x7c\x73\xfe\xf5\x1f\xa5\xfb\xb9\x79\x55\x0f\x73\x25" "\x0b\x1f\x5e\x98\x3e\x35\x7f\xe6\xe2\x43\xd3\x17\xe6\x16\x2e\x4c\x2f\x7c" "\xf8\x23\x47\x4e\x9f\xbd\x78\xe6\xc2\x91\xfc\xbd\x3c\x8f\xbc\xbf\xd7\xed" "\x97\xce\x4f\x9b\xf3\xf3\xd3\xec\xdc\xfe\x7d\x59\x7e\xb6\x3a\x5b\x8c\x67" "\xd9\xb5\xde\xfe\x73\x0f\x1e\x9f\x3d\x30\x73\xdb\xec\xdc\x89\x63\x17\x4f" "\x5c\x78\xf0\xdc\xdc\xf9\x93\xc7\x17\x16\x8e\xcf\xcd\x2e\xdc\x76\xec\xc4" "\x89\xb9\x0f\xf5\xba\xfd\xfc\xec\xbd\xbb\xf7\x1c\xda\x7b\x60\xcf\xae\x93" "\xf3\xb3\xf7\x1e\x3c\x74\x68\xef\xa1\x5d\xf3\x67\xce\x36\x36\xa3\xd8\xa8" "\x1e\xf6\xcf\x7c\x60\xd7\x99\xf3\x47\xf2\x9b\x2c\xdc\xbb\xef\xd0\xee\x7b" "\xee\xd9\x37\xb3\xeb\xf4\xd9\xd9\xb9\x7b\x0f\xcc\xcc\xec\xba\xd8\xeb\xf6" "\xf9\xf7\xa6\x5d\x8d\x5b\xff\xde\xae\xf3\x73\xa7\x8e\x5d\x98\x3f\x3d\xb7" "\x6b\x61\xfe\x23\x73\xf7\xee\x3e\xb4\x7f\xff\x9e\x9e\xef\x06\x78\xfa\xdc" "\x89\x85\xa9\xe9\xf3\x17\xcf\x4c\x5f\x5c\x98\x3b\x3f\x5d\x3c\x96\xa9\x0b" "\xf9\xc5\x8d\xef\x7d\xbd\x6e\x4f\x35\x2d\xfc\x5b\xf1\xf3\x6c\xbb\x91\xe2" "\x8d\xf8\xb2\xb7\xde\xb9\x3f\xbd\x3f\x6b\xc3\x17\x3f\xba\xe2\x5d\x15\x8b" "\xb4\xbd\x81\xe8\xd3\xe1\xbd\x68\xfe\xe1\x79\xe7\x0e\xf6\xf3\x75\xcc\xfd" "\xe3\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\x4f\x84\x99\xc8\xff" "\x00\x00\x00\x50\x19\x31\xf7\x6f\x0c\x33\x91\xff\x01\x00\x00\xa0\x32\x62" "\xee\x9f\x0c\x33\xa9\x49\xfe\xaf\x5c\xff\x7f\xeb\xa5\xbe\xd6\xaf\xff\xaf" "\xff\xdf\xbc\xbf\xf4\xff\x6b\xd6\xff\x7f\x47\xd9\xfa\xff\x8d\xf3\xc5\x5c" "\xea\x75\xea\xff\xaf\xcd\x5a\xfb\xf7\xfa\xff\x81\xfe\xbf\xfe\xbf\xfe\xbf" "\xfe\xbf\xfe\x3f\x03\x50\xb6\xfe\x7f\xcc\xfd\x9b\xb2\xac\x96\xf9\x1f\x00" "\x00\x00\xea\x20\xe6\xfe\xcd\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd" "\xd7\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x3f\x27\xcc\xa4\x26\xf9" "\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\xf3\xfa\xd7\xb7\xff\xef\xf3" "\xff\x07\x45\xff\xbf\x3b\xfd\xff\x1e\xf4\xff\xa7\xb3\x7a\xf5\xff\x2f\x0f" "\x72\xfb\xf5\xff\xfb\xec\xff\x4f\xf5\xba\x27\xaa\xa4\x6c\xfd\xff\x98\xfb" "\x9f\x1b\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73\xff\xf5\x61\x26\xf2" "\x3f\x00\x00\x00\x54\x46\xcc\xfd\x37\x84\x99\xc8\xff\x00\x00\x00\x50\x19" "\x31\xf7\x6f\x09\x33\xa9\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff" "\xef\xbc\x7e\xfd\xff\xe1\xa4\xff\xdf\x9d\xfe\x7f\x0f\xfa\xff\x3e\xff\x5f" "\xff\xdf\xe7\xff\x33\x50\x65\xeb\xff\xc7\xdc\xff\xbc\x30\x93\x9a\xe4\x7f" "\x00\x00\x00\xa8\x9e\xe5\xbf\x4c\x88\xb9\xff\xf9\x61\x26\xf2\x3f\x00\x00" "\x00\x94\xcf\xd8\xd5\xdd\x2c\xe6\xfe\x17\x84\x99\x2c\xcb\xff\x57\xb9\x02" "\x00\x00\x00\xe0\x9a\x8b\xb9\xff\xc6\xac\xad\x08\x5e\x93\x7f\xff\x2f\x57" "\xff\x7f\xe9\x09\xd0\xff\x2f\xbe\xd6\xff\xd7\xff\xd7\xff\x1f\x86\xfe\xff" "\x86\x4c\xff\xbf\x3c\xf4\xff\xbb\xd3\xff\xef\x41\xff\x7f\x6d\xfd\xf9\xc6" "\x89\x51\xff\x5f\xff\x5f\xff\x9f\x26\x65\xeb\xff\xe7\xb9\x3f\x9b\xcc\x5e" "\x18\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73\xff\x4d\x61\x26\xf2\x3f" "\x00\x00\x00\x54\x46\xcc\xfd\xbf\x14\x66\x22\xff\x03\x00\x00\x40\x65\xc4" "\xdc\xbf\x35\xcc\xa4\x26\xf9\xbf\x5c\xfd\xff\xa6\xed\xd2\xff\xcf\xe9\xff" "\x0f\xbe\xff\xff\xef\xfb\xf4\xff\xf5\xff\x7d\xfe\x7f\x95\xe9\xff\x77\xa7" "\xff\xdf\x83\xfe\xbf\xcf\xff\xd7\xff\xd7\xff\x67\x30\xe2\x0f\x4a\x25\xeb" "\xff\xc7\xdc\x7f\x73\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\xb7" "\x84\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xff\x72\x98\x89\xfc\x0f\x00" "\x00\x00\x95\x11\x73\xff\xb6\x30\x93\x9a\xe4\x7f\xfd\xff\x92\xf7\xff\x63" "\x73\x54\xff\xdf\xe7\xff\xeb\xff\xeb\xff\xeb\xff\xf7\x45\xff\xbf\x3b\xfd" "\xff\x1e\xf4\xff\xf5\xff\xf5\xff\xf5\xff\x19\xa8\x85\x92\xf5\xff\x63\xee" "\x7f\x51\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\x2f\x0e\x33\x91" "\xff\x01\x00\x00\xa0\x32\x62\xee\x7f\x49\x98\x89\xfc\x0f\x00\x00\x00\x95" "\x11\x73\xff\x54\x98\x49\x4d\xf2\xbf\xfe\x7f\xc9\xfb\xff\x45\x0f\x7e\xc2" "\xe7\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xf7\x47\xff\xbf\x3b\xfd\xff\x1e" "\xf4\xff\xf5\xff\xf5\xff\xf5\xff\x19\xa8\xb2\xf5\xff\x63\xee\xdf\x1e\x66" "\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73\xff\x8e\x30\x13\xf9\x1f\x00\x00" "\x00\x2a\x23\xe6\xfe\x5b\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x77" "\x86\x99\xd4\x24\xff\xeb\xff\x0f\x45\xff\x3f\xd3\xff\xd7\xff\xd7\xff\xd7" "\xff\xd7\xff\xef\x8f\xfe\x7f\x77\xfa\xff\x3d\xe8\xff\xeb\xff\xeb\xff\xeb" "\xff\x33\x50\x65\xeb\xff\xc7\xdc\xff\xd2\x30\x93\x9a\xe4\x7f\x00\x00\x00" "\xa8\x83\x98\xfb\x6f\x0b\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x7f\x59" "\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xed\x61\x26\x35\xc9\xff\xfa" "\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x9d\xd7\xaf\xff\x3f\x9c\xf4\xff\xbb" "\xd3\xff\xef\x41\xff\x5f\xff\x5f\xff\x5f\xff\x9f\x81\x2a\x5b\xff\x3f\xe6" "\xfe\x97\x87\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\x7f\x47\x98\x89" "\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x9d\x61\x26\xf2\x3f\x00\x00\x00\x54" "\x46\xcc\xfd\xbb\xc2\x4c\x6a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5" "\xff\x3b\xaf\x5f\xff\x7f\x38\xe9\xff\x77\xa7\xff\xdf\x83\xfe\xbf\xfe\xbf" "\xfe\xbf\xfe\x3f\x03\x55\xb6\xfe\x7f\xcc\xfd\x77\x85\x99\xd4\x24\xff\x03" "\x00\x00\x40\x1d\xc4\xdc\x7f\x77\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73" "\xff\x74\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x4c\x98\x49\x4d\xf2" "\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x29\xfb\xff\xf9\x4d\x4a\xd9\xff\x7f\xc9\xd2" "\xfd\xea\xff\x17\xf4\xff\xcb\x45\xff\xbf\xbb\x3e\xfb\xff\xd3\xfa\xff\xfa" "\xff\xfa\xff\xd7\xaa\xff\x3f\xae\xff\x4f\xa5\x94\xad\xff\x1f\x73\xff\xee" "\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\xf7\x84\x99\xc8\xff\x00" "\x00\x00\x50\x19\x31\xf7\xef\x0d\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee" "\xdf\x17\x66\x52\x93\xfc\xaf\xff\xaf\xff\xaf\xff\x5f\xca\xfe\x7f\xae\x94" "\xfd\xff\x26\xfa\xff\x05\xfd\xff\x72\xd1\xff\xef\x6e\xf0\x9f\xff\x1f\x1f" "\xa2\xfe\xbf\xfe\xbf\xfe\xbf\xcf\xff\xd7\xff\x67\xb9\xb2\xf5\xff\x63\xee" "\xbf\x27\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\xfd\x61\x26\xf2" "\x3f\x00\x00\x00\x54\x46\xcc\xfd\x07\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c" "\x98\xfb\x0f\x86\x99\xd4\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff" "\x77\x5e\xbf\xfe\xff\x70\x2a\x67\xff\x7f\xb4\xef\xf5\x0f\x5f\xff\xdf\xe7" "\xff\x0f\x57\xff\xff\x54\xd7\x6b\xaf\x75\x7f\x7e\xad\xae\xf5\xf6\xeb\xff" "\xeb\xff\xb3\x5c\xd9\xfa\xff\x31\xf7\x1f\x0a\x33\xa9\x49\xfe\x07\x00\x00" "\x80\x3a\x88\xb9\xff\x15\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xbf" "\x12\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xab\x61\x26\x35\xc9\xff" "\xfa\xff\x65\xef\xff\x8f\x66\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfd" "\x2b\x67\xff\xbf\x7f\xfa\xff\xfa\xff\x3e\xff\x7f\x78\xb7\x5f\xff\x5f\xff" "\x9f\xe5\xca\xd6\xff\x8f\xb9\xff\xde\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8" "\x83\x98\xfb\x7f\x2d\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x95\x61" "\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x87\xc3\x4c\x6a\x92\xff\x2b\xd6" "\xff\x9f\xec\x6f\xcd\xc3\xd4\xff\xf7\xf9\xff\xd7\xb0\xff\xff\xaa\xf6\xfe" "\xbd\xfe\xbf\xfe\xbf\xfe\x7f\xf9\xe9\xff\x77\xa7\xff\xdf\x83\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\x3f\x03\x55\xb6\xfe\x7f\xcc\xfd\xaf\x0a\x33\xa9\x49\xfe" "\x07\x00\x00\x80\x3a\x88\xb9\xff\xbe\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23" "\xe6\xfe\x57\x87\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xbf\x26\xcc\xa4" "\x26\xf9\xbf\x62\xfd\xff\x0a\x7e\xfe\xbf\xfe\xbf\xcf\xff\xd7\xff\xd7\xff" "\xd7\xff\x5f\x0d\xfd\xff\xee\xf4\xff\x7b\xd0\xff\xd7\xff\xd7\xff\xd7\xff" "\x67\xa0\xca\xd6\xff\x8f\xb9\xff\xb5\x61\x26\x35\xc9\xff\x00\x00\x00\x50" "\x07\x31\xf7\xbf\x2e\xcc\x68\xfc\x9a\x6d\x11\x00\x00\x00\x30\x68\x31\xf7" "\xbf\x3e\xcc\xc4\xbf\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\x86\x30\x93\x9a" "\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xce\xeb\xd7\xff\x1f\x4e" "\xfa\xff\xdd\xe9\xff\xf7\xa0\xff\xaf\xff\xaf\xff\xaf\xff\xcf\x40\x95\xad" "\xff\x1f\x73\xff\xaf\x87\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\x7f" "\x7f\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x1b\xc3\x4c\xe4\x7f\x00" "\x00\x00\xa8\x8c\x98\xfb\xdf\x14\x66\x52\x93\xfc\xaf\xff\xaf\xff\xaf\xff" "\xaf\xff\xaf\xff\xdf\x79\xfd\xfa\xff\xc3\x49\xff\xbf\xbb\x21\xeb\xff\xff" "\xfc\xfa\x70\xb9\xfe\x7f\x41\xff\xbf\xdc\xdb\xbf\xda\xfe\xff\x58\xdb\xd7" "\xcf\x4a\xff\xff\x07\x2b\xf5\xff\x17\x37\xb6\xdf\x5e\xff\x9f\x67\x43\xd9" "\xfa\xff\x31\xf7\xbf\x39\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe" "\xb7\x84\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xbf\x35\xcc\x44\xfe\x07" "\x00\x00\x80\xca\x88\xb9\xff\x6d\x61\x26\x35\xc9\xff\xfa\xff\x8d\xed\x58" "\x6a\x2f\xeb\xff\xeb\xff\xe7\x17\xac\x4b\xff\xff\x6d\xff\xa5\xff\xaf\xff" "\x9f\xe9\xff\x0f\x9c\xfe\x7f\x77\x43\xd6\xff\xf7\xf9\xff\x6d\xf4\xff\xcb" "\xbd\xfd\x3e\xff\x5f\xff\x9f\xe5\xca\xd6\xff\x8f\xb9\xff\xed\x61\x26\x35" "\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\x3f\x10\x66\x22\xff\x03\x00\x00\x40" "\x65\xc4\xdc\xff\x8e\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x77\x86" "\x99\xd4\x24\xff\xeb\xff\xfb\xfc\x7f\xfd\x7f\x9f\xff\xaf\xff\xdf\x79\xfd" "\xab\xed\xff\x77\x3a\x0f\x34\xd3\xff\x5f\x1f\xfa\xff\xdd\xe9\xff\xf7\xa0" "\xff\xaf\xff\x5f\xb6\xfe\xff\x7f\xe8\xff\x33\xdc\xca\xd6\xff\x8f\xb9\xff" "\xc1\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\xdf\x15\x66\x22\xff" "\x03\x00\x00\x40\x65\xc4\xdc\xff\x1b\x61\x26\xf2\x3f\x00\x00\x00\x54\x46" "\xcc\xfd\xef\x0e\x33\xa9\x49\xfe\x5f\xb9\xff\xff\x81\xd6\x05\x9f\xa5\xfe" "\xff\x26\xfd\xff\x3e\xfb\xff\x53\xfa\xff\xfa\xff\xfa\xff\x6d\x8f\xa7\x6c" "\xfd\xff\x5e\xf4\xff\xd7\x87\xfe\x7f\x77\xfa\xff\x3d\xe8\xff\xeb\xff\x97" "\xad\xff\xef\xf3\xff\x19\x72\x65\xeb\xff\xc7\xdc\xff\x9e\x30\x93\xfe\xf3" "\xff\x64\xdf\x4b\x02\x00\x00\x00\xd7\x44\xcc\xfd\xbf\x19\x66\x52\x93\x7f" "\xff\x07\x00\x00\x80\x3a\x88\xb9\xff\xb7\xc2\x4c\xe4\x7f\x00\x00\x00\xa8" "\x8c\x98\xfb\x7f\x3b\xcc\xa4\x26\xf9\xdf\xe7\xff\x0f\x4b\xff\xdf\xe7\xff" "\x67\xfa\xff\xc3\xdf\xff\x1f\xd5\xff\xd7\xff\x7f\xf6\xad\x5f\xff\x3f\x9e" "\x79\xf4\xff\xf5\xff\xf5\xff\x23\xfd\x7f\xfd\x7f\xfd\x7f\xda\x95\xad\xff" "\x1f\x73\xff\xef\x84\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\xff\xde" "\x30\x13\xf9\x1f\x00\x00\x00\x86\x42\xa7\xff\x27\xbb\x5d\xcc\xfd\x47\xc2" "\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x8f\x86\x99\xd4\x24\xff\xeb\xff" "\xd7\xa8\xff\xff\xd7\xff\x58\x5c\xa9\xff\x3f\x1c\xfd\xff\x3f\xd9\xf1\x4f" "\xdf\xfb\xf6\x5b\x8e\xee\xae\x52\xff\xdf\xe7\xff\xeb\xff\xaf\x83\x75\xfd" "\xfc\xff\xc6\x8b\xdf\xe7\xff\xeb\xff\xeb\xff\x27\xfa\xff\xfa\xff\xfa\xff" "\xb4\x2b\x5b\xff\x3f\xe6\xfe\x63\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07" "\x31\xf7\xff\x6e\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xf1\x30\x13" "\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xd9\x30\x93\x9a\xe4\x7f\xfd\xff\x1a" "\xf5\xff\x7d\xfe\xff\x70\xf5\xff\x87\xf8\xf3\xff\xe3\xfe\xd0\xff\x6f\x35" "\xb0\xfe\x7f\x3c\xe9\xea\xff\x77\xb4\xae\xfd\xff\x77\x2d\xf5\xc4\xf5\xff" "\x57\xdb\xff\x9f\xe8\x78\xa9\xfe\xbf\xfe\xff\x30\x6f\xbf\xfe\xbf\xfe\x3f" "\xcb\x95\xad\xff\x1f\x73\xff\x5c\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41" "\xc8\xfd\xa3\x27\x8a\xb9\x74\x85\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xc9" "\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xf7\x85\x99\xd4\x24\xff\xeb" "\xff\xeb\xff\xeb\xff\xeb\xff\xfb\xfc\xff\xce\xeb\x2f\x6d\xff\xdf\xe7\xff" "\x77\xa5\xff\xdf\x5d\x79\xfa\xff\x9d\xe9\xff\xeb\xff\x0f\xf3\xf6\xeb\xff" "\xeb\xff\xb3\x5c\xd9\xfa\xff\x31\xf7\xcf\x87\x99\xd4\x24\xff\x03\x00\x00" "\x40\x1d\xc4\xdc\xff\xfe\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x0f" "\x84\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x9f\x0a\x33\xa9\x49\xfe\xd7" "\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\xbc\x7e\xfd\xff\xe1\xa4\xff\xdf" "\x9d\xfe\x7f\x0f\xfa\xff\xfa\xff\x57\xb3\xfd\xe1\xb8\xd1\xff\xd7\xff\x67" "\xb9\xb2\xf5\xff\x63\xee\x3f\x1d\x66\x52\x93\xfc\x0f\x00\xff\xcf\xde\x9d" "\x34\x59\x56\x97\x79\x1c\xbf\x09\x45\x57\x66\xd0\xd1\xf4\xae\x17\xbd\xe9" "\x75\xf7\x4b\x60\xd1\xbd\xee\x7e\x01\xdd\x11\xbd\xe9\x4d\x47\xa8\x0b\x50" "\x71\x56\xa4\x70\x1e\x71\xc2\x79\xc0\x79\xc6\x01\x14\x71\x42\xc5\x19\x9c" "\x50\x9c\x45\xc4\x79\x40\x45\x14\x07\xc4\x28\xc3\xac\xe7\x79\xea\x66\xdd" "\x93\xf7\x66\x16\x37\x33\xcf\xf9\xff\x3f\x9f\x05\x4f\x91\x92\xdc\x5b\x65" "\x05\xf0\xab\xac\x6f\x1c\x00\x80\x1e\xe4\xee\xbf\x28\x6e\xb1\xff\x01\x00" "\x00\xa0\x19\xb9\xfb\x2f\x8e\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x07" "\xc7\x2d\x9d\xec\x7f\xfd\xbf\xfe\xbf\xd9\xfe\xff\xdf\xf5\xff\xbb\xbd\xbe" "\xfe\x5f\xff\xdf\x32\xfd\xff\x90\x8b\xeb\x5b\xfa\xff\x15\xf4\xff\xfa\x7f" "\xcf\xff\xd7\xff\xb3\x56\x63\xeb\xff\x73\xf7\x3f\x24\x6e\xe9\x64\xff\x03" "\x00\x00\x40\x0f\x72\xf7\x3f\x34\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb" "\x2f\x89\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x87\xc5\x2d\x9d\xec\xff" "\x33\xfa\xff\x8d\x59\x9f\xfd\x7f\x66\xbc\xfa\xff\x96\xfa\x7f\xcf\xff\xdf" "\xf5\xf5\xf5\xff\xfa\xff\x96\x1d\x6e\xff\x7f\xf9\xdf\xfe\xc9\x37\x81\xfe" "\xff\x34\xfd\xff\x0a\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x5a\x8d\xad\xff\xcf" "\xdd\xff\xf0\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x88\xb8\xc5" "\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x64\xdc\x62\xff\x03\x00\x00\x40\x33" "\x72\xf7\x3f\x2a\x6e\xe9\x64\xff\x7b\xfe\xbf\xe7\xff\xeb\xff\xf5\xff\xfa" "\xff\xe1\xd7\xd7\xff\x4f\x93\xe7\xff\x2f\xd7\x53\xff\x7f\xc9\xad\xe7\x5f" "\x74\xf7\x75\xff\x7c\xfd\x7e\x5e\xff\xe0\xfb\xff\xbb\x76\xf6\xff\x41\xff" "\xbf\x1e\x47\xfd\xfe\xf5\xff\xfa\x7f\x16\x8d\xad\xff\xcf\xdd\xff\xe8\xb8" "\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x98\xb8\xc5\xfe\x07\x00\x00" "\x80\x66\xe4\xee\x7f\x6c\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x2e" "\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\x7f\x7c\xfc\xe4\x99\x7f\xdd" "\xd4\xfa\xff\x2b\xe3\xe3\xfa\xff\xbe\xe9\xff\x97\xeb\xa9\xff\x3f\x9b\xd7" "\xf7\xfc\x7f\xfd\xbf\xfe\x5f\xff\xcf\x7a\x8d\xad\xff\xcf\xdd\x7f\x69\xdc" "\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x7c\xdc\x62\xff\x03\x00\x00" "\x40\x33\x72\xf7\x5f\x16\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x27\xe2" "\x96\x4e\xf6\xbf\xfe\xff\xe0\xfb\xff\xbf\xe8\xff\xf5\xff\x71\x47\xde\xff" "\x7b\xfe\xbf\xfe\xbf\x09\xfa\xff\xe5\xf4\xff\x2b\xe8\xff\xf5\xff\xfa\x7f" "\xfd\x3f\x6b\x35\xb6\xfe\x3f\x77\xff\xe5\x71\x4b\x27\xfb\x1f\x00\x00\x00" "\x7a\x90\xbb\xff\x09\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xc4\xb8" "\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x52\xdc\xd2\xc9\xfe\xd7\xff\x7b" "\xfe\xbf\xfe\x5f\xff\xaf\xff\x1f\x7e\x7d\xfd\xff\x34\xe9\xff\x97\xd3\xff" "\xaf\xd0\x57\xff\x7f\xfc\xcc\x0f\xac\xa1\x9f\x3f\x4f\xff\xaf\xff\xd7\xff" "\x33\x6f\x9f\xfd\xff\xbd\x4b\xfe\xb1\xbd\x96\xfe\x3f\x77\xff\x93\xe3\x96" "\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x53\xe2\x16\xfb\x1f\x00\x00\x00" "\x9a\x91\xbb\xff\xa9\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xb4\xb8" "\xa5\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x67\xdd\xff\x2f\xfe\xd4\xdb" "\xa6\xff\x1f\xb6\xbe\xfe\x7f\xab\xfe\x9e\xfa\xff\x45\xfa\xff\xe5\x46\xd3" "\xff\x6f\x1c\x1b\xfc\xb0\xfe\xdf\xf3\xff\xa7\xfc\xfe\xf5\xff\xfa\x7f\x16" "\x8d\xed\xf9\xff\xb9\xfb\x9f\x1e\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9" "\xfb\x9f\x11\xb7\x2c\xd9\xff\xfb\xfe\xc5\x7c\x00\x00\x00\xe0\x48\xe5\xee" "\x7f\x66\xdc\xe2\xeb\xff\x00\x00\x00\x30\x79\x59\x9d\xe5\xee\x7f\x56\xdc" "\xd2\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xcf\xff\x1f\x7e\xfd\x65\xfd" "\xff\xf5\x73\xef\xcf\xf3\xff\xc7\x45\xff\xbf\xdc\x68\xfa\xff\x5d\xe8\xff" "\xf5\xff\x53\x7e\xff\xfa\x7f\xfd\x3f\x8b\xc6\xd6\xff\xe7\xee\x7f\x76\xdc" "\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xbf\x22\x6e\xb1\xff\x01\x00\x00" "\xa0\x19\xb9\xfb\x9f\x13\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xcf\x8d" "\x5b\x3a\xd9\xff\xc3\xfd\xff\xe9\xff\x5d\xff\xbf\x37\xfa\xff\x9d\xef\x5f" "\xff\x3f\xfc\xf3\x63\x5d\xfd\x7f\xfe\x1d\xf5\xff\x4b\xfb\xff\xff\x68\xf7" "\xf9\xff\xfa\xff\x65\xf4\xff\xcb\xe9\xff\x57\xd0\xff\xef\xbf\x9f\x9f\xfb" "\x2e\xea\xff\xcf\xa6\xff\xbf\xb4\xbe\x35\xf2\xfe\x7f\x6b\xd5\xe7\xeb\xff" "\x19\x32\xb6\xfe\x3f\x77\xff\xf3\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20" "\x77\xff\xf3\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x05\x71\x8b\xfd" "\x0f\x00\x00\x00\xcd\xc8\xdd\x7f\x65\xdc\xd2\xc9\xfe\xf7\xfc\x7f\xfd\x7f" "\xf6\xf3\x9b\x13\xe8\xff\xcf\xd5\xff\x7b\xfe\xff\x48\x9e\xff\x3f\x3b\xf4" "\xfe\xff\x98\xfe\x7f\x8f\xf4\xff\xcb\xe9\xff\x57\xd0\xff\x7b\xfe\x7f\x1b" "\xcf\xff\xcf\x0f\x79\xfe\x3f\x47\x6e\x6c\xfd\x7f\xee\xfe\x17\xc6\x2d\x9d" "\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x17\xc5\x2d\xf6\x3f\x00\x00\x00\x4c" "\xc3\xfc\xef\x1d\x38\xf3\x37\x94\x86\xdc\xfd\x2f\x8e\x5b\xec\x7f\x00\x00" "\x00\x68\x46\xee\xfe\x97\xc4\x2d\x9d\xec\x7f\xfd\xbf\xfe\xdf\xf3\xff\xf5" "\xff\xfa\xff\xe1\xd7\x1f\x57\xff\xef\xf9\xff\x7b\xa5\xff\x5f\x4e\xff\xbf" "\x82\xfe\xff\x20\xfa\xf9\x63\x8d\xf5\xff\x57\xed\xf6\xf9\x63\xe8\xff\x2f" "\x3b\xb8\xe7\xff\xeb\xff\x39\x2b\x3b\xfa\xff\x1b\x4e\x7f\xfc\xa8\xfa\xff" "\xdc\xfd\x2f\x8d\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x2f\x8b\x5b" "\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x97\xc7\x2d\xf6\x3f\x00\x00\x00\x34" "\x23\x77\xff\x2b\xe2\x96\x4e\xf6\xff\x81\xf7\xff\x5b\xbb\xbf\xb6\xfe\x5f" "\xff\xaf\xff\xd7\xff\xeb\xff\x4f\xfd\xec\xd1\xff\xaf\x8f\xfe\x7f\x39\xfd" "\xff\x0a\xfa\x7f\xcf\xff\x6f\xe3\xf9\xff\xfa\x7f\x46\x63\x47\xff\x3f\xe7" "\xa8\xfa\xff\xdc\xfd\xaf\x8c\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd" "\xaf\x8a\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xab\xe2\x16\xfb\x1f\x00" "\x00\x00\x9a\x91\xbb\xff\xd5\x71\x4b\x27\xfb\xdf\xf3\xff\xf5\xff\xfa\x7f" "\xfd\xbf\xfe\x7f\xf8\xf5\x3d\xff\x7f\x9a\xf4\xff\xcb\xe9\xff\x57\xd0\xff" "\xcf\xf7\xf3\x0f\x9c\xe9\xff\xf5\xff\xfa\x7f\xee\xa7\xb1\xf5\xff\xb9\xfb" "\x5f\x13\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x5f\x1b\xb7\xd8\xff" "\x00\x00\x00\xd0\x8c\xdc\xfd\xaf\x8b\x5b\xec\x7f\x00\x00\x00\x68\x46\xee" "\xfe\xd7\xc7\x2d\x9d\xec\x7f\xfd\xff\xc1\xf6\xff\xf9\x71\xfd\xbf\xfe\x7f" "\xa6\xff\xd7\xff\xeb\xff\x0f\x45\xb7\xfd\xff\xc6\xd0\xbf\x89\x16\xed\xd2" "\xff\xdf\xfc\x80\x13\xff\xb5\xf3\x23\xfa\x7f\xfd\xbf\xe7\xff\xeb\xff\xf5" "\xff\xac\xc1\x28\xfa\xff\x93\xa7\xff\xeb\x32\x77\xff\x1b\xe2\x96\x4e\xf6" "\x3f\x00\x00\x00\xf4\x20\x77\xff\x1b\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91" "\xbb\xff\x4d\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xe6\xb8\x65\x9f" "\xfb\xff\x1f\xd7\xfa\xae\x0e\x8f\xfe\xdf\xf3\xff\xf5\xff\xfa\x7f\xfd\xff" "\xf0\xeb\xeb\xff\xa7\xa9\xdb\xfe\x7f\x8f\x3c\xff\x7f\x05\xfd\xbf\xfe\x5f" "\xff\xaf\xff\x67\xad\x46\xd1\xff\xcf\xfd\x79\xee\xfe\xb7\xc4\x2d\xbe\xfe" "\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xd6\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4" "\xee\x7f\x5b\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xbf\x3d\x6e\xe9\x64" "\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf8\xf5\xf5\xff\xd3\x34\xc5" "\xfe\x7f\xee\xbf\x3e\x7a\xed\xff\xb7\xf2\x1b\xfa\xff\xb3\xea\xff\xef\xfc" "\x57\xfd\xff\x28\xde\xbf\xfe\x5f\xff\xcf\xa2\xb1\xf5\xff\xb9\xfb\xaf\x8e" "\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xef\x88\x5b\xec\x7f\x00\x00" "\x00\x68\x46\xee\xfe\x77\xc6\x2d\xf6\x3f\x00\x00\x00\x34\xe3\xde\xe8\xac" "\xde\xb5\xfd\x67\xfd\xed\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x0f\xbf" "\xbe\xfe\x7f\x9a\xa6\xd8\xff\xcf\xeb\xb4\xff\x2f\x87\xd2\xff\x5f\xb3\xe4" "\x0d\x0c\xf5\xff\x27\x8f\x8f\xbd\xff\xf7\xfc\xff\x91\xbc\x7f\xfd\xbf\xfe" "\x9f\x45\x63\xeb\xff\x73\xf7\xbf\x3b\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f" "\x72\xf7\x5f\x13\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xd7\xc6\x2d\xf6" "\x3f\x00\x00\x00\x34\x23\x77\xff\x7b\xe2\x96\x4e\xf6\xbf\xfe\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\x87\x5f\x7f\xa0\xff\x3f\x36\xff\xbe\xf4\xff\xe3\xa4" "\xff\x5f\x4e\xff\xbf\xc2\x34\x9f\xff\xaf\xff\x1f\xc9\xfb\xd7\xff\xeb\xff" "\x59\x34\xb6\xfe\x3f\x77\xff\x7b\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20" "\x77\xff\x75\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xbe\xb8\xc5\xfe" "\x07\x00\x00\x80\x66\xe4\xee\xbf\x3e\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xfa" "\x7f\xfd\xbf\xfe\x7f\xf8\xf5\x3d\xff\x7f\x9a\x0e\xae\xff\x9f\xe9\xff\xf5" "\xff\xfa\xff\x15\xf6\xd5\xcf\x1f\x5f\xcb\x5b\x3e\xba\xf7\x3f\x40\xff\xaf" "\xff\x67\xd1\xd8\xfa\xff\xdc\xfd\xef\x8f\x5b\x3a\xd9\xff\x00\x00\x00\xd0" "\x83\xdc\xfd\x1f\x88\x5b\xf6\xb2\xff\xb7\x2e\x38\xa8\xb7\x05\x00\x00\x00" "\xac\x51\xee\xfe\x0f\xc6\x2d\xbe\xfe\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xa1" "\xb8\xa5\x93\xfd\xaf\xff\x9f\xcd\xce\x99\x8b\x97\xf5\xff\xfa\xff\xed\x0f" "\xe8\xff\xf5\xff\xeb\xee\xff\x2f\xd0\xff\x1f\x16\xcf\xff\x5f\x4e\xff\xbf" "\x82\xfe\xdf\xf3\xff\xf5\xff\xfa\x7f\xd6\x6a\x6c\xfd\x7f\xee\xfe\x0f\xc7" "\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x1b\xe2\x16\xfb\x1f\x00\x00" "\x00\x9a\x71\xcf\xf6\x1f\x37\x67\x1f\x89\x5b\xec\x7f\x00\x00\x00\x68\x46" "\xee\xfe\x8f\xc6\x2d\x9d\xec\x7f\xfd\xbf\xe7\xff\xef\xec\xff\x67\x33\xfd" "\xbf\xfe\x5f\xff\x7f\xca\x21\x3c\xff\x7f\x73\xa6\xff\x5f\x3b\xfd\xff\x72" "\xfa\xff\x15\xf4\xff\x6d\xf6\xff\xe7\xcc\x1a\xea\xff\xb7\x76\xfd\x7c\xfd" "\x3f\x63\x34\xb6\xfe\x3f\x77\xff\xc7\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4" "\x20\x77\xff\x8d\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xf1\xb8\xc5" "\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x44\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff" "\x3d\xff\x5f\xff\xaf\xff\x1f\x7e\xfd\x43\xe8\xff\xeb\x47\x55\xff\xbf\x3e" "\x07\xd5\xff\xff\xbd\xfe\x7f\x9b\xfe\x5f\xff\xbf\xcc\x68\xfb\x7f\xcf\xff" "\xd7\xff\x73\x64\xc6\xd6\xff\xe7\xee\xff\x64\xdc\xd2\xc9\xfe\x07\x00\x00" "\x80\x1e\xe4\xee\xff\x54\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x3a" "\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x3f\x13\xb7\x74\xb2\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xfe\x5f\xff\x3f\xfc\xfa\xfa\xff\x69\xf2\xfc\xff\xe5\xf4" "\xff\x2b\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x6b\x35\xb6\xfe\x3f\x77\xff\x67" "\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x4d\x71\x8b\xfd\x0f\x00" "\x00\x00\xcd\xc8\xdd\x7f\x73\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f" "\x2e\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xfa\xff\x69\xf6\xff\x9b\xfa\x7f\xfd" "\xbf\xfe\x7f\xd0\x58\xfa\xff\x0b\x2f\xfc\xcf\x5b\xf4\xff\xfa\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\xef\xdd\xd8\xfa\xff\xdc\xfd\x9f\x8f\x5b\x3a\xd9\xff" "\x00\x00\x00\xd0\x83\xdc\xfd\x5f\x88\x5b\xec\x7f\x00\x00\x00\x68\x46\xee" "\xfe\x2f\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x97\xe2\x96\x4e\xf6" "\xff\x62\xff\x7f\xde\xec\x54\xa1\x7a\xca\x50\xff\x1f\x8d\x9a\xfe\x7f\x8e" "\xfe\x7f\xe7\xfb\xd7\xff\x0f\xff\xfc\xf0\xfc\x7f\xfd\xbf\xfe\xff\xe0\x9d" "\xd9\xff\x1f\xdf\xe7\xe7\x7b\xfe\x7f\xd0\xff\xeb\xff\xf5\xff\x07\xdb\xff" "\xff\xcb\xe2\xe7\xeb\xff\x69\xd1\xd8\xfa\xff\xdc\xfd\xb7\xc4\x2d\x9d\xec" "\x7f\x00\x00\x00\xe8\x41\xee\xfe\x2f\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23" "\x77\xff\x57\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xd6\xb8\xa5\x93" "\xfd\xef\xf9\xff\xfa\x7f\xfd\xff\x61\xf6\xff\x1b\xfa\x7f\xfd\xbf\xfe\xff" "\x80\x8d\xe5\xf9\xff\xfa\xff\xb3\x7b\xff\xfa\x7f\xfd\xff\x94\xdf\x7f\x33" "\xcf\xff\x3f\x57\xff\xcf\xfa\x1c\x7c\xff\xbf\x15\xdf\xda\x5b\xff\x9f\xbb" "\xff\xab\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x6b\x71\x8b\xfd" "\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xf5\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4" "\xee\xff\x46\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\x9e\xff\xaf\xff\x1f" "\x7e\x7d\xfd\xff\x34\xe9\xff\x97\xd3\xff\xaf\xd0\x4f\xff\xbf\x39\xf4\xc1" "\xa3\xee\xe7\xef\xaf\xa3\x7e\xff\xcd\xf4\xff\x9e\xff\xcf\x1a\x8d\xed\xf9" "\xff\xb9\xfb\xbf\x19\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xbf\x15" "\xb7\xec\xd8\xff\xff\x73\xc8\xef\x0a\x00\x00\x00\x58\xa7\xdc\xfd\xdf\x8e" "\x5b\x7c\xfd\x1f\x00\x00\x00\x9a\x91\xbb\xff\x3b\x71\x4b\x27\xfb\x5f\xff" "\xaf\xff\x6f\xbf\xff\xff\xbf\x49\xf5\xff\x5b\x73\x9f\xd7\x58\xff\x7f\x42" "\xff\xaf\xff\x3f\x0c\xfa\xff\xfc\x37\xfa\x30\xfd\xff\x0a\xa3\xe9\xff\x87" "\xff\x5f\xf4\xfc\xff\x71\xbf\x7f\xfd\xbf\xfe\x9f\x45\x63\xeb\xff\x73\xf7" "\xdf\x16\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xbf\x1b\xb7\xd8\xff" "\x00\x00\x00\xd0\x8c\xdc\xfd\xb7\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77" "\xff\xf7\xe2\x96\x4e\xf6\xbf\xfe\xbf\xaf\xfe\x7f\x63\xd6\x63\xff\xef\xf9" "\xff\x23\xe9\xff\x3d\xff\x5f\xff\x7f\x28\xf4\xff\xcb\xe9\xff\x57\x18\x4d" "\xff\x7f\xe0\xcf\xff\x1f\x74\xd4\xfd\xfc\x11\xbc\xff\xfb\xd6\xf9\xfe\xf5" "\xff\xfa\x7f\x16\x8d\xad\xff\xcf\xdd\x7f\xc7\xc6\xb1\x2e\xf7\x3f\x00\x00" "\x00\x4c\xd5\x7f\xff\xdb\x83\x6e\xdb\xeb\x5f\x7b\xc7\xf6\x1f\x37\x67\xdf" "\x8f\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x1f\xc4\x2d\xf6\x3f\x00\x00" "\x00\x34\x23\x77\xff\x0f\xe3\x96\x4e\xf6\xbf\xfe\xbf\xaf\xfe\xbf\xcf\xe7" "\xff\xeb\xff\xf5\xff\xfa\xff\x9e\xe8\xff\x97\xd3\xff\xaf\xa0\xff\xef\xad" "\xff\x5f\xeb\xfb\xd7\xff\xeb\xff\x59\x34\xb6\xfe\x3f\x77\xff\x8f\xe2\x96" "\xb9\xe1\x77\x6c\xdf\xdf\x4b\x00\x00\x00\x60\x4c\x72\xf7\xff\x38\x6e\xe9" "\xe4\xeb\xff\x00\x00\x00\xd0\x83\xdc\xfd\x3f\x89\x5b\x16\xf6\xff\xc9\x3d" "\xfe\xae\x76\x00\x00\x00\x60\x6c\x72\xf7\xff\x34\x6e\xe9\xe4\xeb\xff\x13" "\xee\xff\x87\xb3\x8c\xd6\xfa\xff\xd9\x01\xf5\xff\xf1\xd7\xf5\xda\xff\xdf" "\x78\xe1\xce\x1f\x2f\xfd\xbf\xfe\x7f\xe8\xf5\xf5\xff\xd3\xa4\xff\x5f\xee" "\x7e\xf6\xff\x27\x37\xf4\xff\xfa\xff\x25\x86\xfb\xf9\xdb\xff\x41\xff\xaf" "\xff\xd7\xff\xf7\x6b\x6c\xfd\x7f\xee\xfe\x9f\xc5\x2d\x9d\xec\x7f\x00\x00" "\x00\x68\xd4\x8e\x5f\x51\xc8\xdd\xff\xf3\xb8\xc5\xfe\x07\x00\x00\x80\x66" "\xe4\xee\xff\x45\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xdf\x19\xb7\x74" "\xb2\xff\x27\xdc\xff\xef\xf2\x1d\x6a\xac\xff\x3f\xab\xe7\xff\x6f\xd5\xb7" "\x3c\xff\xbf\xf3\xe7\xff\x5f\xb1\x39\xf8\xfa\x6b\xef\xff\xcf\xdb\xf9\xfd" "\xd5\xff\x0f\xd3\xff\x1f\x0e\xfd\xff\x9c\xcd\xc5\x0f\x79\xfe\xff\x0a\xfa" "\x7f\xcf\xff\xd7\xff\xeb\xff\x59\xab\xb1\xf5\xff\xb9\xfb\x7f\x19\xb7\x74" "\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x7f\x15\xb7\xd8\xff\x00\x00\x00\xd0" "\x8c\xdc\xfd\xbf\x8e\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xbb\xe2\x96" "\x4e\xf6\xbf\xfe\xbf\xc5\xfe\x7f\x0f\xcf\xff\xd7\xff\xf7\xd1\xff\xef\xf2" "\xfa\xed\x3c\xff\xff\x9f\xce\x3f\x71\xd3\xff\xfe\xff\xb5\x57\xeb\xff\x39" "\xed\x30\xfb\xff\xfc\xb9\x30\xda\xfe\x7f\x80\xfe\x7f\x05\xfd\xbf\xfe\x5f" "\xff\xaf\xff\x67\xad\xc6\xd6\xff\xe7\xee\xff\x4d\xdc\xd2\xc9\xfe\x07\x00" "\x00\x80\x1e\xe4\xee\xbf\x3b\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x7f" "\x1b\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xbf\x8b\x5b\x3a\xd9\xff\xfa" "\x7f\xfd\xff\x58\xfa\xff\xfc\xb1\x3e\x82\xfe\xff\xc4\xf4\xfa\xff\x6c\x8a" "\x7b\xef\xff\x3d\xff\x5f\xff\xbf\xc8\xf3\xff\x97\xd3\xff\xaf\xa0\xff\xd7" "\xff\xeb\xff\xf5\xff\xac\xd5\xd8\xfa\xff\xdc\xfd\xf7\xc4\x2d\x9d\xec\x7f" "\x00\x00\x00\xe8\x41\xee\xfe\xdf\xc7\x2d\xb9\xff\x37\xf6\xfd\x4b\xf7\x00" "\x00\x00\xc0\xc8\xe4\xee\xff\xc3\xf6\x9d\xfb\x3d\x5a\xbe\xfe\x0f\x00\x00" "\x00\xcd\x38\xb5\xfb\x37\x67\x7f\x8c\x5b\x3a\xd9\xff\xfa\x7f\xfd\xff\x58" "\xfa\xff\xe4\xf9\xff\xa7\x3f\xcf\xf3\xff\x4f\xd1\xff\xeb\xff\xf7\x63\xf2" "\xfd\xff\xec\x1c\xfd\xbf\xfe\x5f\xff\x3f\xd1\xf7\xaf\xff\xd7\xff\xb3\x68" "\x6c\xfd\x7f\xee\xfe\x3f\xc5\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe" "\x8d\xb8\x65\xe7\xfe\xff\xbb\xc3\x7d\x57\x00\x00\x00\xc0\x3a\xdd\xbb\xfd" "\xc7\xcd\xd9\x9f\xe3\x16\x5f\xff\x07\x00\x00\x80\x66\xe4\xee\xbf\x2f\x6e" "\xe9\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf8\xf5\xf5\xff\xd3" "\x34\xf9\xfe\xdf\xf3\xff\xf5\xff\xfa\xff\xc9\xbe\x7f\xfd\xbf\xfe\x9f\x45" "\x63\xeb\xff\x73\xf7\xff\x35\x00\x00\xff\xff\x95\x00\x6a\xe4", 25215)); NONFAILING(syz_mount_image( /*fs=*/0x200000000400, /*dir=*/0x2000000000c0, /*flags=MS_I_VERSION|MS_NOEXEC|MS_NODIRATIME|MS_NOATIME*/ 0x800c08, /*opts=*/0x200000000540, /*chdir=*/0x21, /*size=*/0x627f, /*img=*/0x200000001600)); // syz_mount_image$vfat arguments: [ // fs: ptr[in, buffer] { // buffer: {76 66 61 74 00} (length 0x5) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 62 75 73 00} (length 0x6) // } // flags: mount_flags = 0x2c600 (8 bytes) // opts: nil // chdir: int8 = 0xbe (1 bytes) // size: len = 0x0 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x0) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x2000000002c0, "vfat\000", 5)); NONFAILING(memcpy((void*)0x2000000000c0, "./bus\000", 6)); NONFAILING(syz_mount_image( /*fs=*/0x2000000002c0, /*dir=*/0x2000000000c0, /*flags=MS_UNBINDABLE|MS_REC|MS_SILENT|MS_NOATIME|0x200*/ 0x2c600, /*opts=*/0, /*chdir=*/0xbe, /*size=*/0, /*img=*/0x2000000007c0)); // rename arguments: [ // old: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // new: ptr[in, buffer] { // buffer: {2e 2f 62 75 73 2f 66 69 6c 65 30 00} (length 0xc) // } // ] NONFAILING(memcpy((void*)0x200000000180, "./file0\000", 8)); NONFAILING(memcpy((void*)0x2000000001c0, "./bus/file0\000", 12)); syscall(__NR_rename, /*old=*/0x200000000180ul, /*new=*/0x2000000001c0ul); } 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; install_segv_handler(); do_sandbox_none(); return 0; }