// 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 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif #ifndef __NR_openat #define __NR_openat 56 #endif #ifndef __NR_renameat2 #define __NR_renameat2 276 #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); } uint64_t r[1] = {0xffffffffffffffff}; void loop(void) { intptr_t res = 0; 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 30 00} (length 0x8) // } // flags: mount_flags = 0x1010006 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {71 75 6f 74 61 2c 64 69 73 63 61 72 64 3d 30 78 // 30 30 30 30 30 30 30 30 30 30 30 30 61 66 66 39 2c 69 6f 63 68 61 // 72 73 65 74 3d 6e 6f 6e 65 2c 69 6f 63 68 61 72 73 65 74 3d 6d 61 // 63 67 72 65 65 6b 2c 69 6f 63 68 61 72 73 65 74 3d 69 73 6f 38 38 // 35 39 2d 31 2c 69 6e 74 65 67 72 69 74 79 2c 6e 6f 64 69 73 63 61 // 72 64 2c 6e 6f 71 75 6f 74 61 2c 75 69 64 3d} (length 0x77) // } // union ANYUNION { // ANYRESHEX: ANYRES64 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {2c 00 90 79 3f 96 64 2d d4 55 2f ed 5a 09 08 b7 // 1b 44 de e2 aa af 2c e1 af 85 0a 14 92 78 a4 c6 fe 28 0b df 64 c0 // 53 f7 58 c0 d2 63 49 d6 4d c3 71 70 d8 04 07 21 24 05 62 24 a0 19 // f2 bb 9a 6c 26 59 bd 07 29 0d 21 90 b5 3a ec 9f 09 6f 69 0d e2 12 // d3 e2 56 ad ae a5 3e 84 eb 84 e6 d6 11 ec b1 66 bb 3c 23 5a 85 c4 // b1 6e b9 7b ba 03 48 1c 80 03 ff ff ff ff d9 98 b1 8a f1 cc 6f d1 // be 71 d2 ff fb 74 33 71 0f 91 39 7d 9d 76 cc c8 d1 fb} (length // 0x90) // } // } // } // chdir: int8 = 0x24 (1 bytes) // size: len = 0x61e3 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x61e3) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x20000100, "jfs\000", 4)); NONFAILING(memcpy((void*)0x20000000, "./file0\000", 8)); NONFAILING( memcpy((void*)0x20000140, "quota,discard=0x000000000000aff9,iocharset=none,iocharset=" "macgreek,iocharset=iso8859-1,integrity,nodiscard,noquota,uid=", 119)); NONFAILING(sprintf((char*)0x200001b7, "0x%016llx", (long long)0xee01)); NONFAILING( memcpy((void*)0x200001c9, "\x2c\x00\x90\x79\x3f\x96\x64\x2d\xd4\x55\x2f\xed\x5a\x09\x08\xb7" "\x1b\x44\xde\xe2\xaa\xaf\x2c\xe1\xaf\x85\x0a\x14\x92\x78\xa4\xc6" "\xfe\x28\x0b\xdf\x64\xc0\x53\xf7\x58\xc0\xd2\x63\x49\xd6\x4d\xc3" "\x71\x70\xd8\x04\x07\x21\x24\x05\x62\x24\xa0\x19\xf2\xbb\x9a\x6c" "\x26\x59\xbd\x07\x29\x0d\x21\x90\xb5\x3a\xec\x9f\x09\x6f\x69\x0d" "\xe2\x12\xd3\xe2\x56\xad\xae\xa5\x3e\x84\xeb\x84\xe6\xd6\x11\xec" "\xb1\x66\xbb\x3c\x23\x5a\x85\xc4\xb1\x6e\xb9\x7b\xba\x03\x48\x1c" "\x80\x03\xff\xff\xff\xff\xd9\x98\xb1\x8a\xf1\xcc\x6f\xd1\xbe\x71" "\xd2\xff\xfb\x74\x33\x71\x0f\x91\x39\x7d\x9d\x76\xcc\xc8\xd1\xfb", 144)); NONFAILING(memcpy( (void*)0x2000d780, "\x78\x9c\xec\xdd\x4b\x8f\x1c\x57\xd9\x07\xf0\xa7\xfa\x36\x97\xbc\x49\xac" "\x2c\xa2\xbc\x16\x42\x93\xc4\x5c\x42\x88\xaf\xc1\x18\x02\x24\x59\xc0\x82" "\x0d\x0b\xe4\x2d\xb2\x35\x99\x44\x16\x4e\x40\xb6\x41\x4e\x64\xe1\x89\x66" "\xc3\x82\x0f\x01\x42\x62\x89\x10\x4b\x56\x7c\x80\x2c\xd8\xb2\xe3\x03\x60" "\xc9\x46\x02\x65\x81\x52\xa8\x66\xce\x19\xd7\x54\xba\xa7\x67\x3c\x9e\xae" "\x6e\xd7\xef\x27\x8d\xab\x9e\x3e\x55\xd3\xa7\xfc\xef\xea\xcb\x54\x55\x9f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe2\x87\x3f\xf8" "\xf1\xb9\x22\x22\xae\xfc\x32\xdd\x70\x22\xe2\xff\xa2\x1f\xd1\x8b\x58\xa9" "\xea\xb5\x88\x58\x59\x3b\x51\x5f\xe7\x85\xd8\x6e\x8e\xe7\x23\x62\xb8\x14" "\x51\xad\xbf\xfd\xcf\xb3\x11\xaf\x47\xc4\x27\xcf\x44\xdc\x7f\x70\x67\xbd" "\xba\xf9\xfc\x01\xfb\xf1\xfd\x3f\xfd\xfd\xf7\x3f\x79\xea\x47\x7f\xfb\xe3" "\xf0\xcc\x7f\xfe\x7c\xab\xff\xc6\xa4\xe5\x6e\xdf\xfe\xcd\xbf\xff\x72\xf7" "\xd1\xb7\x17\x00\x00\x00\xba\xa8\x2c\xcb\xb2\x48\x1f\xf3\x4f\x46\xc4\x20" "\x7d\xb6\x07\x00\x9e\x7c\xf9\xf5\xbf\x4c\xf2\xed\xea\xb9\xab\x37\xe7\xac" "\x3f\x6a\xb5\x5a\xad\x5e\xc0\xba\xae\x1c\xef\x6e\xbd\x88\x88\xcd\xfa\x3a" "\xd5\x7b\x06\x87\xe3\x01\x60\xc1\x6c\xc6\xa7\x6d\x77\x81\x16\xc9\xbf\xd3" "\x06\x11\xf1\x54\xdb\x9d\x00\xe6\x5a\xd1\x76\x07\x38\x16\xf7\x1f\xdc\x59" "\x2f\x52\xbe\x45\xfd\xf5\x60\x6d\xa7\x3d\x9f\x0b\xb2\x27\xff\xcd\x62\xf7" "\xfa\x8e\x49\xd3\x69\x9a\xe7\x98\xcc\xea\xf1\xb5\x15\xfd\x78\x6e\x42\x7f" "\x56\x66\xd4\x87\x79\x92\xf3\xef\x35\xf3\xbf\xb2\xd3\x3e\x4a\xcb\x1d\x77" "\xfe\xb3\x32\x29\xff\xd1\xce\xa5\x4f\x9d\x93\xf3\xef\x37\xf3\x6f\x78\x72" "\xf2\xef\x8d\xcd\xbf\xab\x72\xfe\x83\x43\xe5\xdf\x97\x3f\x00\x00\x00\x00" "\x00\xcc\xb1\xfc\xf7\xff\x13\x2d\x1f\xff\x5d\x3a\xfa\xa6\x1c\xc8\x7e\xc7" "\x7f\xd7\x66\xd4\x07\x00\x00\x00\x00\x00\x00\x00\x78\xdc\x0e\x3b\xfe\xdf" "\xa0\x31\xfe\xdf\x2e\xe3\xff\x01\x00\x00\xc0\xdc\xaa\x3e\xab\x57\x7e\xfb" "\xcc\xc3\xdb\x26\x7d\x17\x5b\x75\xfb\xe5\x22\xe2\xe9\xc6\xf2\x40\xc7\xa4" "\x8b\x65\x56\xdb\xee\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\xc9" "\x60\xe7\x1c\xde\xcb\x45\xc4\x30\x22\x9e\x5e\x5d\x2d\xcb\xb2\xfa\xa9\x6b" "\xd6\x87\x75\xd4\xf5\x17\x5d\xd7\xb7\x1f\xba\xac\xed\x27\x79\x00\x00\xd8" "\xf1\xc9\x33\x8d\x6b\xf9\x8b\x88\xe5\x88\xb8\x9c\xbe\xeb\x6f\xb8\xba\xba" "\x5a\x96\xcb\x2b\xab\xe5\x6a\xb9\xb2\x94\xdf\xcf\x8e\x96\x96\xcb\x95\xda" "\xe7\xda\x3c\xad\x6e\x5b\x1a\x1d\xe0\x0d\xf1\x60\x54\x56\xbf\x6c\xb9\xb6" "\x5e\xdd\xb4\xcf\xcb\xd3\xda\x9b\xbf\xaf\xba\xaf\x51\xd9\x3f\x40\xc7\x66" "\xa3\xc5\xc0\x01\x20\x22\x76\x5e\x8d\xee\x4f\x7a\x45\xfa\xaf\xd7\xab\xc5" "\x54\x96\xcf\x46\xcb\x6f\x72\x58\x10\xfb\xec\xff\x2c\x28\xfb\x3f\x07\xd1" "\xf6\xe3\x14\x00\x00\x00\x38\x7e\x65\x59\x96\x45\xfa\x3a\xef\x93\xe9\x98" "\x7f\xaf\xed\x4e\x01\x00\x33\x91\x5f\xff\x9b\xc7\x05\xd4\x6a\xb5\x5a\xad" "\x56\x3f\x79\x75\x5d\x39\xde\xdd\x7a\x11\x11\x9b\xf5\x75\xaa\xf7\x0c\x86" "\xe3\x07\x80\x05\xb3\x19\x9f\xb6\xdd\x05\x5a\x24\xff\x4e\x1b\x44\xc4\x0b" "\x6d\x77\x02\x98\x6b\x45\xdb\x1d\xe0\x58\xdc\x7f\x70\x67\xbd\x48\xf9\x16" "\xf5\xd7\x83\x34\xbe\x7b\x3e\x17\x64\x4f\xfe\x9b\xc5\xf6\x7a\x79\xfd\x71" "\xd3\x69\x9a\xe7\x98\xcc\xea\xf1\xb5\x15\xfd\x78\x6e\x42\x7f\x9e\x9f\x51" "\x1f\xe6\x49\xce\xbf\xd7\xcc\xff\xca\x4e\xfb\x28\x2d\x77\xf4\xfc\xcb\x3d" "\x7f\x26\x6c\xeb\x1c\xa3\x49\xf9\x57\xdb\x79\xa2\x85\xfe\xb4\x2d\xe7\xdf" "\x6f\xe6\xdf\x70\xdc\xfb\xff\xac\x6c\x45\x6f\x6c\xfe\x5d\x95\xf3\x1f\x1c" "\x2a\xff\xfe\x51\xf2\xff\x60\x24\x7f\x00\x00\x00\x00\x00\x38\x56\xf9\xef" "\xff\x27\xe6\xea\xf8\xef\xe8\x51\x37\x67\xaa\xfd\x8e\xff\xae\x8d\x5d\xe3" "\xf8\xfa\x02\x00\x00\x00\x00\x00\x00\x00\x8f\xcb\xfd\x07\x77\xd6\xf3\x75" "\xaf\xf9\xf8\xff\x17\xc6\x2c\xe7\xfa\xcf\x27\x53\xce\xbf\x90\x7f\x27\xe5" "\xfc\x7b\x8d\xfc\xbf\xda\x58\xae\x5f\x9b\xbf\xf7\xf6\xc3\xfc\xff\xf5\xe0" "\xce\xfa\x1f\x6e\xfd\xf3\xff\xf3\xf4\xa0\xf9\x2f\xe5\x99\x22\x3d\xb2\x8a" "\xf4\x88\x28\xd2\x3d\x15\x83\x34\x3d\xca\xd6\x7d\xde\xd6\xb0\x3f\xaa\xee" "\x69\x58\xf4\xfa\x83\x74\xce\x4f\x39\x7c\x37\xae\xc5\xf5\xd8\x88\xb3\x7b" "\x96\xed\xa5\xff\x8f\x87\xed\xe7\xf6\xb4\x57\x3d\x1d\x6e\xb7\x97\xfd\x9d" "\xf6\xf3\x7b\xda\x07\xbb\xed\x79\xfd\x0b\x7b\xda\x87\xe9\xec\xa2\x72\x25" "\xb7\x9f\x8e\xf5\xf8\x59\x5c\x8f\x77\xb6\xdb\xab\xb6\xa5\x29\xdb\xbf\x3c" "\xa5\xbd\x9c\xd2\x9e\xf3\xef\xdb\xff\x3b\x29\xe7\x3f\xa8\xfd\x54\xf9\xaf" "\xa6\xf6\xa2\x31\xad\xdc\xfb\xb8\xf7\xb9\xfd\xbe\x3e\x1d\x77\x3f\x6f\x5d" "\xfb\xe2\xaf\xcf\x1e\xff\xe6\x4c\xb5\x15\xfd\xdd\x6d\xab\xab\xb6\xef\xa5" "\x16\xfa\xb3\xfd\x7f\xf2\xd4\x28\x7e\x71\x73\xe3\xc6\xe9\xdb\x57\x6f\xdd" "\xba\x71\x2e\xd2\x64\xcf\xad\xe7\x23\x4d\x1e\xb3\x9c\xff\x30\xfd\xec\x3e" "\xff\xbf\xbc\xd3\x9e\x9f\xf7\xeb\xfb\xeb\xbd\x8f\x47\x87\xce\x7f\x5e\x6c" "\xc5\x60\x62\xfe\x2f\xd7\xe6\xab\xed\x7d\x65\xc6\x7d\x6b\x43\xce\x7f\x94" "\x7e\x72\xfe\xef\xa4\xf6\xf1\xfb\xff\x22\xe7\x3f\x79\xff\x7f\xb5\x85\xfe" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x7e\xca\xb2\xdc\xbe" "\x44\xf4\xad\x88\xb8\x98\xae\xff\x69\xeb\xda\x4c\x00\x60\xb6\xf2\xeb\x7f" "\x99\xe4\xdb\x67\x55\xf7\x67\x7c\x7f\x6a\xf5\x82\xd7\xc5\x9c\xf5\x67\xa6" "\xf5\x67\xe5\x7c\xf5\x47\xad\x5e\xc4\xba\xae\x1c\xef\xcd\x7a\x11\x11\x7f" "\xad\xaf\x53\xbd\x67\xf8\xd5\xb8\x5f\x06\x00\xcc\xb3\xcf\x22\xe2\x1f\x6d" "\x77\x82\xd6\xc8\xbf\xc3\xf2\xf7\xfd\x55\xd3\x53\x6d\x77\x06\x98\xa9\x9b" "\x1f\x7e\xf4\xd3\xab\xd7\xaf\x6f\xdc\xb8\xd9\x76\x4f\x00\x00\x00\x00\x00" "\x00\x00\x80\x47\x95\xc7\xff\x5c\xab\x8d\xff\x7c\xaa\x2c\xcb\xbb\x8d\xe5" "\xf6\x8c\xff\xfa\x76\xac\x1d\x75\xfc\xcf\x41\x9e\xd9\x1d\x60\x74\xc2\x40" "\xd5\xfd\xc3\x6f\xd3\x7e\xb6\x7a\xa3\x7e\xaf\x36\xdc\xf8\x8b\x31\x69\xfc" "\xef\xe1\xee\xdc\x7e\xe3\x7f\x0f\xa6\xdc\xdf\x70\x4a\xfb\x68\x4a\xfb\xd2" "\x94\xf6\xe5\x29\xed\x63\x2f\xf4\xa8\xc9\xf9\xbf\x58\x1b\xef\xfc\x54\x44" "\x9c\x6c\x0c\xbf\xde\x85\xf1\x5f\x9b\x63\xde\x77\x41\xce\xff\xa5\xda\xe3" "\xb9\xca\xff\x2b\x8d\xe5\xea\xf9\x97\xbf\x5b\xe4\xfc\x7b\x7b\xf2\x3f\x73" "\xeb\xfd\x9f\x9f\xb9\xf9\xe1\x47\xaf\x5d\x7b\xff\xea\x7b\x1b\xef\x6d\x7c" "\x70\xe1\xdc\xb9\xb3\x17\x2e\x5e\xbc\x74\xe9\xd2\x99\x77\xaf\x5d\xdf\x38" "\xbb\xf3\x6f\x8b\x3d\x3e\x5e\x39\xff\x3c\xf6\xb5\xf3\x40\xbb\x25\xe7\x9f" "\x33\x97\x7f\xb7\xe4\xfc\xbf\x94\x6a\xf9\x77\x4b\xce\xff\xcb\xa9\x96\x7f" "\xb7\xe4\xfc\xf3\xfb\x3d\xf9\x77\x4b\xce\x3f\x7f\xf6\x91\x7f\xb7\xe4\xfc" "\x5f\x49\xb5\xfc\xbb\x25\xe7\xff\xb5\x54\xcb\xbf\x5b\x72\xfe\xaf\xa6\x5a" "\xfe\xdd\x92\xf3\xff\x7a\xaa\xe5\xdf\x2d\x39\xff\xd7\x52\x2d\xff\x6e\xc9" "\xf9\x9f\x4e\xb5\xfc\xbb\x25\xe7\x7f\x26\xd5\x07\xcc\x7f\xe5\xb8\xfb\xc5" "\x6c\xe4\xfc\xf3\x11\x2e\xfb\x7f\xb7\xe4\xfc\xf3\x99\x0d\xf2\xef\x96\x9c" "\xff\xf9\x54\xcb\xbf\x5b\x72\xfe\x17\x52\x2d\xff\x6e\xc9\xf9\xbf\x9e\x6a" "\xf9\x77\x4b\xce\xff\x1b\xa9\x96\x7f\xb7\xe4\xfc\x2f\xa6\x5a\xfe\xdd\x92" "\xf3\xff\x66\xaa\xe5\xdf\x2d\x39\xff\x4b\xa9\x96\x7f\xb7\xe4\xfc\xbf\x95" "\x6a\xf9\x77\x4b\xce\xff\xdb\xa9\x96\x7f\xb7\xe4\xfc\xdf\x48\xb5\xfc\xbb" "\x25\xe7\xff\x9d\x54\xcb\xbf\x5b\x72\xfe\xdf\x4d\xb5\xfc\xbb\x25\xe7\xff" "\xbd\x54\xcb\xbf\x5b\x72\xfe\x6f\xa6\x5a\xfe\xdd\xf2\xf0\xfb\xff\xcd\x98" "\x31\x63\x26\xcf\xb4\xfd\xcc\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x34\xcd\xe2\x74\xe2\xb6\xb7\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0" "\x7f\xec\xc0\x81\x00\x00\x00\x00\x00\x90\xff\x6b\x23\x54\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x61\x07\x0e\x04\x00\x00\x00\x00\x80\xfc\x5f\x1b\xa1" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x0a\x7b\xf7\x16\x23\xd7\x5d\xdf\x01" "\xfc\xcc\xde\xbc\x76\x20\x31\x10\x52\x27\x35\xb0\x71\x4c\x08\xc9\x26\xbb" "\xb6\x13\x5f\x68\x53\x4c\xb8\x36\xdc\x4a\x20\x14\x7a\xc1\x76\xbd\x6b\xb3" "\xe0\x1b\x5e\xbb\x04\x1a\xc9\xa6\x81\x12\x09\xa3\xa2\x8a\xb6\xe1\xa1\x2d" "\x20\xd4\xe6\xa5\x22\x0f\x3c\xd0\x0a\x50\x1e\x50\x5b\xa4\x4a\xd0\x3e\xd0" "\x17\x44\x85\xca\x43\x54\x05\x14\x90\x2a\xd1\x0a\xd8\x6a\xce\xf9\xff\xff" "\x3b\x33\x3b\x3b\xb3\x6b\x8f\xd7\x67\xce\xf9\x7c\xa4\xf8\xe7\x9d\x39\x33" "\xe7\xcc\x99\x33\x67\xf7\xbb\xce\x77\x06\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xa0\xd5\xad\xaf\x9d\xff\x64\x23\xcb\xb2\xe6\x7f\xf9" "\x1f\x5b\xb3\xec\x79\xcd\xbf\x6f\x9e\xda\x9a\x5f\xf6\xaa\x6b\xbd\x85\x00" "\x00\x00\xc0\x95\xfa\x45\xfe\xe7\x73\x37\xa4\x0b\x0e\xae\xe1\x46\x2d\xcb" "\xfc\xf3\x4b\xbf\xfd\x95\xa5\xa5\xa5\xa5\xec\x3d\xa3\x7f\x3e\xfe\xd9\xa5" "\xa5\x74\xc5\x54\x96\x8d\x6f\xca\xb2\xfc\xba\xe8\xa9\x1f\xbc\xb7\xd1\xba" "\x4c\xf0\x58\x36\xd9\x18\x69\xf9\x7a\xa4\xcf\xea\x47\xfb\x5c\x3f\xd6\xe7" "\xfa\xf1\x3e\xd7\x4f\xf4\xb9\x7e\x53\x9f\xeb\x27\xfb\x5c\xbf\x62\x07\xac" "\xb0\xb9\xf8\x7d\x4c\x7e\x67\x3b\xf3\xbf\x6e\x2d\x76\x69\x76\x63\x36\x9e" "\x5f\xb7\xb3\xcb\xad\x1e\x6b\x6c\x1a\x19\x89\xbf\xcb\xc9\x35\xf2\xdb\x2c" "\x8d\x1f\xcb\x16\xb2\x13\xd9\x7c\x36\xdb\xb6\x7c\xb1\x6c\x23\x5f\xfe\x6b" "\xb7\x36\xd7\xf5\xa6\x2c\xae\x6b\xa4\x65\x5d\xdb\x9b\x47\xc8\x4f\x1e\x3d" "\x1a\xb7\xa1\x11\xf6\xf1\xce\xb6\x75\x2d\xdf\x67\xf4\xa3\xd7\x64\x53\x3f" "\xfd\xc9\xa3\x47\xff\xf6\xdc\xb3\x37\x77\x9b\x7d\x77\x43\xdb\xfd\x15\xdb" "\x79\xc7\x8e\xe6\x76\x7e\x3c\x5c\x52\x6c\x6b\x23\xdb\x94\xf6\x49\xdc\xce" "\x91\x96\xed\xdc\xde\xe5\x39\x19\x6d\xdb\xce\x46\x7e\xbb\xe6\xdf\x3b\xb7" "\xf3\xb9\x35\x6e\xe7\xe8\xf2\x66\x6e\xa8\xce\xe7\x7c\x32\x1b\xc9\xff\xfe" "\x9d\x7c\x3f\x8d\xb5\xfe\x5a\x2f\xed\xa7\xed\xe1\xb2\x9f\xdd\x96\x65\xd9" "\xc5\xe5\xcd\xee\x5c\x66\xc5\xba\xb2\x91\x6c\x4b\xdb\x25\x23\xcb\xcf\xcf" "\x64\x71\x44\x36\xef\xa3\x79\x28\xbd\x30\x1b\x5b\xd7\x71\x7a\xeb\x1a\x8e" "\xd3\xe6\x9c\xdb\xd9\x7e\x9c\x76\xbe\x26\xe2\xf3\x7f\x6b\xb8\xdd\xd8\x2a" "\xdb\xd0\xfa\x34\xfd\xe8\x63\x13\x2d\xcf\xfb\xcf\x97\x2e\xe7\x38\x8d\x9a" "\x8f\x7a\xb5\xd7\x4a\xe7\x31\x38\xe8\xd7\x4a\x59\x8e\xc1\x78\x5c\x7c\x27" "\x7f\xd0\x8f\x77\x3d\x06\x77\x86\xc7\xff\xe8\xed\xab\x1f\x83\x5d\x8f\x9d" "\x2e\xc7\x60\x7a\xdc\x2d\xc7\xe0\x8e\x7e\xc7\xe0\xc8\xc4\x68\xbe\xcd\xe9" "\x49\x68\xe4\xb7\x59\x3e\x06\x77\xb5\x2d\x3f\x9a\xaf\xa9\x91\xcf\x67\x6e" "\xef\x7d\x0c\xce\x9c\x3b\x79\x66\x66\xf1\x23\x1f\xbd\x7b\xe1\xe4\x91\xe3" "\xf3\xc7\xe7\x4f\xed\xd9\xb5\x6b\x76\xcf\xde\xbd\xfb\xf7\xef\x9f\x39\xb6" "\x70\x62\x7e\xb6\xf8\xf3\x32\xf7\x76\xf9\x6d\xc9\x46\xd2\x6b\x60\x47\xd8" "\x77\xf1\x35\xf0\x8a\x8e\x65\x5b\x0f\xd5\xa5\x2f\x4c\xac\x38\xff\x5e\xee" "\xeb\x70\xb2\xc7\xeb\x70\x6b\xc7\xb2\x83\x7e\x1d\x8e\x75\x3e\xb8\xc6\xc6" "\xbc\x20\x57\x1e\xd3\xc5\x6b\xe3\x5d\xcd\x9d\x3e\x79\x69\x24\x5b\xe5\x35" "\x96\x3f\x3f\x77\x5e\xf9\xeb\x30\x3d\xee\x96\xd7\xe1\x58\xcb\xeb\xb0\xeb" "\xf7\x94\x2e\xaf\xc3\xb1\x35\xbc\x0e\x9b\xcb\x9c\xb9\x73\x6d\x3f\xb3\x8c" "\xb5\xfc\xd7\x6d\x1b\x56\xff\x5e\x70\x65\xc7\xe0\xd6\x96\x63\xb0\xf3\xe7" "\x91\xce\x63\x70\xd0\x3f\x8f\x94\xe5\x18\x9c\x0c\xc7\xc5\xf7\xee\x5c\xfd" "\x7b\xc1\xf6\xb0\xbd\x8f\x4f\xaf\xf7\xe7\x91\xd1\x15\xc7\x60\x7a\xb8\xe1" "\xdc\xd3\xbc\x24\xfd\xbc\x3f\xb9\x3f\x1f\xdd\x8e\xcb\x5b\x9a\x57\x5c\x37" "\x91\x9d\x5f\x9c\x3f\x7b\xcf\x23\x47\xce\x9d\x3b\xbb\x2b\x0b\x63\x43\xbc" "\xa8\xe5\x58\xe9\x3c\x5e\xb7\xb4\x3c\xa6\x6c\xc5\xf1\x3a\xb2\xee\xe3\xf5" "\xe0\xc2\x4b\x1f\xbf\xa5\xcb\xe5\x5b\xc3\xbe\x9a\xbc\xbb\xf9\xc7\xe4\xaa" "\xcf\x55\x73\x99\x7b\xef\xe9\xfd\x5c\xe5\xdf\xdd\xba\xef\xcf\xb6\x4b\x77" "\x67\x61\x0c\xd8\x46\xef\xcf\x6e\xdf\xcd\x9b\xfb\x73\x22\xcb\x3e\xf7\xcd" "\x8f\x3d\xf4\xf5\x47\x3f\xf7\xda\x55\xf7\x67\x33\x6f\x7e\x7c\xe6\xca\x7f" "\x16\x4f\xb9\xb4\xe5\xfc\x3b\xbe\xca\xf9\x37\xe6\xfe\x5f\x16\xeb\x4b\x77" "\xf5\xd8\xe8\xf8\x58\xf1\xfa\x1d\x4d\x7b\x67\xbc\xed\x7c\xdc\xfe\x54\x8d" "\xe5\xe7\xae\x46\xbe\xee\xe7\x66\xd6\x76\x3e\x1e\x0f\xff\x6d\xf4\xf9\xf8" "\xc6\x1e\xe7\xe3\x6d\x1d\xcb\x0e\xfa\x7c\x3c\xde\xf9\xe0\xe2\xf9\xb8\xd1" "\xef\xb7\x1d\x57\xa6\xf3\xf9\x9c\x0c\xc7\xc9\x89\xd9\xde\xe7\xe3\xe6\x32" "\xdb\x76\xaf\xf7\x98\x1c\xeb\x79\x3e\xbe\x2d\xcc\x46\xd8\xff\xaf\x0c\x49" "\x21\xe5\xa2\x96\x63\x67\xb5\xe3\x36\xad\x6b\x6c\x6c\x3c\x3c\xae\xb1\xb8" "\x86\xf6\xe3\x74\x4f\xdb\xf2\xe3\x21\x9b\x35\xd7\xf5\xe4\xee\xf0\x43\x61" "\xda\xca\xb5\x1d\xa7\x77\xdc\x56\x2c\x3f\xda\x72\xbb\x68\xa3\x8e\xd3\xa9" "\x8e\x65\x07\x7d\x9c\xa6\xdf\x7d\xad\x76\x9c\x36\xfa\xfd\xf6\xed\xf2\x74" "\x3e\x9f\x93\xe1\xb8\xb8\x71\x4f\xef\xe3\xb4\xb9\xcc\xd3\xf7\x5e\xf9\xb9" "\x73\x73\xfc\x6b\xcb\xb9\x73\xa2\xdf\x31\x38\x3e\x3a\xd1\xdc\xe6\xf1\x74" "\x10\xe6\xe7\xfb\x6c\x69\x73\x3c\x06\xef\xc9\x8e\x66\xa7\xb3\x13\xd9\x5c" "\x7e\xed\x44\x7e\x3c\x35\xf2\x75\x4d\xdf\xb7\xb6\x73\xe5\x44\xf8\x6f\xa3" "\xcf\x95\xdb\x7a\x1c\x83\x77\x74\x2c\x3b\xe8\x63\x30\x7d\x1f\x5b\xed\xd8" "\x6b\x8c\xad\x7c\xf0\x03\xd0\xf9\x7c\x4e\x86\xe3\xe2\x89\xfb\x7a\x1f\x83" "\xcd\x65\x5e\xb7\x6f\xb0\x3f\xbb\xde\x11\x2e\x49\xcb\xb4\xfc\xec\xda\xf9" "\xfb\xb5\xd5\x7e\xe7\x75\x4b\xc7\x6e\xba\x5a\xc7\xca\x58\xd8\xce\x6f\xee" "\xeb\xfd\xbb\xd9\xe6\x32\x27\xf6\xaf\x37\x67\xf6\xde\x4f\x77\x85\x4b\xae" "\xeb\xb2\x9f\x3a\x5f\xbf\xab\xbd\xa6\xe6\xb2\x8d\xd9\x4f\xdb\xc2\x76\x3e" "\xbb\x7f\xf5\xfd\xd4\xdc\x9e\xe6\x32\x9f\x3d\xb0\xc6\xe3\xe9\x60\x96\x65" "\x17\x3e\xf4\x40\xfe\xfb\xde\xf0\xef\x2b\x17\xce\x7f\xf7\x2b\x6d\xff\xee" "\xd2\xed\xdf\x74\x2e\x7c\xe8\x81\x1f\x3f\xff\xd8\x3f\xad\x67\xfb\x01\x18" "\x7e\xbf\x2c\xc6\x96\xe2\x7b\x5d\xcb\xbf\x4c\xad\xe5\xdf\xff\x01\x00\x00" "\x80\xa1\x10\x73\xff\x48\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\x7f\xfc" "\xbf\xc2\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xb1\x30\x93\x2a\xe4\xff" "\x3f\xee\xbf\xc8\xb6\xd7\x3d\xbb\xf0\xcb\x0b\x59\x6a\xe6\x2f\x05\xf1\xfa" "\xb4\x1b\x1e\x2c\x96\x8b\x1d\xd7\xd9\xf0\xf5\xd4\xd2\xb2\xe6\xe5\x0f\x7c" "\x69\xfe\x7f\xfe\xf1\xc2\xda\x36\x6f\x24\xcb\xb2\x9f\x3f\xf8\x47\x5d\x97" "\xdf\xf6\x60\xdc\xae\xc2\x54\xd8\xce\xa7\x5e\xdf\x7e\xf9\x0a\x5f\xb9\x7b" "\x4d\xeb\x3e\xfc\xf0\x85\xb4\xde\xd6\xfe\xfa\xe7\xc3\xfd\xc7\xc7\xb3\xd6" "\xc3\xa0\x5b\x05\x77\x36\xcb\xb2\xaf\xdd\xf0\xe9\x7c\x3d\x53\xef\xbd\x94" "\xcf\xa7\x1f\x3c\x9c\xcf\x87\x2e\x3e\xfe\x58\x73\x99\xe7\x0e\x14\x5f\xc7" "\xdb\x3f\xf3\xa2\x62\xf9\xbf\x0a\xe5\xdf\x83\xc7\x8e\xb4\xdd\xfe\x99\xb0" "\x1f\x7e\x18\xe6\xec\x9b\xbb\xef\x8f\x78\xbb\x2f\x5f\x7a\xe5\xf6\x7d\xef" "\x5e\x5e\x5f\xbc\x5d\x63\xc7\xf5\xf9\xc3\x7e\xe2\x7d\xc5\xfd\xc6\xf7\xc9" "\xf9\xcc\x63\xc5\xf2\x71\x3f\xaf\xb6\xfd\x5f\xff\xd4\x93\x5f\x6e\x2e\xff" "\xc8\xcb\xbb\x6f\xff\x85\x91\xee\xdb\xff\x64\xb8\xdf\x2f\x85\xf9\xbf\x2f" "\x29\x96\x6f\x7d\x0e\x9a\x5f\xc7\xdb\x7d\x22\x6c\x7f\x5c\x5f\xbc\xdd\x3d" "\x5f\xfc\x46\xd7\xed\x7f\xea\x93\xc5\xf2\x67\xde\x50\x2c\x77\x38\xcc\xb8" "\xfe\x3b\xc2\xd7\x3b\xdf\xf0\xec\x42\xeb\xfe\x7a\xa4\x71\xa4\xed\x71\x65" "\x6f\x2c\x96\x8b\xeb\x9f\xfd\xee\x9f\xe6\xd7\xc7\xfb\x8b\xf7\xdf\xb9\xfd" "\x93\x87\x2e\xb5\xed\x8f\xce\xe3\xe3\xe9\x7f\x2f\xee\x67\xa6\x63\xf9\x78" "\x79\x5c\x4f\xf4\x0f\x1d\xeb\x6f\xde\x4f\xeb\xf1\x19\xd7\xff\xe4\x9f\x1c" "\x6e\xdb\xcf\xfd\xd6\xff\xd4\x43\xcf\xbc\xa4\x79\xbf\x9d\xeb\xbf\xab\x63" "\xb9\x33\x1f\xba\x33\x5f\xff\xf2\xfd\xb5\xbf\x63\xd3\x5f\x7f\xe2\xd3\x5d" "\xd7\x17\xb7\xe7\xe0\xdf\x9f\x69\x7b\x3c\x07\xdf\x11\x5e\xc7\x61\xfd\x4f" "\xbc\x2f\x1c\x8f\xe1\xfa\xff\x7b\xaa\xb8\xbf\xce\x77\x57\x38\xfc\x8e\xf6" "\xf3\x4f\x5c\xfe\xf3\x5b\x2f\xb4\x3d\x9e\xe8\x4d\x3f\x2d\xd6\xff\xd4\xab" "\x8f\xe7\x73\xd3\xe4\xe6\x2d\xd7\x3d\xef\xf9\xd7\x5f\x7c\x59\x73\xdf\x65" "\xd9\x77\x36\x15\xf7\xd7\x6f\xfd\xc7\xff\xe6\x74\xdb\xf6\x7f\xe1\xa6\x62" "\x7f\xc4\xeb\x63\x47\xbf\x73\xfd\xab\x89\xeb\x3f\xfb\xe1\xe9\x53\xa7\x17" "\xcf\x2f\xcc\xa5\xbd\xfa\xe8\x0d\xf9\x7b\xe7\xbc\xa5\xd8\x9e\xb8\xbd\x37" "\x84\x73\x6b\xe7\xd7\x87\x4e\x9f\x7b\xff\xfc\xd9\xa9\xd9\xa9\xd9\x2c\x9b" "\xaa\xee\x5b\xe8\x5d\xb6\x2f\x86\xf9\xe3\x62\x5c\xec\xbd\xf4\xd2\x8a\x33" "\xe8\x9d\x0f\x87\xe7\xf3\x96\xbf\xfc\xda\x96\xdb\xff\xed\x53\xf1\xf2\xff" "\x78\x57\x71\xf9\xa5\x37\x17\xdf\xb7\x5e\x11\x96\xfb\x4c\xb8\x7c\x6b\x78" "\xfe\xd6\xb7\xfe\x95\x9e\xb8\xf5\xa6\xfc\xf5\xdd\x78\x3a\x6c\xe1\xd2\xca" "\xf7\x0b\xbe\x12\xdb\x77\xfe\xf7\xfe\x35\x2d\x18\x1e\x7f\xe7\xcf\x05\xf1" "\x78\x3f\xf3\xe2\xf7\xe7\xfb\xa1\x79\x5d\xfe\x7d\x23\xbe\xae\xaf\x70\xfb" "\xbf\x3f\x57\xdc\xcf\x57\xc3\x7e\x5d\x0a\xef\xcc\xbc\xe3\xa6\xe5\xf5\xb5" "\x2e\x1f\xdf\x1b\xe1\xd2\x3b\x8b\xd7\xfb\x15\xef\xbf\x70\x9a\x8b\xcf\xeb" "\xdf\x85\xe7\xfb\xad\x3f\x2c\xee\x3f\x6e\x57\x7c\xbc\xdf\x0f\x3f\xc7\x7c" "\x63\x5b\xfb\xf9\x2e\x1e\x1f\x5f\xbd\x30\xd2\x79\xff\xf9\xbb\x78\x5c\x0c" "\xe7\x93\xec\x62\x71\x7d\x5c\x2a\xee\xef\x4b\xcf\xdd\xd4\x75\xf3\xe2\xfb" "\x90\x64\x17\x6f\xce\xbf\xfe\xb3\x74\x3f\x37\xaf\xeb\x61\xae\x66\xf1\x23" "\x8b\x33\x27\x16\x4e\x9d\x7f\x64\xe6\xdc\xfc\xe2\xb9\x99\xc5\x8f\x7c\xf4" "\xd0\xc9\xd3\xe7\x4f\x9d\x3b\x94\xbf\x97\xe7\xa1\x0f\xf4\xbb\xfd\xf2\xf9" "\x69\x4b\x7e\x7e\x9a\x9b\xdf\x7b\x6f\x96\x9f\xad\x4e\x17\xe3\x2a\xbb\xd6" "\xdb\x7f\xe6\xe1\xa3\x73\xfb\x66\x6f\x9f\x9b\x3f\x76\xe4\xfc\xb1\x73\x0f" "\x9f\x99\x3f\x7b\xfc\xe8\xe2\xe2\xd1\xf9\xb9\xc5\xdb\x8f\x1c\x3b\x36\xff" "\xe1\x7e\xb7\x5f\x98\xbb\x7f\xd7\xee\x03\x7b\xf6\xed\x9e\x3e\xbe\x30\x77" "\xff\xfe\x03\x07\xf6\x1c\x98\x5e\x38\x75\xba\xb9\x19\xc5\x46\xf5\xb1\x77" "\xf6\x83\xd3\xa7\xce\x1e\xca\x6f\xb2\x78\xff\xbd\x07\x76\xdd\x77\xdf\xbd" "\xb3\xd3\x27\x4f\xcf\xcd\xdf\xbf\x6f\x76\x76\xfa\x7c\xbf\xdb\xe7\xdf\x9b" "\xa6\x9b\xb7\xfe\xc3\xe9\xb3\xf3\x27\x8e\x9c\x5b\x38\x39\x3f\xbd\xb8\xf0" "\xd1\xf9\xfb\x77\x1d\xd8\xbb\x77\x77\xdf\x77\x03\x3c\x79\xe6\xd8\xe2\xd4" "\xcc\xd9\xf3\xa7\x66\xce\x2f\xce\x9f\x9d\x29\x1e\xcb\xd4\xb9\xfc\xe2\xe6" "\xf7\xbe\x7e\xb7\xa7\x9a\x16\xff\xb3\xf8\x79\xb6\x53\xa3\x78\x23\xbe\xec" "\xed\x77\xed\x4d\xef\xcf\xda\xf4\xa5\x8f\xad\x7a\x57\xc5\x22\x1d\x6f\x20" "\xfa\x6c\x78\x2f\x9a\x6f\xbd\xe0\xcc\xfe\xb5\x7c\x1d\x73\xff\x78\x98\x49" "\x15\xf2\x3f\x00\x00\x00\x90\x8b\xb9\x7f\x22\xcc\x44\xfe\x07\x00\x00\x80" "\xca\x88\xb9\x7f\x53\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x64\x98" "\xe9\x7f\x09\xa8\x49\xfe\xaf\x5c\xff\x7f\xdb\x85\x35\xad\x5f\xff\x5f\xff" "\xbf\x75\x7f\xe9\xff\xd7\xac\xff\xff\xce\xb2\xf5\xff\x8b\xf3\x85\xfe\xff" "\x60\x5c\x69\xff\x5e\xff\x3f\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x67" "\x00\xca\xd6\xff\x8f\xb9\x7f\x73\x96\xf9\xf7\x7f\x00\x00\x00\xa8\xa8\x98" "\xfb\xb7\x84\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x5f\x17\x66\x22\xff" "\x03\x00\x00\x40\x65\xc4\xdc\xff\xbc\x30\x93\x9a\xe4\x7f\xfd\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\xff\xee\xeb\xd7\xff\x1f\x4e\xfa\xff\xbd\xe9\xff\xf7" "\xa1\xff\x3f\x93\xd5\xab\xff\x7f\x71\x90\xdb\x7f\x0d\xfa\xff\x9b\x5b\xbf" "\xd0\xff\xa7\x8c\xca\xd6\xff\x8f\xb9\xff\xf9\x61\x26\x35\xc9\xff\x00\x00" "\x00\x50\x07\x31\xf7\x5f\x1f\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f" "\x43\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xd6\x30\x93\x9a\xe4\x7f" "\xfd\xff\x2b\xea\xff\xa7\xce\x95\xfe\x7f\xfb\xf6\xeb\xff\xb7\xd3\xff\x0f" "\xc7\x83\xfe\xbf\xfe\xff\x06\xd0\xff\xef\x4d\xff\xbf\x0f\xfd\x7f\x9f\xff" "\x3f\x5c\xfd\xff\x36\xfa\xff\x94\x51\xd9\xfa\xff\x31\xf7\xbf\x20\xcc\xa4" "\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\x17\x86\x99\xc8\xff\x00\x00\x00" "\x50\x3e\x63\x97\x77\xb3\x98\xfb\x5f\x14\x66\xb2\x22\xff\x5f\xe6\x0a\x00" "\x00\x00\x80\x6b\x2e\xe6\xfe\x1b\xb3\x8e\x22\x78\x4d\xfe\xfd\x5f\xff\xdf" "\xe7\xff\xeb\xff\xeb\xff\xeb\xff\x77\x5f\xff\xda\xfb\xff\xa3\x99\xfe\x7f" "\x79\xe8\xff\xf7\xa6\xff\xdf\x87\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x03\x55" "\xb6\xfe\x7f\x9e\xfb\xb3\xc9\xec\xc5\x61\x26\x35\xc9\xff\x00\x00\x00\x50" "\x07\x31\xf7\xdf\x14\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\x2b\x61" "\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xdb\xc2\x4c\x6a\x92\xff\xf5\xff" "\x2b\xd3\xff\xff\x59\xeb\x53\xa7\xff\xaf\xff\xdf\x6b\xfd\xfa\xff\x3e\xff" "\xbf\xca\xf4\xff\x7b\xd3\xff\xef\x43\xff\x5f\xff\x5f\xff\x5f\xff\x9f\x81" "\x2a\x5b\xff\x3f\xe6\xfe\x9b\xc3\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62" "\xee\xbf\x25\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x57\xc3\x4c\xe4" "\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xb7\x87\x99\xd4\x24\xff\xeb\xff\x97\xbc" "\xff\x1f\x9b\xa3\x3e\xff\x5f\xff\x5f\xff\xbf\x94\xfd\xff\x49\xfd\xff\xd2" "\xa9\x59\xff\x7f\xa9\xdb\xf7\x9f\x5e\xf4\xff\xfb\xd0\xff\xd7\xff\xd7\xff" "\xd7\xff\x67\xa0\xca\xd6\xff\x8f\xb9\xff\x25\x61\x26\x35\xc9\xff\x00\x00" "\x00\x50\x07\x31\xf7\xbf\x34\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff" "\x65\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x53\x61\x26\x35\xc9\xff" "\xeb\xe9\xff\x37\x2e\xea\xff\xaf\xe6\x2a\x7f\xfe\xff\xc4\x1a\x3e\xff\xbf" "\x8d\xfe\xbf\xfe\x7f\xaf\xf5\xeb\xff\xfb\xfc\xff\x2a\xab\x59\xff\x7f\xdd" "\xf4\xff\xfb\xd0\xff\xd7\xff\xd7\xff\xd7\xff\x67\xa0\xca\xd6\xff\x8f\xb9" "\xff\xd6\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\x77\x84\x99\xc8" "\xff\x00\x00\x00\x50\x19\x31\xf7\xdf\x16\x66\x22\xff\x03\x00\x00\x40\x65" "\xc4\xdc\xbf\x33\xcc\xa4\x26\xf9\xdf\xe7\xff\x0f\x45\xff\x3f\xd3\xff\xd7" "\xff\xd7\xff\xd7\xff\xd7\xff\x5f\x1b\xfd\xff\xde\xf4\xff\xfb\xd0\xff\xd7" "\xff\xd7\xff\xd7\xff\x67\xa0\xca\xd6\xff\x8f\xb9\xff\xe5\x61\x26\x35\xc9" "\xff\x00\x00\x00\x50\x07\x31\xf7\xdf\x1e\x66\x22\xff\x03\x00\x00\x40\x65" "\xc4\xdc\xff\x8a\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x3b\xc2\x4c" "\x6a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xbb\xaf\x5f\xff\x7f" "\x38\xe9\xff\xf7\xa6\xff\xdf\x87\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x83\xf2" "\x2f\x59\x09\xfb\xff\x31\xf7\xbf\x32\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea" "\x20\xe6\xfe\x3b\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xef\x0a\x33" "\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x9f\x0e\x33\xa9\x49\xfe\xd7\xff\xd7" "\xff\xd7\xff\xd7\xff\xd7\xff\xef\xbe\x7e\xfd\xff\xe1\xa4\xff\xdf\x9b\xfe" "\x7f\x1f\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x0c\x54\xd9\xfa\xff\x31\xf7\xdf" "\x1d\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73\xff\x3d\x61\x26\xf2\x3f" "\x00\x00\x00\x54\x46\xcc\xfd\x33\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc" "\xfd\xb3\x61\x26\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xeb\xea\xff" "\xbf\x6c\xf9\x7e\xf5\xff\x0b\xfa\xff\xe5\xa2\xff\xdf\x9b\xfe\x7f\x1f\xfa" "\xff\xfa\xff\xd7\xbc\xff\x3f\xae\xff\x4f\xa5\x94\xad\xff\x1f\x73\xff\xae" "\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\x77\x87\x99\xc8\xff\x00" "\x00\x00\x50\x19\x31\xf7\xef\x09\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee" "\xbf\x37\xcc\xa4\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xdf\xe7\xff\x77" "\x5f\xbf\xfe\xff\x70\xd2\xff\xef\x6d\xf0\xfd\xff\xf8\x10\xf5\xff\xf5\xff" "\xf5\xff\x7d\xfe\xbf\xfe\x3f\x2b\x95\xad\xff\x1f\x73\xff\x7d\x61\x26\x35" "\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\xef\x0d\x33\x91\xff\x01\x00\x00\xa0" "\x32\x62\xee\xdf\x17\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x3f\xcc" "\xa4\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\xfb\xfa\xf5\xff" "\x87\x93\xfe\x7f\x6f\x3e\xff\xbf\x0f\xfd\x7f\xfd\xff\x21\xee\xff\x37\x8f" "\x2d\xfd\x7f\xca\xa6\x6c\xfd\xff\x98\xfb\x0f\x84\x99\xd4\x24\xff\x03\x00" "\x00\x40\x1d\xc4\xdc\xff\xaa\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe" "\x5f\x0b\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xff\xf5\x30\xb3\x2c\xdb" "\x9c\xff\xb5\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\xec\xfd\xff\x09" "\xfd\x7f\xfd\xff\x75\xd0\xff\xef\x4d\xff\xbf\x0f\xfd\x7f\xfd\xff\x21\xee" "\xff\xfb\xfc\x7f\xca\xa8\x6c\xfd\xff\x98\xfb\xef\x0f\x33\xa9\x49\xfe\x07" "\x00\x00\x80\x3a\x88\xb9\xff\x37\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98" "\xfb\x5f\x1d\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x30\xcc\xa4\x26" "\xf9\x5f\xff\x7f\x83\xfa\xff\xf1\x42\xfd\x7f\xfd\x7f\xfd\x7f\x9f\xff\xaf" "\xff\x7f\x55\xe9\xff\xf7\xa6\xff\xdf\x87\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f" "\x03\x55\xb6\xfe\x7f\xcc\xfd\xaf\x09\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a" "\x88\xb9\xff\x81\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xd7\x86\x99" "\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xbf\x2e\xcc\xa4\x26\xf9\x5f\xff\xdf" "\xe7\xff\x5f\xfb\xfe\xff\x78\xdb\xb6\xeb\xff\x2f\xdf\x4e\xff\xbf\xa0\xff" "\xaf\xff\xbf\x1e\xfa\xff\xbd\xe9\xff\xf7\xa1\xff\xaf\xff\xaf\xff\xaf\xff" "\xcf\x40\x95\xad\xff\x1f\x73\xff\xeb\xc3\x4c\x6a\x92\xff\x01\x00\x00\xa0" "\x0e\x62\xee\x7f\x43\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\x7f\xed\xfb\xff\x3e\xff\x5f\xff\xbf\xa0\xff\xaf\xff\x3f\x08\xfa" "\xff\xbd\xe9\xff\xf7\xa1\xff\xaf\xff\xaf\xff\xaf\xff\xcf\x40\x95\xad\xff" "\x1f\x73\xff\x6f\x86\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\xff\x60" "\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x9b\xc3\x4c\xe4\x7f\x00\x00" "\x00\xa8\x8c\x98\xfb\xdf\x12\x66\x52\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf" "\xff\xaf\xff\xdf\x7d\xfd\xfa\xff\xc3\x49\xff\xbf\xb7\x21\xeb\xff\xff\xe2" "\xfa\x70\xb9\xfe\x7f\x41\xff\xbf\xdc\xdb\xbf\xde\xfe\xff\x58\xc7\xd7\x57" "\xa5\xff\xff\x83\xd5\xfa\xff\x4b\x9b\x3a\x6f\xaf\xff\xcf\xd5\x50\xb6\xfe" "\x7f\xcc\xfd\x6f\x0d\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\xff\x6d" "\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x6f\x0f\x33\x91\xff\x01\x00" "\x00\xa0\x32\x62\xee\xff\xad\x30\x93\x9a\xe4\x7f\xfd\xff\xe6\x76\x2c\xb7" "\x97\xf5\xff\xf5\xff\xf3\x0b\xf4\xff\xf5\xff\xf5\xff\x87\x96\xfe\x7f\x6f" "\x43\xd6\xff\xf7\xf9\xff\x1d\xf4\xff\xcb\xbd\xfd\x3e\xff\x5f\xff\x9f\x95" "\xca\xd6\xff\x8f\xb9\xff\x1d\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31" "\xf7\x3f\x14\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xce\x30\x13\xf9" "\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x77\x85\x99\xd4\x24\xff\xeb\xff\xfb\xfc" "\x7f\xfd\x7f\xfd\x7f\xfd\xff\xee\xeb\xd7\xff\x1f\x4e\xfa\xff\xbd\xe9\xff" "\xf7\xa1\xff\xaf\xff\x5f\xb6\xfe\xff\x7f\xe9\xff\x33\xdc\xca\xd6\xff\x8f" "\xb9\xff\xe1\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\xdf\x1d\x66" "\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xdb\x61\x26\xf2\x3f\x00\x00\x00" "\x54\x46\xcc\xfd\xef\x09\x33\xa9\x49\xfe\xd7\xff\x1f\x96\xfe\xff\x94\xfe" "\xff\x3a\xfb\xff\x13\xe1\x32\xfd\x7f\xfd\x7f\xfd\xff\x7a\xd1\xff\xef\x4d" "\xff\xbf\x0f\xfd\x7f\xfd\xff\xb2\xf5\xff\x7d\xfe\x3f\x43\xae\x6c\xfd\xff" "\x98\xfb\xdf\x1b\x66\xb2\xf6\xfc\x3f\xb9\xe6\x25\x01\x00\x00\x80\x6b\x22" "\xe6\xfe\xdf\x09\x33\xa9\xc9\xbf\xff\x03\x00\x00\x40\x1d\xc4\xdc\xff\xbb" "\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xbf\x17\x66\x52\x93\xfc\xaf" "\xff\x3f\x2c\xfd\x7f\x9f\xff\x9f\xf9\xfc\x7f\xfd\xff\x8e\xc7\xa3\xff\xaf" "\xff\xdf\xcd\xc6\xf5\xff\xe3\x99\x47\xff\x5f\xff\x5f\xff\x3f\xd2\xff\xd7" "\xff\xd7\xff\xa7\x53\xd9\xfa\xff\x31\xf7\xff\x7e\x98\x49\x4d\xf2\x3f\x00" "\x00\x00\xd4\x41\xcc\xfd\xef\x0b\x33\x91\xff\x01\x00\x00\x60\x28\x74\xfb" "\x7f\xb2\x3b\xc5\xdc\x7f\x28\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff" "\x70\x98\x49\x4d\xf2\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x49\xfb\xff\x7f\xb1\xe3" "\x5f\xbf\xf7\xed\xb7\x1d\xde\xa5\xff\xaf\xff\xaf\xff\xbf\x2e\x1b\xfa\xf9" "\xff\xcd\x17\xbf\xcf\xff\xd7\xff\xd7\xff\x4f\xf4\xff\xf5\xff\xf5\xff\xe9" "\x54\xb6\xfe\x7f\xcc\xfd\x47\xc2\x4c\x96\x83\xdf\x5b\x7c\xc0\x3f\x00\x00" "\x00\x0c\xb7\x98\xfb\xff\x20\xcc\xa4\x26\xff\xfe\x0f\x00\x00\x00\x75\x10" "\x73\xff\xd1\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xb9\x30\x93\x9a" "\xe4\x7f\xfd\x7f\xfd\x7f\xfd\xff\x92\xf6\xff\x87\xf8\xf3\xff\xe3\xfe\x18" "\xa6\xfe\xff\xf4\xa6\x21\xea\xff\xc7\x93\xae\xfe\x7f\x57\x1b\xda\xff\x7f" "\xf7\x72\x4f\x5c\xff\x7f\xbd\xfd\xff\x89\xae\x97\x76\xf6\xff\x1b\xfa\xff" "\x6d\xf4\xff\xd7\xbd\xfd\xdf\xca\xb2\x4c\xff\x5f\xff\x9f\x6b\xa8\x6c\xfd" "\xff\x98\xfb\xe7\xc3\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x42\xee\x1f\x39" "\x56\xcc\xe5\x2b\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x8f\x87\x99\xc8\xff" "\x00\x00\x00\x50\x19\x31\xf7\xbf\x3f\xcc\xa4\x26\xf9\x5f\xff\x5f\xff\x5f" "\xff\x5f\xff\xdf\xe7\xff\x77\x5f\x7f\x69\xfb\xff\x3e\xff\xbf\x27\xfd\xff" "\xde\xca\xd3\xff\xef\xce\xe7\xff\xeb\xff\x0f\xf3\xf6\xeb\xff\xeb\xff\xb3" "\x52\xd9\xfa\xff\x31\xf7\x2f\x84\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4" "\xdc\xff\x81\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x0f\x86\x99\xc8" "\xff\x00\x00\x00\x50\x19\x31\xf7\x9f\x08\x33\xa9\x49\xfe\xd7\xff\xd7\xff" "\xd7\xff\xd7\xff\xd7\xff\xef\xbe\x7e\xfd\xff\xe1\xa4\xff\xdf\x9b\xfe\x7f" "\x1f\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x0c\x54\xd9\xfa\xff\x31\xf7\x9f\x0c" "\x33\xa9\x49\xfe\x07\x00\xf8\x7f\xf6\xee\xa3\xcb\xb2\xba\xdc\xe3\xf8\x29" "\x6e\x71\xe9\x5e\x4c\x9c\x39\x70\xa0\x73\x5f\x02\x03\x19\xeb\x0b\x70\xc0" "\xc4\x81\xae\xe5\x72\x00\x2a\xe6\x44\x63\x8e\x98\x73\xc0\x2c\x06\x0c\xa0" "\x88\x09\x73\x02\x13\x8a\x59\x54\xcc\x39\x60\x46\x5d\xed\x82\x7a\x9e\xa7" "\xab\xfa\xec\xda\xa7\xaa\xfb\x54\xd5\xde\xff\xff\xe7\x33\xb8\x0f\x14\xf4" "\xdd\x07\x57\x2f\xe0\x47\xf1\x65\x03\x40\x0f\x72\xf7\x5f\x1c\xb7\xd8\xff" "\x00\x00\x00\xd0\x8c\xdc\xfd\x97\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77" "\xff\x43\xe3\x96\x4e\xf6\xbf\xfe\x5f\xff\xdf\x6c\xff\x7f\x1f\xfd\xff\x6e" "\xcf\xd7\xff\xeb\xff\x5b\xa6\xff\x1f\xa7\xff\x5f\x41\xff\xaf\xff\xd7\xff" "\xeb\xff\x59\xab\xa9\xf5\xff\xb9\xfb\x1f\x16\xb7\x74\xb2\xff\x01\x00\x00" "\xa0\x07\xb9\xfb\x1f\x1e\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x97\xc6" "\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x23\xe2\x96\x4e\xf6\xff\x69\xfd" "\xff\xc6\xa2\xcf\xfe\x3f\x33\x5e\xfd\x7f\x4b\xfd\xbf\xf7\xff\xef\xfa\x7c" "\xfd\xbf\xfe\xbf\x65\x87\xdb\xff\x5f\x7e\xe7\x9f\xf9\xf4\xff\xfa\x7f\xfd" "\x7f\xd0\xff\xeb\xff\xf5\xff\x9c\x6e\x6a\xfd\x7f\xee\xfe\x47\xc6\x2d\x9d" "\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x47\xc5\x2d\xf6\x3f\x00\x00\x00\x34" "\x23\x77\xff\xa3\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x31\x71\x4b" "\x27\xfb\xdf\xfb\xff\xbd\xff\x5f\xff\xaf\xff\xd7\xff\x0f\x3f\x5f\xff\x3f" "\x4f\xde\xff\x3f\xae\xa7\xfe\xff\xd2\x5b\xce\xbf\xf8\xf6\xeb\xee\x71\xfd" "\x7e\x9e\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xac\xd7\xd4\xfa\xff\xdc\xfd\x8f" "\x8d\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x8f\x8b\x5b\xec\x7f\x00" "\x00\x00\x68\x46\xee\xfe\xc7\xc7\x2d\xf6\x3f\x00\x00\x00\xcc\xd0\xf1\xc1" "\xaf\xe6\xee\x7f\x42\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xd1\xff\x1f" "\xd3\xff\xeb\xff\xf5\xff\x2d\xd0\xff\x8f\xeb\xa9\xff\x3f\x93\xe7\xeb\xff" "\xf5\xff\xfa\x7f\xfd\x3f\xeb\x35\xb5\xfe\x3f\x77\xff\x13\xe3\x96\x4e\xf6" "\x3f\x00\x00\x00\xf4\x20\x77\xff\x93\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x6b" "\xe8\x5f\xc4\x1e\x91\xbb\xff\xb2\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee" "\x3f\x11\xb7\x74\xb2\xff\xf5\xff\x07\xdf\xff\xff\x57\xff\x3f\x8f\xfe\xdf" "\xfb\xff\xf5\xff\xfa\xff\x26\xe8\xff\xc7\xe9\xff\x57\xd0\xff\xeb\xff\xf5" "\xff\xfa\x7f\xd6\x6a\x6a\xfd\x7f\xee\xfe\xcb\xe3\x96\x4e\xf6\x3f\x00\x00" "\x00\xf4\x20\x77\xff\x93\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x29" "\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xd4\xb8\xa5\x93\xfd\xaf\xff" "\xf7\xfe\x7f\xfd\xbf\xfe\x5f\xff\x3f\xfc\x7c\xfd\xff\x3c\xe9\xff\xc7\xe9" "\xff\x57\xd0\xff\x9f\x6d\x3f\x7f\xae\xfe\x5f\xff\xaf\xff\x67\xbb\x7d\xf6" "\xff\x77\x8c\xfc\x69\x7b\x2d\xfd\x7f\xee\xfe\xa7\xc5\x2d\x9d\xec\x7f\x00" "\x00\x00\xe8\x41\xee\xfe\xa7\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff" "\x33\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x99\x71\x4b\x27\xfb\x5f" "\xff\xaf\xff\xd7\xff\xeb\xff\xcf\xb8\xff\x5f\xfe\xa9\x77\x17\xfd\xff\x30" "\xfd\xff\xe1\xd0\xff\x8f\x9b\x4c\xff\xbf\xb1\x39\xf8\x65\xfd\xff\xec\xfb" "\x7f\xef\xff\xd7\xff\xeb\xff\xd9\x61\x6a\xef\xff\xcf\xdd\xff\xac\xb8\xa5" "\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xec\xb8\x65\x64\xff\xef\xfb\x1f" "\xe6\x03\x00\x00\x00\x47\x2a\x77\xff\x73\xe2\x16\xdf\xff\x07\x00\x00\x80" "\xd9\xcb\xea\x2c\x77\xff\x73\xe3\x96\x4e\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7" "\xff\x7b\xff\xff\xf0\xf3\xc7\xfa\xff\xeb\xb7\x7d\x3e\xfd\xff\xb4\xe8\xff" "\xc7\x4d\xa6\xff\xdf\x85\xfe\x5f\xff\x3f\xe7\xcf\xaf\xff\xd7\xff\xb3\x6c" "\x6a\xfd\x7f\xee\xfe\xe7\xc5\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe" "\x2b\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xf9\x71\x8b\xfd\x0f\x00" "\x00\x00\xcd\xc8\xdd\xff\x82\xb8\xa5\x93\xfd\x3f\xdc\xff\x9f\xfa\xed\xfa" "\xff\xbd\xd1\xff\xef\xfc\xfc\xfa\xff\xe1\x9f\x1f\xeb\xea\xff\xf3\xff\xa3" "\xfe\x7f\xb4\xff\xbf\xd0\xfb\xff\xfb\xa4\xff\x1f\xa7\xff\x5f\x41\xff\xaf" "\xff\xd7\xff\xef\xd6\xff\x1f\x5f\xf5\xe3\xf5\xff\x0c\x99\x5a\xff\x9f\xbb" "\xff\x85\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x45\x71\x8b\xfd" "\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xe2\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4" "\xee\x7f\x49\xdc\xd2\xc9\xfe\xf7\xfe\x7f\xfd\xbf\xfe\x7f\x7e\xfd\xbf\xf7" "\xff\x6f\x39\xca\xf7\xff\x2f\x0e\xbd\xff\xdf\xd4\xff\xef\x91\xfe\x7f\x9c" "\xfe\x7f\x05\xfd\xbf\xfe\x5f\xff\x3f\xfe\xfe\xff\x91\xff\x0a\x80\xfe\x9f" "\x21\x53\xeb\xff\x73\xf7\xbf\x34\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72" "\xf7\xbf\x2c\x6e\xb1\xff\x01\x00\x00\x60\x1e\xb6\xff\xbb\x03\xa7\xff\x0b" "\xa5\x21\x77\xff\xcb\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x15\x71" "\x4b\x3b\xfb\x7f\xf4\x5d\x9d\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x1f\x7e" "\xfe\xb4\xfa\x7f\xef\xff\xdf\x2b\xfd\xff\x38\xfd\xff\x0a\xfa\xff\x83\xe8" "\xe7\x37\x1b\xeb\xff\xaf\xdc\xed\xc7\x4f\xa1\xff\xbf\xec\xa0\xfb\xff\x11" "\xfa\x7f\x86\xec\xe8\xff\x6f\x38\xf5\xf5\xa3\xea\xff\x73\xf7\xbf\x32\x6e" "\x69\x67\xff\x03\x00\x00\x40\xf7\x72\xf7\xbf\x2a\x6e\xb1\xff\x01\x00\x00" "\xa0\x19\xb9\xfb\x5f\x1d\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xaf\x89" "\x5b\x3a\xd9\xff\x07\xde\xff\x8f\xfc\xd7\x07\xf4\xff\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\xaf\xff\x5f\x37\xfd\xff\x38\xfd\xff\x0a\xfa\x7f\xef\xff\xf7\xfe" "\x7f\xfd\x3f\x6b\xb5\xa3\xff\xdf\xe6\xa8\xfa\xff\xdc\xfd\xaf\x8d\x5b\x3a" "\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xaf\x8b\x5b\xec\x7f\x00\x00\x00\x68" "\x46\xee\xfe\x2b\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xf5\x71\x4b" "\x27\xfb\xdf\xfb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf8\xf9\xfa\xff\x79" "\x3a\xab\xfe\xfe\x1c\xfd\x7f\xd1\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\x3f\x6b" "\x30\xb5\xfe\x3f\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\xa5\x93\xfd\xaf\xff\x3f\xd8\xfe\x3f" "\xbf\xae\xff\xd7\xff\x2f\xf4\xff\xfa\x7f\xfd\xff\xa1\xe8\xf6\xfd\xff\x1b" "\x43\x7f\x25\x5a\xb6\x4b\xff\x7f\xd3\x83\x4f\xdc\x6f\xe7\x57\xf4\xff\xfa" "\x7f\xfd\xbf\xfe\x5f\xff\xcf\x1e\xdd\x6d\xe4\xb7\x4d\xa2\xff\x3f\x79\xea" "\xef\x2e\x73\xf7\xbf\x25\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\xbf" "\x35\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xdf\x16\xb7\xd8\xff\x00\x00" "\x00\xd0\x8c\xdc\xfd\x57\xc5\x2d\xfb\xdc\xff\x63\xcd\xc3\x94\xe9\xff\xbd" "\xff\x5f\xff\xaf\xff\xd7\xff\x0f\x3f\x5f\xff\x3f\x4f\xdd\xf6\xff\x7b\xe4" "\xfd\xff\x2b\xe8\xff\xfb\xec\xff\xf3\x4f\xe8\xfa\x7f\xfd\x3f\x6b\x37\x89" "\xfe\x7f\xdb\xaf\xe7\xee\x7f\x7b\xdc\xe2\xfb\xff\x00\x00\x00\xd0\x8c\xdc" "\xfd\xef\x88\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x77\xc6\x2d\xf6\x3f" "\x00\x00\x00\x34\x23\x77\xff\xbb\xe2\x96\x4e\xf6\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\xeb\xff\x87\x9f\xaf\xff\x9f\x27\xfd\xff\x38\xfd\xff\x0a\x73\xea" "\xff\xaf\x3a\x8b\xfe\x7f\x73\xf8\xcb\xdd\xf6\xff\x6b\xfa\xfc\xfa\x7f\xfd" "\x3f\xcb\xa6\xd6\xff\xe7\xee\xbf\x3a\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f" "\x72\xf7\xbf\x3b\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xdf\x13\xb7\xd8" "\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xef\x8d\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\x1f\x7e\xbe\xfe\x7f\x9e\xf4\xff\xe3\xf4\xff\x8b\xc5" "\xe2\x9a\x91\x0f\x30\xd4\xff\x9f\x3c\x6f\x9a\xfd\xbf\xf7\xff\x4f\xee\xf3" "\xeb\xff\xf5\xff\x2c\x9b\x5a\xff\x9f\xbb\xff\x7d\x71\x4b\x27\xfb\x1f\x00" "\x00\x00\x7a\x90\xbb\xff\x9a\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xbf" "\x36\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xdf\x1f\xb7\x74\xb2\xff\xf5" "\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x3f\xfc\x7c\xfd\xff\x3c\xe9\xff\xc7\xe9" "\xff\x57\x98\xd3\xfb\xff\xf5\xff\x93\xfb\xfc\xfa\x7f\xfd\x3f\xcb\xa6\xd6" "\xff\xe7\xee\xff\x40\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xbf\x2e" "\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x3f\x18\xb7\xd8\xff\x00\x00\x00" "\xd0\x8c\xdc\xfd\xd7\xc7\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7" "\xff\x0f\x3f\x5f\xff\x3f\x4f\x07\xd7\xff\x2f\xf4\xff\xfa\x7f\xfd\xff\x0a" "\xfa\x7f\xfd\xbf\xfe\x9f\xd3\x4d\xad\xff\xcf\xdd\xff\xa1\xb8\xa5\x93\xfd" "\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xe1\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4" "\xee\xff\x48\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x34\x6e\xe9\x64" "\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf8\xf9\xfa\xff\x79\xf2\xfe" "\xff\x71\xfa\xff\x15\xf4\xff\xfa\xff\xbd\x7e\xfe\x13\xcb\x7f\xf7\xa7\xff" "\xd7\xff\xb3\x6c\xb8\xff\xbf\xec\xc8\xfa\xff\xdc\xfd\x1f\x8b\x5b\x3a\xd9" "\xff\x00\x00\x00\xd0\x83\xdc\xfd\x37\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23" "\x77\xff\xc7\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x13\x71\x4b\x27" "\xfb\x5f\xff\xaf\xff\xdf\xd9\xff\x2f\x16\xfa\x7f\xfd\xbf\xfe\x7f\xcb\x21" "\xf4\xff\xc7\x16\xfa\xff\xb5\xd3\xff\x8f\xd3\xff\xaf\xa0\xff\x6f\xb3\xff" "\x3f\x67\xd1\xd0\xfb\xff\x8f\xef\xfa\xe3\xf5\xff\x4c\xd1\xd4\xde\xff\x9f" "\xbb\xff\x93\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x53\x71\x8b" "\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xe9\xb8\xc5\xfe\x07\x00\x00\x80\x66" "\xe4\xee\xff\x4c\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xbd\xff\x5f\xff\xaf\xff" "\x1f\x7e\xbe\xf7\xff\xcf\x93\xfe\x7f\x9c\xfe\x7f\x05\xfd\x7f\x9b\xfd\xff" "\x21\x7d\x7e\xef\xff\xd7\xff\xb3\x6c\x6a\xfd\x7f\xee\xfe\xcf\xc6\x2d\x9d" "\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xcf\xc5\x2d\xf6\x3f\x00\x00\x00\x34" "\x23\x77\xff\xe7\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x0b\x71\x4b" "\x27\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xc3\xcf\xd7\xff\xcf\x93" "\xfe\x7f\x9c\xfe\x7f\x05\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xad\xa6\xd6\xff" "\xe7\xee\xff\x62\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xbf\x31\x6e" "\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x6f\x8a\x5b\xec\x7f\x00\x00\x00\x68" "\x46\xee\xfe\x2f\xc5\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff\x3f\xcf\xfe\xff" "\x58\xfb\xfd\xff\xff\xe7\x8f\xd3\xff\xeb\xff\xf7\x63\x2a\xfd\xff\x05\x17" "\xdc\xf7\x66\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x7b\x37\xb5\xfe" "\x3f\x77\xff\x97\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x57\xe2" "\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xab\x71\x8b\xfd\x0f\x00\x00\x00" "\xcd\xc8\xdd\xff\xb5\xb8\xa5\x93\xfd\xbf\xdc\xff\x9f\xbb\xd8\x2a\x54\xb7" "\x0c\xf5\xff\xd1\xa8\xe9\xff\xb7\xd1\xff\xef\xfc\xfc\xfa\xff\xe1\x9f\x1f" "\xde\xff\xef\xfd\xff\xfa\xff\x83\x37\x95\xfe\xdf\xfb\xff\xcf\xec\xf3\xeb" "\xff\xf5\xff\x73\xfe\xfc\xfb\xea\xff\xef\xb5\xfc\xe3\xf5\xff\xb4\x68\x6a" "\xfd\x7f\xee\xfe\x9b\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\xd7" "\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x1b\x71\x8b\xfd\x0f\x00\x00" "\x00\xcd\xc8\xdd\x7f\x4b\xdc\xd2\xc9\xfe\xf7\xfe\x7f\xfd\xbf\xfe\x5f\xff" "\xaf\xff\x1f\x7e\xbe\xfe\x7f\x9e\xf4\xff\xe3\xf4\xff\x2b\xe8\xff\xf5\xff" "\xde\xff\x7f\xc9\x03\xff\x4f\xff\xcf\xfa\x4c\xad\xff\xcf\xdd\xff\xcd\xb8" "\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xad\xb8\xc5\xfe\x07\x00\x00" "\x80\x66\xe4\xee\xff\x76\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x27" "\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf8\xf9\xfa\xff" "\x79\xd2\xff\x8f\xd3\xff\x97\xd3\xff\xd0\xb6\xf4\xd3\xff\x1f\x1b\xfa\xe2" "\x51\xf7\xf3\x67\xeb\xa8\x3f\x7f\x33\xfd\xbf\xf7\xff\xb3\x46\x53\xeb\xff" "\x73\xf7\x7f\x37\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x7f\x2f\x6e" "\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xbf\x1f\xb7\xd8\xff\x00\x00\x00\xd0" "\x8c\xdc\xfd\x3f\x88\x5b\x3a\xd9\xff\xfa\x7f\xfd\x7f\xfb\xfd\xff\x03\xf4" "\xff\xa7\x3d\x5f\xff\xaf\xff\x6f\x99\xfe\x3f\xff\x8a\x3e\x4c\xff\xbf\x42" "\x3f\xfd\xff\xa0\xa3\xee\xe7\xe7\xfe\xf9\xf5\xff\xfa\x7f\x96\x4d\xad\xff" "\xcf\xdd\x7f\x6b\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xff\x61\xdc" "\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x28\x6e\xb1\xff\x01\x00\x00\xa0" "\x19\xb9\xfb\x7f\x1c\xb7\x74\xb2\xff\xf5\xff\x7d\xf5\xff\x1b\x8b\x1e\xfb" "\x7f\xef\xff\xd7\xff\xeb\xff\x7b\xa2\xff\x1f\xa7\xff\x5f\x41\xff\xaf\xff" "\xd7\xff\xeb\xff\x59\xab\xa9\xf5\xff\xb9\xfb\x6f\xdb\xd8\xec\x72\xff\x03" "\x00\x00\xc0\x5c\xdd\xff\xde\x0f\xb9\x75\xaf\xbf\xef\x6d\x77\xfd\xdf\x63" "\x8b\x9f\xc4\x2d\x17\x2e\x4e\xee\xf1\xdb\xd8\x00\x00\x00\xc0\xc4\xdd\xb9" "\xfb\x37\x36\x17\x8b\x9f\xde\xf5\x6b\xbe\xff\x0f\x00\x00\x00\x2d\xca\xdd" "\xff\xb3\xb8\xa5\x93\xfd\xaf\xff\xef\xab\xff\xef\xf3\xfd\xff\xfa\x7f\xfd" "\xbf\xfe\xbf\x27\xfa\xff\x71\xfa\xff\x15\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f" "\xb5\x9a\x5a\xff\x9f\xbb\xff\xe7\x71\xcb\xb6\xe1\xb7\xb9\xef\x3f\x4a\x00" "\x00\x00\x60\x4a\x72\xf7\xff\x22\x6e\xe9\xe4\xfb\xff\x00\x00\x00\xd0\x83" "\xdc\xfd\xbf\x8c\x5b\x96\xf6\xbf\xff\x1c\x20\x00\x00\x00\xcc\x55\xee\xfe" "\x5f\xc5\x2d\x9d\x7c\xff\x5f\xff\x3f\xf1\xfe\x7f\x71\x40\xfd\x7f\xfc\x7e" "\xfa\xff\x2d\xfa\x7f\xfd\xff\xd0\xf3\xf5\xff\xf3\xa4\xff\x1f\x77\x96\xfd" "\xff\xc9\x0d\xfd\x7f\x27\xfd\xff\xc6\x42\xff\xaf\xff\xd7\xff\xb3\x0e\x53" "\xeb\xff\x73\xf7\xff\x3a\x6e\xe9\x64\xff\x03\x00\x00\x40\xa3\x76\xfc\x13" "\x85\xdc\xfd\xbf\x89\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xdf\xc6\x2d" "\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xef\xe2\x96\x4e\xf6\xbf\xfe\xff\xd0" "\xfb\xff\x4c\xd5\x0f\xf0\xfd\xff\xc7\xeb\x97\xbc\xff\xbf\xf3\xfe\xff\x8a" "\x63\x83\xcf\xd7\xff\xeb\xff\x5b\xa6\xff\x1f\xe7\xfd\xff\x2b\xe8\xff\x5b" "\x79\xff\xff\x79\xfa\x7f\xfd\x3f\xd3\x30\xb5\xfe\x3f\x77\xff\xef\xe3\x96" "\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x1f\xe2\x16\xfb\x1f\x00\x00\x00" "\x9a\x91\xbb\xff\x8f\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xa7\xb8" "\xa5\x93\xfd\xaf\xff\x9f\xf8\xfb\xff\xcf\xa8\xff\xdf\xc3\xfb\xff\xf5\xff" "\x7d\xf4\xff\xbb\x3c\xbf\x9d\xfe\xff\xee\xe7\x9f\xb8\xf1\xa2\x07\x5d\x7b" "\xb5\xfe\x9f\x53\x0e\xb3\xff\xcf\x9f\x0b\xfa\xff\xad\xaf\x9f\xb3\x86\xcf" "\xaf\xff\xd7\xff\xcf\xf9\xf3\xeb\xff\xf5\xff\x2c\x5b\x7f\xff\xbf\xb9\xe3" "\x8b\xfb\xed\xff\x73\xf7\xff\x39\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72" "\xf7\xdf\x1e\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x7f\x89\x5b\xec\x7f" "\x00\x00\x00\x68\x46\xee\xfe\xbf\xc6\x2d\x9d\xec\x7f\xfd\xbf\xfe\x7f\x2a" "\xfd\x7f\xfe\x6f\x7d\x04\xfd\xff\x89\x33\xee\xff\x8f\x2f\x16\x8b\x23\xe9" "\xff\xb3\x29\x3e\xdb\xfe\x7f\x31\xf3\xfe\xdf\xfb\xff\xf5\xff\xcb\xbc\xff" "\x7f\x9c\xf7\xff\xaf\xa0\xff\xd7\xff\xeb\xff\xf5\xff\xac\xd5\xfa\xfb\xff" "\x9d\x5f\xdc\x6f\xff\x9f\xbb\xff\x6f\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a" "\x90\xbb\xff\xef\x71\x4b\xee\xff\x8d\x7d\xff\xa3\x7b\x00\x00\x00\x60\x62" "\x72\xf7\xff\x23\x6e\xf1\xfd\x7f\x00\x00\x00\x68\x46\xee\xfe\x7f\xc6\x2d" "\x9d\xec\x7f\xfd\xbf\xfe\x7f\x2a\xfd\x7f\xf2\xfe\xff\x53\x3f\xae\xad\xf7" "\xff\x5f\x54\x71\x6a\x9f\xfd\xff\x3d\xeb\x97\xf4\xff\x07\x4b\xff\x3f\x4e" "\xff\xbf\x82\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\x56\x53\xeb\xff\x73\xf7\xff" "\x2b\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\xdf\x11\xb7\xd8\xff\x00" "\x00\x00\xd0\x8c\xdc\xfd\xff\x8e\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe" "\xff\xc4\x2d\x9d\xec\x7f\xfd\x7f\xab\xfd\x7f\x16\xf1\xfa\x7f\xfd\xff\x54" "\xfa\x7f\xef\xff\xf7\xfe\xff\xc3\xa1\xff\x1f\xa7\xff\x5f\x41\xff\xaf\xff" "\xd7\xff\xeb\xff\x59\xab\xa9\xf5\xff\xb9\xfb\xff\x17\x00\x00\xff\xff\x9a" "\x69\x75\x2d", 25059)); NONFAILING(syz_mount_image( /*fs=*/0x20000100, /*dir=*/0x20000000, /*flags=MS_POSIXACL|MS_STRICTATIME|MS_NOSUID|MS_NODEV*/ 0x1010006, /*opts=*/0x20000140, /*chdir=*/0x24, /*size=*/0x61e3, /*img=*/0x2000d780)); // syz_mount_image$exfat arguments: [ // fs: nil // dir: ptr[in, buffer] { // buffer: {2e 2f 62 75 73 00} (length 0x6) // } // flags: mount_flags = 0x4800 (8 bytes) // opts: nil // chdir: int8 = 0x0 (1 bytes) // size: len = 0x0 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x0) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x20000100, "./bus\000", 6)); NONFAILING(syz_mount_image(/*fs=*/0, /*dir=*/0x20000100, /*flags=MS_REC|MS_NODIRATIME*/ 0x4800, /*opts=*/0, /*chdir=*/0, /*size=*/0, /*img=*/0x20000240)); // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 00} (length 0x2) // } // flags: open_flags = 0x0 (4 bytes) // mode: open_mode = 0x0 (2 bytes) // ] // returns fd NONFAILING(memcpy((void*)0x20000040, ".\000", 2)); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000040ul, /*flags=*/0, /*mode=*/0); if (res != -1) r[0] = res; // renameat2 arguments: [ // oldfd: fd_dir (resource) // old: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // newfd: fd_dir (resource) // new: ptr[in, buffer] { // buffer: {2e 2f 62 75 73 2f 66 69 6c 65 30 00} (length 0xc) // } // flags: renameat2_flags = 0x0 (8 bytes) // ] NONFAILING(memcpy((void*)0x200001c0, "./file0\000", 8)); NONFAILING(memcpy((void*)0x20000200, "./bus/file0\000", 12)); syscall(__NR_renameat2, /*oldfd=*/r[0], /*old=*/0x200001c0ul, /*newfd=*/r[0], /*new=*/0x20000200ul, /*flags=*/0ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*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=*/0x21000000ul, /*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; }