// https://syzkaller.appspot.com/bug?id=351daa89a803aed4a7ae4bff3015324b4cbd56bb // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static 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; } #define MAX_FDS 30 //% 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); } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); } static void close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); close_fds(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 00} (length 0xfb) // } // flags: mount_flags = 0x2a08080 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {00 9c 1b 06 22 3d 15 05 5c 6d 39 ae ca d6 83 62 // 94 e3 e1 fc 38 b8 0c d5 eb 20 b3 9d c7 dc eb 31 6f a1 20 3f 80 2b // 43 68 85 0f de f9 16 20 2a 98 9e a5 4a 4e 80 0c 32 4c 19 ba d3 86 // d9 a7 2f c1 de 2f a7 f1 00 ea e8 a4 34 15 8d 0e d0 d6 a9 06 1d 60 // 97 1b cf 89 53 42 57 1b ae 0e a5 82 40 eb dd 0f 6f 3d d4 2f a0 f9 // 75 42 24 a9 c2 04 5d 2e 09 8e 01 00 00 00 94 35 49 e2 c2 e1 91 b7 // da 91 b8 64 5d fd b3 24 ce af 44 5c dc 97 48 84 e2 d5 ac 6d bf 8b // 92 da 3a 8a 65 17 6d b6 6c a7 98 dc e7 18 80 c5 e6 83 7b 5a 99 b6 // 69 6d 50 03 a0 6f 62 bb fb 0b 9b a0 a6 ff bf c2 dd 37 66 2e 07 74 // 30 37 93 86 d8 e3 ab f8 02 40 1b 0e 83 82 82 4a 68 cf 51 cd e6 2a // c9 94 70 ed f8 c7 57 39 65 64 c8 07 9d 89 01 7d f3 18 20 05 ec 9f // e4 33 b1 22 f1 c0 2c a7 2e b6 8e 41 fc 7f f6 99 75 64 91 49 ff 4b // e6 4b d6 65 e5 6a 5f e9 ef 4d 6e e0 2f f3 0a d8 38 a9 74 41 00 d5 // 20 76 5c 83 c0 17 85 34 e0 9d 2f 57 8b d1 0d 3b fc 68 d1 e7 5d 69 // 65 61 34 48 d1 04 5b 6a 02 98 d0 80 4f 82 bc 98 4e 27 1c 34 6d 1e // 30 88 6f 81 fe b0 2b 83 20 d4 7d c7 52 b2 dd 23 b4 d8 e2 0f 2b da // 7f f8 4c 57 d6 3d a9 6f 04 4f 8d aa ac 7c b7 13 2e f6} (length // 0x16c) // } // union ANYUNION { // ANYRES16: ANYRES16 (resource) // } // union ANYUNION { // ANYRES8: ANYRES8 (resource) // } // union ANYUNION { // ANYRESOCT: ANYRES64 (resource) // } // union ANYUNION { // ANYRES16: ANYRES16 (resource) // } // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x5edb (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x5edb) // } // ] // returns fd_dir memcpy((void*)0x200000000380, "jfs\000", 4); memcpy((void*)0x2000000006c0, "./" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 251); memcpy( (void*)0x2000000027c0, "\x00\x9c\x1b\x06\x22\x3d\x15\x05\x5c\x6d\x39\xae\xca\xd6\x83\x62\x94\xe3" "\xe1\xfc\x38\xb8\x0c\xd5\xeb\x20\xb3\x9d\xc7\xdc\xeb\x31\x6f\xa1\x20\x3f" "\x80\x2b\x43\x68\x85\x0f\xde\xf9\x16\x20\x2a\x98\x9e\xa5\x4a\x4e\x80\x0c" "\x32\x4c\x19\xba\xd3\x86\xd9\xa7\x2f\xc1\xde\x2f\xa7\xf1\x00\xea\xe8\xa4" "\x34\x15\x8d\x0e\xd0\xd6\xa9\x06\x1d\x60\x97\x1b\xcf\x89\x53\x42\x57\x1b" "\xae\x0e\xa5\x82\x40\xeb\xdd\x0f\x6f\x3d\xd4\x2f\xa0\xf9\x75\x42\x24\xa9" "\xc2\x04\x5d\x2e\x09\x8e\x01\x00\x00\x00\x94\x35\x49\xe2\xc2\xe1\x91\xb7" "\xda\x91\xb8\x64\x5d\xfd\xb3\x24\xce\xaf\x44\x5c\xdc\x97\x48\x84\xe2\xd5" "\xac\x6d\xbf\x8b\x92\xda\x3a\x8a\x65\x17\x6d\xb6\x6c\xa7\x98\xdc\xe7\x18" "\x80\xc5\xe6\x83\x7b\x5a\x99\xb6\x69\x6d\x50\x03\xa0\x6f\x62\xbb\xfb\x0b" "\x9b\xa0\xa6\xff\xbf\xc2\xdd\x37\x66\x2e\x07\x74\x30\x37\x93\x86\xd8\xe3" "\xab\xf8\x02\x40\x1b\x0e\x83\x82\x82\x4a\x68\xcf\x51\xcd\xe6\x2a\xc9\x94" "\x70\xed\xf8\xc7\x57\x39\x65\x64\xc8\x07\x9d\x89\x01\x7d\xf3\x18\x20\x05" "\xec\x9f\xe4\x33\xb1\x22\xf1\xc0\x2c\xa7\x2e\xb6\x8e\x41\xfc\x7f\xf6\x99" "\x75\x64\x91\x49\xff\x4b\xe6\x4b\xd6\x65\xe5\x6a\x5f\xe9\xef\x4d\x6e\xe0" "\x2f\xf3\x0a\xd8\x38\xa9\x74\x41\x00\xd5\x20\x76\x5c\x83\xc0\x17\x85\x34" "\xe0\x9d\x2f\x57\x8b\xd1\x0d\x3b\xfc\x68\xd1\xe7\x5d\x69\x65\x61\x34\x48" "\xd1\x04\x5b\x6a\x02\x98\xd0\x80\x4f\x82\xbc\x98\x4e\x27\x1c\x34\x6d\x1e" "\x30\x88\x6f\x81\xfe\xb0\x2b\x83\x20\xd4\x7d\xc7\x52\xb2\xdd\x23\xb4\xd8" "\xe2\x0f\x2b\xda\x7f\xf8\x4c\x57\xd6\x3d\xa9\x6f\x04\x4f\x8d\xaa\xac\x7c" "\xb7\x13\x2e\xf6", 364); *(uint16_t*)0x20000000292c = -1; *(uint8_t*)0x20000000292e = -1; sprintf((char*)0x20000000292f, "%023llo", (long long)0); *(uint16_t*)0x200000002946 = -1; memcpy( (void*)0x2000000133c0, "\x78\x9c\xec\xdd\x4b\x8f\x14\xd7\xd9\x07\xf0\xa7\x2f\xd3\x73\xe1\x35\x8c" "\x2c\xbd\x96\x85\xb2\x18\x63\xe7\x42\x30\x30\x5c\x0c\xb9\xdb\xde\x24\x52" "\x56\x91\x22\x36\x59\x81\xc6\x63\x0b\x05\x27\x11\x90\x28\xb6\x50\x18\x6b" "\x16\xf9\x06\x51\xb2\x48\x94\xec\xb3\xca\x27\xc8\x1e\x3e\x84\x17\x59\x06" "\x09\x92\x8d\x57\xa9\xa8\x66\xce\x81\x9a\x4a\xcf\x34\x03\x4c\x57\x33\xe7" "\xf7\x93\x86\xaa\xa7\x4e\x55\xf7\xa9\xf9\x77\x4f\x75\xd3\x55\x7d\x02\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x88\x1f\x7e\xff\xc7\xe7" "\x7a\x11\x71\xf5\x57\x69\xc1\x72\xc4\xff\xc5\x20\xa2\x1f\xb1\x58\xd7\x2b" "\x11\xb1\xb8\xb2\x9c\xd7\x1f\x46\xc4\xeb\xb1\xd5\x1c\xaf\xd5\xab\xcf\x47" "\xd4\xdb\x6f\xfd\x73\x2c\xe2\x62\x44\xdc\x3f\x1a\xf1\xf0\xd1\x9d\xb5\x7a" "\xf1\xf9\xa7\xec\xc7\xbf\x8f\xfc\xff\xb1\x7f\xfe\xf5\x07\xa7\x7f\xff\xb7" "\xdf\xdd\x3b\xf9\xc7\x53\x6f\xb7\xdb\xff\xb4\xfe\x8f\x7b\x3f\xb9\x9b\xee" "\x0b\x00\x00\x00\xd8\x97\xaa\xaa\xaa\x5e\x7a\x9b\x7f\x3c\xbd\xbf\xef\x77" "\xdd\x29\x00\x60\x2a\xf2\xf1\xbf\x4a\xf2\x72\xb5\x5a\xad\x56\xab\xd5\x87" "\xaf\x6e\xaa\xc6\xbb\xdb\x2c\x22\x62\xa3\xb9\x4d\xfd\x9a\xe1\xee\xb8\x1b" "\x03\x00\x66\xd7\x46\x7c\xd1\x75\x17\xe8\x90\xfc\x8b\x36\x8c\x88\x23\x5d" "\x77\x02\x98\x69\xce\xbb\x3f\x9c\x1e\x3e\xba\xb3\xd6\x4b\xf9\xf6\x9a\xc7" "\x83\x95\xed\xf6\x7c\x2e\xc8\x8e\xfc\x37\x7a\x8f\xaf\xef\xd8\x6d\x3a\x49" "\xfb\x1c\x93\x69\x3d\xbe\x36\x63\x10\xaf\xee\xd2\x9f\xc5\x29\xf5\x61\x96" "\xe4\xfc\xfb\xed\xfc\xaf\x6e\xb7\x8f\xd2\x7a\x07\x9d\xff\xb4\xec\x96\xff" "\x68\xfb\xd2\xa7\xe2\xe4\xfc\x07\xed\xfc\x5b\x0e\x4f\xfe\xfd\xb1\xf9\x97" "\x2a\xe7\x3f\xdc\x57\xfe\x03\xf9\x03\x00\x00\x00\x00\xc0\x0c\xcb\xff\xff" "\xbf\x3c\xb5\xcf\x7f\x7b\x3b\x6e\x37\x9b\x7f\x31\xbb\x33\xd1\x5e\x9f\xff" "\xae\x4c\xa9\x0f\x00\x00\x00\x00\x00\x00\x00\xf0\xa2\x3d\xef\xf8\x7f\x8f" "\x19\xff\x0f\x00\x00\x00\x66\x56\xfd\x5e\xbd\xf6\xe7\xa3\x4f\x96\xed\xf6" "\x1e\xbb\x5e\x7e\xa5\x17\xf1\x4a\x6b\x7d\xa0\x30\xe9\x62\x99\xa5\xae\xfb" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x25\x19\x6e\x9f\xc3\x7b\xa5" "\x17\x31\x17\x11\xaf\x2c\x2d\x55\x55\x55\xff\x34\xb5\xeb\xfd\x7a\xde\xed" "\x5f\x76\xa5\xef\x3f\x94\xac\xeb\x3f\xf2\x00\x00\xb0\xed\xfe\xd1\xd6\xb5" "\xfc\xbd\x88\x85\x88\xb8\x92\xbe\xeb\x6f\x6e\x69\x69\xa9\xaa\x16\x16\x97" "\xaa\xa5\x6a\x71\x3e\xbf\x9e\x1d\xcd\x2f\x54\x8b\x8d\xf7\xb5\x79\x5a\x2f" "\x9b\x1f\x3d\xc5\x0b\xe2\xe1\xa8\xaa\x6f\x6c\xa1\xb1\x5d\xd3\xa4\xf7\xcb" "\x93\xda\xdb\xb7\x57\xdf\xd7\xa8\x1a\x3c\x45\xc7\xa6\xa3\xc3\xc0\x01\x20" "\x22\xb6\x8f\x46\x0f\x1d\x91\x0e\x99\xaa\x3a\x16\x5d\xbf\xca\xe1\xe5\xe0" "\xf9\x7f\xf8\x78\xfe\xf3\x34\xba\x7e\x9c\x02\x00\x00\x00\x07\xaf\xaa\xaa" "\xaa\x97\xbe\xce\xfb\x78\xfa\xcc\xbf\xdf\x75\xa7\x00\x80\xa9\xc8\xc7\xff" "\xf6\xe7\x02\x6a\xb5\x5a\xad\x56\xab\x0f\x5f\xdd\x54\x8d\x77\xb7\x59\x44" "\xc4\x46\x73\x9b\xfa\x35\xc3\xdd\x71\x37\x06\x00\xcc\xae\x8d\xf8\xa2\xeb" "\x2e\xd0\x21\xf9\x17\x6d\x18\x11\xaf\x77\xdd\x09\x60\xa6\xf5\xba\xee\x00" "\x07\xe2\xe1\xa3\x3b\x6b\xbd\x94\x6f\xaf\x79\x3c\x48\xe3\xbb\xe7\x73\x41" "\x76\xe4\xbf\xd1\xdb\xda\x2e\x6f\x3f\x6e\x3a\x49\xfb\x1c\x93\x69\x3d\xbe" "\x36\x63\x10\xaf\xee\xd2\x9f\xd7\xa6\xd4\x87\x59\x92\xf3\xef\xb7\xf3\xbf" "\xba\xdd\x3e\x4a\xeb\x1d\x74\xfe\xd3\xb2\x5b\xfe\xf5\x7e\x2e\x77\xd0\x9f" "\xae\xe5\xfc\x07\xed\xfc\x5b\x0e\x4f\xfe\xfd\xb1\xf9\x97\x2a\xe7\x3f\xdc" "\x57\xfe\x03\xf9\x03\x00\x00\x00\x00\xc0\x0c\xcb\xff\xff\xbf\xec\xf3\xdf" "\xbc\xcb\x00\x00\x00\x00\x00\x00\x00\xf0\xd2\x79\xf8\xe8\xce\x5a\xbe\xee" "\x35\x7f\xfe\xff\xa5\x31\xeb\xb9\xfe\xf3\x70\xca\xf9\xf7\xe4\x5f\xa4\x9c" "\x7f\xbf\x95\xff\xd7\x5a\xeb\x0d\x1a\xf3\x0f\xde\x7f\x92\xff\xbf\x1e\xdd" "\x59\xfb\xd1\x1f\x3e\x3f\x9e\xa7\x4f\x9b\xff\x7c\x9e\xe9\xa5\x47\x56\x2f" "\x3d\x22\x7a\xe9\x9e\x7a\xc3\x34\x7d\xe6\x5d\x9b\x1f\xb7\x70\x73\x6e\x30" "\xaa\xef\x69\xae\xd7\x1f\x0c\xd3\x39\x3f\xd5\xdc\x87\x71\x3d\x6e\xc4\x7a" "\xac\xee\x58\xb7\x9f\x7e\x1f\x4f\xda\xcf\xed\x68\xaf\x7b\x3a\x97\x1e\xca" "\xdb\xed\xe7\x77\xb4\x0f\xb7\xdb\x1b\xdb\x5f\xd8\xd1\x3e\x97\xbe\x77\xa0" "\x5a\xcc\xed\x67\x62\x2d\x7e\x1e\x37\xe2\x83\xad\xf6\xba\x6d\x38\xb7\xf7" "\x4e\x2e\x4c\xf8\xfd\x54\x13\xda\x73\xfe\x03\xcf\xff\x22\xe5\xfc\x87\x8d" "\x9f\x3a\xff\xa5\xd4\xde\x6b\x4d\x6b\x0f\x3e\xeb\xff\xcf\xf3\xbe\x39\x1d" "\x77\x3f\xef\xfd\xf6\xde\xfd\xd5\x83\xdf\x9d\x89\x36\x63\xf0\x78\xdf\x9a" "\xea\xfd\x3b\xd1\x41\x7f\xb6\x7e\x27\x47\x46\xf1\xcb\x5b\xeb\x37\xcf\xfc" "\xfa\xda\xed\xdb\x37\xcf\x45\x9a\xec\x58\x7a\x3e\xd2\xe4\x05\xcb\xf9\xcf" "\xa5\x9f\xc7\x7f\xff\xdf\xdc\x6e\xcf\x7f\xf7\x9b\xcf\xd7\x07\x9f\x8d\xf6" "\x9d\xff\xac\xd8\x8c\xe1\xae\xf9\xbf\xd9\x98\xaf\xf7\xf7\xe4\x94\xfb\xd6" "\x85\x9c\xff\x28\x1f\x6f\x52\xfe\x1f\xa4\xf6\xf1\xcf\xff\x97\x39\xff\xdd" "\x9f\xff\xa7\x3a\xe8\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xec\xa5\xaa\xaa\xad\x4b\x44\xdf\x8b\x88\x4b\xe9\xfa\x9f\xae\xae\xcd\x04" "\x00\xa6\x2b\x1f\xff\xab\x24\x2f\x57\xab\xd5\x6a\xb5\x5a\x7d\xf8\xea\xa6" "\x6a\xbc\x77\x9b\x45\x44\xfc\xbd\xb9\x4d\xfd\x9a\xe1\x37\xe3\x6e\x0c\x00" "\x98\x65\xff\x89\x88\xcf\xbb\xee\x04\x9d\x91\x7f\xc1\xf2\xf7\xfd\xd5\xd3" "\xb7\xba\xee\x0c\x30\x55\xb7\x3e\xf9\xf4\xa7\xd7\x6e\xdc\x58\xbf\x79\xab" "\xeb\x9e\x00\x00\x00\x00\x00\x00\x00\x00\xcf\x2a\x8f\xff\xb9\xd2\x18\xff" "\xf9\xad\x88\x58\x6e\xad\xb7\x63\xfc\xd7\xf7\x63\xe5\x79\xc7\xff\x1c\xe6" "\x99\xc7\x03\x8c\x3e\xfb\x40\xdf\xfb\xb1\xd9\x1f\x0d\xfa\x8d\xe1\xc6\xdf" "\x88\xbd\xc7\xff\x3e\x11\x7b\x8f\xff\x3d\x9c\x70\x7f\x13\x86\xef\xde\x1a" "\x73\x75\x2f\x63\x07\x31\x6f\x58\x98\xd0\x3e\xf6\x42\x8f\x86\x9c\xff\x1b" "\x8d\xf1\xce\xeb\xfc\x8f\xb7\x86\x5f\x2f\x61\xfc\xd7\xf6\x98\xf7\x25\xc8" "\xf9\x9f\x68\x3c\x9e\xeb\xfc\xbf\xda\x5a\xaf\x99\x7f\xf5\x97\x97\x39\xff" "\xfe\x8e\xfc\xcf\xde\xfe\xf8\x17\x67\x6f\x7d\xf2\xe9\xe9\xeb\x1f\x5f\xfb" "\x68\xfd\xa3\xf5\x9f\x5d\x5c\x5d\xbd\x74\xe1\xf2\x3b\xab\x97\x57\xcf\x7e" "\x78\xfd\xc6\x7a\xfa\xb7\xc3\x1e\x1f\xac\x9c\x7f\x1e\xfb\xda\x79\xa0\x65" "\xc9\xf9\xe7\xcc\xe5\x5f\x96\x9c\xff\x97\x53\x2d\xff\xb2\xe4\xfc\xbf\x92" "\x6a\xf9\x97\x25\xe7\x9f\x5f\xef\xc9\xbf\x2c\x39\xff\xfc\xde\x47\xfe\x65" "\xc9\xf9\x9f\x4c\xb5\xfc\xcb\x92\xf3\xff\x7a\xaa\xe5\x5f\x96\x9c\xff\xa9" "\x54\xcb\xbf\x2c\x39\xff\xb7\x53\x2d\xff\xb2\xe4\xfc\x4f\xa7\x5a\xfe\x65" "\xc9\xf9\x9f\x49\xb5\xfc\xcb\x92\xf3\x3f\x9b\x6a\xf9\x97\x25\xe7\x9f\x3f" "\xe1\x92\x7f\x59\x72\xfe\xf9\xcc\x06\xf9\x97\x25\xe7\x7f\x3e\xd5\xf2\x2f" "\x4b\xce\xff\x42\xaa\xe5\x5f\x96\x9c\xff\xc5\x54\xcb\xbf\x2c\x39\xff\x77" "\x52\x2d\xff\xb2\xe4\xfc\x2f\xa5\x5a\xfe\x65\xc9\xf9\x5f\x4e\xb5\xfc\xcb" "\x92\xf3\xff\x46\xaa\xe5\x5f\x96\x9c\xff\x37\x53\x2d\xff\xb2\xe4\xfc\xbf" "\x95\x6a\xf9\x97\x25\xe7\xff\xed\x54\xcb\xbf\x2c\x39\xff\xef\xa4\x5a\xfe" "\x65\xc9\xf9\x7f\x37\xd5\xf2\x2f\x4b\xce\xff\x7b\xa9\x96\x7f\x59\x72\xfe" "\xef\xa6\x5a\xfe\x65\x79\xf2\xfd\xff\x66\xcc\x98\x31\x93\x67\xba\xfe\xcb" "\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb4\x4d\xe3\x74\xe2\xae\xf7" "\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x80\xff\xb2\x03\x07\x02\x00\x00\x00\x00\x40\xfe\xaf\x8d\x50\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x85\x1d\x38\x10\x00\x00\x00\x00\x00\xf2\x7f\x6d" "\x84\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x2a\xec\xdd\x5b\x8c\x9c\x67\x7d" "\x3f\xf0\x77\x4f\xf6\xda\xe1\xb0\x7f\x08\xc1\xff\x10\x60\xed\x98\x60\x92" "\x25\xbb\x3e\xc7\xb4\x06\x73\x2a\x69\x42\x0a\x05\x42\x5b\x7a\x30\xae\xbd" "\x36\x06\x9f\xea\xb5\xc9\xa1\x91\x62\x14\xda\x44\x6a\xd4\x46\x2a\x17\xe1" "\xa2\x10\x68\xa4\xe6\xa6\x22\x02\x54\xa5\x2a\x45\xae\xd4\x0a\x24\x90\xc8" "\x15\xad\xd4\x36\xa4\x4a\xa8\x22\x4a\x5a\x43\x7b\x01\x15\x61\xab\x99\x79" "\x7e\xcf\xce\x8c\xf7\x38\xb3\xb1\x67\xde\xf7\xf3\x91\xe2\x9f\x3d\xfb\xce" "\xcc\x33\xef\x3c\x33\xbb\xdf\x75\xbe\x6b\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\xd9\xc6" "\x77\x4e\xdf\x3f\x50\x14\x45\xed\xbf\xfa\x2f\x63\x45\xf1\x92\xda\xef\xd7" "\x8d\x8f\xd5\xfe\xb8\xf9\x2d\x97\x7b\x85\x00\x00\x00\x40\xb7\x5e\xa8\xff" "\x7a\xe1\xe5\xf9\x82\x7d\xcb\xb8\x52\xd3\x31\xdf\x78\xdd\x77\xbe\x3a\x3b" "\x3b\x3b\x5b\x3c\xf5\xfd\x37\xbd\xfa\x33\xb3\xb3\xf9\x03\xe3\x45\x31\xb6" "\xb6\x28\xea\x1f\x0b\xcf\xdd\xf6\x37\x9b\x9b\x8f\x49\xee\x2b\x46\x07\x06" "\x9b\xfe\x3c\xb8\xc4\xdd\x0f\x2d\xf1\xf1\xe1\x25\x3e\x3e\xb2\xc4\xc7\xd7" "\x2c\xf1\xf1\xb5\x4b\x7c\x7c\x74\x89\x8f\x5f\x74\x02\x2e\xb2\xae\xf1\xfd" "\x98\xfa\x8d\x6d\xae\xff\x76\xac\x71\x4a\x8b\x2b\x8b\x91\xfa\xc7\x36\xcf" "\x73\xad\xfb\x06\xd6\x0e\x0e\xc6\xf7\x72\xea\x06\xea\xd7\x99\x1d\x39\x5c" "\x1c\x2d\x8e\x15\xd3\xc5\x54\xcb\xf1\x8d\x63\x07\xea\xc7\x7f\x6d\x63\xed" "\xbe\x6e\x2e\xe2\xbe\x06\x9b\xee\xeb\x9a\xda\x0e\xf9\xd1\x3d\x07\x63\x0d" "\x03\xe9\x1c\x6f\x6e\xb9\xaf\xb9\xdb\x0c\xcf\xbf\xbd\x18\xff\xf1\x8f\xee" "\x39\xf8\xfe\xcf\x3e\x7d\xf5\x7c\x73\xc9\xd3\xd0\x72\x7b\x8d\x75\x6e\xd9" "\x54\x5b\xe7\xa7\xd3\x25\x8d\xb5\x0e\x14\x6b\xf3\x39\x89\x75\x0e\x36\xad" "\xf3\x9a\x79\x9e\x93\xa1\x96\x75\x0e\xd4\xaf\x57\xfb\x7d\xfb\x3a\x2f\x2c" "\x73\x9d\x43\x73\xcb\xbc\xa4\xda\x9f\xf3\xd1\x62\xb0\xfe\xfb\x27\xeb\xe7" "\x69\xb8\xf9\xdb\x7a\xf9\x3c\x5d\x93\x2e\xfb\xc9\xb5\x45\x51\x9c\x9b\x5b" "\x76\xfb\x31\x17\xdd\x57\x31\x58\xac\x6f\xb9\x64\x70\xee\xf9\x19\x6d\xec" "\xc8\xda\x6d\xd4\xb6\xd2\x2b\x8a\xe1\x15\xed\xd3\x8d\xcb\xd8\xa7\xb5\x79" "\x68\x73\xeb\x3e\x6d\x7f\x4d\xc4\xf3\xbf\x31\x5d\x6f\x78\x81\x35\x34\x3f" "\x4d\xcf\x7f\x6a\xcd\x45\xcf\xfb\x4a\xf7\x69\xa8\x3d\xea\x85\x5e\x2b\xed" "\x7b\x70\xb5\x5f\x2b\xbd\xb2\x07\x63\x5f\x3c\x59\x7f\xd0\x0f\xcc\xbb\x07" "\x37\xa7\xc7\x7f\xcf\x75\x0b\xef\xc1\x79\xf7\xce\x3c\x7b\x30\x3f\xee\xa6" "\x3d\xb8\x69\xa9\x3d\x38\xb8\x66\xa8\xbe\xe6\xfc\x24\x0c\xd4\xaf\x33\xb7" "\x07\xb7\xb6\x1c\x3f\x54\xbf\xa7\x81\xfa\x7c\xee\xba\xc5\xf7\xe0\xe4\x99" "\xe3\xa7\x26\x67\xee\xba\xfb\xcd\x47\x8f\x1f\x38\x32\x7d\x64\xfa\xc4\x8e" "\xa9\xa9\x5d\xdb\x77\xef\x9c\xda\x3d\x35\x79\xf8\xe8\xb1\xe9\xf4\x6b\x87" "\x67\xbb\xf7\xad\x2f\x06\xf3\x6b\x60\x53\x3a\x77\xf1\x1a\x78\x63\xdb\xb1" "\xcd\x5b\x75\xf6\x0b\xab\xf7\x3a\x1c\x5d\xe4\x75\x38\xd6\x76\xec\x6a\xbf" "\x0e\x87\xdb\x1f\xdc\xc0\xa5\x79\x41\x5e\xbc\xa7\x1b\xaf\x8d\x0f\xd5\x4e" "\xfa\xe8\x83\x83\xc5\x02\xaf\xb1\xfa\xf3\x73\x7d\xf7\xaf\xc3\xfc\xb8\x9b" "\x5e\x87\xc3\x4d\xaf\xc3\x79\x3f\xa7\xcc\xf3\x3a\x1c\x5e\xc6\xeb\xb0\x76" "\xcc\xa9\xeb\x97\xf7\x35\xcb\x70\xd3\x7f\xf3\xad\xe1\xc5\xfa\x5c\x30\xd6" "\xb4\x07\xdb\xbf\x1e\x69\xdf\x83\xab\xfd\xf5\x48\xaf\xec\xc1\xd1\xb4\x2f" "\xfe\xe5\xfa\x85\x3f\x17\x5c\x93\xd6\xfb\xc0\xc4\x4a\xbf\x1e\x19\xba\x68" "\x0f\xe6\x87\x9b\xde\x7b\x6a\x97\xe4\xaf\xf7\x47\x6f\xaa\x8f\xf9\xf6\xe5" "\xd5\xb5\x0f\x5c\xb1\xa6\x38\x3b\x33\x7d\xfa\xc6\x3b\x0f\x9c\x39\x73\x7a" "\x6b\x91\xc6\x25\xf1\xca\xa6\xbd\xd2\xbe\x5f\xd7\x37\x3d\xa6\xe2\xa2\xfd" "\x3a\xb8\xe2\xfd\xba\xef\xfe\x6f\x7d\xfb\xea\x79\x2e\x1f\x4b\xe7\x6a\xf4" "\xcd\xb5\x5f\x46\x17\x7c\xae\x6a\xc7\xec\xb8\x71\xf1\xe7\xaa\xfe\xd9\x6d" "\xfe\xf3\xd9\x72\xe9\xb6\x22\x8d\x55\x76\xa9\xcf\xe7\x7c\x9f\xcd\x6b\xe7" "\x33\x67\xc9\x45\xce\x67\xed\x98\x4f\x4f\x76\xff\xb5\x78\xce\xa5\x4d\xef" "\xbf\x23\x0b\xbc\xff\x46\xee\xff\x79\xfd\x7e\x36\xe7\x9b\xba\x6f\x68\x64" "\xb8\xf1\xfa\x1d\xca\x67\x67\xa4\xe5\xfd\xb8\xf5\xa9\x1a\xae\xbf\x77\x0d" "\xd4\xef\xfb\xc2\xe4\xf2\xde\x8f\x47\xd2\x7f\x97\xfa\xfd\xf8\xca\x45\xde" "\x8f\x37\xb4\x1d\xbb\xda\xef\xc7\x23\xed\x0f\x2e\xde\x8f\x07\x96\xfa\x6e" "\x47\x77\xda\x9f\xcf\xd1\xb4\x4f\x8e\x4d\x2d\xfe\x7e\x5c\x3b\x66\xc3\xb6" "\x95\xee\xc9\xe1\x45\xdf\x8f\xaf\x4d\x73\x20\x9d\xff\x37\xa5\xa4\x90\x73" "\x51\xd3\xde\x59\x68\xdf\xe6\xfb\x1a\x1e\x1e\x49\x8f\x6b\x38\xee\xa1\x75" "\x9f\x6e\x6f\x39\x7e\x24\x65\xb3\xda\x7d\x3d\xb6\xad\xb3\x7d\xba\xe5\xda" "\xc6\x6d\x0d\xe5\x47\x37\xe7\x52\xed\xd3\xf1\xb6\x63\x57\x7b\x9f\xe6\xf7" "\xab\x85\xf6\xe9\xc0\x52\xdf\x7d\xeb\x4c\xfb\xf3\x39\x9a\xf6\xc5\x95\xdb" "\x17\xdf\xa7\xb5\x63\xce\xef\xe8\xfe\xbd\x73\x5d\xfc\xb6\xe9\xbd\x73\xcd" "\x52\x7b\x70\x64\x68\x4d\x6d\xcd\x23\x79\x13\x36\xde\xef\x67\xd7\xc5\x1e" "\xbc\xb1\x38\x58\x9c\x2c\x8e\x15\x87\xea\x1f\x5d\x53\xdf\x4f\x03\xf5\xfb" "\x9a\xd8\xb9\xbc\x3d\xb8\x26\xfd\x77\xa9\xdf\x2b\x37\x2c\xb2\x07\xb7\xb4" "\x1d\xbb\xda\x7b\x30\x7f\x1e\x5b\x68\xef\x0d\x0c\x5f\xfc\xe0\x57\x41\xfb" "\xf3\x39\x9a\xf6\xc5\xc3\x3b\x17\xdf\x83\xb5\x63\xde\xb5\x7b\x75\xbf\x76" "\xdd\x92\x2e\xc9\xc7\x34\x7d\xed\xda\xfe\xfd\xb5\x85\xbe\xe7\x75\x75\xdb" "\x69\x7a\x31\xbf\xe7\x55\x5b\xe7\xdf\xef\x5e\xfc\x7b\xb3\xb5\x63\x8e\xdd" "\xb4\xd2\x9c\xb9\xf8\x79\xba\x21\x5d\x72\xc5\x3c\xe7\xa9\xfd\xf5\xbb\xd0" "\x6b\xea\x50\x71\x69\xce\xd3\x86\xb4\xce\x1f\xde\xb4\xf0\x79\xaa\xad\xa7" "\x76\xcc\x67\xf6\x2c\x73\x3f\xed\x2b\x8a\xe2\x2b\xb7\xee\xab\x7f\xbf\x37" "\xfd\xfd\xca\x97\xcf\x7e\xf7\xab\x2d\x7f\xef\xb2\xaf\xf1\xb1\x27\xf6\xcc" "\xdd\xd6\x45\x5f\x75\xcc\xf7\xf7\x3e\x5f\xb9\x75\xdf\xf9\x7f\xba\xe5\xa7" "\x2b\x79\x8c\x00\xf4\xb6\x9f\xd7\x7f\xdd\xbc\xbe\xf1\xb9\xae\xe9\x6f\xa6" "\x96\xf3\xf7\xff\x00\x00\x00\x40\x5f\x88\xdc\x3f\x98\x66\x26\xff\x03\x00" "\x00\x40\x69\x44\xee\x8f\xff\x2b\x3c\x93\xff\x01\x00\x00\xa0\x34\x22\xf7" "\x0f\xa7\x99\x55\x24\xff\x3f\xf0\xaf\xaf\xfa\xc4\xcf\xee\x2d\x72\x33\x7f" "\x36\x89\x8f\xc7\x69\x38\xf5\x4c\xe3\xb8\xe8\xb8\x3e\x92\xfe\x3c\x3e\x3b" "\xa7\x76\xf9\x3b\x1e\xfd\x87\x6f\x7d\xe4\xde\xe5\xdd\xf7\x60\x51\x14\x3f" "\xbb\xe5\x9f\xe7\x3d\xfe\x81\x67\x62\x5d\x0d\x0f\xa5\x75\x8e\x7f\xaf\xf5" "\xf2\x8b\x6c\xf8\xde\xb2\xee\xff\xa3\xb7\xcf\x1d\xd7\xdc\x01\x1c\x4b\xb7" "\x1f\x8f\xa7\x7d\x1b\x7c\xed\xbf\x9e\xa9\x5f\x6f\x7c\x4f\x63\x9e\xbf\xe5" "\x7c\x7d\x7e\xe0\xdc\x03\xf7\xd5\x3e\x7e\x61\x4f\xe3\xcf\xd1\x9d\x7c\xee" "\xbf\x1b\xc7\xfd\x59\x2a\xf3\xee\x3b\xfc\x77\x2d\xd7\xdf\xf2\x54\xe3\xfe" "\x36\x3f\xb5\xf8\xe3\x8a\xeb\x7d\xe9\xbd\xeb\x6e\x7d\xcd\x87\xe7\xee\x2f" "\xae\x37\xb0\xe9\x65\xf5\x87\xf1\xf0\x5b\x1b\xb7\x1b\x3f\xf7\xe6\xa1\x77" "\x36\x8e\xbf\x90\x8e\x5b\x68\xfd\x7f\xfb\x47\x8f\x7d\xa9\x76\xfc\x9d\x6f" "\x98\x7f\xfd\xf7\x0e\xce\xbf\xfe\xe7\xd2\xed\x3e\x9b\xe6\x4f\x5f\x68\x5c" "\xde\x7c\x4e\x6b\x7f\x8e\xeb\xfd\x41\x5a\x7f\xdc\x5f\x5c\xef\xc6\x2f\x7e" "\x7d\xde\xf5\x3f\xfe\x9e\xc6\xf1\x8f\xa7\xe7\xe5\x91\x34\xdb\xd7\xff\xf6" "\x3f\x79\xed\x0b\xcd\xe7\x2b\xd6\x1f\xf7\xb3\xef\xe9\xc6\xf5\xe2\xfe\xa7" "\xfe\xea\xdf\xeb\xd7\x8b\xdb\x8b\xdb\x6f\x5f\xff\xe8\xdb\x9e\x69\x39\x1f" "\xed\xb7\x7f\xfe\xcb\x8d\xdb\xd9\xfb\xc9\xff\x19\x6a\x3e\x3e\x2e\x8f\xfb" "\xc9\xfb\xee\xe9\xd6\xe7\xb9\x76\x3b\xcd\xfb\x2d\x3c\xf6\x87\xe7\x5b\xce" "\x73\xf1\x6f\x8d\xeb\xfd\x75\xdb\xfa\xe3\xf6\x4e\x3d\x3d\xff\xfa\x6f\x68" "\x5b\xe7\xa9\xad\xeb\xeb\xd7\x5f\xa8\x32\xfe\xb9\xe9\x67\xe7\x7d\xbc\xb1" "\x9e\x7d\x7f\xf9\x64\xcb\xe3\x79\xfc\x07\xe9\xfc\xbd\xe3\xb6\xfa\xed\x8e" "\xfe\x24\xed\xc7\xf4\xf1\xff\x7d\xa8\x71\x7b\xed\x3f\x2d\xe1\xc9\x1f\xb4" "\xbe\x9f\xc4\xf1\x8f\x8c\x35\x5e\x97\x71\x7b\x93\x6d\xeb\x7f\xa8\x6d\xfd" "\xe7\x5e\x5f\x3b\x77\x4b\xaf\xff\xe6\x1f\x37\xd6\xff\xf8\xdb\xbe\xd1\xfa" "\x7c\xfc\x47\x63\x1d\xfb\x9e\x6f\xcc\xa5\xd6\x7f\xe4\xf3\xdf\x69\xb9\xfe" "\x17\xbe\xdb\x78\x3e\x4e\xdf\x31\x71\xe2\xe4\xcc\xd9\xa3\xd1\xa1\x1e\x4b" "\x3f\xfb\xe7\xd4\xf7\x1b\xb7\xb7\x76\x74\xdd\xfa\x2b\x5e\xf2\xd2\x97\xbd" "\x3c\xbd\x57\xb6\xff\x79\xff\xc9\x33\x1f\x9b\x3e\x3d\x3e\x35\x3e\x55\x14" "\xe3\x7d\xf8\x23\xf1\x5e\xec\xf5\x7f\x31\xcd\xff\x6c\x8c\x73\xab\x7d\xfb" "\xf7\x14\x45\x71\x47\xd3\xe7\xb5\xeb\xdf\xdd\xd8\x7f\xc5\xeb\x2e\xfc\xf1" "\xeb\x6f\x7e\xf4\x63\x71\xdc\x3f\xbe\xab\x71\xf9\x83\xb7\x36\x3e\x6f\xbd" "\x31\x1d\xf7\x50\xba\xfc\x5c\x7a\xbe\xe3\x76\x3e\xf7\xd9\xc6\xe7\xc3\x6e" "\xd7\x1f\xf7\xb3\xd0\xcc\xeb\x5d\xa6\xb3\xdf\xbc\x7f\xd7\xb2\x0e\x4c\x8f" "\xff\xe1\x8d\x57\xd5\x5f\x65\x03\xe7\x1b\x17\xb7\xbf\x5f\x75\x2a\x5e\xe7" "\x4f\xbf\xaa\xf5\x75\xff\xd4\x87\x1a\xf3\x89\x74\x5e\x67\xd3\x4f\x66\xde" "\x74\xd5\x37\xeb\xc7\xb5\xdf\x7f\xfc\x6c\x84\x07\x3f\xd8\x78\x7d\xc7\x57" "\x72\x71\xfd\x6e\xd7\xff\x17\xe9\xf9\xbe\xed\xd9\xc6\xed\xc7\xed\xe6\xf5" "\xa6\xaf\x63\xbe\xbe\xa1\xf5\xfd\x31\x9e\x9f\x27\xee\x6d\xfb\x49\x03\x63" "\x8d\x9f\xe2\x71\x2e\xbd\x7f\x14\xe7\x1a\x1f\x8f\xa3\xe2\x6b\xaa\x07\x2f" "\x5c\xb5\x92\x65\x2e\x68\xe6\xae\x99\xc9\x63\x47\x4f\x9c\xbd\x73\xf2\xcc" "\xf4\xcc\x99\xc9\x99\xbb\xee\xde\x7f\xfc\xe4\xd9\x13\x67\xf6\xd7\x7f\x36" "\xe7\xfe\x8f\x2f\x75\xfd\xb9\xd7\xf7\xfa\xfa\xeb\xfb\xd0\xf4\xae\x1d\x45" "\xfd\xd5\x7e\xb2\x31\x5e\x64\x97\x7b\xfd\xa7\x6e\x3f\x78\x68\xf7\xd4\x75" "\x87\xa6\x0f\x1f\x38\x7b\xf8\xcc\xed\xa7\xa6\x4f\x1f\x39\x38\x33\x73\x70" "\xfa\xd0\xcc\x75\x07\x0e\x1f\x9e\xbe\x63\xa9\xeb\x1f\x3d\xb4\x77\xeb\xb6" "\x3d\xdb\x77\x6f\x9b\x38\x72\xf4\xd0\xde\x9b\xf6\xec\xd9\xbe\x67\xe2\xe8" "\x89\x93\xb5\x65\x34\x16\xb5\x84\x5d\x53\x9f\x98\x38\x71\x7a\x7f\xfd\x2a" "\x33\x7b\x77\xec\xd9\xba\x73\xe7\x8e\xa9\x89\xe3\x27\x0f\x4d\xef\xdd\x3d" "\x35\x35\x71\x76\xa9\xeb\xd7\x3f\x37\x4d\xd4\xae\xfd\xc9\x89\xd3\xd3\xc7" "\x0e\x9c\x39\x7a\x7c\x7a\x62\xe6\xe8\xdd\xd3\x7b\xb7\xee\xd9\xb5\x6b\xdb" "\x92\x3f\xdd\xef\xf8\xa9\xc3\x33\xe3\x93\xa7\xcf\x9e\x98\x3c\x3b\x33\x7d" "\x7a\xb2\xf1\x58\xc6\xcf\xd4\x2f\xae\x7d\xee\x5b\xea\xfa\x50\x33\xf3\xf9" "\x75\xf3\x7e\x9e\x1a\x48\x5f\xbd\x6f\xbd\x61\x57\xfe\xf9\xac\x35\x8f\x7e" "\x6a\xc1\x9b\x6a\x1c\xd2\xf6\x03\x44\x7f\x98\x7e\x16\xcd\xb7\xff\xfc\x4f" "\x77\x2e\xe7\xcf\x91\xfb\x47\xd2\xcc\x2a\x92\xff\x01\x00\x00\xa0\x0a\x22" "\xf7\xaf\x49\x33\x93\xff\x01\x00\x00\xa0\x34\x22\xf7\xaf\x4d\x33\x93\xff" "\x01\x00\x00\xa0\x34\x22\xf7\x8f\xa6\x99\x55\x24\xff\xeb\xff\xeb\xff\xeb" "\xff\xeb\xff\x07\xfd\x7f\xfd\xff\x4e\xe8\xff\xeb\xff\x77\x42\xff\x5f\xff" "\xbf\x1f\xd6\xaf\xff\xaf\xff\x4f\xf7\x7a\xad\xff\x1f\xb9\x7f\x5d\x51\x54" "\x32\xff\x03\x00\x00\x40\x15\x44\xee\x5f\x9f\x66\x26\xff\x03\x00\x00\x40" "\x69\x44\xee\xbf\x22\xcd\x4c\xfe\x07\x00\x00\x80\xd2\x88\xdc\xff\x92\x34" "\xb3\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xa0\xff\xaf\xff\xdf\x09" "\xfd\x7f\xfd\xff\x4e\xe8\xff\xeb\xff\xf7\xc3\xfa\xf5\xff\xf5\xff\xe9\x5e" "\xaf\xf5\xff\x23\xf7\xbf\x34\xcd\xac\x22\xf9\x1f\x00\x00\x00\xaa\x20\x72" "\xff\xcb\xd2\xcc\xe4\x7f\x00\x00\x00\x28\x8d\xc8\xfd\x2f\x4f\x33\x93\xff" "\x01\x00\x00\xa0\x34\x22\xf7\x8f\xa5\x99\x55\x24\xff\xeb\xff\xeb\xff\xeb" "\xff\xeb\xff\x07\xfd\x7f\xfd\xff\x4e\xe8\xff\xeb\xff\x77\x42\xff\x5f\xff" "\xbf\x1f\xd6\xaf\xff\xaf\xff\x4f\xf7\x7a\xad\xff\x1f\xb9\xff\xff\xa5\x99" "\x55\x24\xff\x03\x00\x00\x40\x15\x44\xee\x7f\x45\x9a\x99\xfc\x0f\x00\x00" "\x00\xa5\x11\xb9\xff\x95\x69\x66\xf2\x3f\x00\x00\x00\x94\x46\xe4\xfe\x2b" "\xd3\xcc\x2a\x92\xff\xf5\xff\xf5\xff\x7b\xa7\xff\x3f\x57\x8b\xd5\xff\xd7" "\xff\xd7\xff\xef\x1f\xfa\xff\xfa\xff\x9d\xd0\xff\xd7\xff\xef\x87\xf5\xeb" "\xff\xeb\xff\xd3\xbd\x5e\xeb\xff\x47\xee\x7f\x55\x9a\x59\x45\xf2\x3f\x00" "\x00\x00\x54\x41\xe4\xfe\xab\xd2\xcc\xe4\x7f\x00\x00\x00\x28\x8d\xc8\xfd" "\xaf\x4e\x33\x93\xff\x01\x00\x00\xa0\x34\x22\xf7\x6f\x48\x33\xab\x48\xfe" "\xd7\xff\xd7\xff\xef\x9d\xfe\xbf\x7f\xff\x3f\xe8\xff\xeb\xff\xf7\x13\xfd" "\x7f\xfd\xff\x4e\xe8\xff\xeb\xff\xf7\xc3\xfa\xf5\xff\xf5\xff\xe9\x5e\xaf" "\xf5\xff\x23\xf7\xff\xff\x34\xb3\x8a\xe4\x7f\x00\x00\x00\xa8\x82\xc8\xfd" "\x57\xa7\x99\xc9\xff\x00\x00\x00\x50\x1a\x91\xfb\x5f\x93\x66\x26\xff\x03" "\x00\x00\x40\x69\x44\xee\xbf\x26\xcd\xac\x22\xf9\x5f\xff\x5f\xff\x5f\xff" "\x5f\xff\x3f\xe8\xff\xeb\xff\x77\x42\xff\x5f\xff\xbf\x13\xfa\xff\xfa\xff" "\xfd\xb0\x7e\xfd\x7f\xfd\x7f\xba\xd7\x6b\xfd\xff\xc8\xfd\xaf\x4d\x33\xab" "\x48\xfe\x07\x00\x00\x80\x2a\x88\xdc\xff\xba\x34\x33\xf9\x1f\x00\x00\x00" "\x4a\x23\x72\xff\xeb\xd3\xcc\xe4\x7f\x00\x00\x00\x28\x8d\xc8\xfd\xe3\x69" "\x66\x15\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x41\xff\x5f\xff\xbf\x13" "\xfa\xff\xfa\xff\x9d\xd0\xff\xd7\xff\xef\x87\xf5\xeb\xff\xeb\xff\xd3\xbd" "\x5e\xeb\xff\x47\xee\xdf\x98\x66\x56\x91\xfc\x0f\x00\x00\x00\x55\x10\xb9" "\x7f\x53\x9a\x99\xfc\x0f\x00\x00\x00\xa5\x11\xb9\xff\xda\x34\x33\xf9\x1f" "\x00\x00\x00\x4a\x23\x72\xff\xe6\x34\xb3\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xfd" "\x7f\xfd\xff\xa0\xff\xaf\xff\xdf\x09\xfd\x7f\xfd\xff\x4e\xe8\xff\xeb\xff" "\xf7\xc3\xfa\xf5\xff\xf5\xff\xe9\x5e\xaf\xf5\xff\x23\xf7\xbf\x21\xcd\xac" "\x22\xf9\x1f\x00\x00\x00\xaa\x20\x72\xff\x75\x69\x66\xf2\x3f\x00\x00\x00" "\x94\x46\xe4\xfe\x37\xa6\x99\xc9\xff\x00\x00\x00\x50\x1a\x91\xfb\xb7\xa4" "\x99\x55\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x07\xfd\x7f\xfd\xff\x4e" "\xe8\xff\xeb\xff\x77\x42\xff\x5f\xff\xbf\x1f\xd6\xaf\xff\xaf\xff\x4f\xf7" "\x7a\xad\xff\x1f\xb9\xff\x4d\x69\x66\x15\xc9\xff\x00\x00\x00\x50\x05\x91" "\xfb\xaf\x4f\x33\x93\xff\x01\x00\x00\xa0\x34\x22\xf7\xdf\x90\x66\x26\xff" "\x03\x00\x00\x40\x69\x44\xee\x9f\x48\x33\xab\x48\xfe\xd7\xff\xd7\xff\xd7" "\xff\xd7\xff\x0f\x3d\xd3\xff\x7f\x5f\x51\x14\xfa\xff\x7d\x43\xff\x5f\xff" "\xbf\x13\xfa\xff\xfa\xff\xfd\xb0\x7e\xfd\x7f\xfd\x7f\xba\xd7\x6b\xfd\xff" "\xc8\xfd\x6f\x4e\x33\xab\x48\xfe\x07\x00\x00\x80\x2a\x88\xdc\x7f\x63\x9a" "\x99\xfc\x0f\x00\x00\x00\xa5\x11\xb9\x7f\x32\xcd\x4c\xfe\x07\x00\x00\x80" "\xd2\x88\xdc\x3f\x95\x66\x56\x91\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x1f" "\x7a\xa6\xff\xef\xdf\xff\xef\x2b\xfa\xff\xfa\xff\x9d\xd0\xff\xd7\xff\xef" "\x87\xf5\xeb\xff\xeb\xff\xd3\xbd\x5e\xeb\xff\x47\xee\xdf\x9a\x66\x56\x91" "\xfc\x0f\x00\x00\x00\x55\x10\xb9\x7f\x5b\x9a\x99\xfc\x0f\x00\x00\x00\xa5" "\x11\xb9\x7f\x7b\x9a\x99\xfc\x0f\x00\x00\x00\xa5\x11\xb9\x7f\x47\x9a\x59" "\x45\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xd0\xff\xd7\xff\xef\x84\xfe" "\xbf\xfe\x7f\x27\xf4\xff\xf5\xff\xfb\x61\xfd\xfa\xff\xfa\xff\x74\xaf\xd7" "\xfa\xff\x91\xfb\x77\xa6\x99\x55\x24\xff\x03\x00\x00\x40\x15\x44\xee\xdf" "\x95\x66\x26\xff\x03\x00\x00\x40\x69\x44\xee\xdf\x9d\x66\x26\xff\x03\x00" "\x00\x40\x69\x44\xee\xbf\x29\xcd\xac\x22\xf9\x5f\xff\x5f\xff\x5f\xff\x5f" "\xff\x3f\xe8\xff\xeb\xff\x77\x42\xff\x5f\xff\xbf\x13\xfa\xff\xfa\xff\xfd" "\xb0\xfe\x4b\xd2\xff\xbf\x6f\xe1\x1f\x03\xa0\xff\x4f\x19\xf4\x5a\xff\x3f" "\x72\xff\x9e\x34\xb3\x8a\xe4\x7f\x00\x00\x00\xa8\x82\xc8\xfd\x6f\x49\x33" "\x93\xff\x01\x00\x00\xa0\x34\x22\xf7\xff\x42\x9a\x99\xfc\x0f\x00\x00\x00" "\xa5\x11\xb9\xff\x17\xd3\xcc\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff" "\x83\xfe\xbf\xfe\x7f\x27\xf4\xff\xf5\xff\x3b\xa1\xff\xaf\xff\xdf\x0f\xeb" "\xf7\xef\xff\xeb\xff\xd3\xbd\x5e\xeb\xff\x47\xee\xdf\x9b\x66\x56\x91\xfc" "\x0f\x00\x00\x00\x55\x10\xb9\xff\xad\x69\x66\xf2\x3f\x00\x00\x00\x94\x46" "\xe4\xfe\xb7\xa5\x99\xc9\xff\x00\x00\x00\x50\x1a\x91\xfb\xf7\xa5\x99\x55" "\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x07\xfd\xff\x3e\xe9\xff\xff\xfe" "\x32\x8e\xb9\x84\xf4\xff\xf5\xff\x3b\xa1\xff\xaf\xff\xdf\x0f\xeb\xd7\xff" "\xd7\xff\xa7\x7b\xbd\xd6\xff\x8f\xdc\xff\xf6\x34\xb3\x8a\xe4\x7f\x00\x00" "\x00\xa8\x82\xc8\xfd\xef\x48\x33\x93\xff\x01\x00\x00\xa0\x34\x22\xf7\xbf" "\x33\xcd\x4c\xfe\x07\x00\x00\x80\xd2\x88\xdc\xff\xae\x34\xb3\x8a\xe4\x7f" "\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xa0\xff\xdf\x27\xfd\xff\x1e\xa3\xff\xaf" "\xff\xdf\x09\xfd\x7f\xfd\xff\x7e\x58\xbf\xfe\xbf\xfe\x3f\xdd\xeb\xb5\xfe" "\x7f\xe4\xfe\x77\xa7\x99\x55\x24\xff\x03\x00\x00\x40\x15\x44\xee\xff\xa5" "\x34\x33\xf9\x1f\x00\x00\x00\x4a\x23\x72\xff\x7b\xd2\xcc\xe4\x7f\x00\x00" "\x00\x28\x8d\xc8\xfd\x37\xa7\x99\x55\x24\xff\xeb\xff\xeb\xff\xbf\x58\xfd" "\xff\x35\xe9\x36\xf4\xff\x9b\xf6\x9d\xfe\x7f\x9d\xfe\xbf\xfe\xff\x4a\xe8" "\xff\xeb\xff\x17\x2b\xe9\xff\x0f\xa4\x57\xb0\xfe\x7f\xdd\xe5\xee\xcf\xf7" "\xfb\xfa\xf5\xff\xf5\xff\xe9\x5e\xaf\xf5\xff\x23\xf7\xff\x72\x9a\x59\x45" "\xf2\x3f\x00\x00\x00\x54\x41\xe4\xfe\x5b\xd2\xcc\xe4\x7f\x00\x00\x00\x28" "\x8d\xc8\xfd\xb7\xa6\x99\xc9\xff\x00\x00\x00\x50\x1a\x91\xfb\xdf\x9b\x66" "\x56\x91\xfc\xdf\xf3\xfd\xff\x74\x87\xfa\xff\x0b\xf6\xff\x5f\x5a\x9b\xbd" "\xd8\xff\x0f\xfa\xff\x4d\xfb\x4e\xff\xbf\x4e\xff\x5f\xff\x7f\x25\xf4\xff" "\xf5\xff\x0b\xff\xfe\x7f\xc7\x2e\x77\x7f\xbe\xdf\xd7\xaf\xff\xaf\xff\x4f" "\xf7\x7a\xad\xff\x1f\xb9\xff\xb6\x34\xb3\x8a\xe4\x7f\x00\x00\x00\xa8\x82" "\xc8\xfd\xbf\x92\x66\xd6\x9c\xff\x17\xfa\xcb\x32\x00\x00\x00\xa0\x2f\x44" "\xee\x7f\x5f\x9a\x99\xbf\xff\x07\x00\x00\x80\xd2\x88\xdc\xff\xfe\x34\xb3" "\x8a\xe4\xff\x9e\xef\xff\x27\xfa\xff\xfd\xf7\xef\xff\x07\xfd\xff\xa6\x7d" "\xa7\xff\x5f\xa7\xff\xaf\xff\xbf\x12\xfa\xff\xfa\xff\x85\xfe\x7f\xc7\x2e" "\x77\x7f\xbe\xdf\xd7\xaf\xff\xaf\xff\x4f\xf7\x7a\xad\xff\x1f\xb9\xff\x57" "\xd3\xcc\x2a\x92\xff\x01\x00\x00\xa0\x0a\x22\xf7\x7f\x20\xcd\x4c\xfe\x07" "\x00\x00\x80\xd2\x88\xdc\xff\xc1\x34\x33\xf9\x1f\x00\x00\x00\x4a\x23\x72" "\xff\x87\xd2\xcc\x2a\x92\xff\xf5\xff\xf5\xff\x7b\xa2\xff\x3f\x50\xe8\xff" "\x37\xd1\xff\xd7\xff\xef\x27\xfa\xff\xfa\xff\x9d\xd0\xff\xef\x95\xfe\xff" "\xe2\x5b\x52\xff\x5f\xff\x5f\xff\x9f\x6e\xf5\x5a\xff\x3f\x72\xff\xed\x69" "\x66\x15\xc9\xff\x00\x00\x00\x50\x05\x91\xfb\x3f\x9c\x66\x26\xff\x03\x00" "\x00\x40\x69\x44\xee\xff\xb5\x34\x33\xf9\x1f\x00\x00\x00\x4a\x23\x72\xff" "\xaf\xa7\x99\x55\x24\xff\xeb\xff\xeb\xff\xf7\x44\xff\xdf\xbf\xff\xaf\xff" "\xaf\xff\xaf\xff\xbf\x00\xfd\x7f\xfd\xff\x42\xff\xbf\x63\x97\xbb\x3f\xdf" "\xef\xeb\xd7\xff\xd7\xff\xa7\x7b\xbd\xd6\xff\x8f\xdc\xff\x1b\x69\x66\x15" "\xc9\xff\x00\x00\x00\x50\x05\x91\xfb\x3f\x92\x66\x26\xff\x03\x00\x00\x40" "\x69\x44\xee\xff\xcd\x34\x33\xf9\x1f\x00\x00\x00\x4a\x23\x72\xff\x6f\xa5" "\x99\x55\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x07\xfd\x7f\xfd\xff\x4e" "\xe8\xff\xeb\xff\x77\x42\xff\x5f\xff\xbf\x1f\xd6\xaf\xff\xaf\xff\x4f\xf7" "\x7a\xad\xff\x1f\xb9\xff\xb7\xd3\xcc\x2a\x92\xff\x01\x00\x00\xa0\x0a\x22" "\xf7\xff\x4e\x9a\x99\xfc\x0f\x00\x00\x00\xa5\x11\xb9\x7f\x7f\x9a\x99\xfc" "\x0f\x00\x00\x00\xa5\x11\xb9\xff\xa3\x69\x66\x15\xc9\xff\xfa\xff\xfa\xff" "\xfa\xff\xfa\xff\x41\xff\x5f\xff\xbf\x13\xfa\xff\xfa\xff\x9d\xd0\xff\xd7" "\xff\xef\x87\xf5\xeb\xff\xeb\xff\xd3\xbd\x5e\xeb\xff\x47\xee\x3f\x90\x66" "\x56\x91\xfc\x0f\x00\x00\x00\x55\x10\xb9\xff\x77\xd3\xcc\xe4\x7f\x00\x00" "\x00\x28\x8d\xc8\xfd\x07\xd3\xcc\xe4\x7f\x00\x00\x00\x28\x8d\xc8\xfd\x87" "\xd2\xcc\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x83\xfe\xbf\xfe\x7f" "\x27\xf4\xff\xf5\xff\x3b\xa1\xff\xaf\xff\x1f\x16\x7b\x42\x2e\xf7\xfa\x57" "\xab\xff\x3f\x54\xe8\xff\x53\x5d\xbd\xd6\xff\x8f\xdc\x3f\x9d\x66\x56\x91" "\xfc\x0f\x00\x00\x00\x55\x10\xb9\xff\x70\x9a\x99\xfc\x0f\x00\x00\x00\xa5" "\x11\xb9\xff\x48\x9a\x99\xfc\x0f\x00\x00\x00\xa5\x11\xb9\xff\x63\x69\x66" "\x15\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x41\xff\x5f\xff\xbf\x13\xfa" "\xff\xfa\xff\x9d\xd0\xff\xd7\xff\xef\x87\xf5\xfb\xf7\xff\xf5\xff\xe9\x5e" "\xaf\xf5\xff\x23\xf7\x1f\x4d\x33\xab\x48\xfe\x07\x00\x00\x80\x2a\x88\xdc" "\xff\xf1\x34\x33\xf9\x1f\x00\x00\x00\x4a\x23\x72\xff\x27\xd2\xcc\xe4\x7f" "\x00\x00\x00\x28\x8d\xc8\xfd\xc7\xd2\xcc\x2a\x92\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\x83\xfe\xbf\xfe\x7f\x27\xf4\xff\xf5\xff\x3b\xa1\xff\xaf\xff" "\xdf\x0f\xeb\xd7\xff\xd7\xff\xa7\x7b\xbd\xd6\xff\x8f\xdc\x7f\x3c\xcd\xac" "\x22\xf9\x1f\x00\x00\x00\xaa\x20\x72\xff\x89\x34\x33\xf9\x1f\x00\x00\x00" "\x4a\x23\x72\xff\xc9\x34\x33\xf9\x1f\x00\x00\x00\x4a\x23\x72\xff\xa9\x34" "\xb3\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xa0\xff\xaf\xff\xdf\x09" "\xfd\x7f\xfd\xff\x4e\xe8\xff\xeb\xff\xf7\xc3\xfa\xf5\xff\xf5\xff\xe9\x5e" "\xaf\xf5\xff\x23\xf7\xff\x5e\x9a\x59\x45\xf2\x3f\x00\x00\x00\x54\x41\xe4" "\xfe\xd3\x69\x66\xf2\x3f\x00\x00\x00\x94\x46\xe4\xfe\x99\x34\x33\xf9\x1f" "\x00\x00\x00\x4a\x23\x72\xff\x99\x34\xb3\x8a\xe4\x7f\xfd\xff\xff\x63\xef" "\x2e\x7a\xc4\x4c\x8e\x38\x0e\x8f\xa2\x78\x35\xa7\x7c\xdb\x64\xc3\xcc\xcc" "\xcc\xcc\xb0\x61\x66\x66\x66\x66\x66\xce\x21\x4a\xb6\xaa\x62\xc7\x93\x8c" "\xdc\xaf\xc7\xee\xee\x7a\x9e\x4b\x49\xb3\xd2\xaa\x77\x35\x07\xff\x65\xfd" "\xf4\xea\xff\xf5\xff\xfa\xff\xa4\xff\xd7\xff\x8f\xd0\xff\xeb\xff\x47\xe8" "\xff\xf5\xff\x2b\xbc\x5f\xff\xaf\xff\xe7\xb8\xd9\xfa\xff\xdc\xfd\x77\x8e" "\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x5d\xe2\x16\xfb\x1f\x00\x00" "\x00\xb6\x91\xbb\xff\xd6\xb8\xc5\xfe\x07\x00\x00\x80\x6d\xe4\xee\xbf\x6b" "\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\x7f\xd2\xff\xeb\xff\x47\xe8" "\xff\xf5\xff\x23\xf4\xff\xfa\xff\x15\xde\xaf\xff\xd7\xff\x73\xdc\x6c\xfd" "\x7f\xee\xfe\xbb\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xee\x71" "\x8b\xfd\x0f\x00\x00\x00\xdb\xc8\xdd\x7f\x8f\xb8\xc5\xfe\x07\x00\x00\x80" "\x6d\xe4\xee\xbf\x67\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\x7f\xd2" "\xff\xeb\xff\x47\xe8\xff\xf5\xff\x23\xf4\xff\xfa\xff\x15\xde\xaf\xff\xd7" "\xff\x73\xdc\x6c\xfd\x7f\xee\xfe\x7b\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74" "\x90\xbb\xff\xde\x71\x8b\xfd\x0f\x00\x00\x00\xdb\xc8\xdd\x7f\x9f\xb8\xc5" "\xfe\x07\x00\x00\x80\x6d\xe4\xee\xbf\x6f\xdc\xd2\x64\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\x7f\xd2\xff\xeb\xff\x47\xe8\xff\xf5\xff\x23\xf4\xff\xfa\xff" "\x15\xde\xaf\xff\xd7\xff\x73\xdc\x6c\xfd\x7f\xee\xfe\xfb\xc5\x2d\x4d\xf6" "\x3f\x00\x00\x00\x74\x90\xbb\xff\xfe\x71\x8b\xfd\x0f\x00\x00\x00\xdb\xc8" "\xdd\xff\x80\xb8\xc5\xfe\x07\x00\x00\x80\x6d\xe4\xee\x7f\x60\xdc\xd2\x64" "\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\x7f\xd2\xff\xeb\xff\x47\xe8\xff\xf5\xff" "\x23\xf4\xff\xfa\xff\x15\xde\xaf\xff\xd7\xff\x73\xdc\x6c\xfd\x7f\xee\xfe" "\x07\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xc1\x71\x8b\xfd\x0f" "\x00\x00\x00\xdb\xc8\xdd\xff\x90\xb8\xc5\xfe\x07\x00\x00\x80\x6d\xe4\xee" "\x7f\x68\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\x7f\xd2\xff\xeb\xff" "\x47\xe8\xff\xf5\xff\x23\xf4\xff\xfa\xff\x15\xde\xaf\xff\xd7\xff\x73\xdc" "\x6c\xfd\x7f\xee\xfe\x87\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff" "\xe1\x71\x8b\xfd\x0f\x00\x00\x00\xdb\xc8\xdd\xff\x88\xb8\xc5\xfe\x07\x00" "\x00\x80\x6d\xe4\xee\x7f\x64\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd" "\x7f\xd2\xff\xeb\xff\x47\xe8\xff\xf5\xff\x23\xf4\xff\xfa\xff\x15\xde\xaf" "\xff\xd7\xff\x73\xdc\x6c\xfd\x7f\xee\xfe\x47\xc5\x2d\x4d\xf6\x3f\x00\x00" "\x00\x74\x90\xbb\xff\xd1\x71\x8b\xfd\x0f\x00\x00\x00\xdb\xc8\xdd\xff\x98" "\xb8\xe5\xbf\xf7\xff\xe9\x8d\x7c\x15\x00\x00\x00\x70\x3d\xe5\xee\x7f\x6c" "\xdc\xd2\xe4\xef\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x3f\xe9\xff\xf5\xff\x23" "\xf4\xff\xfa\xff\x11\xfa\x7f\xfd\xff\x0a\xef\xd7\xff\xeb\xff\x39\x6e\xb6" "\xfe\x3f\x77\xff\xe3\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xf8" "\xb8\xc5\xfe\x07\x00\x00\x80\x6d\xe4\xee\x7f\x42\xdc\x62\xff\x03\x00\x00" "\xc0\x36\x72\xf7\x3f\x31\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x3f" "\xe9\xff\xf5\xff\x23\xf4\xff\xfa\xff\x11\xfa\x7f\xfd\xff\x0a\xef\xd7\xff" "\xeb\xff\x39\x6e\xb6\xfe\x3f\x77\xff\x93\xe2\x96\x26\xfb\x1f\x00\x00\x00" "\x3a\xc8\xdd\xff\xe4\xb8\xc5\xfe\x07\x00\x00\x80\x6d\xe4\xee\x7f\x4a\xdc" "\x62\xff\x03\x00\x00\xc0\x36\x72\xf7\x3f\x35\x6e\x69\xb2\xff\xf5\xff\xfa" "\x7f\xfd\xbf\xfe\x3f\xe9\xff\xf5\xff\x23\xf4\xff\xfa\xff\x11\xfa\x7f\xfd" "\xff\x0a\xef\xd7\xff\xeb\xff\x39\x6e\xb6\xfe\x3f\x77\xff\xd3\xe2\x96\x26" "\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xf4\xb8\xc5\xfe\x07\x00\x00\x80\x6d" "\xe4\xee\x7f\x46\xdc\x62\xff\x03\x00\x00\xc0\x36\x72\xf7\x3f\x33\x6e\x69" "\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x3f\xe9\xff\xf5\xff\x23\xf4\xff\xfa" "\xff\x11\xfa\x7f\xfd\xff\x0a\xef\xd7\xff\xeb\xff\x39\x6e\xb6\xfe\x3f\x77" "\xff\xb3\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xec\xb8\xc5\xfe" "\x07\x00\x00\x80\x6d\xe4\xee\x7f\x4e\xdc\x62\xff\x03\x00\x00\xc0\x36\x72" "\xf7\x3f\x37\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x3f\xe9\xff\xf5" "\xff\x23\x36\xec\xff\x6f\xff\x15\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf" "\xfe\x9f\xc3\x66\xeb\xff\x73\xf7\x3f\x2f\x6e\x69\xb2\xff\x01\x00\x00\xa0" "\x83\xdc\xfd\xcf\x8f\x5b\xec\x7f\x00\x00\x00\xd8\x46\xee\xfe\x17\xc4\x2d" "\xf6\x3f\x00\x00\x00\x6c\x23\x77\xff\x0b\xe3\x96\x26\xfb\x5f\xff\xaf\xff" "\xd7\xff\xeb\xff\x93\xfe\x5f\xff\x3f\x62\xc3\xfe\xdf\xf7\xff\x4f\xae\x77" "\xff\x7f\x7a\xd5\x4f\xf4\xff\xfa\xff\x15\xde\xaf\xff\xd7\xff\x73\xdc\x6c" "\xfd\x7f\xee\xfe\x17\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xc5" "\x71\x8b\xfd\x0f\x00\x00\x00\xdb\xc8\xdd\xff\x92\xb8\xc5\xfe\x07\x00\x00" "\x80\x6d\xe4\xee\x7f\x69\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\x7f" "\xd2\xff\xeb\xff\x47\xe8\xff\x37\xed\xff\xef\x70\xe2\xfb\xff\xfa\x7f\xfd" "\xbf\xfe\x5f\xff\xcf\x61\xb3\xf5\xff\xb9\xfb\x5f\x16\xb7\x34\xd9\xff\x00" "\x00\x00\xd0\x41\xee\xfe\x97\xc7\x2d\xf6\x3f\x00\x00\x00\x6c\x23\x77\xff" "\x2b\xe2\x16\xfb\x1f\x00\x00\x00\xb6\x91\xbb\xff\x95\x71\x4b\x93\xfd\xaf" "\xff\xd7\xff\xeb\xff\xf5\xff\x49\xff\xaf\xff\x1f\xa1\xff\xdf\xb4\xff\xbf" "\xae\xdf\xff\xbf\x9a\xfe\x5f\xff\xbf\xc2\xfb\xf5\xff\xfa\x7f\x8e\x9b\xad" "\xff\xcf\xdd\xff\xaa\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x65\x5d\xc3\x76\xcf" "\xdd\xff\xea\xb8\x23\xff\x0e\x00\x00\x00\x60\x6e\xb9\xfb\x5f\x13\xb7\xd8" "\xff\x00\x00\x00\xb0\x8d\xdc\xfd\xaf\x8d\x5b\x9a\xec\x7f\xfd\xbf\xfe\x7f" "\x8e\xfe\xff\xb6\x93\xb3\xde\xaf\xff\xd7\xff\x9f\xe8\xff\xa7\xa7\xff\xd7" "\xff\x8f\xd0\xff\xeb\xff\x57\x78\xff\x05\xf5\xff\xf9\x6b\xaa\xff\xa7\x85" "\xd9\xfa\xff\xdc\xfd\xaf\x8b\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff" "\x6d\x71\x8b\xfd\x0f\x00\x00\x00\xdb\xc8\xdd\xff\xfa\xb8\xc5\xfe\x07\x00" "\x00\x80\x6d\xe4\xee\x7f\x43\xdc\xd2\x64\xff\xeb\xff\xf5\xff\x73\xf4\xff" "\x3d\xbf\xff\x7f\xaa\xff\xbf\xe2\xff\xa7\xfe\x5f\xff\x7f\x16\xfd\xbf\xfe" "\xff\x44\xff\x3f\xec\x66\xf7\xf3\xab\xbf\xdf\xf7\xff\xf5\xff\x1c\x37\x5b" "\xff\x9f\xbb\xff\x8d\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x53" "\xdc\x62\xff\x03\x00\x00\xc0\x36\x72\xf7\xbf\x39\x6e\xb1\xff\x01\x00\x00" "\x60\x1b\xb9\xfb\xdf\x12\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\xdf\xf7\xff" "\x93\xfe\x5f\xff\x3f\x42\xff\xaf\xff\x1f\xa1\xff\xd7\xff\xaf\xf0\x7e\xfd" "\xbf\xfe\x9f\xe3\x66\xeb\xff\x73\xf7\xbf\x35\x6e\x69\xb2\xff\x01\x00\x00" "\xa0\x83\xdc\xfd\x6f\x8b\x5b\xec\x7f\x00\x00\x00\xd8\x46\xee\xfe\xb7\xc7" "\x2d\xf6\x3f\x00\x00\x00\x6c\x23\x77\xff\x3b\xe2\x96\x26\xfb\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\xd3\xaa\xfd\xff\xa5\x73\xde\xaf\xff\xbf\x58\xfa\x7f" "\xfd\xff\x08\xfd\xbf\xfe\x7f\x85\xf7\xeb\xff\xf5\xff\x1c\x37\x5b\xff\x9f" "\xbb\xff\x9d\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x57\xdc\x62" "\xff\x03\x00\x00\xc0\x36\x72\xf7\xbf\x3b\x6e\xb1\xff\x01\x00\x00\x60\x1b" "\xb9\xfb\xdf\x13\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x9f\x56\xed" "\xff\xcf\x7b\xbf\xfe\xff\x62\xe9\xff\xf5\xff\x23\xf4\xff\xfa\xff\x15\xde" "\xaf\xff\xd7\xff\x73\xdc\x6c\xfd\x7f\xee\xfe\xf7\xc6\x2d\x4d\xf6\x3f\x00" "\x00\x00\x74\x90\xbb\xff\x7d\x71\x8b\xfd\x0f\x00\x00\x00\xdb\xc8\xdd\xff" "\xfe\xb8\xc5\xfe\x07\x00\x00\x80\x6d\xe4\xee\xff\x40\xdc\xd2\x64\xff\xeb" "\xff\xf5\xff\xfa\x7f\xfd\x7f\xd2\xff\xeb\xff\x47\xe8\xff\xf5\xff\x23\xf4" "\xff\xfa\xff\x15\xde\xaf\xff\xd7\xff\x73\xdc\x6c\xfd\x7f\xee\xfe\x0f\xc6" "\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x43\x71\x8b\xfd\x0f\x00\x00" "\x00\xdb\xc8\xdd\xff\xe1\xb8\xc5\xfe\x07\x00\x00\x80\x6d\xe4\xee\xff\x48" "\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\x7f\xd2\xff\xeb\xff\x47\xe8" "\xff\xf5\xff\x23\xf4\xff\xfa\xff\x15\xde\xaf\xff\xd7\xff\x73\xdc\x6c\xfd" "\x7f\xee\xfe\x8f\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x63\x71" "\x8b\xfd\x0f\x00\x00\x00\xdb\xc8\xdd\xff\xf1\xb8\xc5\xfe\x07\x00\x00\x80" "\x6d\xe4\xee\xff\x44\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\x7f\xd2" "\xff\xeb\xff\x47\xe8\xff\xf5\xff\x23\xf4\xff\xfa\xff\x15\xde\xaf\xff\xd7" "\xff\x73\xdc\x6c\xfd\x7f\xee\xfe\x4f\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74" "\x90\xbb\xff\x53\x71\x8b\xfd\x0f\x00\x00\x00\xdb\xc8\xdd\xff\xe9\xb8\xc5" "\xfe\x07\x00\x00\x80\x6d\xe4\xee\xff\xcc\xbf\xef\x1d\xff\xf3\x0f\x9a\xec" "\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x4f\xfa\x7f\xfd\xff\x08\xfd\xbf\xfe\x7f" "\x84\xfe\x5f\xff\xbf\xc2\xfb\xf5\xff\xfa\x7f\x8e\x9b\xad\xff\xbf\x7d\xf7" "\x9f\x9e\x7c\x36\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x9f\x8b\x5b" "\xec\x7f\x00\x00\x00\xd8\x46\xee\xfe\xcf\xc7\x2d\xf6\x3f\x00\x00\x00\x6c" "\x23\x77\xff\x17\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x93\xfe" "\x5f\xff\x3f\x42\xff\xaf\xff\x1f\xa1\xff\xd7\xff\xaf\xf0\x7e\xfd\xbf\xfe" "\x9f\xe3\x66\xeb\xff\x73\xf7\x7f\x31\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83" "\xdc\xfd\x5f\x8a\x5b\xec\x7f\x00\x00\x00\xd8\x46\xee\xfe\x2f\xc7\x2d\xf6" "\x3f\x00\x00\x00\x6c\x23\x77\xff\x57\xe2\x96\x26\xfb\x5f\xff\xdf\xb4\xff" "\xbf\xe5\xec\xfe\x3f\xff\x7b\xd7\xed\xff\x6f\xbd\xe2\xfd\xfa\xff\x2b\xdf" "\xa9\xff\xd7\xff\x5f\x04\xfd\xbf\xfe\x7f\x84\xfe\x5f\xff\xbf\xc2\xfb\xf5" "\xff\xfa\x7f\x8e\x9b\xad\xff\xcf\xdd\xff\xd5\xb8\xa5\xc9\xfe\x07\x00\x00" "\x80\x0e\x72\xf7\x7f\x2d\x6e\xb1\xff\x01\x00\x00\x60\x1b\xb9\xfb\xbf\x1e" "\xb7\xd8\xff\x00\x00\x00\xb0\x8d\xdc\xfd\xdf\x88\x5b\x9a\xec\x7f\xfd\x7f" "\xd3\xfe\xdf\xf7\xff\xf5\xff\x67\xd0\xff\xeb\xff\x47\xe8\xff\xf5\xff\x23" "\xf4\xff\xfa\xff\x15\xde\xaf\xff\xd7\xff\x73\xdc\x6c\xfd\x7f\xee\xfe\x6f" "\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x5b\x71\x8b\xfd\x0f\x00" "\x00\x00\xdb\xc8\xdd\xff\xed\xb8\xc5\xfe\x07\x00\x00\x80\x6d\xe4\xee\xff" "\x4e\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\x7f\xd2\xff\xeb\xff\x47" "\xe8\xff\xf5\xff\x23\xf4\xff\xfa\xff\xff\xe5\x4e\x13\xbd\x5f\xff\xaf\xff" "\xe7\xb8\x8b\xe8\xff\x2f\x5d\xf6\xc3\x6b\xed\xff\x73\xf7\x7f\x37\x6e\x69" "\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xdf\x8b\x5b\xec\x7f\x00\x00\x00\xd8" "\x46\xee\xfe\xef\xc7\x2d\xf6\x3f\x00\x00\x00\x6c\x23\x77\xff\x0f\xe2\x96" "\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x93\xfe\x5f\xff\x3f\x42\xff\xaf" "\xff\x1f\xa1\xff\xd7\xff\xaf\xf0\x7e\xfd\xbf\xfe\x9f\xe3\x2e\xa2\xff\xbf" "\xdc\xb5\xf6\xff\xb9\xfb\x7f\x18\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee" "\xfe\x1f\xc5\x2d\xf6\x3f\x00\x00\x00\x6c\x23\x77\xff\x8f\xe3\x16\xfb\x1f" "\x00\x00\x00\xb6\x91\xbb\xff\x27\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff" "\xf5\xff\x49\xff\xaf\xff\x1f\xa1\xff\xd7\xff\x8f\xd0\xff\xeb\xff\x57\x78" "\xbf\xfe\x5f\xff\xcf\x71\xb3\xf5\xff\xb9\xfb\x7f\x1a\xb7\x34\xd9\xff\x00" "\x00\x00\xd0\x41\xee\xfe\x9f\xc5\x2d\xf6\x3f\x00\x00\x00\x6c\x23\x77\xff" "\xcf\xe3\x16\xfb\x1f\x00\x00\x00\xb6\x91\xbb\xff\x17\x71\x4b\x93\xfd\xaf" "\xff\xd7\xff\xeb\xff\xf5\xff\x49\xff\xaf\xff\x1f\xa1\xff\xd7\xff\x8f\xd0" "\xff\xeb\xff\x57\x78\xbf\xfe\x5f\xff\xcf\x71\xff\xaf\xff\x8f\x3f\xf3\xdf" "\xd0\xfe\x3f\x77\xff\x2f\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff" "\xab\xb8\xc5\xfe\x07\x00\x00\x80\x6d\xe4\xee\xff\x75\xdc\x62\xff\x03\x00" "\x00\xc0\x36\x72\xf7\xff\x26\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\x3f\xe9\xff\xf5\xff\x23\xf4\xff\xfa\xff\x11\xfa\x7f\xfd\xff\x0a\xef\xd7" "\xff\xeb\xff\x39\x6e\xb6\xef\xff\xe7\xee\xff\x6d\xdc\xd2\x64\xff\x03\x00" "\x00\x40\x07\xb9\xfb\x7f\x17\xb7\xd8\xff\x00\x00\x00\xb0\x8d\xdc\xfd\xbf" "\x8f\x5b\xec\x7f\x00\x00\x00\xd8\x46\xee\xfe\x3f\xc4\x2d\x4d\xf6\xff\x79" "\xfd\xff\xa5\xb8\x37\xb1\xff\xcf\x27\xe8\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\x7f\x42\xfa\x7f\xfd\xff\x08\xfd\xbf\xfe\x7f\x85\xf7\xeb\xff\xf5\xff\x1c" "\x37\x5b\xff\x9f\xbb\xff\x8f\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee" "\xff\x53\xdc\x62\xff\x03\x00\x00\xc0\x36\x72\xf7\xff\x39\x6e\xb1\xff\x01" "\x00\x00\x60\x1b\xb9\xfb\xff\x12\xb7\x34\xd9\xff\xbe\xff\xaf\xff\xd7\xff" "\xeb\xff\x93\xfe\x5f\xff\x3f\x42\xff\xaf\xff\x1f\xd1\xbe\xff\xff\xd7\x8f" "\xf5\xff\xd3\xbf\x5f\xff\xaf\xff\xe7\xb8\xd9\xfa\xff\xdc\xfd\x7f\x8d\x5b" "\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xdf\xe2\x16\xfb\x1f\x00\x00\x00" "\xb6\x91\xbb\xff\xef\x71\x8b\xfd\x0f\x00\x00\x00\xdb\xc8\xdd\xff\x8f\xb8" "\xa5\xc9\xfe\xd7\xff\xeb\xff\x17\xef\xff\x6f\xd1\xff\xeb\xff\xcf\x7b\xbf" "\xfe\xff\x62\xe9\xff\xf5\xff\x23\xda\xf7\xff\xbe\xff\xbf\xc4\xfb\xf5\xff" "\xfa\x7f\x8e\x9b\xad\xff\xcf\xdd\xff\xcf\x00\x00\x00\xff\xff\x43\x47\x60" "\xba", 24283); syz_mount_image( /*fs=*/0x200000000380, /*dir=*/0x2000000006c0, /*flags=MS_LAZYTIME|MS_I_VERSION|MS_SILENT|MS_RELATIME|MS_DIRSYNC*/ 0x2a08080, /*opts=*/0x2000000027c0, /*chdir=*/1, /*size=*/0x5edb, /*img=*/0x2000000133c0); // symlink arguments: [ // old: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 2f 66 69 6c 65 30 00} (length 0xe) // } // new: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 00} (length 0xfe) // } // ] memcpy((void*)0x20000000a900, "./file0/file0\000", 14); memcpy((void*)0x200000000cc0, "./" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 254); syscall(__NR_symlink, /*old=*/0x20000000a900ul, /*new=*/0x200000000cc0ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; do_sandbox_none(); return 0; }