// https://syzkaller.appspot.com/bug?id=dcecd7055fda09451367a40db390ae0f9e707516 // 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 __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) static 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 void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); } static void 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; } } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x1010006 (8 bytes) // opts: ptr[in, fs_options[jfs_options]] { // fs_options[jfs_options] { // elems: array[fs_opt_elem[jfs_options]] { // fs_opt_elem[jfs_options] { // elem: union jfs_options { // grpquota: buffer: {67 72 70 71 75 6f 74 61} (length 0x8) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // uid: fs_opt["uid", fmt[hex, uid]] { // name: buffer: {75 69 64} (length 0x3) // eq: const = 0x3d (1 bytes) // val: uid (resource) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // iocharset: fs_opt["iocharset", stringnoz[codepages_names]] { // name: buffer: {69 6f 63 68 61 72 73 65 74} (length 0x9) // eq: const = 0x3d (1 bytes) // val: buffer: {6d 61 63 74 75 72 6b 69 73 68} (length 0xa) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // noquota: buffer: {6e 6f 71 75 6f 74 61} (length 0x7) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // nodiscard: buffer: {6e 6f 64 69 73 63 61 72 64} (length 0x9) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // grpquota: buffer: {67 72 70 71 75 6f 74 61} (length 0x8) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // discard_size: fs_opt["discard", fmt[hex, int32]] { // name: buffer: {64 69 73 63 61 72 64} (length 0x7) // eq: const = 0x3d (1 bytes) // val: int32 = 0x8 (18 bytes) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // usrquota: buffer: {75 73 72 71 75 6f 74 61} (length 0x8) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // nodiscard: buffer: {6e 6f 64 69 73 63 61 72 64} (length 0x9) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // integrity: buffer: {69 6e 74 65 67 72 69 74 79} (length 0x9) // } // comma: const = 0x2c (1 bytes) // } // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x6310 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x6310) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x200000000000, "jfs\000", 4)); NONFAILING(memcpy((void*)0x200000000040, "./file0\000", 8)); NONFAILING(memcpy((void*)0x200000000200, "grpquota", 8)); NONFAILING(*(uint8_t*)0x200000000208 = 0x2c); NONFAILING(memcpy((void*)0x200000000209, "uid", 3)); NONFAILING(*(uint8_t*)0x20000000020c = 0x3d); NONFAILING(sprintf((char*)0x20000000020d, "0x%016llx", (long long)0)); NONFAILING(*(uint8_t*)0x20000000021f = 0x2c); NONFAILING(memcpy((void*)0x200000000220, "iocharset", 9)); NONFAILING(*(uint8_t*)0x200000000229 = 0x3d); NONFAILING(memcpy((void*)0x20000000022a, "macturkish", 10)); NONFAILING(*(uint8_t*)0x200000000234 = 0x2c); NONFAILING(memcpy((void*)0x200000000235, "noquota", 7)); NONFAILING(*(uint8_t*)0x20000000023c = 0x2c); NONFAILING(memcpy((void*)0x20000000023d, "nodiscard", 9)); NONFAILING(*(uint8_t*)0x200000000246 = 0x2c); NONFAILING(memcpy((void*)0x200000000247, "grpquota", 8)); NONFAILING(*(uint8_t*)0x20000000024f = 0x2c); NONFAILING(memcpy((void*)0x200000000250, "discard", 7)); NONFAILING(*(uint8_t*)0x200000000257 = 0x3d); NONFAILING(sprintf((char*)0x200000000258, "0x%016llx", (long long)8)); NONFAILING(*(uint8_t*)0x20000000026a = 0x2c); NONFAILING(memcpy((void*)0x20000000026b, "usrquota", 8)); NONFAILING(*(uint8_t*)0x200000000273 = 0x2c); NONFAILING(memcpy((void*)0x200000000274, "nodiscard", 9)); NONFAILING(*(uint8_t*)0x20000000027d = 0x2c); NONFAILING(memcpy((void*)0x20000000027e, "integrity", 9)); NONFAILING(*(uint8_t*)0x200000000287 = 0x2c); NONFAILING(*(uint8_t*)0x200000000288 = 0); NONFAILING(memcpy( (void*)0x200000019f80, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xec\x9b\x5f\x4a\xd2\xa8" "\x87\xaa\x44\x08\xb9\x6d\x78\x29\xa5\x79\x2d\x21\x50\xa0\xed\x01\x0e\x5c" "\x38\xa0\x5c\x51\x22\xd7\xad\xa2\xba\x80\x92\x80\xd2\x2a\x22\xae\x7c\xe1" "\xc0\x1f\x01\x42\xe2\x88\x10\x47\x4e\xfc\x01\x3d\x70\xe5\xc6\x1f\x40\xa4" "\x04\x09\x94\x43\xd5\x41\x63\x3f\x8f\x33\x9e\xee\x7a\xed\x24\xde\x59\x67" "\x3e\x1f\xc9\x99\xf9\xed\x33\xe3\x7d\x26\xdf\x9d\x7d\xf1\xcc\xec\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\x40\xfc\xf8\x47\x3f\x3d" "\x57\x44\xc4\x95\x5f\xa7\x1b\x4e\x44\x7c\x21\xfa\x11\xbd\x88\xa5\xaa\x5e" "\x89\x88\xa5\x95\x13\xf5\x75\x5e\x88\xad\xe6\x78\x3e\x22\x86\x0b\x11\xd5" "\xfa\x5b\xff\x3c\x1b\xf1\x7a\x44\x7c\x72\x3c\xe2\xde\xfd\xdb\xab\xd5\xcd" "\xe7\xf7\xd9\x8f\x1f\xfe\xe5\x9f\x7f\xfc\xd9\x33\x3f\xf9\xc7\x9f\x87\x67" "\xfe\xf7\xd7\x9b\xfd\x37\x26\x2d\x77\xeb\xd6\xef\xfe\xfb\xb7\x3b\x8f\xbe" "\xbd\x00\x00\x00\xd0\x45\x65\x59\x96\x45\xfa\x98\x7f\x32\x22\x06\xe9\xb3" "\x3d\x00\xf0\xf4\xcb\xaf\xff\x65\x92\x6f\x57\xcf\x5d\xbd\x31\x67\xfd\x51" "\xab\xd5\x6a\xf5\x11\xac\xeb\xca\xf1\xee\xd4\x8b\x88\xd8\xa8\xaf\x53\xbd" "\x67\x70\x38\x1e\x00\x8e\x98\x8d\x78\xd0\x76\x17\x68\x91\xfc\x3b\x6d\x10" "\x11\xcf\xb4\xdd\x09\x60\xae\x15\x6d\x77\x80\x43\x71\xef\xfe\xed\xd5\x22" "\xe5\x5b\xd4\x5f\x0f\x56\xb6\xdb\xf3\xb9\x20\xbb\xf2\xdf\x28\x76\xae\xef" "\x98\x34\x9d\xa6\x79\x8e\xc9\xac\x1e\x5f\x9b\xd1\x8f\xe7\x26\xf4\x67\x69" "\x46\x7d\x98\x27\x39\xff\x5e\x33\xff\x2b\xdb\xed\xa3\xb4\xdc\x61\xe7\x3f" "\x2b\x93\xf2\x1f\x6d\x5f\xfa\xd4\x39\x39\xff\x7e\x33\xff\x86\xa7\x27\xff" "\xde\xd8\xfc\xbb\x2a\xe7\x3f\x38\x50\xfe\x7d\xf9\x03\x00\x00\x00\x00\xc0" "\x1c\xcb\x7f\xff\x3f\xd1\xf2\xf1\xdf\x85\xc7\xdf\x94\x7d\xd9\xeb\xf8\xef" "\xca\x8c\xfa\x00\x00\x00\x00\x00\x00\x00\x00\x4f\xda\x41\xc7\xff\x1b\x34" "\xc6\xff\xdb\x61\xfc\x3f\x00\x00\x00\x98\x5b\xd5\x67\xf5\xca\xef\x8f\x3f" "\xbc\x6d\xd2\x77\xb1\x55\xb7\x5f\x2e\x22\x8e\x35\x96\x07\x3a\x26\x5d\x2c" "\xb3\xdc\x76\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x4b\x06\xdb" "\xe7\xf0\x5e\x2e\x22\x86\x11\x71\x6c\x79\xb9\x2c\xcb\xea\xa7\xae\x59\x1f" "\xd4\xe3\xae\x7f\xd4\x75\x7d\xfb\xa1\xcb\xda\x7e\x92\x07\x00\x80\x6d\x9f" "\x1c\x6f\x5c\xcb\x5f\x44\x2c\x46\xc4\xe5\xf4\x5d\x7f\xc3\xe5\xe5\xe5\xb2" "\x5c\x5c\x5a\x2e\x97\xcb\xa5\x85\xfc\x7e\x76\xb4\xb0\x58\x2e\xd5\x3e\xd7" "\xe6\x69\x75\xdb\xc2\x68\x1f\x6f\x88\x07\xa3\xb2\xfa\x65\x8b\xb5\xf5\xea" "\xa6\x7d\x5e\x9e\xd6\xde\xfc\x7d\xd5\x7d\x8d\xca\xfe\x3e\x3a\x36\x1b\x2d" "\x06\x0e\x00\x11\xb1\xfd\x6a\x74\x6f\xd2\x2b\xd2\xa7\x5e\xaf\x8e\xa6\xb2" "\x7c\x36\x5a\x7e\x93\xc3\x11\xb1\xc7\xfe\xcf\x11\x65\xff\x67\x3f\xda\x7e" "\x9c\x02\x00\x00\x00\x87\xaf\x2c\xcb\xb2\x48\x5f\xe7\x7d\x32\x1d\xf3\xef" "\xb5\xdd\x29\x00\x60\x26\xf2\xeb\x7f\xf3\xb8\x80\x5a\x7d\xb0\xfa\xd8\x9c" "\xf5\x47\xad\x56\xab\xd5\xe3\xea\xba\x72\xbc\x3b\xf5\x22\x22\x36\xea\xeb" "\x54\xef\x19\x0c\xc7\x0f\x00\x47\xcc\x46\x3c\x68\xbb\x0b\xb4\x48\xfe\x9d" "\x36\x88\x88\x17\xda\xee\x04\x30\xd7\x8a\xb6\x3b\xc0\xa1\xb8\x77\xff\xf6" "\x6a\x91\xf2\x2d\xea\xaf\x07\x69\x7c\xf7\x7c\x2e\xc8\xae\xfc\x37\x8a\xad" "\xf5\xf2\xfa\xe3\xa6\xd3\x34\xcf\x31\x99\xd5\xe3\x6b\x33\xfa\xf1\xdc\x84" "\xfe\x3c\x3f\xa3\x3e\xcc\x93\x9c\x7f\xaf\x99\xff\x95\xed\xf6\x51\x5a\xee" "\xf1\xf3\x2f\x77\xfd\x99\xb0\xad\x73\x8c\x26\xe5\x5f\x6d\xe7\x89\x16\xfa" "\xd3\xb6\x9c\x7f\xbf\x99\x7f\xc3\x61\xef\xff\xb3\xb2\x19\xbd\xb1\xf9\x77" "\x55\xce\x7f\x70\xa0\xfc\xfb\xf2\x07\x00\x00\x00\x00\x80\x39\x96\xff\xfe" "\x7f\x62\xae\x8e\xff\x8e\x1e\x75\x73\xa6\xda\xeb\xf8\xef\xca\xd8\x35\x0e" "\xaf\x2f\x00\x00\x00\x00\x00\x00\x00\xf0\xa4\xdc\xbb\x7f\x7b\x35\x5f\xf7" "\x9a\x8f\xff\x7f\x69\xcc\x72\xae\xff\x7c\x3a\xe5\xfc\x0b\xf9\x77\x52\xce" "\xbf\xd7\xc8\xff\xeb\x8d\xe5\xfa\xb5\xf9\xbb\x6f\x3f\xcc\xff\x3f\xf7\x6f" "\xaf\xfe\xe9\xe6\xbf\xbf\x98\xa7\xfb\xcd\x7f\x21\xcf\x14\xe9\x91\x55\xa4" "\x47\x44\x91\xee\xa9\x18\xa4\xe9\xe3\x6c\xdd\xe7\x6d\x0e\xfb\xa3\xea\x9e" "\x86\x45\xaf\x3f\x48\xe7\xfc\x94\xc3\x77\xe3\x5a\xac\xc7\x5a\x9c\xdd\xb5" "\x6c\x2f\xfd\x7f\x3c\x6c\x3f\xb7\xab\xbd\xea\xe9\x70\xab\xbd\xec\x6f\xb7" "\x9f\xdf\xd5\x3e\xd8\x69\xcf\xeb\x5f\xd8\xd5\x3e\x4c\x67\x17\x95\x4b\xb9" "\xfd\x74\xac\xc6\x2f\x62\x3d\xde\xd9\x6a\xaf\xda\x16\xa6\x6c\xff\xe2\x94" "\xf6\x72\x4a\x7b\xce\xbf\x6f\xff\xef\xa4\x9c\xff\xa0\xf6\x53\xe5\xbf\x9c" "\xda\x8b\xc6\xb4\x72\xf7\xe3\xde\xe7\xf6\xfb\xfa\x74\xdc\xfd\xbc\x75\xed" "\xcb\xbf\x3d\x7b\xf8\x9b\x33\xd5\x66\xf4\x77\xb6\xad\xae\xda\xbe\x97\x5a" "\xe8\xcf\xd6\xff\xc9\x33\xa3\xf8\xd5\x8d\xb5\xeb\xa7\x6f\x5d\xbd\x79\xf3" "\xfa\xb9\x48\x93\x5d\xb7\x9e\x8f\x34\x79\xc2\x72\xfe\xc3\xf4\xb3\xf3\xfc" "\xff\xf2\x76\x7b\x7e\xde\xaf\xef\xaf\x77\x3f\x1e\x1d\x38\xff\x79\xb1\x19" "\x83\x89\xf9\xbf\x5c\x9b\xaf\xb6\xf7\x95\x19\xf7\xad\x0d\x39\xff\x51\xfa" "\xc9\xf9\xbf\x93\xda\xc7\xef\xff\x47\x39\xff\xc9\xfb\xff\xab\x2d\xf4\x07" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf6\x52\x96\xe5\xd6\x25" "\xa2\x6f\x45\xc4\xc5\x74\xfd\x4f\x5b\xd7\x66\x02\x00\xb3\x95\x5f\xff\xcb" "\x24\xdf\x3e\xab\xba\x3f\xe3\xfb\x53\xab\x8f\x78\x5d\xcc\x59\x7f\x9e\x54" "\xbd\xb0\x9f\xe5\x3f\x2b\xe7\xa6\xbf\x6a\xf5\x91\xad\xeb\xca\xf1\xde\xac" "\x17\x11\xf1\xf7\xfa\x3a\xd5\x7b\x86\xdf\x8c\xfb\x65\x00\xc0\x3c\xfb\x2c" "\x22\xfe\xd5\x76\x27\x68\x8d\xfc\x3b\x2c\x7f\xdf\x5f\x35\x3d\xd5\x76\x67" "\x80\x99\xba\xf1\xe1\x47\xef\x5f\x5d\x5f\x5f\xbb\x7e\xa3\xed\x9e\x00\x00" "\x00\x00\x00\x00\x00\x00\x8f\x2a\x8f\xff\xb9\x52\x1b\xff\xf9\x54\x59\x96" "\x77\x1a\xcb\xed\x1a\xff\xf5\xed\x58\x79\xdc\xf1\x3f\x07\x79\x66\x67\x80" "\xd1\x09\x03\x55\xf7\x0f\xbe\x4d\x7b\xd9\xec\x8d\xfa\xbd\xda\x70\xe3\x2f" "\xc6\xa4\xf1\xbf\x87\x3b\x73\x7b\x8d\xff\x3d\x98\x72\x7f\xc3\x29\xed\xa3" "\x29\xed\x0b\x53\xda\x17\xa7\xb4\x8f\xbd\xd0\xa3\x26\xe7\xff\x62\x6d\xbc" "\xf3\x53\x11\x71\xb2\x31\xfc\xfa\x93\x18\xff\xb5\xf8\x74\x4a\x67\x66\x60" "\xaf\xf1\x5f\x9b\x63\xde\x77\x41\xce\xff\xa5\xda\xe3\xb9\xca\xff\x6b\x8d" "\xe5\xea\xf9\x97\x7f\x38\xca\xe3\xff\xf6\x76\xe5\x7f\xe6\xe6\x07\xbf\x3c" "\x73\xe3\xc3\x8f\x5e\xbb\xf6\xc1\xd5\xf7\xd6\xde\x5b\xfb\xf9\x85\x73\xe7" "\xce\x5e\xb8\x78\xf1\xd2\xa5\x4b\x67\xde\xbd\xb6\xbe\x76\x76\xfb\xdf\x16" "\x7b\x7c\xb8\x72\xfe\x79\xec\x6b\xe7\x81\x76\x4b\xce\x3f\x67\x2e\xff\x6e" "\xc9\xf9\x7f\x25\xd5\xf2\xef\x96\x9c\xff\x57\x53\x2d\xff\x6e\xc9\xf9\xe7" "\xf7\x7b\xf2\xef\x96\x9c\x7f\xfe\xec\x23\xff\x6e\xc9\xf9\xbf\x92\x6a\xf9" "\x77\x4b\xce\xff\x1b\xa9\x96\x7f\xb7\xe4\xfc\x5f\x4d\xb5\xfc\xbb\x25\xe7" "\xff\xcd\x54\xcb\xbf\x5b\x72\xfe\xaf\xa5\x5a\xfe\xdd\x92\xf3\x3f\x9d\x6a" "\xf9\x77\x4b\xce\xff\x4c\xaa\xf7\x99\xff\xd2\x61\xf7\x8b\xd9\xc8\xf9\xe7" "\x23\x5c\xf6\xff\x6e\xc9\xf9\xe7\x33\x1b\xe4\xdf\x2d\x39\xff\xf3\xa9\x96" "\x7f\xb7\xe4\xfc\x2f\xa4\x5a\xfe\xdd\x92\xf3\x7f\x3d\xd5\xf2\xef\x96\x9c" "\xff\xb7\x52\x2d\xff\x6e\xc9\xf9\x5f\x4c\xb5\xfc\xbb\x25\xe7\xff\xed\x54" "\xcb\xbf\x5b\x72\xfe\x97\x52\x2d\xff\x6e\xc9\xf9\x7f\x27\xd5\xf2\xef\x96" "\x9c\xff\x77\x53\x2d\xff\x6e\xc9\xf9\xbf\x91\x6a\xf9\x77\x4b\xce\xff\x7b" "\xe9\x42\x32\xf9\x77\x4b\xce\xff\xfb\xa9\x96\x7f\xb7\xe4\xfc\x7f\x90\x6a" "\xf9\x77\x4b\xce\xff\xcd\x54\xcb\xbf\x5b\x1e\x7e\xff\xbf\x19\x33\x6d\xcf" "\x3c\x98\x8f\x6e\x98\x79\xff\xea\x7a\xdb\xcf\x4c\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x40\xd3\x2c\x4e\x27\x6e\x7b\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\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x3f\x3b\x70\x20\x00\x00\x00\x00\x00\xe4\xff\xda\x08\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\xd8\x81\x03\x01\x00\x00\x00\x00\x20\xff\xd7" "\x46\xa8\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xc2\xde\xdd\xc5\xc8\x75\xd6" "\xf7\x03\x3f\xbb\xde\x5d\xaf\x1d\x48\x0c\x84\xfc\x9d\xfc\x1d\xd8\x38\x26" "\x84\xc4\xc9\xae\xed\xc4\x2f\xb4\x29\x26\x84\x97\x86\xb7\x12\x08\x85\xbe" "\x60\xbb\xde\xb5\x59\xea\xd8\xc6\x6b\x97\x40\x23\xd9\x34\x50\x22\x61\x54" "\x54\xd1\x12\x2e\xda\x02\x42\x6d\x6e\x2a\x52\x89\x0b\x5a\x01\xca\x05\x6a" "\x85\x54\x09\x5a\xa9\xf4\x06\x51\xa1\x72\x11\x55\x01\x05\xa4\x4a\xb4\x02" "\xb6\x9a\x73\x9e\xe7\xd9\x99\xd9\x79\x5b\xef\x64\x73\xe6\x9c\xcf\x47\xb2" "\x7f\xde\x99\x73\xe6\x3c\xe7\xcc\x33\x67\xe7\xb7\xeb\xef\x1c\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\xd9\x4d\xaf\x5b" "\xf8\xc4\x58\x96\x65\x8d\x3f\xf9\x5f\xdb\xb2\xec\x05\x8d\x7f\x6f\x99\xd9" "\x96\xdf\xf6\xea\xe7\x7b\x84\x00\x00\x00\xc0\x7a\xfd\x22\xff\xfb\xd9\x6b" "\xd2\x0d\x87\x07\x58\xa9\x69\x99\x7f\x7a\xd9\xb7\xbf\xb2\xbc\xbc\xbc\x9c" "\xbd\x67\xd3\x9f\x4d\x7e\x66\x79\x39\xdd\x31\x93\x65\x93\x9b\xb3\x2c\xbf" "\x2f\x7a\xf2\x07\xef\x1d\x6b\x5e\x26\x78\x34\x9b\x1e\x1b\x6f\xfa\x7a\xbc" "\xcf\xe6\x37\xf5\xb9\x7f\xa2\xcf\xfd\x93\x7d\xee\x9f\xea\x73\xff\xe6\x3e" "\xf7\x4f\xf7\xb9\x7f\xd5\x01\x58\x65\x4b\xf1\xf3\x98\xfc\xc1\x76\xe5\xff" "\xdc\x56\x1c\xd2\xec\xda\x6c\x32\xbf\x6f\x57\x87\xb5\x1e\x1d\xdb\x3c\x3e" "\x1e\x7f\x96\x93\x1b\xcb\xd7\x59\x9e\x3c\x91\x2d\x66\xa7\xb2\x85\x6c\xae" "\x65\xf9\x62\xd9\xb1\x7c\xf9\xaf\xdd\xd4\xd8\xd6\x9b\xb2\xb8\xad\xf1\xa6" "\x6d\xed\x68\xcc\x90\x9f\x3c\x72\x3c\x8e\x61\x2c\x1c\xe3\x5d\x2d\xdb\x5a" "\x79\xcc\xe8\x47\xaf\xcd\x66\x7e\xfa\x93\x47\x8e\xff\xf5\xf9\x67\xae\xef" "\x54\xfb\x1e\x86\x96\xc7\x2b\xc6\x79\xeb\xce\xc6\x38\x3f\x16\x6e\x29\xc6" "\x3a\x96\x6d\x4e\xc7\x24\x8e\x73\xbc\x69\x9c\x3b\x3a\x3c\x27\x9b\x5a\xc6" "\x39\x96\xaf\xd7\xf8\x77\xfb\x38\x9f\x1d\x70\x9c\x9b\x56\x86\xb9\xa1\xda" "\x9f\xf3\xe9\x6c\x3c\xff\xf7\x77\xf2\xe3\x34\xd1\xfc\x63\xbd\x74\x9c\x76" "\x84\xdb\x7e\x76\x73\x96\x65\x97\x56\x86\xdd\xbe\xcc\xaa\x6d\x65\xe3\xd9" "\xd6\x96\x5b\xc6\x57\x9e\x9f\xe9\x62\x46\x36\x1e\xa3\x31\x95\x5e\x9c\x4d" "\xac\x69\x9e\xde\x34\xc0\x3c\x6d\xd4\xf9\x5d\xad\xf3\xb4\xfd\x35\x11\x9f" "\xff\x9b\xc2\x7a\x13\x5d\xc6\xd0\xfc\x34\xfd\xe8\xa3\x53\x4d\xcf\xfb\xcf" "\x97\xaf\x64\x9e\x46\x8d\xbd\xee\xf6\x5a\x69\x9f\x83\xc3\x7e\xad\x94\x65" "\x0e\xc6\x79\xf1\x9d\x7c\xa7\x1f\xeb\x38\x07\x77\x85\xfd\x7f\xe4\x96\xee" "\x73\xb0\xe3\xdc\xe9\x30\x07\xd3\x7e\x37\xcd\xc1\x9d\xfd\xe6\xe0\xf8\xd4" "\xa6\x7c\xcc\xe9\x49\x18\xcb\xd7\x59\x99\x83\x7b\x5a\x96\xdf\x94\x6f\x69" "\x2c\xaf\x4f\xdf\xd2\x7b\x0e\xce\x9e\x7f\xe8\xec\xec\xd2\x87\x3f\x72\xc7" "\xe2\x43\xc7\x4e\x2e\x9c\x5c\x38\xbd\x6f\xcf\x9e\xb9\x7d\xfb\xf7\x1f\x3c" "\x78\x70\xf6\xc4\xe2\xa9\x85\xb9\xe2\xef\x2b\x3c\xda\xe5\xb7\x35\x1b\x4f" "\xaf\x81\x9d\xe1\xd8\xc5\xd7\xc0\x2b\xdb\x96\x6d\x9e\xaa\xcb\x5f\x98\x5a" "\x75\xfe\xbd\xd2\xd7\xe1\x74\x8f\xd7\xe1\xb6\xb6\x65\x87\xfd\x3a\x9c\x68" "\xdf\xb9\xb1\x8d\x79\x41\xae\x9e\xd3\xc5\x6b\xe3\x5d\x8d\x83\x3e\x7d\x79" "\x3c\xeb\xf2\x1a\xcb\x9f\x9f\xdb\xd6\xff\x3a\x4c\xfb\xdd\xf4\x3a\x9c\x68" "\x7a\x1d\x76\xfc\x9e\xd2\xe1\x75\x38\x31\xc0\xeb\xb0\xb1\xcc\xd9\xdb\x06" "\x7b\xcf\x32\xd1\xf4\xa7\xd3\x18\xba\x7f\x2f\x58\xdf\x1c\xdc\xd6\x34\x07" "\xdb\xdf\x8f\xb4\xcf\xc1\x61\xbf\x1f\x29\xcb\x1c\x9c\x0e\xf3\xe2\x7b\xb7" "\x75\xff\x5e\xb0\x23\x8c\xf7\xb1\xdd\x6b\x7d\x3f\xb2\x69\xd5\x1c\x4c\xbb" "\x1b\xce\x3d\x8d\x5b\xd2\xfb\xfd\xe9\x83\x79\xe9\x34\x2f\x6f\x68\xdc\x71" "\xd5\x54\x76\x61\x69\xe1\xdc\x9d\x0f\x1f\x3b\x7f\xfe\xdc\x9e\x2c\x94\x0d" "\xf1\x92\xa6\xb9\xd2\x3e\x5f\xb7\x36\xed\x53\xb6\x6a\xbe\x8e\xaf\x79\xbe" "\x1e\x5e\x7c\xd9\x63\x37\x74\xb8\x7d\x5b\x38\x56\xd3\x77\x34\xfe\x9a\xee" "\xfa\x5c\x35\x96\xb9\xeb\xce\xde\xcf\x55\xfe\xdd\xad\xf3\xf1\x6c\xb9\x75" "\x6f\x16\xca\x90\x0d\x72\x3c\xbf\x90\xad\x8c\x3f\xba\xd2\xe3\xd9\xe9\xbb" "\x79\xe3\x78\x4e\x65\xd9\xe7\xbe\xf9\xd1\x07\xbe\xfe\xc8\xe7\x5e\xd7\xf5" "\x78\x36\xfa\xcd\x8f\xcd\xae\xff\xbd\x78\xe8\x4b\x97\x0b\x17\xf3\xc7\x98" "\xec\x72\xfe\x8d\x7d\xff\x2f\x8b\xed\xa5\x87\x7a\x74\xd3\xe4\x44\xf1\xfa" "\xdd\x94\x8e\xce\x64\xcb\xf9\xb8\xf5\xa9\x9a\xc8\xcf\x5d\x63\xf9\xb6\x9f" "\x9d\x1d\xec\x7c\x3c\x19\xfe\x6c\xf4\xf9\xf8\xda\x1e\xe7\xe3\xed\x6d\xcb" "\x0e\xfb\x7c\x3c\xd9\xbe\x73\xf1\x7c\x3c\xd6\xef\xa7\x1d\xeb\xd3\xfe\x7c" "\x4e\x87\x79\x72\x6a\xae\xf7\xf9\xb8\xb1\xcc\xf6\xbd\x6b\x9d\x93\x13\x3d" "\xcf\xc7\x37\x87\x3a\x16\x8e\xff\xab\x42\xa7\x90\xfa\xa2\xa6\xb9\xd3\x6d" "\xde\xa6\x6d\x4d\x4c\x4c\x86\xfd\x9a\x88\x5b\x68\x9d\xa7\xfb\x5a\x96\x9f" "\x0c\xbd\x59\x63\x5b\x4f\xec\x0d\x6f\x0a\xd3\x28\x07\x9b\xa7\xb7\xde\x5c" "\x2c\xbf\xa9\x69\xbd\x68\xa3\xe6\xe9\x4c\xdb\xb2\xc3\x9e\xa7\xe9\x67\x5f" "\xdd\xe6\xe9\x58\xbf\x9f\xbe\x5d\x99\xf6\xe7\x73\x3a\xcc\x8b\x6b\xf7\xf5" "\x9e\xa7\x8d\x65\x9e\xba\x6b\xfd\xe7\xce\x2d\xf1\x9f\x4d\xef\x5d\xa7\xfa" "\xcd\xc1\xc9\x4d\x53\x8d\x31\x4f\xa6\x49\x98\x9f\xef\xb3\xe5\x2d\x71\x0e" "\xde\x99\x1d\xcf\xce\x64\xa7\xb2\xf9\xfc\xde\xa9\x7c\x3e\x8d\xe5\xdb\xda" "\x7d\xf7\x60\xe7\xca\xa9\xf0\x67\xa3\xcf\x95\xdb\x7b\xcc\xc1\x5b\xdb\x96" "\x1d\xf6\x1c\x4c\x3f\x5f\xed\x36\xf7\xc6\x26\x56\xef\xfc\x10\xb4\x3f\x9f" "\xd3\x61\x5e\x3c\x7e\x77\xef\x39\xd8\x58\xe6\xbe\x03\xc3\x7d\xef\x7a\x6b" "\xb8\x25\x2d\xd3\xf4\xde\xb5\xfd\xe7\x6b\xdd\x7e\xe6\x75\x43\xdb\x61\x7a" "\xae\xe6\xca\x44\x18\xe7\x37\x0f\xf4\xfe\xd9\x6c\x63\x99\x53\x07\xd7\xda" "\x67\xf6\x3e\x4e\xb7\x87\x5b\xae\xea\x70\x9c\xda\x5f\xbf\xdd\x5e\x53\xf3" "\xd9\xc6\x1c\xa7\xed\x61\x9c\xcf\x1c\xec\x7e\x9c\x1a\xe3\x69\x2c\xf3\x99" "\x43\x03\xce\xa7\xc3\x59\x96\x5d\xfc\xe0\xbd\xf9\xcf\x7b\xc3\xef\x57\x2e" "\x5e\xf8\xee\x57\xe2\xef\x5d\x26\xb3\x2e\xbf\xd3\xb9\xf8\xc1\x7b\x7f\xfc" "\xc2\x13\xff\xb8\x96\xf1\x03\x30\xfa\x7e\x59\x94\xad\xc5\xf7\xba\xa6\xdf" "\x4c\x0d\xf2\xfb\x7f\x00\x00\x00\x60\x24\xc4\xbe\x7f\x3c\xd4\x44\xff\x0f" "\x00\x00\x00\x95\x11\xfb\xfe\xf8\xbf\xc2\x13\xfd\x3f\x00\x00\x00\x54\x46" "\xec\xfb\x27\x42\x4d\xaa\xd0\xff\xff\x51\xff\x45\xb6\xdf\xf7\xcc\xe2\x2f" "\x2f\x66\x29\x99\x1f\x3e\x34\x21\x7d\x34\x5f\x3a\x0c\xf7\x17\xcb\xc5\x8c" "\xeb\x5c\xf8\x7a\x66\x79\x45\xe3\xf6\x7b\xbf\xb4\xf0\xdf\xff\x70\x71\xb0" "\xe1\x8d\x67\x59\xf6\xf3\xfb\xff\xb0\xe3\xf2\xdb\xef\x8f\xe3\x2a\xcc\x84" "\x71\x3e\xf9\xfa\xd6\xdb\x57\xf9\xca\x1d\x03\x6d\xfb\xe8\x83\x17\xd3\x76" "\x9b\xf3\xeb\x9f\x0f\x8f\x1f\xf7\x67\xd0\x69\xd0\x29\x82\x3b\x97\x65\xd9" "\xd7\xae\xf9\x54\xbe\x9d\x99\xf7\x5e\xce\xeb\x53\xf7\x1f\xcd\xeb\x03\x97" "\x1e\x7b\xb4\xb1\xcc\xb3\x87\x8a\xaf\xe3\xfa\x4f\xbf\xa4\x58\xfe\x2f\x42" "\xf8\xf7\xf0\x89\x63\x2d\xeb\x3f\x1d\x8e\xc3\x0f\x43\x9d\x7b\x73\xe7\xe3" "\x11\xd7\xfb\xf2\xe5\x57\xed\x38\xf0\xee\x95\xed\xc5\xf5\xc6\x76\x5e\x9d" "\xef\xf6\xe3\xef\x2b\x1e\x37\x7e\x4e\xce\xa7\x1f\x2d\x96\x8f\xc7\xb9\xdb" "\xf8\xbf\xfe\xc9\x27\xbe\xdc\x58\xfe\xe1\x57\x74\x1e\xff\xc5\xf1\xce\xe3" "\x7f\x22\x3c\xee\x97\x42\xfd\x9f\x1b\x8b\xe5\x9b\x9f\x83\xc6\xd7\x71\xbd" "\x8f\x87\xf1\xc7\xed\xc5\xf5\xee\xfc\xe2\x37\x3a\x8e\xff\xc9\x4f\x14\xcb" "\x9f\x7d\x43\xb1\xdc\xd1\x50\xe3\xf6\x6f\x0d\x5f\xef\x7a\xc3\x33\x8b\xcd" "\xc7\xeb\xe1\xb1\x63\x2d\xfb\x95\xbd\xb1\x58\x2e\x6e\x7f\xee\xbb\x7f\x92" "\xdf\x1f\x1f\x2f\x3e\x7e\xfb\xf8\xa7\x8f\x5c\x6e\x39\x1e\xed\xf3\xe3\xa9" "\x7f\x2d\x1e\x67\xb6\x6d\xf9\x78\x7b\xdc\x4e\xf4\xf7\x6d\xdb\x6f\x3c\x4e" "\xf3\xfc\x8c\xdb\x7f\xe2\x8f\x8f\xb6\x1c\xe7\x7e\xdb\x7f\xf2\x81\xa7\x6f" "\x6c\x3c\x6e\xfb\xf6\x6f\x6f\x5b\xee\xec\x07\x6f\xcb\xb7\xbf\xf2\x78\xad" "\x9f\xd8\xf4\x97\x1f\xff\x54\xc7\xed\xc5\xf1\x1c\xfe\xdb\xb3\x2d\xfb\x73" "\xf8\x1d\xe1\x75\x1c\xb6\xff\xf8\xfb\xc2\x7c\x0c\xf7\xff\xef\x93\xc5\xe3" "\xb5\x7f\xba\xc2\xd1\x77\xb4\x9e\x7f\xe2\xf2\x9f\xdf\x76\xb1\x65\x7f\xa2" "\x37\xfd\xb4\xd8\xfe\x93\xaf\x39\x99\xd7\xcd\xd3\x5b\xb6\x5e\xf5\x82\x17" "\x5e\x7d\xe9\xe5\x8d\x63\x97\x65\xdf\xd9\x5c\x3c\x5e\xbf\xed\x9f\xfc\xab" "\x33\x2d\xe3\xff\xc2\x75\xc5\xf1\x88\xf7\xc7\x8c\x7e\xfb\xf6\xbb\x89\xdb" "\x3f\xf7\xa1\xdd\xa7\xcf\x2c\x5d\x58\x9c\x4f\x47\xf5\x91\x6b\xf2\xcf\xce" "\x79\x4b\x31\x9e\x38\xde\x6b\xc2\xb9\xb5\xfd\xeb\x23\x67\xce\xbf\x7f\xe1" "\xdc\xcc\xdc\xcc\x5c\x96\xcd\x54\xf7\x23\xf4\xae\xd8\x17\x43\xfd\x71\x51" "\x2e\xf5\x5e\x7a\x79\xd5\x19\xf4\xb6\x07\xc3\xf3\x79\xc3\x67\xbf\xb6\xf5" "\x96\x7f\xf9\x64\xbc\xfd\xdf\xdf\x55\xdc\x7e\xf9\xcd\xc5\xf7\xad\x57\x86" "\xe5\x3e\x1d\x6e\xdf\x16\x9e\xbf\xb5\x6d\x7f\xb5\xc7\xb7\x14\x1f\x8f\x3b" "\xf6\x54\x18\xe1\xf2\xea\xcf\x0b\x5e\x8f\x1d\xbb\xfe\xeb\xe0\x40\x0b\x86" "\xfd\x6f\x7f\x5f\x10\xe7\xfb\xd9\x97\xbe\x3f\x3f\x0e\x8d\xfb\xf2\xef\x1b" "\xf1\x75\x7d\xd3\x75\xeb\x1a\xff\xf7\xe7\x8b\xc7\xf9\x6a\x38\xae\xcb\xe1" "\x93\x99\x77\x5e\xb7\xb2\xbd\xe6\xe5\xe3\x67\x23\x5c\x7e\x67\xf1\x7a\x5f" "\xef\xf6\xe3\x69\x2e\x3e\xaf\x7f\x13\x9e\xef\xb7\xfe\xb0\x78\xfc\x38\xae" "\xb8\xbf\xdf\x0f\xef\x63\xbe\xb1\xbd\xf5\x7c\x17\xe7\xc7\x57\x2f\x8e\xb7" "\x3f\x7e\xfe\x29\x1e\x97\xc2\xf9\x24\xbb\x54\xdc\x1f\x97\x8a\xc7\xfb\xf2" "\xb3\xd7\x75\x1c\x5e\xfc\x1c\x92\xec\xd2\xf5\xf9\xd7\x7f\x9a\x1e\xe7\xfa" "\x35\xed\x66\x37\x4b\x1f\x5e\x9a\x3d\xb5\x78\xfa\xc2\xc3\xb3\xe7\x17\x96" "\xce\xcf\x2e\x7d\xf8\x23\x47\x1e\x3a\x73\xe1\xf4\xf9\x23\xf9\x67\x79\x1e" "\xf9\x40\xbf\xf5\x57\xce\x4f\x5b\xf3\xf3\xd3\xfc\xc2\xfe\xbb\xb2\xfc\x6c" "\x75\xa6\x28\xcf\xb1\xe7\x7b\xfc\x67\x1f\x3c\x3e\x7f\x60\xee\x96\xf9\x85" "\x13\xc7\x2e\x9c\x38\xff\xe0\xd9\x85\x73\x27\x8f\x2f\x2d\x1d\x5f\x98\x5f" "\xba\xe5\xd8\x89\x13\x0b\x1f\xea\xb7\xfe\xe2\xfc\x3d\x7b\xf6\x1e\xda\x77" "\x60\xef\xee\x93\x8b\xf3\xf7\x1c\x3c\x74\x68\xdf\xa1\xdd\x8b\xa7\xcf\x34" "\x86\x51\x0c\xaa\x8f\xfd\x73\xbf\xbf\xfb\xf4\xb9\x23\xf9\x2a\x4b\xf7\xdc" "\x75\x68\xcf\xdd\x77\xdf\x35\xb7\xfb\xa1\x33\xf3\x0b\xf7\x1c\x98\x9b\xdb" "\x7d\xa1\xdf\xfa\xf9\xf7\xa6\xdd\x8d\xb5\xff\x60\xf7\xb9\x85\x53\xc7\xce" "\x2f\x3e\xb4\xb0\x7b\x69\xf1\x23\x0b\xf7\xec\x39\xb4\x7f\xff\xde\xbe\x9f" "\x06\xf8\xd0\xd9\x13\x4b\x33\xb3\xe7\x2e\x9c\x9e\xbd\xb0\xb4\x70\x6e\xb6" "\xd8\x97\x99\xf3\xf9\xcd\x8d\xef\x7d\xfd\xd6\xa7\x9a\x96\xfe\xa3\x78\x3f" "\xdb\x6e\xac\xf8\x20\xbe\xec\xed\xb7\xef\x4f\x9f\xcf\xda\xf0\xa5\x8f\x76" "\x7d\xa8\x62\x91\xb6\x0f\x10\x7d\x26\x7c\x16\xcd\xb7\x5e\x74\xf6\xe0\x20" "\x5f\xc7\xbe\x7f\x32\xd4\xa4\x0a\xfd\x3f\x00\x00\x00\x90\x8b\x7d\xff\x54" "\xa8\x89\xfe\x1f\x00\x00\x00\x2a\x23\xf6\xfd\x9b\x43\x4d\xf4\xff\x00\x00" "\x00\x50\x19\xb1\xef\x9f\x0e\x35\xfd\x97\x80\x9a\xf4\xff\x95\xcb\xff\x6f" "\xbf\x38\xd0\xf6\x47\x2a\xff\x3f\x26\xff\x2f\xff\x2f\xff\x3f\xd4\xfc\xff" "\x3b\xcb\x96\xff\x2f\xce\x17\x29\xff\x9f\x65\xd9\x8d\xf2\xff\x57\x6c\xbd" "\xf9\xfb\xe7\x3d\xff\xbf\xde\xfc\xfa\x2a\x13\x2d\x5f\xc9\xff\xf7\x21\xff" "\x2f\xff\x2f\xff\x2f\xff\xcf\x50\x95\x2d\xff\x1f\xfb\xfe\x2d\x59\xe6\xf7" "\xff\x00\x00\x00\x50\x51\xb1\xef\xdf\x1a\x6a\xa2\xff\x07\x00\x00\x80\xca" "\x88\x7d\xff\x55\xa1\x26\xfa\x7f\x00\x00\x00\xa8\x8c\xd8\xf7\xbf\x20\xd4" "\xa4\x26\xfd\xbf\xfc\xff\x08\xe4\xff\x5d\xff\x5f\xfe\x5f\xfe\xbf\x5e\xf9" "\x7f\xd7\xff\x5f\x17\xf9\xff\xde\xe4\xff\xfb\x90\xff\x9f\xcd\xea\x95\xff" "\xbf\x34\xcc\xf1\x3f\x0f\xf9\xff\x2d\xcd\x5f\xc8\xff\x53\x46\x65\xcb\xff" "\xc7\xbe\xff\x85\xa1\x26\x35\xe9\xff\x01\x00\x00\x60\x84\x75\xff\xa9\x41" "\x9b\xd8\xf7\x5f\x1d\x6a\xa2\xff\x07\x00\x00\x80\xca\x88\x7d\xff\x35\xa1" "\x26\x03\xf7\xff\xcb\x9d\xfe\xeb\x37\x00\x00\x00\x50\x22\xb1\xef\xdf\x16" "\x6a\x52\x93\xdf\xff\xcb\xff\xaf\x2b\xff\x9f\x32\x57\xf2\xff\xad\xe3\x97" "\xff\x6f\x25\xff\x1f\xe6\x83\xfc\xbf\xfc\xff\x06\x90\xff\xef\x4d\xfe\xbf" "\x0f\xf9\x7f\xd7\xff\x1f\xad\xfc\x7f\x0b\xf9\x7f\xca\xa8\x6c\xf9\xff\xd8" "\xf7\xbf\x28\xd4\xa4\x26\xfd\x3f\x00\x00\x00\xd4\x41\xec\xfb\x5f\x1c\x6a" "\xa2\xff\x07\x00\x00\x80\xf2\x99\xb8\xb2\xd5\x62\xdf\xff\x92\x50\x93\x55" "\xfd\xff\x15\x6e\x00\x00\x00\x00\x78\xde\xc5\xbe\xff\xda\xac\x2d\x08\x5e" "\x93\xdf\xff\xcb\xff\xbb\xfe\xbf\xfc\xbf\xfc\xbf\xfc\x7f\xe7\xed\x0f\x9e" "\xff\xdf\x94\xc9\xff\x97\x87\xfc\x7f\x6f\xf2\xff\x7d\xc8\xff\xcb\xff\xcb" "\xff\xaf\x29\xff\x3f\xd6\xf4\x26\x40\xfe\x9f\x4e\xca\x96\xff\xcf\xfb\xfe" "\x6c\x3a\x7b\x69\xa8\x49\x4d\xfa\x7f\x00\x00\x00\xa8\x83\xd8\xf7\x5f\x17" "\x6a\xa2\xff\x07\x00\x00\x80\xca\x88\x7d\xff\xff\x0b\x35\xd1\xff\x03\x00" "\x00\x40\x65\xc4\xbe\x7f\x7b\xa8\x49\x4d\xfa\x7f\xf9\xff\xca\xe4\xff\x7f" "\xd6\xfc\xd4\xc9\xff\xcb\xff\xf7\xda\xbe\xfc\xbf\xeb\xff\x57\x99\xfc\x7f" "\x6f\xf2\xff\x7d\xc8\xff\xcb\xff\xcb\xff\xbb\xfe\x3f\x43\x55\xb6\xfc\x7f" "\xec\xfb\xaf\x0f\x35\xa9\x49\xff\x0f\x00\x00\x00\x75\x10\xfb\xfe\x1b\x42" "\x4d\xf4\xff\x00\x00\x00\x50\x19\xb1\xef\xff\xff\xa1\x26\xfa\x7f\x00\x00" "\x00\xa8\x8c\xd8\xf7\xef\x08\x35\xa9\x49\xff\x2f\xff\x5f\xf2\xfc\x7f\x4c" "\x8e\xba\xfe\xbf\xfc\xbf\xfc\x7f\x29\xf3\xff\xd3\xf2\xff\xa5\x23\xff\xdf" "\x9b\xfc\x7f\x1f\xf2\xff\xf2\xff\xf2\xff\xf2\xff\x0c\x55\xd9\xf2\xff\xb1" "\xef\xbf\x31\xd4\xa4\x26\xfd\x3f\x00\x00\x00\xd4\x41\xec\xfb\x5f\x16\x6a" "\xa2\xff\x07\x00\x00\x80\xca\x88\x7d\xff\xcb\x43\x4d\xf4\xff\x00\x00\x00" "\x50\x19\xb1\xef\x9f\xc9\xfe\xad\xf5\x8e\x9a\xf4\xff\x6b\xc9\xff\x8f\x5d" "\x92\xff\xef\xe6\x39\xbe\xfe\xff\xd4\x00\xd7\xff\x6f\x21\xff\x2f\xff\xdf" "\x6b\xfb\xf2\xff\xae\xff\x5f\x65\xf2\xff\xbd\xc9\xff\xf7\x21\xff\x2f\xff" "\x2f\xff\x2f\xff\xcf\x50\x95\x2d\xff\x3f\x93\xaf\x35\x9d\xdd\x14\x6a\x52" "\x93\xfe\x1f\x00\x00\x00\xea\x20\xf6\xfd\x3b\x43\x4d\xf4\xff\x00\x00\x00" "\x50\x19\xb1\xef\xbf\x39\xd4\x44\xff\x0f\x00\x00\x00\x95\x11\xfb\xfe\x5d" "\xa1\x26\x35\xe9\xff\x5d\xff\x7f\x24\xf2\xff\x99\xfc\xbf\xfc\xbf\xfc\xbf" "\xfc\xbf\xfc\xff\x60\xe4\xff\x7b\x93\xff\xef\x43\xfe\x5f\xfe\x5f\xfe\x5f" "\xfe\x9f\xa1\x2a\x5b\xfe\x3f\xf6\xfd\xaf\x08\x35\xa9\x49\xff\x0f\x00\x00" "\x00\x75\x10\xfb\xfe\x5b\x42\x4d\xf4\xff\x00\x00\x00\x50\x19\xb1\xef\x7f" "\x65\xa8\x89\xfe\x1f\x00\x00\x00\x2a\x23\xf6\xfd\xb7\x86\x9a\xd4\xa4\xff" "\x97\xff\x97\xff\x97\xff\x97\xff\x97\xff\xef\xbc\x7d\xf9\xff\xd1\x24\xff" "\xdf\x9b\xfc\x7f\x1f\xf2\xff\xf2\xff\xf2\xff\xf2\xff\x0c\x55\xd9\xf2\xff" "\xb1\xef\x7f\x55\xa8\x49\x4d\xfa\x7f\x00\x00\x00\xa8\x83\xd8\xf7\xdf\x16" "\x6a\xa2\xff\x07\x00\x00\x80\xca\x88\x7d\xff\xed\xa1\x26\xfa\x7f\x00\x00" "\x00\xa8\x8c\xd8\xf7\xef\x0e\x35\xa9\x49\xff\x2f\xff\x2f\xff\xbf\x21\xf9" "\xff\xf1\x4c\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x7f\x43\xc8\xff\xf7\x26\xff\xdf" "\x87\xfc\xbf\xfc\xbf\xfc\xbf\xfc\x3f\x43\x55\xb6\xfc\x7f\xec\xfb\xef\x08" "\x35\xa9\x49\xff\x0f\x00\x00\x00\x75\x10\xfb\xfe\x3b\x43\x4d\xf4\xff\x00" "\x00\x00\x50\x19\xb1\xef\x9f\x0d\x35\xd1\xff\x03\x00\x00\x40\x65\xc4\xbe" "\x7f\x2e\xd4\xa4\x26\xfd\xbf\xfc\xbf\xfc\xbf\xeb\xff\xcb\xff\xaf\x29\xff" "\xff\xf2\x95\xc7\x95\xff\x2f\xc8\xff\x97\x8b\xfc\x7f\x6f\xf2\xff\x7d\xc8" "\xff\xcb\xff\x3f\xef\xf9\xff\x49\xf9\x7f\x2a\xa5\x6c\xf9\xff\xd8\xf7\xef" "\x09\x35\xa9\x49\xff\x0f\x00\x00\x00\x75\x10\xfb\xfe\xbd\xa1\x26\xfa\x7f" "\x00\x00\x00\xa8\x8c\xd8\xf7\xef\x0b\x35\xd1\xff\x03\x00\x00\x40\x65\xc4" "\xbe\xff\xae\x50\x93\x9a\xf4\xff\x55\xca\xff\xe7\x7b\x20\xff\xdf\xb2\x9e" "\xfc\xbf\xfc\x7f\xa7\xed\xbb\xfe\xbf\xfc\x7f\x95\xc9\xff\xf7\x36\xfc\xfc" "\x7f\xdc\x45\xf9\x7f\xf9\x7f\xf9\x7f\xd7\xff\x97\xff\x67\xb5\xb2\xe5\xff" "\x63\xdf\x7f\x77\xa8\x49\x4d\xfa\x7f\x00\x00\x00\xa8\x83\xd8\xf7\xef\x0f" "\x35\xd1\xff\x03\x00\x00\x40\x65\xc4\xbe\xff\x40\xa8\x89\xfe\x1f\x00\x00" "\x00\x2a\x23\xf6\xfd\x07\x43\x4d\x6a\xd2\xff\x57\x29\xff\x5f\xac\x28\xff" "\x9f\x95\x28\xff\x1f\xc9\xff\x17\xe4\xff\xe5\xff\xe5\xff\x9f\x7b\xf2\xff" "\xbd\xb9\xfe\x7f\x1f\xf2\xff\xf2\xff\x23\x9c\xff\x6f\xcc\x2d\xf9\x7f\xca" "\xa6\x6c\xf9\xff\xd8\xf7\x1f\x0a\x35\xa9\x49\xff\x0f\x00\x00\x00\x75\x10" "\xfb\xfe\x57\x87\x9a\xe8\xff\x01\x00\x00\xa0\x32\x62\xdf\xff\x2b\xa1\x26" "\xfa\x7f\x00\x00\x00\xa8\x8c\xd8\xf7\xff\x6a\xa8\x49\x4d\xfa\x7f\xf9\x7f" "\xf9\x7f\xd7\xff\x97\xff\x2f\x7b\xfe\x7f\x4a\xfe\x5f\xfe\x7f\x0d\xe4\xff" "\x7b\x93\xff\xef\x43\xfe\x5f\xfe\x7f\x84\xf3\xff\xae\xff\x4f\x19\x95\x2d" "\xff\x1f\xfb\xfe\x7b\x42\x4d\x6a\xd2\xff\x03\x00\x00\x40\x1d\xc4\xbe\xff" "\xd7\x42\x4d\xf4\xff\x00\x00\x00\x50\x19\xb1\xef\x7f\x4d\xa8\x89\xfe\x1f" "\x00\x00\x00\x2a\x23\xf6\xfd\x87\x43\x4d\x6a\xd2\xff\x8f\x6e\xfe\x7f\xaa" "\xcb\x0e\x95\x34\xff\x1f\x6f\xac\x64\xfe\x7f\x93\xfc\x7f\x78\x1c\xf9\xff" "\x82\xeb\xff\x77\x26\xff\xbf\x31\x86\x92\xff\xff\x3b\xf9\x7f\xf9\x7f\xf9" "\x7f\xf9\x7f\xf9\x7f\xf9\x7f\x86\xa1\x6c\xf9\xff\xd8\xf7\xbf\x36\xd4\xa4" "\x26\xfd\x3f\x00\x00\x00\xd4\x41\xec\xfb\xef\x0d\x35\xd1\xff\x03\x00\x00" "\x40\x65\xc4\xbe\xff\x75\xa1\x26\xfa\x7f\x00\x00\x00\xa8\x8c\xd8\xf7\xdf" "\x17\x6a\x52\x93\xfe\x7f\x74\xf3\xff\xdd\x76\xa8\xa4\xf9\xff\x9a\x5c\xff" "\x7f\xf2\x8a\xf2\xff\x93\x2d\x63\x97\xff\x5f\x59\x4f\xfe\xbf\x20\xff\x2f" "\xff\xbf\x16\x03\xe4\xef\xb7\xf4\x5a\xdf\xf5\xff\x03\xf9\x7f\xf9\x7f\xf9" "\x7f\xf9\x7f\xf9\x7f\x86\x60\x78\xf9\xff\xd0\x33\xac\x33\xff\x1f\xfb\xfe" "\xd7\x87\x9a\xd4\xa4\xff\x07\x00\x00\x80\x3a\x88\x7d\xff\x1b\x42\x4d\xf4" "\xff\x00\x00\x00\x50\x19\xb1\xef\x7f\x63\xa8\x89\xfe\x1f\x00\x00\x00\x4a" "\x6f\x7c\xc0\xe5\x62\xdf\xff\xa6\x50\x93\x9a\xf4\xff\xf2\xff\xf2\xff\xc3" "\xcc\xff\xbb\xfe\xbf\xfc\x7f\x26\xff\xdf\x95\xfc\xff\xc6\x18\xca\xf5\xff" "\xe5\xff\xe5\xff\xe5\xff\xe5\xff\xe5\xff\xe5\xff\x19\x8a\x12\x5d\xff\x3f" "\x7f\x0b\x17\xfb\xfe\x5f\x0f\x35\xa9\x49\xff\x0f\x00\x00\x00\x75\x10\xfb" "\xfe\xfb\x43\x4d\xf4\xff\x00\x00\x00\x50\x19\xb1\xef\x7f\x73\xa8\xc9\xe0" "\xfd\xff\x7d\x9f\x1d\xfe\xb0\x00\x00\x00\x80\x21\x8a\x7d\xff\x5b\x42\x4d" "\x6a\xf2\xfb\x7f\xf9\x7f\xf9\x7f\xf9\x7f\xf9\x7f\xf9\xff\xce\xdb\x97\xff" "\x1f\x4d\xf2\xff\xbd\x8d\x58\xfe\xff\x17\x57\x87\xdb\xe5\xff\x0b\xf2\xff" "\xe5\x1e\xff\x5a\xf3\xff\x13\x6d\x5f\x3f\x27\xf9\xff\x1f\x74\xcb\xff\x2f" "\x6f\x6e\x5f\x5f\xfe\x9f\xe7\x42\x89\xf2\xff\xf9\xd7\xb1\xef\x7f\x6b\xa8" "\x49\x4d\xfa\x7f\x00\x00\x00\xa8\x83\xd8\xf7\xbf\x2d\xd4\x44\xff\x0f\x00" "\x00\x00\x95\x11\xfb\xfe\xb7\x87\x9a\xe8\xff\x01\x00\x00\xa0\x32\x62\xdf" "\xff\x1b\xa1\x26\x35\xe9\xff\xe5\xff\x1b\xe3\x58\x49\x2f\xcb\xff\xcb\xff" "\xe7\x37\xc8\xff\xcb\xff\xcb\xff\x8f\x2c\xf9\xff\xde\x46\x2c\xff\xef\xfa" "\xff\x6d\xe4\xff\xcb\x3d\x7e\xd7\xff\x97\xff\x67\xb5\xb2\xe5\xff\x63\xdf" "\xff\x8e\x50\x93\x9a\xf4\xff\x00\x00\x00\x50\x07\xb1\xef\x7f\x20\xd4\x44" "\xff\x0f\x00\x00\x00\x95\x11\xfb\xfe\x77\x86\x9a\xe8\xff\x01\x00\x00\xa0" "\x32\x62\xdf\xff\xae\x50\x93\x9a\xf4\xff\xf2\xff\xae\xff\x2f\xff\x2f\xff" "\x2f\xff\xdf\x79\xfb\xf2\xff\xa3\x49\xfe\xbf\x37\xf9\xff\x3e\xe4\xff\xe5" "\xff\xcb\x96\xff\xff\x4f\xf9\x7f\x46\x5b\xd9\xf2\xff\xb1\xef\x7f\x30\xd4" "\xa4\x26\xfd\x3f\x00\x00\x00\xd4\x41\xec\xfb\xdf\x1d\x6a\xa2\xff\x07\x00" "\x00\x80\xca\x88\x7d\xff\x6f\x86\x9a\xe8\xff\x01\x00\x00\xa0\x32\x62\xdf" "\xff\x9e\x50\x93\x9a\xf4\xff\xf2\xff\xa3\x92\xff\x9f\x91\xff\x5f\x63\xfe" "\x7f\x2a\xdc\x26\xff\x2f\xff\x2f\xff\x5f\x2f\xf2\xff\xbd\xc9\xff\xf7\x21" "\xff\x2f\xff\x5f\xb6\xfc\x7f\x19\xaf\xff\x3f\xdd\x79\x7d\xf9\x7f\x3a\x29" "\x5b\xfe\x3f\xf6\xfd\xef\x0d\x35\x19\xbc\xff\xef\xf2\x0a\x00\x00\x00\x00" "\xca\x22\xf6\xfd\xbf\x15\x6a\x52\x93\xdf\xff\x03\x00\x00\x40\x1d\xc4\xbe" "\xff\xb7\x43\x4d\xf4\xff\x00\x00\x00\x50\x19\xb1\xef\xff\x9d\x50\x93\x9a" "\xf4\xff\xf2\xff\xa3\x92\xff\x77\xfd\xff\xcc\xf5\xff\xe5\xff\xdb\xf6\x47" "\xfe\x5f\xfe\xbf\x93\x8d\xcb\xff\xc7\x33\x8f\xfc\xbf\xfc\xbf\xfc\x7f\x24" "\xff\x5f\x93\xfc\x7f\x17\xf2\xff\x74\x52\xb6\xfc\x7f\xec\xfb\x7f\x37\xd4" "\xa4\x26\xfd\x3f\x00\x00\x00\xd4\x41\xec\xfb\xdf\x17\x6a\xa2\xff\x07\x00" "\x00\x80\x91\xd0\xe9\xff\x64\xb7\x8b\x7d\xff\x91\x50\x13\xfd\x3f\x00\x00" "\x00\x54\x46\xec\xfb\x8f\x86\x9a\xd4\xa4\xff\x97\xff\x97\xff\x97\xff\x2f" "\x69\xfe\xff\xcf\x77\xfe\xf3\xf7\xbe\xfd\xb6\xa3\x7b\xe4\xff\xe5\xff\xe5" "\xff\xd7\x64\x43\xaf\xff\xdf\x78\xf1\xbb\xfe\xbf\xfc\xbf\xfc\x7f\x22\xff" "\x2f\xff\xdf\x37\xff\x3f\xd9\xef\x51\xa8\x9a\xb2\xe5\xff\x63\xdf\x7f\x2c" "\xd4\x64\xa5\xf1\x7b\x8b\x0b\xfc\x03\x00\x00\xc0\x68\x8b\x7d\xff\xef\x85" "\x9a\xd4\xe4\xf7\xff\x00\x00\x00\x50\x07\xb1\xef\x3f\x1e\x6a\xa2\xff\x07" "\x00\x00\x80\xca\x88\x7d\xff\x7c\xa8\x49\x4d\xfa\x7f\xf9\x7f\xf9\x7f\xf9" "\xff\x92\xe6\xff\x47\xf8\xfa\xff\xf1\x78\x8c\x52\xfe\x7f\xf7\xe6\x11\xca" "\xff\xc7\x93\xae\xfc\x7f\x47\x1b\x9a\xff\x7f\xf7\x4a\x4e\x5c\xfe\x7f\xad" "\xf9\xff\xa9\x8e\xb7\xb6\xe7\xff\xc7\xe4\xff\x5b\xc8\xff\xaf\x79\xfc\xdf" "\xca\xb2\x4c\xfe\xbf\x4c\xf9\x7f\x6a\xa7\x6c\xf9\xff\xd8\xf7\x2f\x84\x9a" "\xd4\xa4\xff\x07\x00\x00\x80\x3a\x08\x7d\xff\xf8\x89\xa2\xae\xdc\xa1\xff" "\x07\x00\x00\x80\xca\x88\x7d\xff\xc9\x50\x13\xfd\x3f\x00\x00\x00\x54\x46" "\xec\xfb\xdf\x1f\x6a\x52\x93\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x7f\xd0" "\xfc\x7f\x7b\x5a\xd7\xf5\xff\x0b\xae\xff\x5f\x2e\xf2\xff\xbd\x95\x27\xff" "\xdf\x99\xeb\xff\xcb\xff\x8f\xf2\xf8\xe5\xff\xe5\xff\x59\xad\x6c\xf9\xff" "\xd8\xf7\x2f\x86\x9a\xd4\xa4\xff\x07\x00\x00\x80\x3a\x88\x7d\xff\x07\x42" "\x4d\xf4\xff\xf0\x7f\xec\xdd\xc7\x93\x65\xe5\x79\xc7\xf1\xdb\xd0\x98\x19" "\x53\x94\xbd\xf3\xc2\x0b\x7b\xef\x95\x17\x5e\xb1\x30\x0b\xaf\xec\x3f\xc0" "\x0b\x36\x5e\xd8\x55\x2e\x07\xb0\x8d\x6d\x65\x31\x28\x47\x94\x73\x40\x01" "\x09\x14\x50\x00\x09\xa1\x04\xca\x01\x94\x90\x50\x16\x92\x50\xce\x01\x65" "\x24\xd5\xa8\xa0\x9f\xe7\x99\xee\xe9\xd3\xe7\x76\xcf\xdc\xee\x7b\xce\xfb" "\x7e\x3e\x0b\x3f\x68\x98\xf1\x6d\x5c\x63\xd0\x8f\xe1\xcb\x0b\x00\x00\xd0" "\x8c\xdc\xfd\xff\x1e\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xff\x11\xb7" "\x74\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xd5\xef\xff\xeb\xff\x87\xe9" "\xff\x8f\x86\xfe\x7f\x9c\xfe\x7f\x09\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xa5" "\xa6\xd6\xff\xe7\xee\xff\xcf\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd" "\x7f\x69\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x5f\x16\xb7\xd8\xff\x00" "\x00\x00\xd0\x8c\xdc\xfd\xff\x15\xb7\x74\xb2\xff\xf5\xff\xfa\xff\x66\xfb" "\xff\xbf\xd5\xff\xef\xf5\xf9\xfa\x7f\xfd\x7f\xcb\xf4\xff\xe3\xf4\xff\x4b" "\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x2b\x35\xb5\xfe\x3f\x77\xff\x7f\xc7\x2d" "\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xff\x89\x5b\xec\x7f\x00\x00\x00" "\x68\x46\xee\xfe\xcb\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x7f\xe3" "\x96\x4e\xf6\xff\x69\xfd\xff\xc6\xa2\xcf\xfe\x3f\x33\x5e\xfd\x7f\x4b\xfd" "\xbf\xf7\xff\xf7\xfc\x7c\xfd\xbf\xfe\xbf\x65\x47\xdb\xff\x5f\x79\xdf\x9f" "\xf9\xf4\xff\xfa\x7f\xfd\x7f\xd0\xff\xeb\xff\xf5\xff\x9c\x6e\x6a\xfd\x7f" "\xee\xfe\xff\x8b\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xff\x1f\xb7" "\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x0f\x88\x5b\xec\x7f\x00\x00\x00\x68" "\x46\xee\xfe\x07\xc6\x2d\x9d\xec\x7f\xef\xff\x7b\xff\x7f\x5a\xfd\xff\x39" "\xfa\x7f\xfd\xbf\xfe\x5f\xff\x7f\x56\xbc\xff\x3f\xae\xa7\xfe\xff\xf2\x3b" "\x2f\xb8\xf4\x9e\x9b\xfe\xfc\xe6\x83\x7c\xbe\xfe\x5f\xff\xaf\xff\xd7\xff" "\xb3\x5a\x53\xeb\xff\x73\xf7\x3f\x28\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f" "\x72\xf7\x3f\x38\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x1f\x12\xb7\xd8" "\xff\x00\x00\x00\x30\x43\xc7\x07\xbf\x35\x77\xff\x43\xe3\x96\x4e\xf6\xbf" "\xfe\x5f\xff\x3f\xad\xfe\x7f\x8d\xef\xff\x1f\x9b\x64\xff\x9f\xbf\xa9\xff" "\xd7\xff\xeb\xff\xf7\x49\xff\x3f\xae\xa7\xfe\xff\x4c\x3e\x5f\xff\xaf\xff" "\xd7\xff\xeb\xff\x59\xad\xa9\xf5\xff\xb9\xfb\x1f\x16\xb7\x74\xb2\xff\x01" "\x00\x00\xa0\x07\xb9\xfb\x1f\x1e\xb7\xd8\xff\x00\x00\x00\x30\x5d\x43\xff" "\x20\xf6\x88\xdc\xfd\x57\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x89" "\xb8\xa5\x93\xfd\xaf\xff\x3f\xfc\xfe\xff\xf7\xfa\xff\x79\xf4\xff\xde\xff" "\xd7\xff\xeb\xff\x9b\xb0\x8e\xfe\xff\x8f\xe2\xfb\xe8\xff\xf5\xff\x49\xff" "\xaf\xff\xd7\xff\xeb\xff\xd9\x32\xb5\xfe\x3f\x77\xff\x95\x71\x4b\x27\xfb" "\x1f\x00\x00\x00\x7a\x90\xbb\xff\x11\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8" "\xdd\xff\xc8\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x54\xdc\xd2\xc9" "\xfe\xd7\xff\x7b\xff\x5f\xff\xdf\x73\xff\xff\x37\xf1\x7b\xf4\xff\x43\x9f" "\xaf\xff\x9f\x27\xef\xff\x8f\x9b\x6e\xff\xbf\xf5\xff\x59\xfa\xff\xd9\xf7" "\xff\xe7\xe9\xff\xf5\xff\xfa\x7f\xb6\x3b\x60\xff\x7f\xef\xc8\x9f\xb6\x57" "\xd2\xff\xe7\xee\x7f\x74\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f" "\x4c\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x36\x6e\xb1\xff\x01\x00" "\x00\xa0\x19\xb9\xfb\x1f\x17\xb7\x74\xb2\xff\xf5\xff\xfa\x7f\xfd\x7f\xcf" "\xfd\xff\x59\xbe\xff\xbf\xfb\xa7\xde\xfd\xf4\xff\xc3\xf4\xff\x47\x43\xff" "\x3f\x6e\x32\xfd\xff\xc6\xe6\xe0\x37\xeb\xff\xd7\xdd\xff\x9f\xfc\x13\xef" "\xff\xeb\xff\xf5\xff\xac\xd2\xd4\xde\xff\xcf\xdd\xff\xf8\xb8\xa5\x93\xfd" "\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x84\xb8\x65\x64\xff\x1f\xf8\x6f\xe6\x03" "\x00\x00\x00\x6b\x95\xbb\xff\x89\x71\x8b\x5f\xff\x07\x00\x00\x80\xd9\xcb" "\xea\x2c\x77\xff\x93\xe2\x96\x4e\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x9f" "\x71\xff\xdf\xf1\xfb\xff\x37\x6f\xfb\xfa\xf4\xff\xd3\xa2\xff\x1f\x37\x99" "\xfe\x7f\x0f\xfa\xff\x75\xf7\xff\xeb\xed\xe7\xe7\xfe\xf5\xeb\xff\xf5\xff" "\xec\x36\xb5\xfe\x3f\x77\xff\x93\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20" "\x77\xff\x55\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x94\xb8\xc5\xfe" "\x07\x00\x00\x80\x66\xe4\xee\x7f\x6a\xdc\xd2\xc9\xfe\x1f\xee\xff\x4f\xfd" "\x7e\xfd\xff\xfe\xe8\xff\x77\x7e\xfd\xfa\xff\xe1\x9f\x1f\xab\xea\xff\xf3" "\x7f\xa3\xfe\x7f\xb4\xff\xbf\xd8\xfb\xff\x7d\xd2\xff\x8f\xd3\xff\x2f\xa1" "\xff\xd7\xff\xeb\xff\xf7\xea\xff\x8f\x2f\xfb\xf1\xfa\x7f\x86\x4c\xad\xff" "\xcf\xdd\xff\xb4\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xf4\xb8" "\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x46\xdc\x62\xff\x03\x00\x00\x40" "\x33\x72\xf7\x3f\x33\x6e\xe9\x64\xff\x7b\xff\x5f\xff\xaf\xff\x5f\x7f\xff" "\xbf\x11\x7f\xdc\x6d\xbd\xff\xbf\x3b\x13\x6c\xe9\xfd\xff\xc5\x91\xf7\xff" "\x9b\xfa\xff\x7d\xd2\xff\x8f\xd3\xff\x2f\xa1\xff\xdf\xd6\xcf\x6f\x2c\xf4" "\xff\x1d\xf7\xff\x17\xee\xf1\xfe\xff\xc8\xbf\x05\x40\xff\xcf\x90\xa9\xf5" "\xff\xb9\xfb\x9f\x15\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x9f\x1d" "\xb7\xd8\xff\x00\x00\x00\x30\x0f\xdb\xff\xd9\x81\xd3\xff\x81\xd2\x90\xbb" "\xff\x39\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xdc\xb8\xa5\x9d\xfd" "\x3f\x54\xe9\xd4\x1f\x9d\xfe\x5f\xff\xaf\xff\x5f\x7f\xff\x7f\xd0\xf7\xff" "\xe7\xd1\xff\xaf\xfd\xfd\xff\xc6\xfa\x7f\xef\xff\xef\x97\xfe\x7f\x9c\xfe" "\x7f\x89\xbd\xfa\xff\xfb\xfe\x44\xd1\x5d\xff\xbf\xb2\x7e\x7e\xb3\xb1\xfe" "\xff\xea\xbd\x7e\xfc\x14\xfa\xff\x2b\x0e\xef\xfd\xff\xbf\x5e\xf6\xe3\xf5" "\xff\x0c\xd9\xd1\xff\xdf\x72\xea\xdb\xd7\xd5\xff\xe7\xee\x7f\x5e\xdc\xd2" "\xce\xfe\x07\x00\x00\x80\xee\xe5\xee\x7f\x7e\xdc\x62\xff\x03\x00\x00\x40" "\x33\x72\xf7\xbf\x20\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x5f\x18\xb7" "\x74\xb2\xff\x0f\xbd\xff\x1f\x79\x23\x54\xff\xaf\xff\xd7\xff\xeb\xff\xf5" "\xff\xfa\xff\x55\xd3\xff\x8f\xd3\xff\x2f\xe1\xfd\xff\xb5\xbe\x9f\x3f\xf7" "\xaf\x7f\x0a\xfd\xff\xca\xde\xff\xd7\xff\xb3\x22\x3b\xfa\xff\x6d\xd6\xd5" "\xff\xe7\xee\x7f\x51\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x71" "\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x5f\x1d\xb7\xd8\xff\x00\x00\x00" "\xd0\x8c\xdc\xfd\x2f\x89\x5b\x3a\xd9\xff\xde\xff\xd7\xff\xeb\xff\xf5\xff" "\xfa\xff\xe1\xcf\xd7\xff\xcf\xd3\x59\xf5\xf7\xe7\xe8\xff\x8b\xfe\x5f\xff" "\xaf\xff\xd7\xff\xeb\xff\x59\x81\xa9\xf5\xff\xb9\xfb\x5f\x1a\xb7\x74\xb2" "\xff\x01\x00\x00\xa0\x07\xb9\xfb\x5f\x16\xb7\xd8\xff\x00\x00\x00\xd0\x8c" "\xdc\xfd\x2f\x8f\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x6b\xe2\x96\x4e" "\xf6\xbf\xfe\xff\x70\xfb\xff\xfc\xf6\x6e\xfb\xff\x6b\xf5\xff\x0b\xfd\xff" "\xa9\x9f\x97\xfa\x7f\xfd\xff\x11\xe8\xf6\xfd\xff\x8d\xa1\xbf\x12\xed\xb6" "\x47\xff\x7f\xfb\xbf\x9e\xf8\x87\x9d\xdf\xa2\xff\xd7\xff\xeb\xff\xf5\xff" "\xfa\x7f\xf6\xe9\x4f\x47\x7e\xdf\x24\xfa\xff\x93\xa7\xfe\xdb\x65\xee\xfe" "\x57\xc4\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x57\xc6\x2d\xf6\x3f" "\x00\x00\x00\x34\x23\x77\xff\xb5\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd" "\x7f\x5d\xdc\x72\xc0\xfd\x3f\xd6\x3c\x4c\x99\xfe\xdf\xfb\xff\xde\xff\xd7" "\xff\xeb\xff\x87\x3f\x5f\xff\x3f\x4f\xdd\xf6\xff\xfb\xe4\xfd\xff\x25\xf4" "\xff\xfa\x7f\xfd\x7f\xfe\x74\xd4\xff\xb3\x12\x93\xe8\xff\xb7\xfd\xe7\xdc" "\xfd\xaf\x8a\x5b\xfc\xfa\x3f\x00\x00\x00\x34\x23\x77\xff\xab\xe3\x16\xfb" "\x1f\x00\x00\x00\x9a\x91\xbb\xff\x35\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8" "\xdd\xff\xda\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xe1" "\xcf\xd7\xff\xcf\x93\xfe\x7f\x9c\xfe\x7f\x89\x39\xf5\xff\xd7\x9d\x45\xff" "\xbf\x39\xfc\xcd\xeb\xee\xe7\xcf\xd6\xba\xbf\xfe\x46\xfa\x7f\xef\xff\xb3" "\x52\x53\xeb\xff\x73\xf7\x5f\x1f\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9" "\xfb\x5f\x17\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xaf\x8f\x5b\xec\x7f" "\x00\x00\x00\x68\x46\xee\xfe\x37\xc4\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff" "\xaf\xff\xd7\xff\x0f\x7f\xbe\xfe\x7f\x9e\xf4\xff\xe3\xf4\xff\x8b\xc5\xe2" "\x86\x91\x2f\x60\xa8\xff\x3f\x79\xfe\x34\xfb\x7f\xef\xff\x4f\xee\xeb\xd7" "\xff\xeb\xff\xd9\x6d\x6a\xfd\x7f\xee\xfe\x37\xc6\x2d\x9d\xec\x7f\x00\x00" "\x00\xe8\x41\xee\xfe\x1b\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xc6" "\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x53\xdc\xd2\xc9\xfe\xd7\xff" "\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf0\xe7\xeb\xff\xe7\x49\xff\x3f\x4e\xff" "\xbf\xc4\x9c\xde\xff\xd7\xff\x4f\xee\xeb\xd7\xff\xeb\xff\xd9\x6d\x6a\xfd" "\x7f\xee\xfe\x37\xc7\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x9b\xe2" "\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x2d\x71\x8b\xfd\x0f\x00\x00\x00" "\xcd\xc8\xdd\x7f\x73\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x59" "\xf5\xff\xe7\xea\xff\xf5\xff\xe3\x0e\xaf\xff\x5f\xe8\xff\xf5\xff\xfa\xff" "\x25\xa6\xd7\xff\x9f\x58\xe8\xff\xf5\xff\xac\xd7\xd4\xfa\xff\xdc\xfd\x6f" "\x8d\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x6f\x8b\x5b\xec\x7f\x00" "\x00\x00\x68\x46\xee\xfe\xb7\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff" "\x3b\xe2\x96\x4e\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xcf\xaa\xff\xf7\xfe" "\xbf\xfe\x7f\x09\xef\xff\x8f\xd3\xff\x2f\xa1\xff\x6f\xac\xff\xf7\xfe\xbf" "\xfe\x9f\x75\x1b\xee\xff\xaf\x58\x5b\xff\x9f\xbb\xff\x9d\x71\x4b\x27\xfb" "\x1f\x00\x00\x00\x7a\x90\xbb\xff\x96\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4" "\xee\xbf\x35\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xdf\x15\xb7\x74\xb2" "\xff\xf5\xff\xfa\xff\x9d\xfd\xff\x62\xa1\xff\xd7\xff\xeb\xff\xb7\x8c\xf5" "\xff\xc7\x56\xd3\xff\x1f\x5b\xe8\xff\x57\xee\x50\xfb\xff\x6b\x22\x46\xd7" "\xff\xeb\xff\xf5\xff\x83\x26\xdb\xff\x9f\xb3\x68\xa8\xff\x3f\xbe\xe7\x8f" "\xd7\xff\x33\x45\x53\x7b\xff\x3f\x77\xff\xbb\xe3\x96\x4e\xf6\x3f\x00\x00" "\x00\xf4\x20\x77\xff\x7b\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xbd" "\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xbe\xb8\xa5\x93\xfd\xaf\xff" "\xd7\xff\x7b\xff\x5f\xff\xaf\xff\x1f\xfe\x7c\xef\xff\xcf\x93\xf7\xff\xc7" "\xe9\xff\x97\xd0\xff\xb7\xd9\xff\x7b\xff\x5f\xff\xcf\xda\xdc\xfa\xc7\x5b" "\xff\x7e\xb1\xd3\xad\xab\xff\xcf\xdd\xff\xfe\xb8\xa5\x93\xfd\x0f\x00\x00" "\x00\x3d\xc8\xdd\xff\x81\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x60" "\xdc\x62\xff\x03\x00\x00\xc0\xac\x6d\x6e\xfb\xed\xdc\xfd\x1f\x8a\x5b\x3a" "\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x1f\xfe\x7c\xfd\xff\x3c\xe9" "\xff\xc7\xe9\xff\x97\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x56\x6a\x6a\xef\xff" "\xe7\xee\xff\x70\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xbf\x2d\x6e" "\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x6f\x8f\x5b\xec\x7f\x00\x00\x00\x68" "\x46\xee\xfe\x8f\xc4\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff\x3f\xcf\xfe\xff" "\x98\xfe\x5f\xff\xaf\xff\x1f\xb4\xd2\xfe\xff\xc4\x3d\xf5\xed\x07\xed\xff" "\x2f\xba\xe8\xef\xef\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xbf\x77" "\x53\xeb\xff\x73\xf7\x7f\x34\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7" "\x7f\x2c\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x3f\x1e\xb7\xd8\xff\x00" "\x00\x00\xd0\x8c\xdc\xfd\x9f\x88\x5b\x3a\xd9\xff\xbb\xfb\xff\xf3\x16\x5b" "\x85\xea\x96\xa1\xfe\x3f\x1a\x35\xfd\xff\x36\xfa\xff\x9d\x5f\xbf\xfe\x7f" "\xf8\xe7\x87\xf7\xff\xf5\xff\xfa\xff\xc3\xe7\xfd\xff\x71\xfa\xff\x25\xf4" "\xff\xfa\xff\xa3\xea\xff\xff\x72\xf7\x8f\x5f\x69\xff\x9f\x7f\x71\xd3\xff" "\xb3\x66\x53\xeb\xff\x73\xf7\xdf\x11\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07" "\xb9\xfb\x3f\x19\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x9f\x8a\x5b\xec" "\x7f\x00\x00\x00\x68\x46\xee\xfe\x3b\xe3\x96\x19\xef\xff\xcd\x03\x7c\x5f" "\xef\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf0\xe7\xeb\xff\xe7\x49\xff\x3f" "\x4e\xff\xbf\x84\xfe\x5f\xff\xef\xfd\xff\xcb\xfe\xf9\x5c\xfd\x3f\xab\x33" "\xb5\xfe\x3f\x77\xff\xa7\xe3\x96\x19\xef\x7f\x00\x00\x00\x60\xa7\xdc\xfd" "\x9f\x89\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xcf\xc6\x2d\xf6\x3f\x00" "\x00\x00\x34\x23\x77\xff\xe7\xe2\x96\x4e\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7" "\xff\xeb\xff\x87\x3f\x5f\xff\x3f\x4f\xfa\xff\x71\xfa\xff\x72\xfa\x1f\xda" "\x96\x7e\xfa\xff\x63\x43\xdf\xb8\xee\x7e\xfe\x6c\xad\xfb\xeb\x6f\xa6\xff" "\xf7\xfe\x3f\x2b\x34\xb5\xfe\x3f\x77\xff\xe7\xe3\x96\x4e\xf6\x3f\x00\x00" "\x00\xf4\x20\x77\xff\x17\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x8b" "\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xa5\xb8\xa5\x93\xfd\xaf\xff" "\xd7\xff\xb7\xdf\xff\xff\x93\xfe\xff\xb4\xcf\xd7\xff\xeb\xff\x5b\x36\xda" "\xdf\x6f\x2e\xff\xf1\x2d\xf4\xff\xe7\x8d\xfc\x3e\xfd\xff\x12\xfd\xf4\xff" "\x83\xd6\xdd\xcf\xcf\xfd\xeb\xd7\xff\xeb\xff\xd9\x6d\x6a\xfd\x7f\xee\xfe" "\xbb\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x97\xe3\x16\xfb\x1f" "\x00\x00\x00\x9a\x91\xbb\xff\x2b\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd" "\xff\xd5\xb8\xa5\x93\xfd\xaf\xff\xef\xab\xff\xdf\x58\xf4\xd8\xff\x7b\xff" "\x5f\xff\xaf\xff\xef\x89\xf7\xff\xc7\xe9\xff\x97\xd0\xff\xeb\xff\xf5\xff" "\xfa\x7f\x56\x6a\x6a\xfd\x7f\xee\xfe\xbb\x37\x36\xbb\xdc\xff\x00\x00\x00" "\x30\x57\xff\xf8\x57\xff\x76\xd7\x7e\xbf\xef\xdd\xf7\xff\xcf\x63\x8b\xaf" "\xc5\x2d\x17\x2f\x4e\xee\xf3\x97\xb1\x01\x00\x00\x80\x89\xbb\x6f\xf7\x6f" "\x6c\x2e\x16\x5f\xbf\xff\x3f\xf9\xf5\x7f\x00\x00\x00\x68\x51\xee\xfe\x6f" "\xc4\x2d\x9d\xec\x7f\xfd\x7f\x5f\xfd\x7f\x9f\xef\xff\xeb\xff\xf5\xff\xfa" "\xff\x9e\xe8\xff\xc7\xe9\xff\x97\xd0\xff\xeb\xff\xf7\xfa\xfa\x4f\xea\xff" "\x97\xfd\x78\xfd\x3f\x43\xa6\xd6\xff\xe7\xee\xff\x66\xdc\xb2\x6d\xf8\x6d" "\x1e\xf8\x8f\x12\x00\x00\x00\x98\x92\xdc\xfd\xdf\x8a\x5b\x3a\xf9\xf5\x7f" "\x00\x00\x00\xe8\x41\xee\xfe\x6f\xc7\x2d\xbb\xf6\xbf\x7f\x1d\x20\x00\x00" "\x00\xcc\x55\xee\xfe\xef\xc4\x2d\xb3\xfd\xf5\xff\x0b\x0f\xf4\xbd\xf5\xff" "\x13\xef\xff\x17\x87\xd4\xff\xc7\xf7\xd3\xff\x6f\xd1\xff\xeb\xff\x87\x3e" "\x5f\xff\x3f\x4f\xfa\xff\x71\x67\xd9\xff\x9f\xdc\xd0\xff\xeb\xff\x47\x34" "\xdd\xff\x7b\xff\x5f\xff\xcf\x19\x99\x5a\xff\x9f\xbb\xff\xbb\x71\xcb\x6c" "\xf7\x3f\x00\x00\x00\xb0\x58\x2c\x76\xfc\x1d\x85\xdc\xfd\xdf\x8b\x5b\xec" "\x7f\x00\x00\x00\x68\x46\xee\xfe\xef\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23" "\x77\xff\x0f\xe2\x96\x4e\xf6\xbf\xfe\xff\xc8\xfb\xff\x4c\xd5\x0f\xf1\xfd" "\xff\xe3\xf5\x5b\xde\xff\xef\xbc\xff\xbf\xea\xd8\xe0\xe7\xeb\xff\xf5\xff" "\x2d\xd3\xff\x8f\xeb\xfb\xfd\xff\xbf\x5b\xfe\xa4\xb3\xfe\xbf\x95\xfe\xff" "\x7c\xfd\xbf\xfe\x9f\x69\x98\x5a\xff\x9f\xbb\xff\x87\x71\x4b\x27\xfb\x1f" "\x00\x00\x00\x7a\x90\xbb\xff\x47\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd" "\xff\xe3\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x49\xdc\xd2\xc9\xfe" "\xd7\xff\x4f\xfc\xfd\xff\x33\xea\xff\xf7\xf1\xfe\xbf\xfe\xbf\x8f\xfe\x7f" "\x8f\xcf\x6f\xa7\xff\xff\xb3\x0b\x4e\xdc\x76\xc9\xbf\xdc\x78\xbd\xfe\x9f" "\x53\x8e\xb2\xff\xcf\x9f\x0b\xfa\xff\xb9\xf4\xff\xfb\xa0\xff\x6f\xa5\xff" "\xf7\xfe\xbf\xfe\x9f\x89\x58\x7d\xff\xbf\xf3\x5f\xe5\x72\xd0\xfe\x3f\x77" "\xff\x4f\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x3d\x71\x8b\xfd" "\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xb3\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4" "\xee\xff\x79\xdc\xd2\xc9\xfe\xd7\xff\x1f\x71\xff\x9f\xb9\x8a\xfe\x7f\x57" "\x3f\x9f\xff\xb7\x5e\x43\xff\x7f\xe2\x8c\xfb\xff\xe3\x8b\xc5\x62\x2d\xfd" "\x7f\x36\xc5\xbd\xf7\xff\xde\xff\xd7\xff\xef\xe6\xfd\xff\x71\xfa\xff\x25" "\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x95\x5a\x7d\xff\xbf\xf3\x1b\x0f\xda\xff" "\xe7\xee\xff\x45\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xff\x65\xdc" "\x92\xfb\x7f\xe3\xc0\x7f\xeb\x1e\x00\x00\x00\x98\x98\xdc\xfd\xbf\x8a\x5b" "\xfc\xfa\x3f\x00\x00\x00\x34\x23\x77\xff\xaf\xe3\x96\x4e\xf6\xbf\xfe\xdf" "\xfb\xff\x53\xe9\xff\x93\xf7\xff\x4f\xfd\xb8\xb6\xde\xff\xbf\xa4\xe2\xd4" "\x3e\xfb\xff\xbf\xa8\xdf\xd2\xff\x1f\x2e\xfd\xff\x38\xfd\xff\x12\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\xcf\x4a\x4d\xad\xff\xcf\xdd\xff\x9b\xb8\xa5\x93\xfd" "\x0f\x00\x00\x00\x3d\xc8\xdd\x7f\x6f\xdc\x62\xff\x03\x00\x00\x40\x33\x72" "\xf7\xff\x36\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x7f\x17\xb7\x74\xb2" "\xff\xf5\xff\xad\xf6\xff\x59\xc4\xeb\xff\xf5\xff\x53\xe9\xff\xbd\xff\xef" "\xfd\xff\xa3\xa1\xff\x1f\xa7\xff\x5f\x42\xff\xaf\xff\xd7\xff\xeb\xff\x59" "\xa9\xa9\xf5\xff\xb9\xfb\xff\x10\x00\x00\xff\xff\xd7\x11\x5d\x75", 25360)); NONFAILING(syz_mount_image( /*fs=*/0x200000000000, /*dir=*/0x200000000040, /*flags=MS_POSIXACL|MS_STRICTATIME|MS_NOSUID|MS_NODEV*/ 0x1010006, /*opts=*/0x200000000200, /*chdir=*/1, /*size=*/0x6310, /*img=*/0x200000019f80)); // syz_mount_image$vfat arguments: [ // fs: ptr[in, buffer] { // buffer: {76 66 61 74 00} (length 0x5) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 62 75 73 00} (length 0x6) // } // flags: mount_flags = 0x2c600 (8 bytes) // opts: nil // chdir: int8 = 0xbe (1 bytes) // size: len = 0x0 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x0) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x2000000002c0, "vfat\000", 5)); NONFAILING(memcpy((void*)0x2000000000c0, "./bus\000", 6)); NONFAILING(syz_mount_image( /*fs=*/0x2000000002c0, /*dir=*/0x2000000000c0, /*flags=MS_UNBINDABLE|MS_REC|MS_SILENT|MS_NOATIME|0x200*/ 0x2c600, /*opts=*/0, /*chdir=*/0xbe, /*size=*/0, /*img=*/0x2000000007c0)); // rename arguments: [ // old: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // new: ptr[in, buffer] { // buffer: {2e 2f 62 75 73 2f 66 69 6c 65 30 00} (length 0xc) // } // ] NONFAILING(memcpy((void*)0x200000000180, "./file0\000", 8)); NONFAILING(memcpy((void*)0x2000000001c0, "./bus/file0\000", 12)); syscall(__NR_rename, /*old=*/0x200000000180ul, /*new=*/0x2000000001c0ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; install_segv_handler(); loop(); return 0; }