// https://syzkaller.appspot.com/bug?id=6c849497a6bc86e33b75873fe2aae7ab6ed4ca26 // 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 #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; } //% 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 int inject_fault(int nth) { int fd; fd = open("/proc/thread-self/fail-nth", O_RDWR); if (fd == -1) exit(1); char buf[16]; sprintf(buf, "%d", nth); if (write(fd, buf, strlen(buf)) != (ssize_t)strlen(buf)) exit(1); return fd; } 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 const char* setup_fault() { int fd = open("/proc/self/make-it-fail", O_WRONLY); if (fd == -1) return "CONFIG_FAULT_INJECTION is not enabled"; close(fd); fd = open("/proc/thread-self/fail-nth", O_WRONLY); if (fd == -1) return "kernel does not have systematic fault injection support"; close(fd); static struct { const char* file; const char* val; bool fatal; } files[] = { {"/sys/kernel/debug/failslab/ignore-gfp-wait", "N", true}, {"/sys/kernel/debug/fail_futex/ignore-private", "N", false}, {"/sys/kernel/debug/fail_page_alloc/ignore-gfp-highmem", "N", false}, {"/sys/kernel/debug/fail_page_alloc/ignore-gfp-wait", "N", false}, {"/sys/kernel/debug/fail_page_alloc/min-order", "0", false}, }; unsigned i; for (i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].file, files[i].val)) { if (files[i].fatal) return "failed to write fault injection file"; } } return NULL; } static void setup_sysctl() { int cad_pid = fork(); if (cad_pid < 0) exit(1); if (cad_pid == 0) { for (;;) sleep(100); } char tmppid[32]; snprintf(tmppid, sizeof(tmppid), "%d", cad_pid); struct { const char* name; const char* data; } files[] = { {"/sys/kernel/debug/x86/nmi_longest_ns", "10000000000"}, {"/proc/sys/kernel/hung_task_check_interval_secs", "20"}, {"/proc/sys/net/core/bpf_jit_kallsyms", "1"}, {"/proc/sys/net/core/bpf_jit_harden", "0"}, {"/proc/sys/kernel/kptr_restrict", "0"}, {"/proc/sys/kernel/softlockup_all_cpu_backtrace", "1"}, {"/proc/sys/fs/mount-max", "100"}, {"/proc/sys/vm/oom_dump_tasks", "0"}, {"/proc/sys/debug/exception-trace", "0"}, {"/proc/sys/kernel/printk", "7 4 1 3"}, {"/proc/sys/kernel/keys/gc_delay", "1"}, {"/proc/sys/vm/oom_kill_allocating_task", "1"}, {"/proc/sys/kernel/ctrl-alt-del", "0"}, {"/proc/sys/kernel/cad_pid", tmppid}, }; for (size_t i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].name, files[i].data)) { } } kill(cad_pid, SIGKILL); while (waitpid(cad_pid, NULL, 0) != cad_pid) ; } 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(); 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; } } } uint64_t r[1] = {0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$btrfs arguments: [ // fs: ptr[in, buffer] { // buffer: {62 74 72 66 73 00} (length 0x6) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x0 (8 bytes) // opts: ptr[in, fs_options[btrfs_options]] { // fs_options[btrfs_options] { // elems: array[fs_opt_elem[btrfs_options]] { // fs_opt_elem[btrfs_options] { // elem: union btrfs_options { // clear_cache: buffer: {63 6c 65 61 72 5f 63 61 63 68 65} // (length 0xb) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[btrfs_options] { // elem: union btrfs_options { // metadata_ratio: fs_opt["metadata_ratio", fmt[hex, int32]] { // name: buffer: {6d 65 74 61 64 61 74 61 5f 72 61 74 69 6f} // (length 0xe) eq: const = 0x3d (1 bytes) val: int32 = 0x0 (18 // bytes) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[btrfs_options] { // elem: union btrfs_options { // ssd_spread: buffer: {73 73 64 5f 73 70 72 65 61 64} (length // 0xa) // } // comma: const = 0x2c (1 bytes) // } // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // chdir: int8 = 0x0 (1 bytes) // size: len = 0x559e (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x559e) // } // ] // returns fd_dir memcpy((void*)0x200000000000, "btrfs\000", 6); memcpy((void*)0x2000000015c0, "./file0\000", 8); memcpy((void*)0x200000000040, "clear_cache", 11); *(uint8_t*)0x20000000004b = 0x2c; memcpy((void*)0x20000000004c, "metadata_ratio", 14); *(uint8_t*)0x20000000005a = 0x3d; sprintf((char*)0x20000000005b, "0x%016llx", (long long)0); *(uint8_t*)0x20000000006d = 0x2c; memcpy((void*)0x20000000006e, "ssd_spread", 10); *(uint8_t*)0x200000000078 = 0x2c; *(uint8_t*)0x200000000079 = 0; memcpy( (void*)0x20000000ac40, "\x78\x9c\xec\xdd\x7f\x6c\x55\xe5\xfd\x07\xf0\x73\x5b\x0a\x0d\xf8\x2d\xfd" "\x8e\x15\x18\x7f\x10\x20\x06\x83\x24\xc8\x96\x2d\x8e\xa0\x78\x31\x06\xb6" "\xe1\xe2\xa5\x82\xc2\x9c\x08\x44\x25\x06\x2b\xd8\x44\x37\x18\xa9\x45\x92" "\x65\xc6\xa0\x85\x4e\x04\x17\x91\x90\x68\x32\x63\xb1\xc3\x3f\x14\xcc\xb0" "\xcb\xb0\x8c\x65\xfc\xd8\xe6\x16\x63\xb3\x82\x52\x69\x96\x6c\x03\x35\x6b" "\x1c\x31\xba\xf4\xde\xfb\x5c\xee\x3d\x97\xdb\x5e\x99\xb3\x4e\x5f\x2f\xd2" "\x9e\xf3\xdc\xcf\x79\x9e\xfb\xdc\x93\xf3\xc7\x7d\x5f\xfa\x9c\x1b\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x40\x14\x45\x47\x12\x73\xdf\x9d\xd1\xfd\xe2" "\xd1\x91\x35\x5f\xbe\xff\x1f\x3f\x9e\xf8\xe8\xc6\x9f\x8c\xdf\xbd\x7f\xeb" "\xa1\x5b\xee\xdb\x74\xff\x82\x33\x23\x6e\xda\x39\x6b\x59\xdf\xfa\x69\x4d" "\xf3\x37\x6c\x6c\x38\xd2\xfc\xf4\xbe\x39\xb7\x46\x51\x22\xdd\x2f\x91\xed" "\x7f\xdb\xb5\xdf\xaa\xbf\xf3\xc6\xdb\xbe\x5b\x1d\x06\x5c\xbe\x30\xb3\xad" "\xad\x2d\xf5\x94\x99\xae\x27\x33\x8d\xe1\x05\x0f\xf6\xf7\x2b\xfc\x59\x11" "\x45\x51\x55\x6c\x80\xca\xec\xf6\xd5\xec\x4e\x45\xc1\x00\xb9\xdd\xc6\xe2" "\x01\x07\xf4\x4e\xeb\xa2\xe8\xee\xc9\xf3\x26\xb5\x75\x3d\x35\x6e\x49\x72" "\x61\x4f\xf1\x4b\xa7\x5f\xf5\x50\x4f\x60\xa8\x64\xaf\xab\x9e\xf3\xd7\x52" "\x32\xfd\xbb\x22\x76\x44\xae\x9d\x77\xe9\x25\x0a\x2e\xd1\x4c\xff\xf8\x05" "\xf7\xa9\xbc\x08\x00\xe0\x63\x99\x99\x4a\x6f\x72\x6f\x47\xb3\x6f\x71\x73" "\xed\xe6\x78\x3d\xd6\x4e\xc6\xda\x2d\xb1\x76\x78\x87\xd0\x92\xdf\xb8\x18" "\x99\x71\x87\x97\x9a\xe7\xa4\x78\x7d\x88\xe6\x99\xcc\x44\x85\x11\x25\xe7" "\x19\xab\x67\xcf\x7f\xae\x9d\x8a\xf7\x8f\xb5\x63\x51\xe3\x63\xcc\xb3\xf0" "\xd0\x6c\xa4\xa9\x2e\x35\xcf\xb5\xb1\xfa\x50\xcd\x13\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xe0\xb3\x64\xec\xf1\xa3\x6b\x56\xb4\x3d\xb2" "\xe7\xbe\x5f\x76\xd4\x1c\x79\xf7\xfd\x39\x57\x3e\xf0\xa5\x8e\xc3\x6d\x8b" "\x4f\x8c\xbc\x7a\xe9\xca\x1d\x6b\xa6\xfc\x74\xd6\xb2\xbe\xf5\xd3\x9a\xe6" "\x6f\xd8\xd8\x70\xa4\xf9\xe9\x7d\x73\x6e\x8d\xa2\xda\x74\xbf\x44\xa6\x7b" "\xe2\x44\xcb\xe5\xbf\x4d\x8d\x9d\xdf\xbd\x77\xdc\x1b\x8d\xbb\x9f\xab\xe9" "\xab\xcc\x8e\x1b\xb6\xc3\xf2\x0e\x8e\x5e\x0f\x3b\xb3\x46\x47\xd1\xca\xbc" "\x4a\x4f\x18\xf6\xaf\x35\x51\x94\x2a\x2c\xa4\x9b\xd1\x8e\xe2\xc2\x5d\xe9" "\x9d\x6f\x87\x02\x00\x00\x00\x9f\x27\x5f\x49\xff\xae\xc8\xb5\x33\x71\xb0" "\xaa\xa0\x9d\x48\xa7\xc9\x44\xfa\x5f\x90\x09\x8b\xef\xb4\x2e\x8a\xee\x9e" "\x3c\x6f\x52\x5b\xd7\x53\xe3\x96\x24\x17\xf6\x5c\xfc\x78\xa9\x12\xe3\x25" "\x2f\x38\x5e\xae\x5d\x7b\xfe\x27\x91\x17\x8c\x43\xfc\x8d\x8f\x77\xbe\x1e" "\x0e\x6d\x2c\x1a\x67\x60\xf1\x11\xe3\x79\xfe\xd2\x31\x63\xde\x7e\x6b\x72" "\xfd\xe4\xaf\x4f\x9b\xfb\xc4\x0d\xcf\x8c\xea\xee\xfa\xbf\x27\x67\x6c\x49" "\xfd\xb1\xae\xe6\x85\x2b\xae\xef\xad\x7f\xf6\xba\xa2\xfc\x5f\x3b\x70\xfe" "\x0f\x67\x4e\xfe\x07\x00\x00\xe0\x3f\x21\xff\xc7\xc7\x19\xd8\x60\xf9\xff" "\x8e\xa5\x53\xb7\xbc\xfe\x8b\x61\xab\x7e\xdd\xda\xf0\xc4\xc1\xfa\x1d\x7f" "\x6e\xfd\xce\x33\x3b\x17\x9d\xea\xb9\xe1\x47\x7d\x2f\x4f\x4d\xde\xfe\xe8" "\xd5\x45\xf9\x7f\x52\xc1\x53\x16\xe5\xff\x30\xe3\x90\xff\x2b\xa2\x8b\xcb" "\xff\x00\x00\x00\xf0\x59\xf6\xdf\xce\xff\xc9\xa2\x71\x06\x36\x58\xfe\x6f" "\x38\xd3\x37\xfb\x07\x07\x5f\xab\xeb\xf8\xfb\x9c\xc5\x7b\x7e\xf5\xd0\x15" "\x8b\xcf\x9e\xfe\xdb\xfc\x53\xbb\x77\x0d\x5f\x73\x47\xcb\xfa\xba\x87\xae" "\x2c\xca\xff\x33\xcb\xcb\xff\xc3\xf2\xa7\x1d\x1e\xfc\x5d\x98\xf0\xea\xd1" "\x51\x34\xb3\xfc\x93\x0a\x00\x00\x00\x14\x08\xff\xef\x7e\xfe\xa3\x85\x90" "\xd7\x33\x9f\x1c\xc4\xf3\xfa\xb5\xff\xbc\xaa\x79\xdf\xcd\x1f\x7c\xf3\x1b" "\x0f\xde\xf3\xa7\x37\xdf\xfe\xcd\xb1\x03\xb3\x27\xad\xdb\x5e\x37\xf3\xe0" "\xcb\x37\xd5\x7f\x58\xf9\xbd\xed\xdd\x45\xf9\x3f\x59\x5e\xfe\xaf\xfa\x74" "\x5e\x2e\x00\x00\x00\x50\x86\xe7\x8f\xae\x9c\x3b\xef\x78\xcf\xb9\xc7\xcf" "\xbe\xd0\x75\xf2\xf0\xee\xde\x93\x33\x9e\x3c\xb3\xae\xa9\xef\x74\xeb\x25" "\x2d\xab\x57\x6d\x3a\xf6\x5a\x51\xfe\x4f\x95\x97\xff\x47\x0c\xcd\xcb\x01" "\x00\x00\x00\x2e\xe0\xde\x3b\x9f\x5b\xb1\xf9\xd5\x97\xfa\x1e\xd8\x7f\xd7" "\xd8\x29\x3d\x15\x57\x35\x5e\x92\xb8\x65\xdb\x8e\xa9\x4d\x13\x3e\xea\xbc" "\xb4\xf7\xf2\xed\x5b\x8b\xf2\xff\xf2\xf2\xf2\xff\xc8\xec\x36\xbb\xf2\x21" "\xd3\xa9\x33\xfc\x15\x42\xeb\xe8\x28\xaa\xee\xdf\x59\x9b\x29\x1c\x8a\x5a" "\xae\xc9\x15\x00\x00\x00\x80\x4f\x48\xc8\xe9\x5b\x3f\x58\xb1\x6c\xec\xce" "\xb1\xbd\xe3\x8f\x9f\x7e\xac\xe6\xd0\x1b\x87\x67\xff\x65\x6d\xe7\x9c\x8d" "\xd7\x74\x57\x75\x6f\xee\x5c\xd6\x78\x59\xd1\xfd\x02\x42\x62\x2f\x75\xff" "\xff\x70\xa7\x83\xb0\xfe\xbf\xe0\xfe\x7f\x45\xeb\xff\xf3\x0a\x99\xbb\xfe" "\xcd\x76\x63\x00\x00\x00\x00\xbe\x88\x8a\xd7\xf3\x87\xdb\xe3\x67\xbe\xb9" "\xa0\xd4\xf7\xef\x97\xbb\xfe\x7f\x49\xdd\xc4\x13\x89\xb6\xb7\xde\x5b\xf5" "\xd5\x73\x07\xce\x8d\x59\xb0\xff\xfb\xd7\x6f\x5a\x57\xdf\xdb\x7b\xcf\x84" "\x97\x7e\xff\xc3\x3f\x4c\xff\xa8\xba\x28\xff\x37\x97\x97\xff\x2b\xf3\xb7" "\x9f\xe4\xf7\xff\x01\x00\x00\xc0\x45\xf8\x5f\xfb\xfe\xbf\xa5\x45\xe3\x0c" "\x6c\xb0\xfb\xff\x37\x55\xf4\x35\xac\x5a\xb7\x77\xfa\xea\x2d\x6b\xb7\x2c" "\x4c\x2c\x3b\x50\x7d\xea\xc1\xd5\x7b\xdf\x5f\xb0\xe6\x5f\x53\x6f\x7e\xbe" "\xa9\xe6\xba\x03\x45\xf9\xbf\xa5\xbc\xfc\x1f\xb6\xa3\xf2\x5f\x5e\x47\x38" "\x3f\x9b\x46\x47\xd1\xf8\xfe\x9d\xec\xdd\x04\x7f\x1e\xa6\xbb\x3a\x56\x68" "\xaf\xca\x2b\x64\x4e\x7c\xac\xc7\x8d\xa1\x47\xb6\xd0\x3e\x22\xaf\x90\xb6" "\x36\xd6\xe3\x6b\xa3\xa3\x68\x72\xff\x4e\x73\xac\xf0\xff\xa1\xd0\x12\x2b" "\x9c\xad\xc9\x16\x76\xc5\x0a\xc7\x42\x21\x7b\x3d\xe4\x0a\x7b\x62\x85\x8e" "\x70\xa5\x6d\xab\xc9\x4e\x37\x5e\x78\x31\x14\xb2\x0b\x2c\xda\xc3\x0a\x8a" "\x51\xb9\x25\x11\xb1\x1e\xef\x95\xea\xd1\x5f\xb8\x60\x8f\xae\xdc\x93\x03" "\x00\x00\x7c\xa1\x84\xf0\x9c\xcd\xb2\x55\x85\xcd\x28\x1e\x65\xdb\x13\x83" "\x1d\x30\x72\xb0\x03\x2a\x06\x3b\xa0\x72\xb0\x03\x86\xc5\x0e\x88\x1f\x58" "\xea\xf1\x68\x79\x61\x21\x3c\x7e\x7b\xe7\x23\x1b\x36\x35\x4c\x49\xbe\xf2" "\xf0\xdc\xc7\x7e\xf6\xe6\xb3\x8d\x13\xf6\x3d\x7e\x59\x5d\xef\xe6\x0f\x5f" "\xd9\x76\xef\xc4\x9d\xd3\x5b\xa6\x16\xe5\xff\x5d\xe5\xe5\xff\x70\x2a\x86" "\x67\x36\xa5\xd6\xff\x47\x61\xfd\x7f\xf6\x7b\x0d\x73\xeb\xff\x97\x87\x42" "\x6d\xac\xd0\x1e\x0a\xa9\xf8\x1d\x03\x52\xe1\x39\x32\x61\xf7\xe1\xf0\x1c" "\xb5\xa9\x6c\x8f\xb3\xe3\x73\x05\x00\x00\x00\xf8\x5c\x0b\x9f\x0b\x54\x0e" "\xf1\x3c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfe\xcd\xde" "\xbd\xc7\x49\x55\xdd\x09\x02\x3f\xdd\xf4\x83\x6e\x9a\xa6\x8d\x13\xd1\x8c" "\x93\x74\xd4\x80\x66\xa4\x69\x6c\x0d\xc3\xe0\x28\x6a\x8c\x46\x45\x9a\x59" "\x75\xdc\x64\x34\x10\x68\x10\x69\x84\xf0\x58\x05\x51\x1b\x50\x67\x1c\xe2" "\x67\x7c\xed\xac\x99\xe8\x08\x0a\x22\xbb\xea\x87\x18\x57\x83\xc1\x48\x5c" "\xc4\x8c\x3a\x89\x62\xe2\x03\xf0\xb1\x8e\xae\xeb\xfa\x1e\x95\x18\xcd\x84" "\xfd\x74\xdf\x3a\x45\xd5\xad\x2e\xbb\x10\x50\xda\xf9\x7e\xff\xe8\x3a\x55" "\xbf\xf3\xbc\xf5\xe8\x3a\xf7\xde\x3a\x17\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x18\xee\x3d\xf8\xe5\x93\x86\x2e\x9c\xfd\x0f\x1f\x36\x9c" "\x7b\xc9\xea\xaa\xa9\x8b\xfe\x47\xc7\xe8\xcb\xfe\x70\xd5\xb7\xbe\xf8\xd4" "\x3f\x2e\x5b\xf4\x6f\x61\xfe\x2f\x46\x9c\xb9\x65\xde\x41\x17\x1e\x37\x7f" "\xc1\xb4\x7f\xe9\x58\xbe\xfa\x88\x33\x42\x68\xed\x2a\x57\x96\x14\x2f\x7b" "\xee\x8a\xaf\x3e\xd4\xba\xd7\x71\xcf\xde\x31\x70\xe3\xcc\x1b\x6f\xad\xdf" "\x52\x95\xa9\x37\x13\x0f\xfd\x3a\xff\x94\x67\xee\x5c\x1c\x5b\x7d\xb1\x7f" "\x08\x77\x97\x85\x50\x91\x0e\x0c\xa9\x4b\x02\x95\x99\xfb\x75\xb1\xbe\x7d" "\xeb\x42\xd8\x23\x6c\x0b\x64\x4b\xb4\xd5\x26\x25\xd2\x0d\x87\x07\x6a\x42" "\x58\x12\xb6\x05\xb2\x55\xad\xae\x09\xa1\x2e\x27\x70\xca\x86\xfb\xef\xbb" "\xbc\x33\x71\x4d\x4d\x08\x5f\x09\x21\x54\xa7\xdb\x78\xa6\x3a\x69\xa3\x26" "\x1d\x18\x54\x95\x04\x6a\xd3\x81\xe9\x15\x49\xe0\xb7\x5b\x13\xd9\xc0\x4f" "\xca\x93\x00\xec\xb0\xf8\x66\xc8\xbe\xe8\x57\xb5\xe6\x67\x68\xe8\xbe\x5c" "\x91\xd7\x5f\xe5\x4e\xeb\xd8\xa7\x2b\x3d\xbc\x3e\x31\xd1\x50\x3c\xdf\xeb" "\x47\xed\xe2\x4e\xe5\xa8\x4a\x3f\xd0\xba\x43\x4f\x5b\x41\x75\xec\x12\x05" "\x6f\x8f\xb5\xde\x6d\xbd\xe0\xdd\x56\xb0\x9d\xaf\xf0\xb4\xe5\x7e\x91\xca" "\x7c\x43\xd9\xba\x2d\x54\x1d\xca\x27\xb6\x4d\x1a\x3f\xa7\x7d\x76\x7c\xa4" "\x3c\x34\x35\xf5\x29\x56\xd3\x2e\x7a\x9e\x9f\x7e\x7b\xfe\x84\xed\x49\xf7" "\x9a\xd7\x61\xec\x40\xc3\x4e\x79\x1d\x5e\xfa\xd8\x8a\xe9\xfd\x96\x8d\xbe" "\xf4\xea\xcd\xbf\x1a\xb3\xe1\xac\x9a\x03\x76\xb4\x9b\x4f\xe5\x6c\xd2\xdc" "\xf4\xae\x56\x1d\x32\xaf\xb9\x5e\xf3\x3c\x46\xa3\x7c\x9e\xf4\x82\xb7\x5f" "\xc1\xb7\xa4\x46\x5f\xba\x42\x08\x5b\xcf\x3d\x7b\xc6\xd7\xe7\x4c\x3c\xfb" "\x88\x3e\xb7\x3c\xb9\xee\xd5\x07\x1f\xac\xdb\x72\xf6\x9c\x05\xbf\x38\x73" "\xe2\x79\x8b\x2e\x3e\x79\xc3\xbf\xcf\x7f\xa9\x60\xfe\xdf\xf0\xd1\xf3\xff" "\xf8\x72\x8e\xb7\xe5\x79\xb9\x63\xab\x1f\xd6\x27\x73\xf3\xf8\x48\x5d\x4c" "\xbc\x59\x9f\xcc\xcd\x01\x00\x00\xa0\xd7\xe8\x0d\x7b\x4d\x57\x9e\xff\xfa" "\x5f\xbd\xfe\xfd\xb5\xad\x33\x17\x9d\xfe\xed\xb7\x0e\x3e\xf7\xc3\xbd\x5a" "\x7f\x3d\xe2\xfe\x01\x55\x07\xbc\xb1\xae\xa9\xf5\xfc\x8d\x9f\x7f\xa5\x60" "\xfe\xdf\x58\xda\xf1\xff\x78\xc8\xbf\x2e\x77\xb4\x6b\x43\x18\xd5\x95\x58" "\x34\x20\x84\xbd\xbb\x1e\x4f\x02\x2b\x63\x77\xbe\x3b\x20\x84\x2f\x77\xa5" "\x5a\xf3\x03\x47\xa5\x02\x6b\x43\xd8\xa7\x2b\x71\x50\xb6\xaa\x54\x89\xbe" "\xb1\x44\x63\x2a\xf0\x72\x7d\x26\x30\x2a\x15\x58\x1f\x03\xad\xa9\xc0\xf2" "\x18\xb8\x22\x15\xb8\x38\x06\x56\xa5\x02\x13\x62\x60\x6d\x2a\x70\x74\x0c" "\x84\x29\xf9\xe3\xf8\x6a\x7d\x66\x1c\x25\x07\x6a\x62\x60\x5c\xb2\x11\x57" "\xc5\xb3\x10\xde\xa9\x8f\xad\xa5\xb6\xd5\xa6\x6c\x55\x00\x00\x00\x3b\x49" "\x66\x76\x58\x99\x7f\x37\xe7\x5c\x87\x1d\xcd\x10\xa7\x97\xab\x6a\x7a\xca" "\x10\xcf\xc0\x2e\x9a\xa1\x3a\x55\x43\x7a\x06\x9b\x9d\x56\x15\xad\xa1\xa2" "\xa7\x1a\xca\x7b\xaa\x21\x3b\xee\x8e\x8f\x1e\x7e\x41\xcd\x65\x3d\xd5\x5c" "\x70\x1a\x46\x59\x7e\x86\x1b\xd7\xfc\xe5\x7d\x8b\x5e\x3c\xec\x0b\x63\xf7" "\x9a\xf8\xf9\xc5\x43\x2f\x98\xf2\xb3\xf1\xe1\xac\xb7\xef\xae\x7a\xbc\x79" "\xc9\x8b\x6f\xed\x7b\xc4\xcd\xeb\x0a\xe6\xff\xcd\x1f\x3d\xff\xaf\xee\xa6" "\x23\x65\x05\xc7\xff\x43\x18\xdb\xf5\x37\xe6\x2e\xcf\x44\xda\xb3\xf1\x71" "\xad\x79\x19\x00\x00\x00\x80\x1d\x70\xd1\x1f\xff\xc5\x1e\xb5\x2f\x0f\x39" "\xa0\x61\xd3\xfb\x65\xf7\xce\x5f\xfb\xc4\xa3\x2b\x7e\xb9\x79\x8f\x53\x4e" "\x7f\x7f\xdc\xf1\xaf\xff\xf0\xf0\x9a\xc6\x7b\x0b\xe6\xff\xa3\x4a\x3b\xff" "\x3f\xee\x13\xe9\x93\x93\x39\x3c\x12\x77\x43\x4c\x1d\x10\x42\x73\x7e\x20" "\xa9\x76\x64\x61\x20\x39\xea\xdd\x2f\x13\x00\x00\x00\x80\xde\x20\x7b\x3c" "\x3e\x7b\x2c\x7c\x4a\xe6\x36\x39\x45\x3b\x3d\x9f\x2e\xcc\xdf\xba\x9d\xf9" "\xe3\x81\xff\x51\xdd\xe6\xff\xfd\x3d\xff\xb3\xf6\x8e\xad\xff\xfa\x62\xd9" "\x05\xdf\x3d\x77\x44\xcd\x80\xa5\xff\xf4\x6a\xc7\x84\x13\x4e\x3e\xfa\x96" "\xe3\xbf\xf5\xce\x3e\x15\x07\xfc\xb2\xbc\x60\xfe\xdf\x5a\xda\xf9\xff\xb5" "\xf9\xb7\x49\x27\xd6\xc7\x5e\x5c\x3d\x20\x84\xbe\x39\x81\x07\x63\x2f\x3b" "\x03\x5d\x1a\x63\xe0\xf9\x23\xf3\x03\x99\xf1\xaf\x8f\x1b\x60\x71\xac\x2a" "\x73\x62\x42\xb6\xaa\xc5\xb1\xc4\xb8\x18\x68\x4e\x05\x96\x14\x2b\xf1\x68" "\xb6\xc4\xde\xf9\x81\xcc\x93\x95\x6d\x7c\x51\x76\x1c\x53\x32\x25\x72\x02" "\x00\x00\x00\xf0\x89\x8b\xbb\x03\xe2\x71\xf9\x78\xfe\x7f\xcb\x19\x23\x4e" "\xfb\xeb\xef\xcd\xfa\xdb\x85\xaf\x3c\x78\xde\xea\x0b\x2e\xf9\xab\xe1\x1d" "\xf3\x47\x9e\x74\xff\xd3\x1f\x36\xcc\xbd\x72\x69\xd8\xf4\xe6\x11\x05\xf3" "\xff\x71\xdb\x77\xfe\x7f\xd7\x3c\xb8\xe0\xf4\xfe\xf6\x7e\x21\x0c\xad\x08" "\xa1\x4f\xfa\x87\x01\x8f\xd4\x26\x0b\x03\xc6\x40\x5d\x59\x26\x71\x6f\x6d" "\x52\x57\x9f\x74\x55\x0b\x6b\x43\x18\xd9\x39\xb0\x74\x55\x2f\x64\xd6\xff" "\xaf\x48\xaf\x31\xf8\x78\x4d\x52\x55\x0c\xec\xbd\xdf\x2d\x6f\x0f\xea\x4c" "\x2c\xab\x09\x61\x68\x6e\xe0\x89\x6f\x2f\x3d\xac\x33\x31\x27\x15\xc8\x36" "\x7e\x5a\x4d\x08\x5f\xea\x1c\x6d\xba\xf1\xbb\xfa\x26\x8d\x57\xa6\x1b\xbf" "\xb6\x6f\x08\x5f\xcc\x09\x64\xab\x9a\xd0\x37\x84\xce\xc6\xaa\xd2\x55\xfd" "\xaf\xea\xcc\x75\x0c\xd2\x55\xad\xaa\x0e\x61\xcf\x9c\x40\xb6\xaa\xe1\xd5" "\x21\xcc\x0d\x00\xf4\x56\xf1\x7f\xe9\xc4\xdc\x07\x67\xcd\x9d\x37\x75\x7c" "\x7b\x7b\xdb\xcc\x5d\x98\x88\x3b\xf1\x6b\xc2\xa4\x29\xed\x6d\x4d\x13\xa6" "\xb7\x4f\xac\x2e\xd2\xa7\x89\xa9\x3e\xe7\xad\x63\xb4\xa0\x70\x4c\xa5\x5e" "\xfa\x66\x53\x66\x8d\xa2\xc5\x2b\x27\x57\x96\x92\xce\xfe\x50\xb0\x39\xb7" "\xad\xcc\x8e\xfc\x82\x33\x07\x33\xf7\xe3\x97\xa1\xca\xae\x71\x1e\x52\x99" "\x77\xb7\x25\x3d\xe4\x03\xf7\x2f\x6c\x22\xe4\x7c\x95\x2a\x36\xe4\xf2\x5d" "\x3c\xe4\xda\xdc\x4a\xb6\x3d\x89\x05\xf5\xc7\xfc\x55\xa1\x5f\xe8\x3b\x67" "\x56\xdb\xcc\xa6\xf3\xc6\xcf\x9e\x3d\x73\x58\xf2\xb7\xd4\xec\x87\x24\x7f" "\xe3\x71\xa6\x64\x5b\x0d\x4b\x6f\xab\xda\xee\xfa\x56\xc2\xcb\xa3\xe8\x72" "\x59\x29\x1f\x77\x5b\x0d\xca\xad\x64\xe8\xec\x69\x33\x86\xce\x9a\x3b\x6f" "\xc8\x94\x69\xe3\x27\xb7\x4d\x6e\x3b\xa7\xe5\xd0\x3f\x6b\x19\x31\x7c\xf8" "\xd7\x46\x0c\xed\x1c\x54\x73\xf2\xb7\x87\x91\x0e\xea\xae\xe6\xd4\x48\xb7" "\x2e\x2d\x71\x58\x3b\x71\xa4\x5f\xa8\xc8\xa9\xe4\x93\xf8\xd0\x90\x90\x90" "\xe8\x6d\x89\xfd\xfe\xcb\xe6\x87\x47\xef\xb9\xfe\x9c\xeb\x7f\xf6\xda\x8f" "\xcf\xef\xf7\xcd\xd3\xee\xdd\xfb\xc8\x99\x3f\x3c\xf4\xaa\xa9\x0f\x55\xef" "\x7b\xf8\xe2\xdb\x87\x1c\x58\x30\xff\x9f\xf1\xd1\xf3\xff\xf8\xa9\x13\x3f" "\xf8\x33\xeb\x33\x14\x3b\xfe\xdf\x10\x0f\xf3\x27\x8f\x6f\x3b\xcc\x3f\x2e" "\x06\x96\x94\x7a\xfc\xbf\xa1\xd8\xd1\xfc\xec\x89\x01\x8d\xa9\x40\x47\x0c" "\x74\x38\xcc\x0f\x00\x00\xc0\x67\x43\xdc\x1d\x19\xf7\x66\xc6\x9d\xd2\x9b" "\x6f\x59\xbf\x6e\xe3\x92\x96\xb9\x3f\x68\x78\xa7\xe5\xd6\x35\xed\x4b\x6f" "\xba\xe9\xbe\x53\x7f\x72\xe7\xc0\x13\xbe\x34\x38\xec\xb5\xe1\xba\x13\x3e" "\x57\x30\xff\xef\x28\xed\xf7\xff\x3b\x69\xfd\xff\xec\xd2\xf5\x27\x14\x5b" "\xe6\xff\xa0\x58\xa2\xb9\xd8\xfa\xff\xe9\x65\xfe\xb3\xeb\xff\x77\x14\x5b" "\xff\x3f\xbd\xcc\x7f\x76\xfd\xff\x25\x9f\xc2\xfa\xff\x73\xb2\x81\xd4\x26" "\x79\xc7\xfa\xff\x00\x00\xc0\x67\xc1\x27\xb7\xfe\x7f\x8f\xcb\xfb\xa7\x2f" "\x10\x50\x90\xa1\xc7\xe5\xfd\xd3\x17\x08\x28\xc8\xd0\xe3\x32\xfe\xa5\x5e" "\x20\x60\xbb\xd7\xff\x5f\xf3\xe0\x5f\x7f\xa5\xaa\xdf\x98\x3b\xfe\xa4\xe5" "\x37\xf5\x97\xbc\xf6\x77\xf7\x1c\xd6\x7a\xe4\xba\xcd\x33\xff\xe4\x4b\x5b" "\xd7\x4f\xbc\xef\xba\xb1\xb7\xac\x29\x98\xff\x5f\x51\xda\xfc\xdf\xc2\xfd" "\x00\x00\x00\xb0\xfb\xf8\xcf\x97\x5d\x53\x71\xf4\xd9\x77\xdf\xd1\xb2\x6e" "\xea\xc6\x71\x6f\x0e\x7e\xf7\xc9\xb7\x96\x0c\xea\xf3\x41\xc5\xd1\x0f\xb7" "\x8f\x7c\x61\xe0\x1b\xb7\x9e\x57\x30\xff\x5f\x52\xda\xfc\xff\x93\x5f\xff" "\x2f\x14\x3b\xff\xbf\xb1\x58\xa0\xb5\xd8\xc2\x80\xd6\xff\x03\x00\x00\xa0" "\x97\x2a\xb6\xfe\xdf\x3d\x43\x5b\x1a\xff\x30\xa6\xff\x1f\x9e\x1e\xf6\x9b" "\xe5\x0f\xde\x3c\xfa\xa7\x8f\xfc\xfc\xf7\xcb\xf7\xfb\xf9\x89\x3f\x2b\xdf" "\x67\xc1\xb1\xcf\xcf\xbc\x6c\x52\xc1\xfc\x7f\x55\x69\xf3\xff\x78\xda\x45" "\x79\x5e\xee\xd8\x9b\x0f\xeb\x93\x35\xed\x42\x7a\x4d\xbb\x37\xeb\xb3\x3f" "\x19\x00\x00\x00\x80\xde\xa1\x3c\x34\x35\x55\x96\x98\x37\x6f\x61\xd4\xa3" "\x3e\x7e\x9b\x4f\x67\x96\x02\xfd\xa8\x74\xae\xef\xbd\x72\xed\xd9\x9b\x5f" "\x98\x7e\xdc\xe3\xa7\xaf\xfb\xbb\x9a\x13\x06\xef\x39\x61\xda\x05\xab\x1a" "\xff\x66\xf8\x81\x77\x7e\x7e\xd4\x25\x7b\x2e\xdd\x74\x6a\xc1\xfc\x7f\x6d" "\x69\xf3\xff\xbc\xdf\x65\x5c\xfa\xd8\x8a\xe9\xfd\x96\x8d\xbe\xf4\xc3\xab" "\x37\xff\x6a\xcc\x86\xb3\x6a\x0e\xd8\x76\xfc\x1f\x00\x00\x00\xd8\x75\x4a" "\xdd\x2f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\xfa\xce\xed" "\x58\x7c\xe1\x23\xcb\x8e\x7d\xef\x9b\xb7\xff\xc5\xfe\x47\x2c\x79\x75\xf0" "\x6d\x77\x1d\xf8\xbb\x21\xfd\x5e\xba\xe2\xaa\x07\x26\xad\x7a\xe3\xcc\xc9" "\x5f\x2f\xf8\xfd\x7f\x18\xdb\x55\xae\xd8\xef\xff\xe3\x75\xff\xe2\xef\x0b" "\xfe\x28\x2f\x77\x6c\xb5\xe7\xf5\xff\x32\xf7\x4f\x39\xf1\xf6\xb9\x5d\x4b" "\x16\x3e\x52\x1f\xc2\xfe\xb9\x81\xa9\x0b\xa7\xee\x11\x32\xd7\xe6\x1f\x9c" "\x1b\xb8\xef\x8c\x83\x06\x76\x26\x16\xa6\x4b\xac\x79\xf6\xe8\x97\x3a\x13" "\xdf\x49\x07\x8e\x1f\xf2\xb9\x2d\x9d\x89\xc3\x53\x81\x71\x71\x91\xc4\x7d" "\xd2\x81\x78\x55\xc5\x2d\xfd\x53\x81\xb8\xbc\xe2\xe3\xe9\x40\xdc\x1e\xab" "\xd2\x81\xaa\x4c\xe0\xb2\xfe\xc9\x38\xca\xd2\xdb\xea\x95\xba\x64\x5b\x95" "\xa5\xb7\xd5\xc6\xba\x10\x06\xe4\x04\xb2\xdb\xea\xee\xba\xa4\x8d\xb2\xf4" "\x00\xaf\x49\x05\xb2\x03\xfc\x5e\x3a\x10\x07\x78\x72\x26\x50\x9e\xee\xd5" "\xed\xfd\x92\x5e\xc5\x40\x5d\x2c\x7a\x43\xbf\xa4\x57\x00\x00\xec\xb6\xe2" "\xb7\xc0\xca\x30\x69\x4a\x7b\x5b\x73\xfc\x0a\x1f\x6f\xbf\x50\x91\x7f\x1b" "\xe5\x2d\x59\xb6\xa0\xb0\xda\xb2\x12\x9b\xdf\x94\x59\x9a\x6c\xf1\xca\xc9" "\x95\xa5\xa4\xfb\xa4\xbf\x8b\x6e\xbb\xd6\x78\x65\xa8\xee\x1c\xc2\xb0\x82" "\xaf\xab\xb9\x59\xca\xba\x46\xb9\x73\x6a\xe9\x61\xd3\xfd\x51\x91\x21\xf7" "\xb4\xda\x5b\x79\x91\x72\x69\xdb\xbb\xe9\xaa\x8a\x8f\xa8\x26\x19\x51\xd3" "\x84\xe9\xed\x13\x2b\x7b\x1c\x78\x4b\xcf\x59\x0e\xa9\xe8\x31\xcb\xb0\x82" "\xc9\x4e\x6e\x96\xf2\xae\x4d\x5a\x42\x2d\x25\xf4\xa5\x84\x11\x95\xb8\x6d" "\x4a\xe8\x72\xbc\x5f\x1e\x9a\x9a\xfa\xa4\x72\xfd\x79\x0c\x36\x84\x3c\x3d" "\xbd\x22\x4a\xfd\xbd\x7e\xee\x3a\x7f\xc5\x5e\x05\xb9\x79\x6e\x3b\xf4\xca" "\xb7\xbe\x7c\xcc\x4f\x9f\xfb\xe0\x9f\x3f\xff\x44\xff\x6f\x9c\x56\x73\xfb" "\xac\xef\xbf\x7b\xe2\xaf\x5f\xbf\xff\xc0\x43\x8e\xb8\x6e\x42\xd3\x9a\x2d" "\x05\xf3\xff\x86\xd2\xe6\xff\xd5\xb9\xe3\xda\x92\xb9\x18\x40\x47\xbc\xb2" "\xde\xc8\x01\x21\x8c\x2b\x71\x44\x00\x00\x00\xf0\xd9\x77\xdb\x45\xb7\xde" "\x71\xfa\xf4\xf5\xaf\x4c\x5a\x5b\xf1\xe4\x63\x8f\x4d\x2d\x1f\x73\x7a\xe5" "\xd6\xf9\x77\xce\x9f\x77\xc9\xc6\x7b\x17\x1f\x7f\xd9\xc1\x2b\x76\x34\x7e" "\xd8\x59\xbf\xfd\xfe\x6f\x06\xef\xff\x6f\xcf\x5e\xf5\xd2\x4f\x47\xee\xf3" "\xc0\x0d\x37\xff\x9f\x27\x0f\x7b\xfc\xcf\x7f\xff\xf0\x8f\x1e\x7a\xa7\x6e" "\x65\x9f\xb1\xef\x15\xcc\xff\x1b\x4b\x9b\xff\xc7\x3d\x58\x99\x43\xc1\xc9" "\xde\x8e\xb5\xf1\xfa\xff\x8b\x06\x84\xd0\x75\x69\xfd\x86\x24\xb0\x32\x0e" "\xf7\xbb\x03\x42\xf8\x72\x57\xaa\x35\x96\x48\x2e\xa8\x7f\x42\x2c\xd1\x9c" "\x04\x56\xc6\x1d\x26\x07\xc5\x12\xe3\x5a\xf3\xab\xea\x1b\x03\xab\x52\x81" "\x97\xeb\x33\x81\xb5\xa9\xc0\xfa\x18\xc8\xec\xa5\xb8\x25\x64\x76\xe5\x5c" "\x59\x1f\xc2\x61\x5d\xa9\xb1\xf9\x25\x66\xc4\x12\x0d\xa9\xc0\x98\x18\x68" "\x4c\x05\x9a\x62\xa0\x39\x15\xe8\x1f\x03\xa3\x52\x81\xd7\xfa\x67\x02\xad" "\xa9\xc0\xc3\x31\x10\xa6\xe4\x6f\xab\x1f\xf7\xcf\x6c\x2b\x00\x00\x80\xed" "\x91\x99\x67\x55\xe6\xdf\x0d\xe9\x79\xde\xaa\x8a\x9e\x32\x94\xf5\x94\xa1" "\xb6\xa7\x0c\xe5\x3d\x65\xa8\xee\x29\x43\xb1\x51\xc4\xfb\x77\xc4\x0c\x95" "\xa9\x93\x57\xca\x72\x32\x55\xa6\x6b\xad\x49\xd5\x52\x90\x21\x5e\x0c\x7f" "\xbb\xfb\x55\x90\x21\x3c\x9a\x9f\x33\x5d\xb0\xa0\xe9\x78\xfe\x41\xf6\x7c" "\x83\xb2\xfc\x0c\x57\xfe\xe0\xd9\x53\xd7\x0f\x9e\xfe\xd0\xea\xcd\xc7\x7c" "\x6d\xe0\x6d\xff\x38\x64\xcf\x83\x9b\xa7\xd7\xbd\xb7\xe0\x86\xa7\x7e\x3b" "\xe6\x9c\xeb\x9e\xff\xd3\x41\x05\xf3\xff\xe6\xd2\xe6\xff\xb5\xf9\xb7\x49" "\xeb\xeb\xe3\xfc\x7f\xdb\xf5\xff\x92\xc0\x83\xb1\x7b\x57\xc7\x53\xc7\x1b" "\x63\xe0\xf9\x23\xf3\x03\x99\x1d\x03\xeb\xe3\x64\x77\x71\xb6\xaa\xd6\x4c" "\x89\xcc\xa4\x7d\x71\x2c\x31\x2a\x06\x1a\x53\x81\x19\x31\x30\x2a\x15\x18" "\x37\x36\x13\x58\x32\x30\x3f\x90\x99\x69\x67\x1b\x5f\x94\x6d\x7c\x4a\xa6" "\x44\x4e\x00\x00\x00\x00\x3e\x71\x71\x07\x41\xdc\x4d\x13\xe7\xff\x37\x1e" "\xf5\x83\xab\xdf\x1f\x30\x71\xcb\xb2\x79\x33\xef\x1f\xdb\xf2\xc4\xc9\xa3" "\xbf\x71\xf5\x5d\x3f\xba\x77\xff\x65\x77\xbe\xbb\x62\xf0\x80\x71\xef\x7d" "\xa7\x60\xfe\x3f\xaa\xb4\xf9\x7f\x6c\xaf\x5f\x6e\x63\x17\xc7\xde\xbc\xd8" "\x3f\x84\xbb\xcb\xb6\xf5\x26\x1b\x18\x52\x97\x04\xe2\x7e\x8c\xba\xf8\xf3" "\xf8\x7d\xeb\x42\xd8\x23\x67\x07\x47\xb6\x44\x5b\x6d\x52\xa2\x2a\xd5\x70" "\x78\xa0\x26\xf9\x85\x7a\x55\xba\xaa\xd5\x35\xc9\x1a\x03\xf1\xfe\x29\x1b" "\xee\xbf\xef\xf2\xce\xc4\x35\x35\x21\x7c\x25\x67\xef\x4b\xb6\x8d\x67\xaa" "\x93\x36\x6a\xd2\x81\x41\x55\x49\xa0\x36\x1d\x98\x5e\x91\x04\xe2\x9e\x9f" "\x6c\xe0\x27\xe5\x49\x00\x76\x58\x76\xaf\x60\x7c\x41\x65\x4e\x75\xc9\x6a" "\xe8\xbe\x5c\x91\xd7\xdf\x67\xe5\x9a\xa0\xe9\xe1\x15\xec\x03\xed\x26\x5f" "\x77\xbf\xb9\xda\x55\xaa\xd3\x0f\x64\xf6\xa9\x66\x6d\xdf\xd3\x56\x50\x1d" "\xbb\x44\xc1\xdb\x63\xad\x77\x5b\x6f\x7c\xb7\x35\x78\xb7\xe5\x7e\x91\xca" "\x7c\x43\xd9\xba\x2d\x54\x1d\xca\x27\xb6\x4d\x1a\x3f\xa7\x7d\x76\x7c\x24" "\xf7\x97\xac\x05\x76\xd1\xf3\x9c\xfb\x2b\xd5\x52\xd2\x3b\xe1\x75\xd8\xf1" "\xf1\x7b\xdb\xb3\xea\x74\x07\x9a\x53\x1f\x1f\xcd\xdd\x97\xeb\xfe\x75\x58" "\x16\xab\xbb\xf4\xb1\x15\xd3\xfb\x2d\x1b\x7d\xe9\xd5\x9b\x7f\x35\x66\xc3" "\x59\x35\x07\x94\xdc\x8d\x22\xe2\x0f\x85\x7f\xb4\xe5\x7f\x57\x3e\x95\xb3" "\x79\x77\xb5\xea\x90\x79\xcd\xf5\xba\xcf\x93\x56\x9f\x27\xbd\xf1\xdf\x40" "\xa3\xa7\x2d\x84\x70\xd9\xf5\xc7\xec\xbb\xe4\xdd\x5f\xef\xf7\xdc\x0d\xcf" "\x9d\xba\xae\xec\xc6\xb1\xaf\xfe\xe5\xac\x7b\x36\x2d\xff\x9b\xca\xc3\x47" "\xad\x7b\xff\xc9\xa1\xa3\x2f\x2f\x98\xff\xb7\x96\x36\xff\xaf\x48\xdd\x76" "\xf9\x5d\xdc\x98\xb3\x06\x84\x70\x60\xce\xc6\x7d\x24\x6e\xfe\x63\x06\x24" "\x9f\x83\x39\x81\xe4\x53\x72\xcf\xc2\x40\x72\xc8\xfd\x5f\xeb\x8b\x7e\x72" "\x02\x00\x00\xc0\xce\x96\xdd\xdd\x91\xdd\x5f\x30\x25\x73\x9b\x9c\x10\x9e" "\x9e\x27\x17\xe6\x6f\xdd\xce\xfc\x71\x7f\xc5\xa8\x6e\xf3\x97\xda\xef\x63" "\xd7\x6d\x5c\x79\xd2\xd0\x37\xae\x3b\xe0\x6f\x2f\x38\xf1\x8d\xbf\xbf\xf6" "\xf0\xa7\x1e\xba\xfe\xb2\xb2\x75\xcb\xff\xfb\xd8\x0f\x56\xaf\xb9\x7c\xf1" "\x7b\x4f\x14\xcc\xff\xc7\x7d\xf4\xfc\xbf\x6f\xaa\x9b\x8e\xff\x3b\xfe\xcf" "\x2e\xe2\xf8\x7f\xb7\x76\xf7\x5d\xd1\x7d\xd3\x0f\x74\xec\xd0\xae\xe8\x82" "\xea\xd8\x25\x1c\xff\xef\xd6\xee\xfe\x6e\x73\xfc\xbf\x5b\x8e\xff\x3b\xfe" "\xdf\x1d\xc7\xff\x7b\xe0\xf8\x7f\xb7\x76\xf7\xa7\xad\xe0\x5b\xd2\x0c\x5f" "\xba\x3a\x27\xc1\xd7\xdf\xf9\xf3\xdf\x4d\xbc\xe9\x83\xb9\x8d\xfb\x1d\x7c" "\xd2\x53\xcf\x1c\x3a\xf1\xba\x7f\xba\xaa\xe5\xee\xbb\x4e\x79\xe5\xbf\x9d" "\x7b\xde\xb4\xd7\xbe\xb5\xb9\x60\xfe\x3f\xa3\xb4\xf9\xbf\xf5\xff\xba\x5f" "\xb4\x2f\xbb\xfe\xdf\xb8\x62\xeb\xff\xcd\x28\xb6\xfe\x5f\x87\xf5\xff\x00" "\x00\x80\x5d\xaa\xc8\x42\x73\xe9\x79\x5e\xc1\xea\x7d\x05\x19\xd2\xab\xf7" "\x15\x64\xe8\x71\x81\xc0\x1e\x97\x18\xb4\xfe\xdf\x76\xaf\xff\xb7\x70\xe4" "\xbf\x5f\x74\xe1\x0f\x9f\x6f\xb9\xf6\x9d\x3b\xc7\x5d\xbe\x66\xd3\xb1\x67" "\xbe\xfa\xf4\xba\xd5\xcf\xcc\x5a\x71\xdc\xb9\xe7\xbf\xd5\x7a\xd7\x5d\xad" "\x05\xf3\xff\x8e\xd2\xe6\xff\xf1\xe5\xd0\x2f\xb7\xf5\xde\xb2\xfe\x5f\xe3" "\xd8\x22\x55\x5d\x11\x03\x33\x2c\x0c\x08\x00\x00\xc0\xee\xa8\xd8\x0e\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\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3e\x5d\x87\x9e\xf6\xce" "\xfb\x97\x7c\xfd\x1f\xda\x06\xfd\x62\xc5\xcd\x7f\x7f\xeb\xff\xfb\xbf\xcf" "\xd6\xae\x7d\xe0\x9b\xdf\xb8\x69\xf8\x2f\xa7\xfc\xe9\x19\x65\x6b\x36\x5c" "\x33\xe2\xcc\x2d\xf3\x0e\xba\xf0\xb8\xf9\x0b\xa6\xfd\x4b\xc7\xf2\xd5\x47" "\x9c\x11\xc2\x94\xae\x72\x65\x49\xf1\xb2\xe7\xae\xf8\xea\x43\xad\x7b\x1d" "\xf7\xec\x1d\x03\x37\xce\xbc\xf1\xd6\xfa\x2d\xd5\x99\x7a\x2b\x33\xb7\x7f" "\x9c\x97\x3b\xb6\xfa\x61\x7d\x08\x4b\x72\x1e\xa9\x8b\x89\x37\xeb\x3b\xef" "\x6c\x0b\x9c\x72\xe2\xed\x73\x2b\x3a\x13\x8f\xd4\x87\xb0\x7f\x6e\x60\xea" "\xc2\xa9\x7b\x74\x26\x96\xd7\x87\x30\x38\x37\x70\xdf\x19\x07\x0d\xec\x4c" "\x2c\x4c\x97\x58\xf3\xec\xd1\x2f\x75\x26\xbe\x93\x0e\x1c\x3f\xe4\x73\x5b" "\x3a\x13\x87\x67\x02\x65\xe9\xee\x5e\xd7\x3f\xe9\x6e\x59\xba\xbb\x97\xf7" "\x0f\x61\x40\x4e\x20\xdb\xdd\xb3\xfb\xe7\x57\x95\x6d\xe3\xb8\x4c\xa0\x3c" "\xdd\xc6\x8a\xba\xa4\x8d\x18\xa8\x8b\x45\xaf\xad\x4b\xda\x88\x81\xf6\x58" "\x62\x4a\xdf\x10\x86\x56\x84\xd0\x27\x5d\xd5\x3f\x57\x27\x55\xf5\x49\x57" "\x75\x4f\x75\x52\x55\x9f\x74\x55\x17\x55\x87\x30\x32\x84\x50\x91\xae\xea" "\xb9\xaa\xa4\xaa\x8a\xf4\xc8\x1f\xad\x4a\xaa\x8a\x81\xbd\xf7\xbb\xe5\xed" "\x41\x9d\x89\xa5\x55\x21\x0c\xcd\x0d\x3c\xf1\xed\xa5\x87\x75\x26\x66\xa6" "\x02\xd9\xc6\xff\x53\x55\x08\x5f\xea\x7c\xc9\xa4\x1b\xff\x71\x65\xd2\x78" "\x65\xba\xf1\xff\x5a\x19\xc2\x17\x43\x08\x55\xe9\x12\xef\x55\x24\x25\xaa" "\xd2\x25\x5e\xa8\x08\x61\xcf\x9c\xc0\xb6\x8d\x58\x11\xc2\xdc\xc0\x67\x43" "\xfc\xf4\x99\x98\xfb\xe0\xac\xb9\xf3\xa6\x8e\x6f\x6f\x6f\x9b\xb9\x0b\x13" "\x55\x99\xb6\x6a\xc2\xa4\x29\xed\x6d\x4d\x13\xa6\xb7\x4f\xac\x4e\xf5\xa9" "\x98\xb2\x9c\xf4\xd6\x05\x1f\x7f\xec\x9b\xde\x9e\x3f\xa1\xf3\x76\xf1\xca" "\xc9\x95\xa5\xa4\x2b\x32\xe5\x2a\xbb\xba\x7c\x48\x65\xde\xdd\x96\xdd\xbd" "\xf7\xb1\x5f\xb5\xb9\x95\x6c\x7b\x3e\x0a\xea\x8f\xf9\xab\x42\xbf\xd0\x77" "\xce\xac\xb6\x99\x4d\xe7\x8d\x9f\x3d\x7b\xe6\xb0\xe4\x6f\xa9\xd9\x0f\x49" "\xfe\xf6\xc9\x44\x93\x6d\x35\xac\xb7\x6c\xab\x41\xb9\x95\x0c\x9d\x3d\x6d" "\xc6\xd0\x59\x73\xe7\x0d\x99\x32\x6d\xfc\xe4\xb6\xc9\x6d\xe7\xb4\x1c\xfa" "\x67\x2d\x23\x86\x0f\xff\xda\x88\xa1\x9d\x83\x6a\x4e\xfe\xee\x8c\x91\x2e" "\xfd\xe4\x47\xfa\x85\x8a\x9c\x4a\x3e\x89\xf7\xbf\x84\x84\x44\x6f\x4b\x94" "\xe7\x7d\xba\x35\xef\xee\x9f\xe3\x05\x5f\xf4\xb7\x75\xb4\x32\x54\x77\x7d" "\x40\x17\x4c\x2b\x72\xb3\x94\x75\x8d\x72\x67\x0c\xfa\xa8\x8f\x39\xe2\x8f" "\xf3\x35\xa5\xc7\x11\x0d\x2b\x98\x38\x14\x64\x39\xa4\xe7\x2c\x2d\x05\x93" "\x89\x6d\x59\x6a\x92\x2c\x5d\x5f\xeb\x0a\x26\x87\xb9\x35\x95\x77\x6d\xd2" "\x78\xbf\x3c\x34\x35\xf5\x29\xb6\x1d\x1a\xf2\xef\xe6\x6e\xde\xd7\x77\x60" "\xf3\x3e\x9d\xd9\x74\xa5\xa6\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf8\xff\xec\xc0\x81\x00" "\x00\x00\x00\x00\x90\xff\x6b\x23\x54\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x61\x07\x0e\x04\x00\x00\x00\x00\x80\xfc\x5f\x1b\xa1\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\x0a\x3b\x70\x2c\x00\x00\x00\x00\x20\xcc\xdf\x3a\x8c\x9e" "\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xb8\x14\x00\x00\xff\xff\x1f\x4b\x19\x91", 21918); res = -1; res = syz_mount_image(/*fs=*/0x200000000000, /*dir=*/0x2000000015c0, /*flags=*/0, /*opts=*/0x200000000040, /*chdir=*/0, /*size=*/0x559e, /*img=*/0x20000000ac40); if (res != -1) r[0] = res; // ioctl$BTRFS_IOC_QUOTA_CTL arguments: [ // fd: fd (resource) // cmd: const = 0xc0109428 (4 bytes) // arg: ptr[in, btrfs_ioctl_quota_ctl_args] { // btrfs_ioctl_quota_ctl_args { // cmd: btrfs_ioctl_quota_ctl_cmd = 0x4 (8 bytes) // status: int64 = 0xfffffffffffffffc (8 bytes) // } // } // ] *(uint64_t*)0x2000000000c0 = 4; *(uint64_t*)0x2000000000c8 = 0xfffffffffffffffc; syscall(__NR_ioctl, /*fd=*/r[0], /*cmd=*/0xc0109428, /*arg=*/0x2000000000c0ul); // ioctl$BTRFS_IOC_SUBVOL_CREATE arguments: [ // fd: fd (resource) // cmd: const = 0x5000940e (4 bytes) // arg: ptr[in, btrfs_ioctl_vol_args] { // btrfs_ioctl_vol_args { // fd: align64[fd] { // v: fd (resource) // pad = 0x0 (4 bytes) // } // name: buffer: {b1 52 1b 61 b2 eb 65 a7 55 21 aa 70 9b 91 df 0b 45 70 // a8 c0 89 34 12 da db b3 63 fa af 5c 6c c9 24 20 5f dd 90 e7 0f 37 4a // 68 69 9d 01 24 1d 8f b2 f7 d4 0c a6 64 d5 3a 92 cd a4 b2 26 d4 25 b1 // 81 15 b7 30 91 75 70 1c bb 77 d3 1d 84 6a 4e 39 01 97 ab ad 2c a0 78 // 0f f2 80 5e 76 39 d0 d5 d0 00 40 63 c7 66 d4 96 6f 5c a5 81 23 bd 43 // 31 1c 4d 8a f2 c6 96 97 64 85 f5 35 8b 74 13 d5 80 f3 f6 46 2c da 08 // 6d 4d 71 f9 86 b3 f3 07 fc 2b b2 0e e3 92 1c 75 76 78 cd 61 91 d6 22 // fc 9e de 45 b6 db 46 39 b1 42 1c 4e bf b4 33 cc 6f bb e0 08 8d e8 a3 // 43 06 f5 86 ae 91 6c 63 8c 65 1a a7 a6 34 d1 e8 00 e4 18 94 14 cb 18 // 6e fc 7f 23 70 72 36 f9 80 62 60 d6 34 40 f7 86 39 84 6f d6 a7 08 62 // a8 9d c8 9b 96 58 da c5 b3 22 94 78 de 9e b9 20 d6 6f bb 72 33 e8 1d // 03 00 82 79 32 a3 a2 1e e3 7f 66 a9 a6 73 e3 e1 de 2c d3 7b 3a 4a 6c // a4 1c 92 6c 5e 9e 22 5c 53 36 b0 1c 75 ca 9f 0b 1e 1c ba 2a 40 88 0b // 21 52 39 fa 73 a6 f8 48 4a 59 2b 89 32 65 0d b2 2a 30 02 fd 20 09 10 // f5 e6 cb 14 74 fe bd a0 8a 6e f0 f7 58 18 e7 2d cc cd f4 c4 93 9a 2d // 65 e1 ac 80 03 a5 dd 59 62 40 c6 db 0b 19 e4 9e 85 73 6b f8 1a b2 e0 // c3 f6 ae 5d 26 60 90 e1 7f 25 52 81 99 ac a6 c9 fe 70 e3 53 a3 28 90 // 72 a6 fa bf b0 cb 86 cb e4 43 db 01 99 0d 5d 9a 09 40 ad 9c e8 cb ce // 5c 71 4f ab 82 07 e1 71 3e 43 21 09 4f cc fe 6e 40 01 4f f3 5d c3 ed // ce ee cc 72 c0 3e 51 8e 3d 49 08 37 a9 7b 72 3e 71 11 65 c9 ae 74 9a // 8a cb 0b 98 80 52 04 2b 90 de cd f7 ab 1b 21 c5 8d 5c 0c c3 16 ae 99 // 14 c2 7c b1 13 5c 15 fa 3c 26 8c e6 75 4c 30 0b 14 6a 2a 10 8c bb ca // 94 b1 de 23 6c 3a 52 e2 28 97 13 41 82 fc f9 70 2b d9 bc 40 98 fd d2 // d0 ca a0 f4 20 14 8d 24 07 31 08 b2 9c 2a da 17 77 1b 38 b9 dd 4f b2 // c5 99 02 50 50 87 da b7 e6 74 a9 ab fc 7c c2 cf 15 c4 43 36 27 03 27 // 65 41 6e a0 2e 6b cd e7 c6 ab 78 9e d7 c1 e4 96 67 8d 62 33 be 19 85 // 7e 42 5e 43 ed 4b 00 1f c9 61 67 97 92 eb 7f 46 df f5 4d 19 cb 89 01 // a1 ae 16 78 ea 41 4c 0b 4c b3 da 6d d2 98 4e 46 ac 7e ad 8f 20 63 78 // 81 46 bf 6e 71 67 34 89 cc 02 16 43 cb 22 8e 73 05 9b fd 9c 18 0a d0 // f9 43 98 2b 7d 0b 18 01 b3 1a 23 14 cb 9a b5 1d b8 a3 43 a2 7a f5 ba // fa bc 09 78 1d ec 70 c1 82 5e bf 7e cd b6 3b 1f c8 2d c3 2e 31 b5 32 // 46 56 ae ae 33 bf 6c c5 7a db 98 bf c8 63 d8 fc 60 12 f9 8f c0 56 7f // ab 56 d2 f7 21 d6 0a a7 00 19 68 92 bf 13 10 ff ca 12 da 4c 22 a6 0f // cd 89 d2 8e c8 9e b7 62 08 71 eb 0e 50 ca 46 70 4a 3d fd e7 e2 70 92 // 56 39 aa 0d c3 30 24 fc e5 c6 02 ef f7 d9 6b 29 a4 25 63 ed 77 70 d5 // c5 09 15 72 3d 9b 45 d3 ca 0a 26 5a 3b e7 8e 6f b3 5e b2 12 9c ce 42 // 48 d7 c1 5f 27 bc 1b b2 0e a4 19 8a 6a ac 1d 1e fb db 26 bb dd 1f 0c // 5a 4e 42 3d a2 38 df 61 bc da c2 67 10 9a 31 05 52 a1 98 eb 28 e9 d2 // 26 cf 29 2c f3 44 9b b2 03 36 07 12 b3 3e 93 70 75 1f bf b2 be 24 e1 // 17 f5 5f 68 c6 76 f4 62 79 f4 ea 88 41 1f 24 a6 d8 6b bc a3 0a 78 24 // 7b 24 91 64 8c c9 22 1f 53 c1 09 59 88 79 99 bb 3d a2 78 c1 f1 9b b0 // 12 ab d7 e6 f5 78 ae be 42 30 7c 62 9d bc 49 21 fb dc 36 81 d5 c7 22 // 5d bb 71 e3 2c 7a 78 71 5f 91 ad ea 7d ee 8d 54 0f b1 da 85 c7 f0 5b // 54 fd bd dd a9 cd 7f c0 4f 3b 0a d3 bb 11 dd 80 5a a5 9a 5b ad ef df // 54 bc df 4b 55 9c 01 34 60 1b 85 60 ab 4c 19 bb bd 61 ea 30 d7 d8 9f // 8c 37 de b9 b2 fc cf af fc 1e b9 12 e2 0a 7c 4e 75 20 b9 9a 8e e3 26 // 80 01 a1 36 61 ae 74 76 89 82 a5 76 c1 24 77 67 18 07 4f a3 bc b5 30 // 94 03 29 a2 e0 8d 21 d5 f3 4f aa 0a 20 c7 ba c7 0d d8 f4 cf 2e 4c 0e // 8f 32 d1 86 dc 1f 31 d5 55 fe 5d fb 42 68 16 79 9d 06 b7 1f 9b d1 3e // 36 13 64 b8 1e fd 73 bf 3a e0 64 d2 f9 72 b6 26 10 2f 1a da d8 6b 53 // 07 0b bb b7 ea bd 14 57 c4 79 d7 96 c1 c6 a6 9a 69 a4 98 8a c3 f2 dc // 2a 95 8c b8 a6 b0 1b ee af a7 60 92 47 06 d6 8a 8b d0 24 9d 1a fb 53 // 49 22 31 b0 82 87 7f 22 de 07 bb f8 fe 2a ed 78 e1 ba fc 18 a9 3d c2 // 66 3c 58 a3 0b 5b fc 05 63 3f 6a 5f 99 e6 1d 82 8c 22 7b fd cb 8e 0a // 32 73 26 f7 1e ef b1 10 62 fe 35 4d c2 81 19 0f 0e 93 f3 71 97 c8 e0 // 6c 1c d3 1a be ec 53 14 a3 b5 54 76 ab d8 b0 b3 5c 60 09 03 69 87 7a // 01 72 55 a5 77 03 96 7a 1b a6 08 22 34 da 4d 5a f2 5a 36 5e 0b 04 94 // f5 d1 c4 fd 73 2a 50 6f 45 28 61 2b fd a9 e0 26 60 08 be be 40 ca 05 // 0f 5d 0e 87 70 19 42 fb f5 6d 7a 4a 5f 3a dd 59 4b bc ce 99 26 c2 3d // b3 df 58 33 af 3f 72 50 1a ee 50 8d 55 d5 76 ac 32 37 be f9 9d 83 9c // cc 4c 69 6f d2 3c e1 ce 8d 99 a1 c0 87 60 37 db 1b 80 97 41 25 0b 3e // 24 47 a1 98 23 27 57 d4 a7 be 7c cc 98 4e cb 60 ae a3 76 7a 61 46 a3 // 45 59 71 72 09 d7 15 a5 d9 09 9d 67 f9 91 61 b4 3d d2 97 f5 b5 ff 38 // d5 c5 ac f7 15 6a 84 80 9e a1 55 18 c7 2e 09 03 ff d7 d6 15 b1 33 cb // e1 88 d9 21 bb ca 2f a5 cb 24 f9 17 a5 d4 ff 98 ca ac 74 ca 78 f0 96 // 37 7b d1 1b c5 16 fd 8e 40 b1 dc 7d eb 52 99 6f 5f 45 82 f5 ba b5 46 // 1b c4 c8 1c cc 05 09 ad 71 3e a5 aa 73 9b 5d 15 91 eb 89 e9 c6 a4 4c // b4 79 29 f6 8d 64 a7 f0 26 bd 83 87 9a 52 d8 b7 c1 ab b7 f6 63 0f 12 // ee 99 fe 72 b1 9c 7b d0 45 92 96 bf 3e 1f d4 af cf 6a 95 41 e0 4e b3 // 8b c7 3a 02 49 ca f0 52 86 51 a6 9d 04 09 d6 3d 7e 8f 05 0f e2 19 20 // 65 f1 74 e7 96 51 1a 69 2a b4 f6 bd a5 a0 59 d0 cd 87 de c2 13 8b a5 // 4d 6b fc d4 3a 4a c6 28 2c e2 0d 54 66 e4 33 8d a8 99 a1 55 df 2f 74 // eb 21 b2 02 88 28 27 84 e6 07 62 d8 12 7d 2f 0c b7 af 8d e3 9a 08 c5 // 10 8b 40 5f 23 4a 7b 31 fd 2c 51 f5 03 8e 30 97 50 55 96 4d 50 7a 38 // 2c d1 e5 ee 9a a8 37 ea 75 88 c3 32 3b 19 f1 c8 cb 0a fe 96 d0 07 14 // 0d 8e 08 8b 37 be 3d 26 56 fd 41 6e bc 1d d4 49 d5 eb 13 30 b3 81 4c // d8 e1 db 5f bf a5 fd 64 6a ad df bb 50 b4 6a 88 21 3d 69 6d cd 3d 98 // c2 60 7f a2 27 cb 75 ce 59 16 e8 25 27 06 f5 9e e3 69 5c a7 ad 0b ce // f3 57 91 da d2 0f 59 a1 fd bd bd 8f c6 13 72 08 0b a4 ac 08 ac 77 54 // e4 06 45 61 ec 3e 66 c0 4a 00 8f 31 5b cc 07 b3 fc c7 4f 7d 4e 32 e5 // 90 33 29 9e 4b 42 5d 24 c9 70 92 fb a6 ee 59 47 51 42 4d e8 d8 8a bb // 1b 59 d9 84 45 f8 e9 6f 7d 70 26 a9 58 3d 7c 59 24 85 cf 74 db 9c 4c // 97 4a ae 7b 73 2d 1d 7d 38 a6 12 af 75 45 8a 74 3d 2e 31 ae 70 a0 d6 // 21 95 3d 20 5e 8a ed 11 e9 5c b6 f7 8b 1b c4 f2 c4 24 58 d6 17 1f 5c // e3 af 89 30 43 a4 47 2c de 21 da 3d 94 28 c8 cf df 90 75 40 5b ea 7a // 3d 7d 95 37 00 96 53 13 32 b6 6e 89 ca 00 94 09 9e 6a 68 89 b9 27 bb // 64 47 db 6f a8 6f 26 46 cf 07 66 5b 38 9e 47 e0 64 5e a0 b6 cd 16 68 // c2 13 da be bd 97 23 4d ac e1 64 76 e2 f8 12 6b 04 5b 40 c8 a4 7a 29 // 2b 20 53 a0 da e5 0f 26 5e 95 0e db fa 2b 14 7f 13 a6 46 35 29 59 11 // 04 db 09 47 65 4f cb e7 5d fd cb a2 95 f9 d3 e1 28 4c ad 23 0b 1e bf // e4 d6 0e 30 77 13 6e f0 5b a7 9c 4c 29 c7 6f db ad 78 9c 4d fb ab 1a // 61 85 08 13 34 14 78 7f c7 92 48 d9 cf c2 dd 4d 0c 8f e4 c1 0e 1e 7b // 37 bb a2 a3 a7 bf 2a 47 42 c1 b3 21 63 1e 48 56 96 4a c8 61 c6 cc 74 // e1 5b 89 d4 f8 67 37 cb f6 0c b6 a6 50 b1 ea 76 64 02 5a d0 1f e4 00 // 53 2b ee c9 35 2e 09 22 c1 63 de 89 e7 ee cb ad 7e b6 32 6d e1 d3 5c // f4 0e 5a 58 a7 2b 3c 05 ab 16 e3 fe f4 0e ef 48 29 9d 70 02 80 b3 93 // 07 81 23 d7 31 ed 03 f4 5d f9 19 3c b6 75 e1 8f a9 85 9f 70 fa 22 36 // 91 d0 63 db f1 f5 ca f9 2e 18 6b 90 dd d9 b5 2e b1 e5 0a c8 b9 ad c0 // a2 35 17 bf e8 25 e6 96 d0 24 bf f9 e3 ed 87 c7 3b b4 1d ca 9b 26 57 // ed ca 4f d3 da 8f 7c 6c 3c f3 84 53 ca 28 a6 bc fa a1 a7 7b 20 24 e1 // d0 71 36 64 bd ac e6 88 14 27 fc f9 6d ad 4f 7e 1f 9f e2 d4 37 17 23 // 39 2e 1a d5 e6 f4 ce d2 b7 a3 87 dc 6c 60 0a ea 49 62 1c 01 52 92 2b // 05 c1 e8 59 04 8b 5b 1e 98 01 a8 4b 3b 6d 1d 99 b2 66 59 f9 1c d6 bd // 7e bd 36 b6 e9 34 5f 85 71 91 22 5d f0 33 5b 59 8f 67 34 64 5c e2 a8 // 99 46 a2 94 a4 e9 6f bf f0 57 75 d9 31 68 59 22 03 c3 8a 32 71 21 9d // 47 01 73 dc 77 fe b9 2e fb 34 b7 30 d8 51 41 c1 91 69 e5 8f 84 86 bb // d1 e9 2b d1 71 3f b2 10 6f 77 21 f4 4c ca f8 90 92 ab 43 ef f0 b4 49 // b2 ef 7c 7e 53 93 ef 6d ba 0f 67 c8 cd 6e 95 5a 72 fe 24 b9 b0 d9 60 // 54 8b 12 89 c3 d2 d5 b6 89 4e c0 90 0a 1d b3 bd ed 33 c9 48 40 45 a8 // 66 66 32 f9 2b dc 88 0b 67 ff 6e f3 4e 10 70 f8 da a2 09 77 9a c1 32 // 84 da ea 0b ee a6 3b df 55 c6 9c 10 f8 7f 58 65 f7 79 48 32 2a 5e 78 // 9b aa 6f 0c e1 7c 4e 6e cd 08 a6 3b f3 fa 37 fa 8e 52 da 4f 5a 3c 36 // f9 c6 4b 51 f1 9d e1 24 b4 d2 f4 2b ed c7 0e 08 1b 06 1e 8a 94 66 b8 // 1d c7 58 2c 72 6e 71 9e 44 2e 73 e5 a8 07 fa 3f 4e fe 74 8f 7b a4 e1 // 6c 6f 90 b6 5e 60 a6 22 75 66 8d 71 39 8d 4c 69 20 7b 6b cc 5a b8 61 // ca 69 47 06 cc a6 bb 7c 6e f4 0f 64 a1 f5 b7 ff 4c ba e0 74 3b dc 9b // 68 85 12 bb 6c 14 63 93 99 15 3e 67 52 7b d7 f8 23 cc c9 39 93 2a 3a // 4b 53 ab 31 ca 49 30 63 4a 39 d7 4a d5 c6 7d 5d 0f 4c 19 03 aa b8 ed // ae bf 4b 41 f5 30 85 40 70 83 85 9b 33 39 6a 6e 36 33 76 fc d4 53 9b // c7 aa 2a 39 36 1c d5 34 3d ae ca 1e 2e 6a 66 5c 85 a6 e5 17 fb db c3 // 73 39 37 d7 10 59 6d a4 90 5e 48 a1 86 22 61 d3 6a 02 a9 86 ef 4d 20 // c4 d8 5b 3f 3e d4 e1 42 4f 43 1e ca 50 81 ce 46 7c 45 d7 16 83 ce f8 // fa 37 cf d8 4f 58 47 50 a3 ff 00 7c 3d 28 67 4c 26 88 57 92 d8 60 e4 // ee 71 26 d4 0e 3d 03 c9 72 85 cb 9a d5 80 47 a5 49 88 55 a2 8a a4 24 // 06 1f 4f c7 2e 7d 8c a2 eb 8f fd 26 c8 03 2b 05 20 64 8b 78 16 aa 45 // b4 3a a9 25 bc 0f c9 9a 3c 95 d2 4a 12 28 8e f0 fc b8 97 66 bf 3a b9 // 5c 1a 5b 47 c9 f0 86 b1 53 0a ff 82 cd dd 28 52 54 6e df 5e c4 d7 f5 // 56 4a c6 5a 5e 42 2b 26 87 da 24 d1 d5 32 ae ae 46 f3 7f 23 44 f1 72 // c6 56 5e c6 b0 9a 67 d1 92 58 3c c0 52 27 58 24 57 2b 2c e2 97 8e 19 // 4f 63 fb 96 bd 44 56 ad 07 53 83 b3 13 f9 80 79 89 1b 4a 10 0c af 7e // 9c 4e c0 ed 74 d4 e0 68 44 cc 80 0d 03 db 1d e5 bb c5 aa 11 a0 db 92 // 92 59 1f 99 be 6f 1f eb bc 76 6b d9 38 fc a5 9f 45 f6 10 7b a4 11 88 // 19 d1 ea d6 89 20 e3 cf 5d 58 0b 8d a4 dc 41 5b 97 5e c4 42 b8 24 26 // 38 ce 67 8c 85 3e 34 d3 14 03 71 4a c4 d0 d9 c6 84 3e de 60 c3 04 3e // 6e a9 ca 46 75 5d b0 d9 dd 92 b4 79 d5 ea 5b 2d 48 61 af a4 7f 7c 43 // 87 cb 2b 36 92 ba c5 11 43 3b e6 7a 9f 74 65 de ae f1 a4 93 fa 6d 5f // 37 26 57 2f ab 62 2a be 58 4c dd 15 11 0f 0b c6 57 6c 71 e2 c5 33 29 // 7e 21 06 43 e2 6f c0 30 c3 ae d2 fd fd de 34 e6 d4 8c 42 5f 98 0e 56 // 7f c4 7e d9 8c a2 64 3c b8 c7 a4 73 a3 45 0c c0 82 79 a9 ea 81 37 8e // 69 66 5e 31 45 11 6f 8b 8a f2 fa 07 db b9 61 f0 c2 89 20 e6 ab ff 66 // c0 ef e8 66 45 22 d4 e1 a2 be 97 e8 da b6 8c d3 05 0c f4 a6 c0 9d 89 // e3 26 64 d1 19 d4 ad 3b 15 de 62 c8 7f 55 c2 05 8c 7a a3 8e 00 f0 b6 // a4 74 20 9b 48 b8 08 5c a9 6b 60 2f a1 27 d9 0d a5 39 f0 d1 f9 ab 9a // 71 b7 93 ec b5 f5 09 96 13 84 50 51 d0 0f 3f 40 df ee 4b 60 63 a6 b0 // 54 e7 30 2f e9 61 02 c4 7b 53 9b 8c 9d 8c 8f 4a 82 29 a8 ac d3 02 a0 // f7 f4 75 67 49 10 d7 c4 e6 8b 7a 03 ff bb 5a b4 95 00 b3 08 8d d8 35 // ac d1 e2 57 bf f4 8d 8f 3d 49 23 92 05 59 bb 1c 49 0f db 8c 29 52 4d // 97 65 25 c8 ba c9 2b 34 9b 63 4d c1 1d ec c6 85 d5 49 b1 7e 02 76 d9 // fd f1 df 6f 96 6f d0 ac 0e 0c 47 da 9f a7 c4 b9 32 68 32 29 fa 5f 2f // aa 2e 96 49 88 55 86 33 e2 ec 4f 5a ba e3 ca 45 28 0a 94 21 1a 99 ff // 20 32 ec ed 91 5a 51 49 98 aa 65 5b 88 b0 f6 36 8c 6d c7 8c 8f 2f 61 // 5c 4b 32 d3 16 02 09 a4 4d 8f f4 0b 16 7e 99 ea 80 e8 95 38 0b 02 11 // f5 35 1e 8c 78 08 7e d2 a1 37 d1 e8 1b ce fc 7a 58 13 a8 88 65 f4 42 // fa 6c 29 1c 1b 73 a2 39 be d5 a0 88 60 ea bd ce b4 88 ca da 76 4a 53 // 4a f7 ff fb dc cd b0 52 a1 67 7e 38 d3 55 d3 57 a3 8c 04 d7 31 09 bb // 44 d9 4c 35 c3 f6 1b de 6a 1f 73 3b d7 9c 32 a1 0e 6b fa 34 08 fb 29 // b0 62 eb 1e 0e 8b 5f 4a 0b 39 db 4f 38 f7 fd 88 14 18 cf 20 04 f7 50 // 84 2f cc 9d 6e f7 2c 55 96 92 14 79 4d 54 70 d3 f4 49 4e a1 86 09 df // fc 5f 39 83 a0 b8 ed 35 1b 1e 2a a5 f3 d2 30 be 5c 86 aa 59 25 0a 02 // 09 16 61 8a f9 dd 1c 72 e8 55 bb 2d 12 5b 88 e5 51 16 7a 4a 48 b6 b0 // 49 5d f3 0e 8a 6f cf 4c 18 0d 50 8f ff a8 c6 e3 03 d7 f1 e4 23 03 80 // a5 b5 9e e8 e2 87 6b cc 9e 41 ae f5 7b ba c5 59 32 5d d5 e6 9b d1 61 // 52 6f 08 43 ed 2c a4 d3 bb bf d6 4d 65 38 d0 f1 4a e8 7b 3f 72 5c 41 // df dc 5a 75 16 2f 54 28 34 94 a0 a0 2d 62 57 55 69 cf b1 e3 f3 32 fd // c0 5f dd 0b 14 01 cf e0 3e 9a 92 7b 53 e5 b6 0c c4 1d bb e6 6d 0f 6f // 28 db f5 1b e3 a8 57 d7 17 c9 51 1b ff fa 99 39 65 00 3d 4d 51 d2 b9 // 5c cc 8f 39 73 87 12 7e 9f 94 45 bc bd e8 ae d8 b8 d3 c8 52 2d b4 02 // c2 97 fb 27 d2 11 e0 11 c4 ba c2 97 73 27 3f a7 6f 1d d9 8b 79 e1 40 // e0 14 18 da ee 99 3a cb 05 dc 6c 1d 24 5d d0 d7 7d ad 63 b1 b3 d0 f3 // 77 7c 9c 66 45 67 8b c0 14 be 0b 04 c0 a9 3e 58 38 99 8d 2f 4d 2f 49 // c3 e0 97 dc 80 7c 81 d1 56 47 ba 61 ee 45 e8 ad 1e a0 5d 9d 96 b4 ee // 1a 44 60 45 1b 94 29 bd ce 09 50 fd 4d 9b 27 52 0e 2e 42 2a 4c 5d ae // 68 3f 04 d0 ff 21 9a 29 c5 ac 79 a9 3a c3 cc 7e 73 61 4d a4 37 bb f7 // a4 ff d1 7b a7 2a 6b 00 43 13 20 ea 21 ed 27 01 1a 36 35 ae 14 8d f5 // 09 73 01 ee 84 39 c2 4d 26 62 2a b0 61 e1 57 4c eb 80 68 88 b9 7b 01 // 3a cf 62 bd 5a 5d 8f ff d0 d7 90 ed 9f f1 24 38 17 d5 1e 4d 1b 19 c0 // d5 5a 29 d9 74 5f b4 2c 7b 74 18 a2 f9 56 78 0c 30 06 ba d4 84 63 a6 // 12 19 34 c4 9f a3 59 80 7c 5c 45 cb 0d 7c 03 47 f2 9e 62 ae 67 e2} // (length 0xff8) // } // } // ] *(uint32_t*)0x200000000280 = -1; memcpy( (void*)0x200000000288, "\xb1\x52\x1b\x61\xb2\xeb\x65\xa7\x55\x21\xaa\x70\x9b\x91\xdf\x0b\x45\x70" "\xa8\xc0\x89\x34\x12\xda\xdb\xb3\x63\xfa\xaf\x5c\x6c\xc9\x24\x20\x5f\xdd" "\x90\xe7\x0f\x37\x4a\x68\x69\x9d\x01\x24\x1d\x8f\xb2\xf7\xd4\x0c\xa6\x64" "\xd5\x3a\x92\xcd\xa4\xb2\x26\xd4\x25\xb1\x81\x15\xb7\x30\x91\x75\x70\x1c" "\xbb\x77\xd3\x1d\x84\x6a\x4e\x39\x01\x97\xab\xad\x2c\xa0\x78\x0f\xf2\x80" "\x5e\x76\x39\xd0\xd5\xd0\x00\x40\x63\xc7\x66\xd4\x96\x6f\x5c\xa5\x81\x23" "\xbd\x43\x31\x1c\x4d\x8a\xf2\xc6\x96\x97\x64\x85\xf5\x35\x8b\x74\x13\xd5" "\x80\xf3\xf6\x46\x2c\xda\x08\x6d\x4d\x71\xf9\x86\xb3\xf3\x07\xfc\x2b\xb2" "\x0e\xe3\x92\x1c\x75\x76\x78\xcd\x61\x91\xd6\x22\xfc\x9e\xde\x45\xb6\xdb" "\x46\x39\xb1\x42\x1c\x4e\xbf\xb4\x33\xcc\x6f\xbb\xe0\x08\x8d\xe8\xa3\x43" "\x06\xf5\x86\xae\x91\x6c\x63\x8c\x65\x1a\xa7\xa6\x34\xd1\xe8\x00\xe4\x18" "\x94\x14\xcb\x18\x6e\xfc\x7f\x23\x70\x72\x36\xf9\x80\x62\x60\xd6\x34\x40" "\xf7\x86\x39\x84\x6f\xd6\xa7\x08\x62\xa8\x9d\xc8\x9b\x96\x58\xda\xc5\xb3" "\x22\x94\x78\xde\x9e\xb9\x20\xd6\x6f\xbb\x72\x33\xe8\x1d\x03\x00\x82\x79" "\x32\xa3\xa2\x1e\xe3\x7f\x66\xa9\xa6\x73\xe3\xe1\xde\x2c\xd3\x7b\x3a\x4a" "\x6c\xa4\x1c\x92\x6c\x5e\x9e\x22\x5c\x53\x36\xb0\x1c\x75\xca\x9f\x0b\x1e" "\x1c\xba\x2a\x40\x88\x0b\x21\x52\x39\xfa\x73\xa6\xf8\x48\x4a\x59\x2b\x89" "\x32\x65\x0d\xb2\x2a\x30\x02\xfd\x20\x09\x10\xf5\xe6\xcb\x14\x74\xfe\xbd" "\xa0\x8a\x6e\xf0\xf7\x58\x18\xe7\x2d\xcc\xcd\xf4\xc4\x93\x9a\x2d\x65\xe1" "\xac\x80\x03\xa5\xdd\x59\x62\x40\xc6\xdb\x0b\x19\xe4\x9e\x85\x73\x6b\xf8" "\x1a\xb2\xe0\xc3\xf6\xae\x5d\x26\x60\x90\xe1\x7f\x25\x52\x81\x99\xac\xa6" "\xc9\xfe\x70\xe3\x53\xa3\x28\x90\x72\xa6\xfa\xbf\xb0\xcb\x86\xcb\xe4\x43" "\xdb\x01\x99\x0d\x5d\x9a\x09\x40\xad\x9c\xe8\xcb\xce\x5c\x71\x4f\xab\x82" "\x07\xe1\x71\x3e\x43\x21\x09\x4f\xcc\xfe\x6e\x40\x01\x4f\xf3\x5d\xc3\xed" "\xce\xee\xcc\x72\xc0\x3e\x51\x8e\x3d\x49\x08\x37\xa9\x7b\x72\x3e\x71\x11" "\x65\xc9\xae\x74\x9a\x8a\xcb\x0b\x98\x80\x52\x04\x2b\x90\xde\xcd\xf7\xab" "\x1b\x21\xc5\x8d\x5c\x0c\xc3\x16\xae\x99\x14\xc2\x7c\xb1\x13\x5c\x15\xfa" "\x3c\x26\x8c\xe6\x75\x4c\x30\x0b\x14\x6a\x2a\x10\x8c\xbb\xca\x94\xb1\xde" "\x23\x6c\x3a\x52\xe2\x28\x97\x13\x41\x82\xfc\xf9\x70\x2b\xd9\xbc\x40\x98" "\xfd\xd2\xd0\xca\xa0\xf4\x20\x14\x8d\x24\x07\x31\x08\xb2\x9c\x2a\xda\x17" "\x77\x1b\x38\xb9\xdd\x4f\xb2\xc5\x99\x02\x50\x50\x87\xda\xb7\xe6\x74\xa9" "\xab\xfc\x7c\xc2\xcf\x15\xc4\x43\x36\x27\x03\x27\x65\x41\x6e\xa0\x2e\x6b" "\xcd\xe7\xc6\xab\x78\x9e\xd7\xc1\xe4\x96\x67\x8d\x62\x33\xbe\x19\x85\x7e" "\x42\x5e\x43\xed\x4b\x00\x1f\xc9\x61\x67\x97\x92\xeb\x7f\x46\xdf\xf5\x4d" "\x19\xcb\x89\x01\xa1\xae\x16\x78\xea\x41\x4c\x0b\x4c\xb3\xda\x6d\xd2\x98" "\x4e\x46\xac\x7e\xad\x8f\x20\x63\x78\x81\x46\xbf\x6e\x71\x67\x34\x89\xcc" "\x02\x16\x43\xcb\x22\x8e\x73\x05\x9b\xfd\x9c\x18\x0a\xd0\xf9\x43\x98\x2b" "\x7d\x0b\x18\x01\xb3\x1a\x23\x14\xcb\x9a\xb5\x1d\xb8\xa3\x43\xa2\x7a\xf5" "\xba\xfa\xbc\x09\x78\x1d\xec\x70\xc1\x82\x5e\xbf\x7e\xcd\xb6\x3b\x1f\xc8" "\x2d\xc3\x2e\x31\xb5\x32\x46\x56\xae\xae\x33\xbf\x6c\xc5\x7a\xdb\x98\xbf" "\xc8\x63\xd8\xfc\x60\x12\xf9\x8f\xc0\x56\x7f\xab\x56\xd2\xf7\x21\xd6\x0a" "\xa7\x00\x19\x68\x92\xbf\x13\x10\xff\xca\x12\xda\x4c\x22\xa6\x0f\xcd\x89" "\xd2\x8e\xc8\x9e\xb7\x62\x08\x71\xeb\x0e\x50\xca\x46\x70\x4a\x3d\xfd\xe7" "\xe2\x70\x92\x56\x39\xaa\x0d\xc3\x30\x24\xfc\xe5\xc6\x02\xef\xf7\xd9\x6b" "\x29\xa4\x25\x63\xed\x77\x70\xd5\xc5\x09\x15\x72\x3d\x9b\x45\xd3\xca\x0a" "\x26\x5a\x3b\xe7\x8e\x6f\xb3\x5e\xb2\x12\x9c\xce\x42\x48\xd7\xc1\x5f\x27" "\xbc\x1b\xb2\x0e\xa4\x19\x8a\x6a\xac\x1d\x1e\xfb\xdb\x26\xbb\xdd\x1f\x0c" "\x5a\x4e\x42\x3d\xa2\x38\xdf\x61\xbc\xda\xc2\x67\x10\x9a\x31\x05\x52\xa1" "\x98\xeb\x28\xe9\xd2\x26\xcf\x29\x2c\xf3\x44\x9b\xb2\x03\x36\x07\x12\xb3" "\x3e\x93\x70\x75\x1f\xbf\xb2\xbe\x24\xe1\x17\xf5\x5f\x68\xc6\x76\xf4\x62" "\x79\xf4\xea\x88\x41\x1f\x24\xa6\xd8\x6b\xbc\xa3\x0a\x78\x24\x7b\x24\x91" "\x64\x8c\xc9\x22\x1f\x53\xc1\x09\x59\x88\x79\x99\xbb\x3d\xa2\x78\xc1\xf1" "\x9b\xb0\x12\xab\xd7\xe6\xf5\x78\xae\xbe\x42\x30\x7c\x62\x9d\xbc\x49\x21" "\xfb\xdc\x36\x81\xd5\xc7\x22\x5d\xbb\x71\xe3\x2c\x7a\x78\x71\x5f\x91\xad" "\xea\x7d\xee\x8d\x54\x0f\xb1\xda\x85\xc7\xf0\x5b\x54\xfd\xbd\xdd\xa9\xcd" "\x7f\xc0\x4f\x3b\x0a\xd3\xbb\x11\xdd\x80\x5a\xa5\x9a\x5b\xad\xef\xdf\x54" "\xbc\xdf\x4b\x55\x9c\x01\x34\x60\x1b\x85\x60\xab\x4c\x19\xbb\xbd\x61\xea" "\x30\xd7\xd8\x9f\x8c\x37\xde\xb9\xb2\xfc\xcf\xaf\xfc\x1e\xb9\x12\xe2\x0a" "\x7c\x4e\x75\x20\xb9\x9a\x8e\xe3\x26\x80\x01\xa1\x36\x61\xae\x74\x76\x89" "\x82\xa5\x76\xc1\x24\x77\x67\x18\x07\x4f\xa3\xbc\xb5\x30\x94\x03\x29\xa2" "\xe0\x8d\x21\xd5\xf3\x4f\xaa\x0a\x20\xc7\xba\xc7\x0d\xd8\xf4\xcf\x2e\x4c" "\x0e\x8f\x32\xd1\x86\xdc\x1f\x31\xd5\x55\xfe\x5d\xfb\x42\x68\x16\x79\x9d" "\x06\xb7\x1f\x9b\xd1\x3e\x36\x13\x64\xb8\x1e\xfd\x73\xbf\x3a\xe0\x64\xd2" "\xf9\x72\xb6\x26\x10\x2f\x1a\xda\xd8\x6b\x53\x07\x0b\xbb\xb7\xea\xbd\x14" "\x57\xc4\x79\xd7\x96\xc1\xc6\xa6\x9a\x69\xa4\x98\x8a\xc3\xf2\xdc\x2a\x95" "\x8c\xb8\xa6\xb0\x1b\xee\xaf\xa7\x60\x92\x47\x06\xd6\x8a\x8b\xd0\x24\x9d" "\x1a\xfb\x53\x49\x22\x31\xb0\x82\x87\x7f\x22\xde\x07\xbb\xf8\xfe\x2a\xed" "\x78\xe1\xba\xfc\x18\xa9\x3d\xc2\x66\x3c\x58\xa3\x0b\x5b\xfc\x05\x63\x3f" "\x6a\x5f\x99\xe6\x1d\x82\x8c\x22\x7b\xfd\xcb\x8e\x0a\x32\x73\x26\xf7\x1e" "\xef\xb1\x10\x62\xfe\x35\x4d\xc2\x81\x19\x0f\x0e\x93\xf3\x71\x97\xc8\xe0" "\x6c\x1c\xd3\x1a\xbe\xec\x53\x14\xa3\xb5\x54\x76\xab\xd8\xb0\xb3\x5c\x60" "\x09\x03\x69\x87\x7a\x01\x72\x55\xa5\x77\x03\x96\x7a\x1b\xa6\x08\x22\x34" "\xda\x4d\x5a\xf2\x5a\x36\x5e\x0b\x04\x94\xf5\xd1\xc4\xfd\x73\x2a\x50\x6f" "\x45\x28\x61\x2b\xfd\xa9\xe0\x26\x60\x08\xbe\xbe\x40\xca\x05\x0f\x5d\x0e" "\x87\x70\x19\x42\xfb\xf5\x6d\x7a\x4a\x5f\x3a\xdd\x59\x4b\xbc\xce\x99\x26" "\xc2\x3d\xb3\xdf\x58\x33\xaf\x3f\x72\x50\x1a\xee\x50\x8d\x55\xd5\x76\xac" "\x32\x37\xbe\xf9\x9d\x83\x9c\xcc\x4c\x69\x6f\xd2\x3c\xe1\xce\x8d\x99\xa1" "\xc0\x87\x60\x37\xdb\x1b\x80\x97\x41\x25\x0b\x3e\x24\x47\xa1\x98\x23\x27" "\x57\xd4\xa7\xbe\x7c\xcc\x98\x4e\xcb\x60\xae\xa3\x76\x7a\x61\x46\xa3\x45" "\x59\x71\x72\x09\xd7\x15\xa5\xd9\x09\x9d\x67\xf9\x91\x61\xb4\x3d\xd2\x97" "\xf5\xb5\xff\x38\xd5\xc5\xac\xf7\x15\x6a\x84\x80\x9e\xa1\x55\x18\xc7\x2e" "\x09\x03\xff\xd7\xd6\x15\xb1\x33\xcb\xe1\x88\xd9\x21\xbb\xca\x2f\xa5\xcb" "\x24\xf9\x17\xa5\xd4\xff\x98\xca\xac\x74\xca\x78\xf0\x96\x37\x7b\xd1\x1b" "\xc5\x16\xfd\x8e\x40\xb1\xdc\x7d\xeb\x52\x99\x6f\x5f\x45\x82\xf5\xba\xb5" "\x46\x1b\xc4\xc8\x1c\xcc\x05\x09\xad\x71\x3e\xa5\xaa\x73\x9b\x5d\x15\x91" "\xeb\x89\xe9\xc6\xa4\x4c\xb4\x79\x29\xf6\x8d\x64\xa7\xf0\x26\xbd\x83\x87" "\x9a\x52\xd8\xb7\xc1\xab\xb7\xf6\x63\x0f\x12\xee\x99\xfe\x72\xb1\x9c\x7b" "\xd0\x45\x92\x96\xbf\x3e\x1f\xd4\xaf\xcf\x6a\x95\x41\xe0\x4e\xb3\x8b\xc7" "\x3a\x02\x49\xca\xf0\x52\x86\x51\xa6\x9d\x04\x09\xd6\x3d\x7e\x8f\x05\x0f" "\xe2\x19\x20\x65\xf1\x74\xe7\x96\x51\x1a\x69\x2a\xb4\xf6\xbd\xa5\xa0\x59" "\xd0\xcd\x87\xde\xc2\x13\x8b\xa5\x4d\x6b\xfc\xd4\x3a\x4a\xc6\x28\x2c\xe2" "\x0d\x54\x66\xe4\x33\x8d\xa8\x99\xa1\x55\xdf\x2f\x74\xeb\x21\xb2\x02\x88" "\x28\x27\x84\xe6\x07\x62\xd8\x12\x7d\x2f\x0c\xb7\xaf\x8d\xe3\x9a\x08\xc5" "\x10\x8b\x40\x5f\x23\x4a\x7b\x31\xfd\x2c\x51\xf5\x03\x8e\x30\x97\x50\x55" "\x96\x4d\x50\x7a\x38\x2c\xd1\xe5\xee\x9a\xa8\x37\xea\x75\x88\xc3\x32\x3b" "\x19\xf1\xc8\xcb\x0a\xfe\x96\xd0\x07\x14\x0d\x8e\x08\x8b\x37\xbe\x3d\x26" "\x56\xfd\x41\x6e\xbc\x1d\xd4\x49\xd5\xeb\x13\x30\xb3\x81\x4c\xd8\xe1\xdb" "\x5f\xbf\xa5\xfd\x64\x6a\xad\xdf\xbb\x50\xb4\x6a\x88\x21\x3d\x69\x6d\xcd" "\x3d\x98\xc2\x60\x7f\xa2\x27\xcb\x75\xce\x59\x16\xe8\x25\x27\x06\xf5\x9e" "\xe3\x69\x5c\xa7\xad\x0b\xce\xf3\x57\x91\xda\xd2\x0f\x59\xa1\xfd\xbd\xbd" "\x8f\xc6\x13\x72\x08\x0b\xa4\xac\x08\xac\x77\x54\xe4\x06\x45\x61\xec\x3e" "\x66\xc0\x4a\x00\x8f\x31\x5b\xcc\x07\xb3\xfc\xc7\x4f\x7d\x4e\x32\xe5\x90" "\x33\x29\x9e\x4b\x42\x5d\x24\xc9\x70\x92\xfb\xa6\xee\x59\x47\x51\x42\x4d" "\xe8\xd8\x8a\xbb\x1b\x59\xd9\x84\x45\xf8\xe9\x6f\x7d\x70\x26\xa9\x58\x3d" "\x7c\x59\x24\x85\xcf\x74\xdb\x9c\x4c\x97\x4a\xae\x7b\x73\x2d\x1d\x7d\x38" "\xa6\x12\xaf\x75\x45\x8a\x74\x3d\x2e\x31\xae\x70\xa0\xd6\x21\x95\x3d\x20" "\x5e\x8a\xed\x11\xe9\x5c\xb6\xf7\x8b\x1b\xc4\xf2\xc4\x24\x58\xd6\x17\x1f" "\x5c\xe3\xaf\x89\x30\x43\xa4\x47\x2c\xde\x21\xda\x3d\x94\x28\xc8\xcf\xdf" "\x90\x75\x40\x5b\xea\x7a\x3d\x7d\x95\x37\x00\x96\x53\x13\x32\xb6\x6e\x89" "\xca\x00\x94\x09\x9e\x6a\x68\x89\xb9\x27\xbb\x64\x47\xdb\x6f\xa8\x6f\x26" "\x46\xcf\x07\x66\x5b\x38\x9e\x47\xe0\x64\x5e\xa0\xb6\xcd\x16\x68\xc2\x13" "\xda\xbe\xbd\x97\x23\x4d\xac\xe1\x64\x76\xe2\xf8\x12\x6b\x04\x5b\x40\xc8" "\xa4\x7a\x29\x2b\x20\x53\xa0\xda\xe5\x0f\x26\x5e\x95\x0e\xdb\xfa\x2b\x14" "\x7f\x13\xa6\x46\x35\x29\x59\x11\x04\xdb\x09\x47\x65\x4f\xcb\xe7\x5d\xfd" "\xcb\xa2\x95\xf9\xd3\xe1\x28\x4c\xad\x23\x0b\x1e\xbf\xe4\xd6\x0e\x30\x77" "\x13\x6e\xf0\x5b\xa7\x9c\x4c\x29\xc7\x6f\xdb\xad\x78\x9c\x4d\xfb\xab\x1a" "\x61\x85\x08\x13\x34\x14\x78\x7f\xc7\x92\x48\xd9\xcf\xc2\xdd\x4d\x0c\x8f" "\xe4\xc1\x0e\x1e\x7b\x37\xbb\xa2\xa3\xa7\xbf\x2a\x47\x42\xc1\xb3\x21\x63" "\x1e\x48\x56\x96\x4a\xc8\x61\xc6\xcc\x74\xe1\x5b\x89\xd4\xf8\x67\x37\xcb" "\xf6\x0c\xb6\xa6\x50\xb1\xea\x76\x64\x02\x5a\xd0\x1f\xe4\x00\x53\x2b\xee" "\xc9\x35\x2e\x09\x22\xc1\x63\xde\x89\xe7\xee\xcb\xad\x7e\xb6\x32\x6d\xe1" "\xd3\x5c\xf4\x0e\x5a\x58\xa7\x2b\x3c\x05\xab\x16\xe3\xfe\xf4\x0e\xef\x48" "\x29\x9d\x70\x02\x80\xb3\x93\x07\x81\x23\xd7\x31\xed\x03\xf4\x5d\xf9\x19" "\x3c\xb6\x75\xe1\x8f\xa9\x85\x9f\x70\xfa\x22\x36\x91\xd0\x63\xdb\xf1\xf5" "\xca\xf9\x2e\x18\x6b\x90\xdd\xd9\xb5\x2e\xb1\xe5\x0a\xc8\xb9\xad\xc0\xa2" "\x35\x17\xbf\xe8\x25\xe6\x96\xd0\x24\xbf\xf9\xe3\xed\x87\xc7\x3b\xb4\x1d" "\xca\x9b\x26\x57\xed\xca\x4f\xd3\xda\x8f\x7c\x6c\x3c\xf3\x84\x53\xca\x28" "\xa6\xbc\xfa\xa1\xa7\x7b\x20\x24\xe1\xd0\x71\x36\x64\xbd\xac\xe6\x88\x14" "\x27\xfc\xf9\x6d\xad\x4f\x7e\x1f\x9f\xe2\xd4\x37\x17\x23\x39\x2e\x1a\xd5" "\xe6\xf4\xce\xd2\xb7\xa3\x87\xdc\x6c\x60\x0a\xea\x49\x62\x1c\x01\x52\x92" "\x2b\x05\xc1\xe8\x59\x04\x8b\x5b\x1e\x98\x01\xa8\x4b\x3b\x6d\x1d\x99\xb2" "\x66\x59\xf9\x1c\xd6\xbd\x7e\xbd\x36\xb6\xe9\x34\x5f\x85\x71\x91\x22\x5d" "\xf0\x33\x5b\x59\x8f\x67\x34\x64\x5c\xe2\xa8\x99\x46\xa2\x94\xa4\xe9\x6f" "\xbf\xf0\x57\x75\xd9\x31\x68\x59\x22\x03\xc3\x8a\x32\x71\x21\x9d\x47\x01" "\x73\xdc\x77\xfe\xb9\x2e\xfb\x34\xb7\x30\xd8\x51\x41\xc1\x91\x69\xe5\x8f" "\x84\x86\xbb\xd1\xe9\x2b\xd1\x71\x3f\xb2\x10\x6f\x77\x21\xf4\x4c\xca\xf8" "\x90\x92\xab\x43\xef\xf0\xb4\x49\xb2\xef\x7c\x7e\x53\x93\xef\x6d\xba\x0f" "\x67\xc8\xcd\x6e\x95\x5a\x72\xfe\x24\xb9\xb0\xd9\x60\x54\x8b\x12\x89\xc3" "\xd2\xd5\xb6\x89\x4e\xc0\x90\x0a\x1d\xb3\xbd\xed\x33\xc9\x48\x40\x45\xa8" "\x66\x66\x32\xf9\x2b\xdc\x88\x0b\x67\xff\x6e\xf3\x4e\x10\x70\xf8\xda\xa2" "\x09\x77\x9a\xc1\x32\x84\xda\xea\x0b\xee\xa6\x3b\xdf\x55\xc6\x9c\x10\xf8" "\x7f\x58\x65\xf7\x79\x48\x32\x2a\x5e\x78\x9b\xaa\x6f\x0c\xe1\x7c\x4e\x6e" "\xcd\x08\xa6\x3b\xf3\xfa\x37\xfa\x8e\x52\xda\x4f\x5a\x3c\x36\xf9\xc6\x4b" "\x51\xf1\x9d\xe1\x24\xb4\xd2\xf4\x2b\xed\xc7\x0e\x08\x1b\x06\x1e\x8a\x94" "\x66\xb8\x1d\xc7\x58\x2c\x72\x6e\x71\x9e\x44\x2e\x73\xe5\xa8\x07\xfa\x3f" "\x4e\xfe\x74\x8f\x7b\xa4\xe1\x6c\x6f\x90\xb6\x5e\x60\xa6\x22\x75\x66\x8d" "\x71\x39\x8d\x4c\x69\x20\x7b\x6b\xcc\x5a\xb8\x61\xca\x69\x47\x06\xcc\xa6" "\xbb\x7c\x6e\xf4\x0f\x64\xa1\xf5\xb7\xff\x4c\xba\xe0\x74\x3b\xdc\x9b\x68" "\x85\x12\xbb\x6c\x14\x63\x93\x99\x15\x3e\x67\x52\x7b\xd7\xf8\x23\xcc\xc9" "\x39\x93\x2a\x3a\x4b\x53\xab\x31\xca\x49\x30\x63\x4a\x39\xd7\x4a\xd5\xc6" "\x7d\x5d\x0f\x4c\x19\x03\xaa\xb8\xed\xae\xbf\x4b\x41\xf5\x30\x85\x40\x70" "\x83\x85\x9b\x33\x39\x6a\x6e\x36\x33\x76\xfc\xd4\x53\x9b\xc7\xaa\x2a\x39" "\x36\x1c\xd5\x34\x3d\xae\xca\x1e\x2e\x6a\x66\x5c\x85\xa6\xe5\x17\xfb\xdb" "\xc3\x73\x39\x37\xd7\x10\x59\x6d\xa4\x90\x5e\x48\xa1\x86\x22\x61\xd3\x6a" "\x02\xa9\x86\xef\x4d\x20\xc4\xd8\x5b\x3f\x3e\xd4\xe1\x42\x4f\x43\x1e\xca" "\x50\x81\xce\x46\x7c\x45\xd7\x16\x83\xce\xf8\xfa\x37\xcf\xd8\x4f\x58\x47" "\x50\xa3\xff\x00\x7c\x3d\x28\x67\x4c\x26\x88\x57\x92\xd8\x60\xe4\xee\x71" "\x26\xd4\x0e\x3d\x03\xc9\x72\x85\xcb\x9a\xd5\x80\x47\xa5\x49\x88\x55\xa2" "\x8a\xa4\x24\x06\x1f\x4f\xc7\x2e\x7d\x8c\xa2\xeb\x8f\xfd\x26\xc8\x03\x2b" "\x05\x20\x64\x8b\x78\x16\xaa\x45\xb4\x3a\xa9\x25\xbc\x0f\xc9\x9a\x3c\x95" "\xd2\x4a\x12\x28\x8e\xf0\xfc\xb8\x97\x66\xbf\x3a\xb9\x5c\x1a\x5b\x47\xc9" "\xf0\x86\xb1\x53\x0a\xff\x82\xcd\xdd\x28\x52\x54\x6e\xdf\x5e\xc4\xd7\xf5" "\x56\x4a\xc6\x5a\x5e\x42\x2b\x26\x87\xda\x24\xd1\xd5\x32\xae\xae\x46\xf3" "\x7f\x23\x44\xf1\x72\xc6\x56\x5e\xc6\xb0\x9a\x67\xd1\x92\x58\x3c\xc0\x52" "\x27\x58\x24\x57\x2b\x2c\xe2\x97\x8e\x19\x4f\x63\xfb\x96\xbd\x44\x56\xad" "\x07\x53\x83\xb3\x13\xf9\x80\x79\x89\x1b\x4a\x10\x0c\xaf\x7e\x9c\x4e\xc0" "\xed\x74\xd4\xe0\x68\x44\xcc\x80\x0d\x03\xdb\x1d\xe5\xbb\xc5\xaa\x11\xa0" "\xdb\x92\x92\x59\x1f\x99\xbe\x6f\x1f\xeb\xbc\x76\x6b\xd9\x38\xfc\xa5\x9f" "\x45\xf6\x10\x7b\xa4\x11\x88\x19\xd1\xea\xd6\x89\x20\xe3\xcf\x5d\x58\x0b" "\x8d\xa4\xdc\x41\x5b\x97\x5e\xc4\x42\xb8\x24\x26\x38\xce\x67\x8c\x85\x3e" "\x34\xd3\x14\x03\x71\x4a\xc4\xd0\xd9\xc6\x84\x3e\xde\x60\xc3\x04\x3e\x6e" "\xa9\xca\x46\x75\x5d\xb0\xd9\xdd\x92\xb4\x79\xd5\xea\x5b\x2d\x48\x61\xaf" "\xa4\x7f\x7c\x43\x87\xcb\x2b\x36\x92\xba\xc5\x11\x43\x3b\xe6\x7a\x9f\x74" "\x65\xde\xae\xf1\xa4\x93\xfa\x6d\x5f\x37\x26\x57\x2f\xab\x62\x2a\xbe\x58" "\x4c\xdd\x15\x11\x0f\x0b\xc6\x57\x6c\x71\xe2\xc5\x33\x29\x7e\x21\x06\x43" "\xe2\x6f\xc0\x30\xc3\xae\xd2\xfd\xfd\xde\x34\xe6\xd4\x8c\x42\x5f\x98\x0e" "\x56\x7f\xc4\x7e\xd9\x8c\xa2\x64\x3c\xb8\xc7\xa4\x73\xa3\x45\x0c\xc0\x82" "\x79\xa9\xea\x81\x37\x8e\x69\x66\x5e\x31\x45\x11\x6f\x8b\x8a\xf2\xfa\x07" "\xdb\xb9\x61\xf0\xc2\x89\x20\xe6\xab\xff\x66\xc0\xef\xe8\x66\x45\x22\xd4" "\xe1\xa2\xbe\x97\xe8\xda\xb6\x8c\xd3\x05\x0c\xf4\xa6\xc0\x9d\x89\xe3\x26" "\x64\xd1\x19\xd4\xad\x3b\x15\xde\x62\xc8\x7f\x55\xc2\x05\x8c\x7a\xa3\x8e" "\x00\xf0\xb6\xa4\x74\x20\x9b\x48\xb8\x08\x5c\xa9\x6b\x60\x2f\xa1\x27\xd9" "\x0d\xa5\x39\xf0\xd1\xf9\xab\x9a\x71\xb7\x93\xec\xb5\xf5\x09\x96\x13\x84" "\x50\x51\xd0\x0f\x3f\x40\xdf\xee\x4b\x60\x63\xa6\xb0\x54\xe7\x30\x2f\xe9" "\x61\x02\xc4\x7b\x53\x9b\x8c\x9d\x8c\x8f\x4a\x82\x29\xa8\xac\xd3\x02\xa0" "\xf7\xf4\x75\x67\x49\x10\xd7\xc4\xe6\x8b\x7a\x03\xff\xbb\x5a\xb4\x95\x00" "\xb3\x08\x8d\xd8\x35\xac\xd1\xe2\x57\xbf\xf4\x8d\x8f\x3d\x49\x23\x92\x05" "\x59\xbb\x1c\x49\x0f\xdb\x8c\x29\x52\x4d\x97\x65\x25\xc8\xba\xc9\x2b\x34" "\x9b\x63\x4d\xc1\x1d\xec\xc6\x85\xd5\x49\xb1\x7e\x02\x76\xd9\xfd\xf1\xdf" "\x6f\x96\x6f\xd0\xac\x0e\x0c\x47\xda\x9f\xa7\xc4\xb9\x32\x68\x32\x29\xfa" "\x5f\x2f\xaa\x2e\x96\x49\x88\x55\x86\x33\xe2\xec\x4f\x5a\xba\xe3\xca\x45" "\x28\x0a\x94\x21\x1a\x99\xff\x20\x32\xec\xed\x91\x5a\x51\x49\x98\xaa\x65" "\x5b\x88\xb0\xf6\x36\x8c\x6d\xc7\x8c\x8f\x2f\x61\x5c\x4b\x32\xd3\x16\x02" "\x09\xa4\x4d\x8f\xf4\x0b\x16\x7e\x99\xea\x80\xe8\x95\x38\x0b\x02\x11\xf5" "\x35\x1e\x8c\x78\x08\x7e\xd2\xa1\x37\xd1\xe8\x1b\xce\xfc\x7a\x58\x13\xa8" "\x88\x65\xf4\x42\xfa\x6c\x29\x1c\x1b\x73\xa2\x39\xbe\xd5\xa0\x88\x60\xea" "\xbd\xce\xb4\x88\xca\xda\x76\x4a\x53\x4a\xf7\xff\xfb\xdc\xcd\xb0\x52\xa1" "\x67\x7e\x38\xd3\x55\xd3\x57\xa3\x8c\x04\xd7\x31\x09\xbb\x44\xd9\x4c\x35" "\xc3\xf6\x1b\xde\x6a\x1f\x73\x3b\xd7\x9c\x32\xa1\x0e\x6b\xfa\x34\x08\xfb" "\x29\xb0\x62\xeb\x1e\x0e\x8b\x5f\x4a\x0b\x39\xdb\x4f\x38\xf7\xfd\x88\x14" "\x18\xcf\x20\x04\xf7\x50\x84\x2f\xcc\x9d\x6e\xf7\x2c\x55\x96\x92\x14\x79" "\x4d\x54\x70\xd3\xf4\x49\x4e\xa1\x86\x09\xdf\xfc\x5f\x39\x83\xa0\xb8\xed" "\x35\x1b\x1e\x2a\xa5\xf3\xd2\x30\xbe\x5c\x86\xaa\x59\x25\x0a\x02\x09\x16" "\x61\x8a\xf9\xdd\x1c\x72\xe8\x55\xbb\x2d\x12\x5b\x88\xe5\x51\x16\x7a\x4a" "\x48\xb6\xb0\x49\x5d\xf3\x0e\x8a\x6f\xcf\x4c\x18\x0d\x50\x8f\xff\xa8\xc6" "\xe3\x03\xd7\xf1\xe4\x23\x03\x80\xa5\xb5\x9e\xe8\xe2\x87\x6b\xcc\x9e\x41" "\xae\xf5\x7b\xba\xc5\x59\x32\x5d\xd5\xe6\x9b\xd1\x61\x52\x6f\x08\x43\xed" "\x2c\xa4\xd3\xbb\xbf\xd6\x4d\x65\x38\xd0\xf1\x4a\xe8\x7b\x3f\x72\x5c\x41" "\xdf\xdc\x5a\x75\x16\x2f\x54\x28\x34\x94\xa0\xa0\x2d\x62\x57\x55\x69\xcf" "\xb1\xe3\xf3\x32\xfd\xc0\x5f\xdd\x0b\x14\x01\xcf\xe0\x3e\x9a\x92\x7b\x53" "\xe5\xb6\x0c\xc4\x1d\xbb\xe6\x6d\x0f\x6f\x28\xdb\xf5\x1b\xe3\xa8\x57\xd7" "\x17\xc9\x51\x1b\xff\xfa\x99\x39\x65\x00\x3d\x4d\x51\xd2\xb9\x5c\xcc\x8f" "\x39\x73\x87\x12\x7e\x9f\x94\x45\xbc\xbd\xe8\xae\xd8\xb8\xd3\xc8\x52\x2d" "\xb4\x02\xc2\x97\xfb\x27\xd2\x11\xe0\x11\xc4\xba\xc2\x97\x73\x27\x3f\xa7" "\x6f\x1d\xd9\x8b\x79\xe1\x40\xe0\x14\x18\xda\xee\x99\x3a\xcb\x05\xdc\x6c" "\x1d\x24\x5d\xd0\xd7\x7d\xad\x63\xb1\xb3\xd0\xf3\x77\x7c\x9c\x66\x45\x67" "\x8b\xc0\x14\xbe\x0b\x04\xc0\xa9\x3e\x58\x38\x99\x8d\x2f\x4d\x2f\x49\xc3" "\xe0\x97\xdc\x80\x7c\x81\xd1\x56\x47\xba\x61\xee\x45\xe8\xad\x1e\xa0\x5d" "\x9d\x96\xb4\xee\x1a\x44\x60\x45\x1b\x94\x29\xbd\xce\x09\x50\xfd\x4d\x9b" "\x27\x52\x0e\x2e\x42\x2a\x4c\x5d\xae\x68\x3f\x04\xd0\xff\x21\x9a\x29\xc5" "\xac\x79\xa9\x3a\xc3\xcc\x7e\x73\x61\x4d\xa4\x37\xbb\xf7\xa4\xff\xd1\x7b" "\xa7\x2a\x6b\x00\x43\x13\x20\xea\x21\xed\x27\x01\x1a\x36\x35\xae\x14\x8d" "\xf5\x09\x73\x01\xee\x84\x39\xc2\x4d\x26\x62\x2a\xb0\x61\xe1\x57\x4c\xeb" "\x80\x68\x88\xb9\x7b\x01\x3a\xcf\x62\xbd\x5a\x5d\x8f\xff\xd0\xd7\x90\xed" "\x9f\xf1\x24\x38\x17\xd5\x1e\x4d\x1b\x19\xc0\xd5\x5a\x29\xd9\x74\x5f\xb4" "\x2c\x7b\x74\x18\xa2\xf9\x56\x78\x0c\x30\x06\xba\xd4\x84\x63\xa6\x12\x19" "\x34\xc4\x9f\xa3\x59\x80\x7c\x5c\x45\xcb\x0d\x7c\x03\x47\xf2\x9e\x62\xae" "\x67\xe2", 4088); inject_fault(19); syscall(__NR_ioctl, /*fd=*/r[0], /*cmd=*/0x5000940e, /*arg=*/0x200000000280ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); setup_sysctl(); const char* reason; (void)reason; if ((reason = setup_fault())) printf("the reproducer may not work as expected: fault injection setup " "failed: %s\n", reason); loop(); return 0; }