// https://syzkaller.appspot.com/bug?id=6cc491be132cfdce3fd4c75357d4606bed322b31 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif #ifndef __NR_open_by_handle_at #define __NR_open_by_handle_at 265 #endif #ifndef __NR_openat #define __NR_openat 56 #endif #ifndef __NR_write #define __NR_write 64 #endif static unsigned long long procid; 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"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } static void setup_common() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } } static void setup_binderfs() { if (mkdir("/dev/binderfs", 0777)) { } if (mount("binder", "/dev/binderfs", "binder", 0, NULL)) { } if (symlink("/dev/binderfs", "./binderfs")) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setsid(); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = (200 << 20); setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 128 << 20; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); if (unshare(CLONE_NEWNS)) { } if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(0x02000000)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } typedef struct { const char* name; const char* value; } sysctl_t; static const sysctl_t sysctls[] = { {"/proc/sys/kernel/shmmax", "16777216"}, {"/proc/sys/kernel/shmall", "536870912"}, {"/proc/sys/kernel/shmmni", "1024"}, {"/proc/sys/kernel/msgmax", "8192"}, {"/proc/sys/kernel/msgmni", "1024"}, {"/proc/sys/kernel/msgmnb", "1024"}, {"/proc/sys/kernel/sem", "1024 1048576 500 1024"}, }; unsigned i; for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++) write_file(sysctls[i].name, sysctls[i].value); } static int wait_for_loop(int pid) { if (pid < 0) exit(1); int status = 0; while (waitpid(-1, &status, __WALL) != pid) { } return WEXITSTATUS(status); } static void drop_caps(void) { struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) exit(1); const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE); cap_data[0].effective &= ~drop; cap_data[0].permitted &= ~drop; cap_data[0].inheritable &= ~drop; if (syscall(SYS_capset, &cap_hdr, &cap_data)) exit(1); } static int do_sandbox_none(void) { if (unshare(CLONE_NEWPID)) { } int pid = fork(); if (pid != 0) return wait_for_loop(pid); setup_common(); sandbox_common(); drop_caps(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); setup_binderfs(); loop(); exit(1); } uint64_t r[2] = {0xffffffffffffffff, 0xffffffffffffffff}; void loop(void) { intptr_t res = 0; memcpy((void*)0x20000180, "jfs\000", 4); memcpy((void*)0x20000100, "./file0\000", 8); memcpy( (void*)0x200065c0, "\x78\x9c\xec\xdd\x4d\x6f\x1d\x57\x19\x07\xf0\xe7\xbe\xf8\xfa\xa5\xb4\xb5" "\x2a\x54\x85\x88\x45\x9a\x42\x69\x29\xcd\x7b\x02\xe5\xad\x29\x0b\x16\xb0" "\x00\x09\x65\x4d\x22\xd7\xad\x02\x29\xa0\xc4\x20\x5a\x59\xc4\x95\x17\x88" "\x15\x5f\x01\x36\xdd\xb0\xe8\x57\xe0\x03\xf4\x33\x20\x3e\x00\x91\x6c\x56" "\x45\xa2\x0c\x1a\xfb\x9c\x64\x3c\xbe\xce\x4d\xda\xf8\xce\xb5\xcf\xef\x27" "\x39\x33\xcf\x9c\x3b\xbe\x67\xf2\xf7\x78\xee\xf5\xcc\xdc\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\xe8\x87\x3f\x3b\xdf\x8b" "\x88\xeb\xbf\x4b\x0b\x96\x23\xbe\x10\x83\x88\x7e\xc4\x62\x5d\x9f\x8a\x7a" "\xe6\x6a\x7e\xfc\x30\x22\x4e\xc4\x4e\x73\x3c\x1f\x11\x83\xf9\x88\x7a\xfd" "\x9d\x7f\x9e\x8d\xb8\x14\x11\x1f\x3f\x13\xb1\xb5\xbd\xbe\x52\x2f\xbe\xf0" "\x88\xfd\xb8\x7c\x6e\xed\xf6\xa7\x3f\xfe\xc1\x3f\xfe\xf8\xe7\xcd\x13\xbf" "\x78\xeb\xe7\x1f\xb6\xdb\x7f\xfa\xc5\x8b\x1f\xfd\xe9\x6e\xc4\xf2\x4f\x5e" "\xff\xe8\xd3\xbb\x4f\x66\xdb\x01\x00\x00\xa0\x14\x55\x55\x55\xbd\xf4\x36" "\xff\x64\x7a\x7f\xdf\xef\xba\x53\x00\xc0\x54\xe4\xe3\x7f\x95\xe4\xe5\x6a" "\xb5\x5a\xad\x56\xab\x8f\x5f\xdd\x54\x8d\x77\xb7\x59\x44\xc4\x46\x73\x9d" "\xfa\x35\x83\xd3\xf1\x00\x70\xc4\x6c\xc4\x27\x5d\x77\x81\x0e\xc9\xbf\x68" "\xc3\x88\x78\xaa\xeb\x4e\x00\x33\xad\xd7\x75\x07\x38\x14\x5b\xdb\xeb\x2b" "\xbd\x94\x6f\xaf\x79\x3c\x38\xb5\xdb\x9e\xaf\x05\xd9\x93\xff\x46\xef\xfe" "\xfd\x1d\x07\x4d\x27\x69\x5f\x63\x32\xad\x9f\xaf\xcd\x18\xc4\x73\x07\xf4" "\x67\x71\x4a\x7d\x98\x25\x39\xff\x7e\x3b\xff\xeb\xbb\xed\xa3\xf4\xb8\xc3" "\xce\x7f\x5a\x0e\xca\x7f\xb4\x7b\xeb\x53\x71\x72\xfe\x83\x76\xfe\x2d\xc7" "\x27\xff\xfe\xd8\xfc\x4b\x95\xf3\x1f\x3e\x56\xfe\x03\xf9\x03\x00\x00\x00" "\x00\xc0\x0c\xcb\x7f\xff\x5f\xee\xf8\xfc\xef\x7c\x54\x55\x35\x85\x1b\x09" "\x1e\x76\xfe\xf7\xd4\xe1\x3f\x3d\x00\x00\x00\x00\x00\x00\x00\x1c\x8a\xcf" "\x3b\xfe\xdf\x7d\xc6\xff\x03\x00\x00\x80\x99\x55\xbf\x57\xaf\xfd\xe5\x99" "\x07\xcb\x0e\xfa\x2c\xb6\x7a\xf9\xb5\x5e\xc4\xd3\xad\xc7\x03\x85\x49\x37" "\xcb\x2c\x75\xdd\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x28\xc9\x70" "\xf7\x1a\xde\x6b\xbd\x88\xb9\x88\x78\x7a\x69\xa9\xaa\xaa\xfa\xab\xa9\x5d" "\x3f\xae\xcf\xbb\xfe\x51\x57\xfa\xf6\x43\xc9\xba\xfe\x25\x0f\x00\x00\xbb" "\x3e\x7e\xa6\x75\x2f\x7f\x2f\x62\x21\x22\xae\xa5\xcf\xfa\x9b\x5b\x5a\x5a" "\xaa\xaa\x85\xc5\xa5\x6a\xa9\x5a\x9c\xcf\xaf\x67\x47\xf3\x0b\xd5\x62\xe3" "\x7d\x6d\x9e\xd6\xcb\xe6\x47\x8f\xf0\x82\x78\x38\xaa\xea\x6f\xb6\xd0\x58" "\xaf\x69\xd2\xfb\xe5\x49\xed\xed\xef\x57\x3f\xd7\xa8\x1a\x3c\x42\xc7\xa6" "\xa3\xc3\xc0\x01\x20\x22\x76\x8f\x46\x5b\x8e\x48\xc7\x4c\x55\x3d\x1b\x5d" "\xbf\xca\xe1\x68\xb0\xff\x1f\x3f\xf6\x7f\x1e\x45\xd7\x3f\xa7\x00\x00\x00" "\xc0\xe1\xab\xaa\xaa\xea\xa5\x8f\xf3\x3e\x99\xce\xf9\xf7\xbb\xee\x14\x00" "\x30\x15\xf9\xf8\xdf\x3e\x2f\xa0\x56\xab\xd5\x6a\xb5\xfa\xf8\xd5\x4d\xd5" "\x78\x77\x9b\x45\x44\x6c\x34\xd7\xa9\x5f\x33\x18\x8e\x1f\x00\x8e\x98\x8d" "\xf8\xa4\xeb\x2e\xd0\x21\xf9\x17\x6d\x18\x11\x27\xba\xee\x04\x30\xd3\x7a" "\x5d\x77\x80\x43\xb1\xb5\xbd\xbe\xd2\x4b\xf9\xf6\x9a\xc7\x83\x34\xbe\x7b" "\xbe\x16\x64\x4f\xfe\x1b\xbd\x9d\xf5\xf2\xfa\xe3\xa6\x0f\xfc\x67\xec\x5f" "\x9b\xda\xd7\x98\x4c\xeb\xe7\x6b\x33\x06\xf1\xdc\x98\xe5\x75\x7f\x9e\x9f" "\x52\x1f\x66\x49\xce\xbf\xdf\xce\xff\xfa\x6e\xfb\x28\x3d\xee\xb3\xe7\x3f" "\x5e\x57\xd7\x18\x1d\x94\x7f\xbd\x9d\xcb\x1d\xf4\xa7\x6b\x39\xff\x41\x3b" "\xff\x96\xe3\x93\x7f\x7f\x6c\xfe\xa5\xca\xf9\x0f\x1f\x2b\xff\x81\xfc\x01" "\x00\x00\x00\x00\x60\x86\xe5\xbf\xff\x2f\x1f\xda\xf9\xdf\xf1\xfa\xad\x6f" "\x39\x0b\xe7\x7f\x4f\x4d\xa9\x0f\x00\x00\x00\x00\x00\x00\x00\xf0\xa4\x6d" "\x6d\xaf\xaf\xe4\xfb\x5e\xf3\xf9\xff\x2f\x8f\x79\x9c\xfb\x3f\x8f\xa7\x9c" "\x7f\x4f\xfe\x45\xca\xf9\xf7\xdb\xf9\xb7\x2e\xc8\x19\x34\xe6\xef\xbd\xf9" "\x20\xff\x7f\x6f\xaf\xaf\x7c\xb8\xf6\xaf\x2f\xe5\xe9\xcc\xe7\x3f\x37\x18" "\xd5\xcf\x3d\xd7\xeb\x0f\x86\xe9\x9a\x9f\x6a\xee\xed\xb8\x19\xb7\x62\x35" "\xce\xed\x7b\xfc\x70\x4f\xfb\xf9\x7d\xed\x73\x7b\xda\x2f\x4c\x68\xbf\xb8" "\xaf\x7d\x54\xb7\x2f\xe6\xf6\x33\xb1\x12\xbf\x8e\x5b\xf1\xd6\xfd\xf6\xf9" "\x09\x17\x46\x2d\x4c\x68\xaf\x26\xb4\xe7\xfc\x07\xf6\xff\x22\xe5\xfc\x87" "\x8d\xaf\x3a\xff\xa5\xd4\xde\x6b\x4d\x6b\xf7\x3e\xe8\xef\xdb\xef\x9b\xd3" "\x71\xcf\x73\xf5\x6f\xff\x7d\x69\xff\xde\x35\x7d\x9b\x31\xb8\xbf\x6d\x4d" "\xf5\xf6\x9d\xee\xa0\x3f\x3b\xff\x27\x4f\x8d\xe2\xb7\x77\x56\x6f\x9f\xf9" "\xfd\x8d\xb5\xb5\xdb\xe7\x23\x4d\xf6\x2c\xbd\x10\x69\xf2\x84\xe5\xfc\xe7" "\xd2\x57\xce\xff\xe5\x17\x77\xdb\xf3\xef\xfd\xe6\xfe\x7a\xef\x83\xd1\x63" "\xe7\x3f\x2b\x36\x63\x78\x60\xfe\x2f\x36\xe6\xeb\xed\x7d\x65\xca\x7d\xeb" "\x42\xce\x7f\x94\xbe\x72\xfe\xf9\x08\x34\x7e\xff\x3f\xca\xf9\x1f\xbc\xff" "\xbf\xda\x41\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x61" "\xaa\xaa\xda\xb9\x45\xf4\x6a\x44\x5c\x49\xf7\xff\x74\x75\x6f\x26\x00\x30" "\x5d\xf9\xf8\x5f\x25\x79\xb9\x5a\xad\x56\xab\xd5\xea\xe3\x57\x37\x55\xe3" "\xbd\xd1\x2c\x22\xe2\xef\xcd\x75\xea\xd7\x0c\x7f\x18\xf7\xcd\x00\x80\x59" "\xf6\xbf\x88\xf8\x67\xd7\x9d\xa0\x33\xf2\x2f\x58\xfe\xbc\xbf\x7a\xfa\x95" "\xae\x3b\x03\x4c\xd5\x9d\xf7\xde\xff\xe5\x8d\x5b\xb7\x56\x6f\xdf\xe9\xba" "\x27\x00\x00\x00\x00\x00\x00\x00\xc0\x67\xb5\xb5\xbd\xde\x5b\x4e\xe3\x60" "\xf7\x9a\xd7\x01\xb5\xc6\x8d\xde\x33\xfe\xeb\x9b\x71\xea\xc8\x8e\xff\xd9" "\x1f\x0d\x76\xc6\x3a\x4f\x1b\xf4\x42\x3c\x7c\xfc\xef\xd3\xf1\xf0\xf1\xbf" "\x87\x13\x9e\x6f\x6e\x42\xfb\x68\x42\xfb\xfc\x84\xf6\x85\x09\xed\x63\x6f" "\xf4\x68\xc8\xe3\xbf\xbe\x90\x32\xce\xf9\x9f\x4c\x1b\x56\xd2\xf8\xaf\x2f" "\x77\xd0\x9f\xae\xe5\xfc\x4f\xa7\xb1\x9e\x73\xfe\x5f\x6b\x3d\xae\x99\x7f" "\xf5\xd7\xa3\x9c\x7f\x7f\x4f\xfe\x67\xd7\xde\xfd\xcd\xd9\x3b\xef\xbd\xff" "\xda\xcd\x77\x6f\xbc\xb3\xfa\xce\xea\xaf\xce\x9f\xbb\x72\xe9\xe2\xe5\x4b" "\x17\x2f\x5f\x3e\xfb\xf6\xcd\x5b\xab\xe7\x76\xff\xed\xb0\xc7\x87\x2b\xe7" "\x9f\xc7\xbe\x76\x1d\x68\x59\x72\xfe\x39\x73\xf9\x97\x25\xe7\xff\xd5\x54" "\xcb\xbf\x2c\x39\xff\x97\x52\x2d\xff\xb2\xe4\xfc\xf3\xeb\x3d\xf9\x97\x25" "\xe7\x9f\xdf\xfb\xc8\xbf\x2c\x39\xff\x57\x52\x2d\xff\xb2\xe4\xfc\xbf\x9e" "\x6a\xf9\x97\x25\xe7\xff\x6a\xaa\xe5\x5f\x96\x9c\xff\x37\x52\x2d\xff\xb2" "\xe4\xfc\x5f\x4b\xb5\xfc\xcb\x92\xf3\x3f\x93\x6a\xf9\x97\x25\xe7\x7f\x36" "\xd5\xf2\x2f\x4b\xce\x3f\x9f\xe1\x92\x7f\x59\x72\xfe\xf9\xca\x06\xf9\x97" "\x25\xe7\x7f\x21\xd5\xf2\x2f\x4b\xce\xff\x62\xaa\xe5\x5f\x96\x9c\xff\xa5" "\x54\xcb\xbf\x2c\x39\xff\xcb\xa9\x96\x7f\x59\x72\xfe\x57\x52\x2d\xff\xb2" "\xe4\xfc\xbf\x99\x6a\xf9\x97\x25\xe7\xff\xad\x54\xcb\xbf\x2c\x39\xff\xd7" "\x53\x2d\xff\xb2\xe4\xfc\xbf\x9d\x6a\xf9\x97\x25\xe7\xff\x9d\x54\xcb\xbf" "\x2c\x39\xff\xef\xa6\x5a\xfe\x65\xc9\xf9\x7f\x2f\xd5\xf2\x2f\x4b\xce\xff" "\xfb\xa9\x96\x7f\x59\x72\xfe\x6f\xa4\x5a\xfe\x65\x79\xf0\xf9\xff\x66\xcc" "\x98\x31\x93\x67\xba\xfe\xcd\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xb4\x4d\xe3\x72\xe2\xae\xb7\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xff\xec\xc0\x81\x00\x00" "\x00\x00\x00\x90\xff\x6b\x23\x54\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x61" "\x07\x0e\x04\x00\x00\x00\x00\x80\xfc\x5f\x1b\xa1\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\x0a\x7b\xf7\x1a\x23\x57\x79\xdf\x0f\xfc\xec\xcd\x5e\x9b\x9b" "\xff\xe1\x4e\x1c\xb0\xcd\xcd\xc0\xc2\xee\xfa\x06\x0e\x31\x98\x24\xe4\x4f" "\x49\x2f\x94\x84\xb4\x69\x49\x8d\xf1\xae\x8d\x13\xdf\xea\xdd\xe5\x26\x54" "\x6f\x0a\x6d\x89\x82\x54\xa4\xf6\x05\x7d\xd1\x34\x89\xd2\x28\x52\x53\x81" "\xaa\x48\x4d\x25\x1a\x21\x35\x52\xfb\xae\x79\xd5\x88\x37\x51\x2b\xe5\x85" "\x5f\x40\xe5\xa0\xa4\x52\xaa\xc0\x56\x67\xe6\x79\x9e\x9d\x99\x1d\xcf\xd9" "\xb5\x77\x60\xe6\x9c\xcf\x27\xc2\x3f\x7b\xe6\xcc\xcc\x33\x67\xce\x9c\xdd" "\xef\x46\xdf\x59\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x80\x46\x9b\x3f\x31\xfd\x67\x03\x59\x96\xe5\xff\xd5" "\xfe\xd8\x90\x65\x17\xe6\x7f\x5f\x97\xed\xcd\xff\x39\xbf\xeb\x83\x5e\x21" "\x00\x00\x00\x70\xbe\xde\xad\xfd\xf9\xdd\x4b\xd2\x05\x7b\x97\x71\xa3\x86" "\x6d\xfe\xf5\xda\x7f\xff\xde\xc2\xc2\xc2\x42\xf6\xf8\x3b\xa7\xdf\xfb\x8b" "\x85\x85\x74\xc5\xa6\x2c\x1b\x5a\x9b\x65\xb5\xeb\xa2\x7f\xfb\xe5\x2f\x16" "\x1a\xb7\x09\x9e\xcf\x46\x07\x06\x1b\xfe\x3d\x58\xf0\xf0\x43\x05\xd7\x0f" "\x17\x5c\x3f\x52\x70\xfd\x9a\x82\xeb\xd7\x16\x5c\x3f\x5a\x70\xfd\x92\x1d" "\xb0\xc4\xba\xfa\xcf\x63\x6a\x77\x76\x43\xed\xaf\x1b\xea\xbb\x34\xbb\x2c" "\x1b\xa9\x5d\x77\x43\x9b\x5b\x3d\x3f\xb0\x76\x70\x30\xfe\x2c\xa7\x66\xa0" "\x76\x9b\x85\x91\x83\xd9\xe1\xec\x48\x36\x9d\x4d\x2c\xb9\xcd\x40\xed\x7f" "\x59\xf6\xfa\xe6\xfc\xb1\x1e\xc8\xe2\x63\x0d\x36\x3c\xd6\xc6\x2c\xcb\xce" "\xfc\xec\xb9\x03\x71\x0d\x03\x61\x1f\xdf\x90\x35\x3d\x58\x4d\xe3\x6b\xf7" "\xf6\x7d\xd9\xa6\x77\x7e\xf6\xdc\x81\x6f\xcf\xbe\x75\x75\xbb\x59\xb8\x1b" "\x96\xac\x34\xcb\xb6\x6e\xc9\xd7\xf9\x42\x96\x2d\xfe\xb8\x2a\x1b\xc8\xd6" "\xa6\x7d\x12\xd7\x39\xd8\xb0\xce\x8d\x6d\xd6\x39\xd4\xb4\xce\x81\xda\xed" "\xf2\xbf\xb7\xae\xf3\xcc\x32\xd7\x19\x9f\xf7\x68\x58\xe7\x8f\x3a\xac\x73" "\x63\xb8\xec\xe9\xeb\xb3\x2c\x9b\xcf\xce\xba\x4d\xab\xe7\xb3\xc1\x6c\x7d" "\xcb\xa3\xa6\xfd\x3d\x5a\x3f\x22\xf2\xfb\xc8\x5f\xca\x0f\x65\xc3\x2b\x3a" "\x4e\x36\x2f\xe3\x38\xc9\x6f\xf3\xd3\xeb\x9b\x8f\x93\xd6\x63\x32\xee\xff" "\xcd\x61\x9f\x0c\x9f\x65\x0d\x8d\x2f\xc7\xdb\x5f\x5e\xb3\x64\xbf\x9f\xeb" "\x71\x92\x3f\xeb\x5e\x38\x56\xf3\xfb\x7e\x28\x7f\xd0\xd1\xd1\xc6\x1f\xad" "\x36\x1d\xab\xf9\x36\xcf\xdd\x78\xf6\x63\xa0\xed\x6b\xd7\xe6\x18\x48\xc7" "\x72\xc3\x31\xb0\xa5\xe8\x18\x18\x5c\x33\x54\x3b\x06\x06\x17\xd7\xbc\xa5" "\xe9\x18\x98\x5c\x72\x9b\xc1\x6c\xa0\xf6\x58\xa7\x6f\xec\x7c\x0c\x8c\xcf" "\x1e\x3d\x31\x3e\xf3\xcc\xb3\xb7\x1f\x3e\xba\xff\xd0\xf4\xa1\xe9\x63\x93" "\x13\xbb\x76\x6c\xdf\xb9\x63\xfb\xce\x9d\xe3\x07\x0f\x1f\x99\x9e\xa8\xff" "\xb9\xb2\x5d\xda\x47\xd6\x67\x83\xe9\x18\xdc\x12\xce\x35\xf1\x18\xbc\xb9" "\x65\xdb\xc6\x43\x72\xe1\x1b\xab\xf7\x3e\x18\xed\x91\xf7\x41\xfe\xdc\x3f" "\x7b\x53\xbe\xa0\x0b\x07\xb3\xb3\x1c\xe3\xf9\x36\x2f\x6c\x3d\xff\xf7\x41" "\xfa\xba\xdf\xf0\x3e\x18\x6e\x78\x1f\xb4\x3d\xa7\xb6\x79\x1f\x0c\x2f\xe3" "\x7d\x90\x6f\x73\x66\xeb\xf2\xbe\x66\x0e\x37\xfc\xd7\x6e\x0d\xdd\x3a\x17" "\x6e\x68\x38\x06\x3e\xc8\xaf\x87\xf9\x63\x3e\x7a\xcb\xd9\xcf\x85\x1b\xc3" "\xba\x5e\xbc\x75\xa5\x5f\x0f\x87\x96\x1c\x03\xf1\x69\x0d\x84\xf7\x5e\x7e" "\x49\xfa\x7e\x6f\xf4\xae\xb0\x5f\x96\x1e\x17\xd7\xe4\x57\x5c\xb0\x26\x9b" "\x9b\x99\x3e\x79\xc7\xd3\xfb\x67\x67\x4f\x4e\x66\x61\xbc\x2f\x2e\x6d\x78" "\xad\x5a\x8f\x97\xf5\x0d\xcf\x29\x5b\x72\xbc\x0c\xae\xf8\x78\xd9\xfb\x77" "\xbf\xba\xe9\x9a\x36\x97\x6f\x08\xfb\x6a\xf4\xb6\xce\xaf\x55\xbe\xcd\x8e" "\xb1\xce\xaf\x55\xed\xec\xde\x7e\x7f\x36\x5d\xba\x2d\x0b\x63\x95\xbd\xdf" "\xfb\xb3\xdd\x57\xb3\x7c\x7f\xa6\x2c\xd1\x61\x7f\xe6\xdb\xbc\x70\xfb\xf9" "\x7f\x2f\x98\x72\x49\xc3\xf9\x6f\xa4\xe8\xfc\x37\x34\x32\x5c\x3f\xff\x0d" "\xa5\xbd\x31\xd2\x74\xfe\x5b\xfa\xd2\x0c\xd5\x56\x96\x65\x67\x6e\x5f\xde" "\xf9\x6f\x24\xfc\xf7\x7e\x9f\xff\x2e\xeb\x91\xf3\x5f\xbe\xaf\x1e\xbd\xa3" "\xf3\x31\x90\x6f\xf3\xe2\xf8\x4a\x8f\x81\xe1\x8e\xe7\xbf\xeb\xc3\x1c\x08" "\xeb\xb9\x25\x24\x86\xd1\x86\xdc\xff\x5e\xed\xfa\xf9\xfa\x61\xda\xf0\x5a" "\x16\x1e\x37\xc3\xc3\x23\xe1\xb8\x19\x8e\x8f\xb8\xb7\xe9\xb8\xd9\xbe\xe4" "\x36\xf9\xbd\xe5\x8f\xbd\x75\xe2\xdc\x8e\x9b\xad\xd7\x37\xbf\x56\x4d\xdf" "\xb7\x94\xf0\xb8\xc9\xf7\xd5\x5f\x4e\x74\x3e\x6e\xf2\x6d\xde\x98\x3c\xff" "\x73\xc7\xba\xf8\xd7\x86\x73\xc7\x9a\xa2\x63\x60\x64\x68\x4d\xbe\xde\x91" "\x74\x10\xd4\xcf\x77\x0b\xeb\xe2\x31\x70\x47\x76\x20\x3b\x9e\x1d\xc9\xa6" "\xd2\x6d\xf2\x57\x39\x7f\xac\xb1\x6d\xcb\x3b\x06\xd6\x84\xff\xde\xef\x73" "\xc7\x55\x3d\x72\x0c\xe4\xfb\xea\x95\x6d\x9d\x8f\x81\x7c\x9b\x1f\x6e\x5f" "\xdd\xef\x9d\xb6\x86\x4b\xd2\x36\x0d\xdf\x3b\xb5\xfe\x7c\xe1\x6c\x99\xff" "\x9a\xe1\xc5\xfb\x6b\xdd\x6d\xab\x9d\xf9\xf3\x75\x7e\x72\x47\xe7\x9f\x0d" "\xe5\xdb\xbc\xb5\x63\xa5\x39\xa3\xf3\x7e\xba\x2d\x5c\x72\x41\x9b\xfd\xd4" "\xfa\xfe\x39\xdb\x31\x3d\x95\xbd\x3f\xfb\xe9\xaa\xb0\xce\x23\x3b\x3b\xff" "\x6c\x2a\xdf\xe6\xb2\x5d\xcb\x3c\x9e\xf2\x93\xfe\x9b\x93\x6f\xd6\x7e\xde" "\x15\x7e\xbe\xfb\x0f\x73\xff\xf1\xbd\xa6\x9f\xfb\xb6\xfb\x99\xf2\x9b\x93" "\x6f\x3e\x38\xfe\xf0\x8f\x57\xb2\x7e\x00\x00\xce\xdd\x7b\xb5\x3f\xe7\xd7" "\xd4\xbf\xd7\x6c\xf8\x7f\xac\x97\xf3\xff\xff\x03\x00\x00\x00\x7d\x21\xe6" "\xfe\xc1\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xa1\x30\x13\xf9\x1f" "\x00\x00\x00\x4a\x23\xe6\xfe\xe1\x30\x93\x8a\xe4\xff\x27\xee\xda\xfd\xea" "\xbb\xa7\xb2\xf4\x69\x80\x0b\x41\xbc\x3e\xee\x86\x87\xee\xa9\x6f\x17\x3b" "\xde\xf3\xe1\xdf\x9b\x16\x16\xe5\x97\x7f\xfc\x5b\x23\xaf\x7e\xe5\xd4\xf2" "\x1e\x7b\x30\xcb\xb2\x5f\x3d\xf8\xe1\xb6\xdb\x3f\x71\x4f\x5c\x57\xdd\x89" "\xb8\xce\x8f\x36\x5f\xbe\xc4\x55\xd7\x2d\xeb\xf1\x1f\x7b\x64\x71\xbb\xc6" "\xcf\x4f\x38\xb3\xbb\x7e\xff\xf1\xf9\x2c\xf7\x30\x88\x5d\xe5\xd7\xc7\xb7" "\xd5\xee\x77\xd3\x33\x93\xb5\xf9\xc6\x83\x59\x6d\x3e\x3c\xff\xe2\xf3\xf5" "\xfb\xaf\xff\x3b\x6e\x7f\x7a\x7b\x7d\xfb\xbf\x0e\x1f\x5a\xb2\xf7\xe0\x40" "\xd3\xed\xb7\x86\xf5\xdc\x10\xe6\xa6\xf0\x99\x32\x0f\xed\x5d\xdc\x0f\xf9" "\x8c\xb7\x7b\x75\xe3\xb5\xff\x72\xe9\xe7\x16\x1f\x2f\xde\x6e\x60\xcb\xc5" "\xb5\xa7\xf9\xca\x1f\xd5\xef\x37\x7e\x46\xd4\xcb\x97\xd6\xb7\x8f\xcf\xfb" "\x6c\xeb\xff\xe7\xaf\x7e\xe7\xd5\x7c\xfb\xa7\x6f\x6c\xbf\xfe\x53\x83\xed" "\xd7\x7f\x3a\xdc\xef\x4f\xc3\xfc\xe5\x9e\xfa\xf6\x8d\xfb\xfc\x2b\x0d\xeb" "\xff\x93\xb0\xfe\xf8\x78\xf1\x76\x77\x7c\xf3\x07\x6d\xd7\xff\xda\x95\xf5" "\xed\x5f\x0b\xc7\xc5\xd7\xc3\x6c\x5d\xff\x7d\x7f\xfe\x91\x77\xdb\xbd\x5e" "\xf1\x71\xf6\xde\x5d\xbf\x5d\x7c\xfc\x89\xff\xd9\x51\xbb\x5d\xbc\xbf\x78" "\xff\xad\xeb\x1f\x3d\x35\xd9\xb4\x3f\x5a\xef\xff\x8d\x77\xea\xf7\xb3\xe7" "\xc9\x9f\x0f\x35\x6e\x1f\x2f\x8f\x8f\x13\x3d\x76\x77\xf3\xf1\x3d\x10\x5e" "\xdf\xa6\x1e\x79\x96\x65\xdf\xf9\xd3\xac\x69\x3f\x67\x1f\xab\xdf\xee\x9f" "\x5a\xd6\x1f\xef\xef\xc4\xdd\xed\xd7\x7f\x5b\xcb\x3a\x4f\x0c\x5c\x57\xbb" "\xfd\xe2\xf3\xd9\xd0\xf4\xbc\xbe\xf6\xb7\xdb\xda\x3e\xdf\xb8\x9e\xbd\x7f" "\xbf\xa1\xe9\xf9\xbc\x7c\x7f\xd8\x7f\xef\x8c\xff\x30\xbf\xdf\xd3\x0f\x87" "\xe3\x31\x5c\xff\xbf\x3f\xaa\xdf\x5f\xeb\x67\x99\xbe\x76\x7f\xf3\xf9\x26" "\x6e\xff\xf5\x0d\xf5\xf7\x6d\xbc\xbf\xf1\x96\xf5\xbf\xdc\xb2\xfe\xf9\xeb" "\xf2\x7d\x57\xbc\xfe\x07\xde\xa9\xaf\xff\xb5\x7b\xd7\x36\xad\x7f\xef\xa7" "\xc2\xf1\xf4\x40\x7d\x16\xad\xff\xd0\xdf\x5c\xd2\x74\xfb\x6f\x7c\xbb\xfe" "\x7a\x9c\x7c\x6a\xec\xd8\xf1\x99\xb9\xc3\x53\x0d\x7b\xb5\xf1\x7d\xbc\x76" "\x74\xdd\xfa\x0b\x2e\xbc\xe8\xe2\x4b\xc2\xb9\xb4\xf5\xdf\xfb\x8e\xcf\x3e" "\x31\x7d\x72\xd3\xc4\xa6\x89\x2c\xdb\xd4\x87\x1f\x19\xd8\xed\xf5\x7f\x33" "\xcc\xff\xae\x8f\xf9\xd5\x7f\x84\xba\x1f\xff\xbc\x7e\xdc\xbd\xf4\xe9\xfa" "\xd7\xad\x9b\x7f\x51\xff\xf7\xcb\xe1\xf2\xc7\xc2\xeb\x19\xbf\x3e\x7e\xed" "\xaf\x46\x9a\x8e\xd7\xd6\xd7\x7d\xfe\xde\xfa\x3c\xdf\xf5\xdf\x1a\xd6\xb1" "\x5c\x57\x7e\xf5\xbf\xae\x5b\xd6\x86\xa7\xbf\xf0\xfa\xdc\x3f\xfe\xf1\x5b" "\xad\xdf\x17\xc4\xe7\x73\xe2\xf2\xd1\xda\xf3\x7b\x65\xf3\x15\xb5\xeb\x06" "\xde\xa8\x5f\xdf\x7a\xbe\x2a\xf2\x9f\x97\x37\xbf\xaf\x7f\x32\x3c\x51\x9b" "\xdf\x0f\xfb\x75\x21\x7c\x32\xf3\x96\x2b\xea\x8f\xd7\x7a\xff\xf1\xb3\x49" "\x5e\xfa\x4c\xfd\xfd\x1b\xbf\x93\x8b\xb7\xcf\x5a\x3e\x4f\x64\xc3\x50\xf3" "\xf3\x38\xdf\xf5\xff\x24\x7c\x1f\xf3\x83\xab\x9a\xcf\x7f\xf1\xf8\xf8\xfe" "\xa9\x96\x4f\x73\xde\x90\x0d\xe4\x4b\x98\x0f\xe7\x87\x6c\xbe\x7e\x7d\xdc" "\x2a\xee\xef\x97\xce\x5c\xd1\xf6\xf1\xe2\xe7\xf0\x64\xf3\x57\xaf\x64\x99" "\x67\x35\xf3\xcc\xcc\xf8\x91\xc3\xc7\xe6\x9e\x1e\x9f\x9d\x9e\x99\x1d\x9f" "\x79\xe6\xd9\x7d\x47\x8f\xcf\x1d\x9b\xdd\x57\xfb\xec\xd2\x7d\x5f\x2c\xba" "\xfd\xe2\xfb\x7b\x7d\xed\xfd\x3d\x35\xbd\x6b\x47\x56\x7b\xb7\x1f\xaf\x8f" "\x2e\xfb\xa0\xd7\x7f\xe2\x91\x03\x53\x77\x4e\xdc\x34\x35\x7d\x70\xff\xdc" "\xc1\xd9\x47\x4e\x4c\x9f\x3c\x74\x60\x66\xe6\xc0\xf4\xd4\xcc\x4d\xfb\x0f" "\x1e\x9c\x7e\xaa\xe8\xf6\x87\xa7\xf6\x4c\x6e\xdb\xbd\xfd\xce\x6d\x63\x87" "\x0e\x4f\xed\xb9\x6b\xf7\xee\xed\xbb\xc7\x0e\x1f\x3b\x9e\x2f\xa3\xbe\xa8" "\x02\xbb\x26\xbe\x34\x76\xec\xe4\xbe\xda\x4d\x66\xf6\xec\xd8\x3d\xb9\x73" "\xe7\x8e\x89\xb1\xa3\xc7\xa7\xa6\xf7\xdc\x39\x31\x31\x36\x57\x74\xfb\xda" "\xd7\xa6\xb1\xfc\xd6\x4f\x8e\x9d\x9c\x3e\xb2\x7f\xf6\xf0\xd1\xe9\xb1\x99" "\xc3\xcf\x4e\xef\x99\xdc\xbd\x6b\xd7\xb6\xc2\x4f\x7f\x3c\x7a\xe2\xe0\xcc" "\xa6\xf1\x93\x73\xc7\xc6\xe7\x66\xa6\x4f\x8e\xd7\x9f\xcb\xa6\xd9\xda\xc5" "\xf9\xd7\xbe\xa2\xdb\x53\x0d\x33\xc7\xc3\xf9\xae\xc5\x40\xf8\xee\xfc\xf3" "\xb7\xed\x4a\x9f\x8f\x9b\xfb\xd6\x97\xcf\x7a\x57\xf5\x4d\x9a\xbf\x3d\xcd" "\xde\x0e\x9f\x05\x15\xbf\xbe\x15\xfd\x3b\xe6\xfe\x91\x30\x93\x8a\xe4\x7f" "\x00\x00\x00\xe8\x63\x03\xcb\xfd\x01\x7a\xcc\xfd\xe1\x83\xff\x17\xaf\x90" "\xff\x01\x00\x00\xa0\x34\x62\xee\x5f\x1b\x66\x22\xff\x03\x00\x00\x40\x69" "\xc4\xdc\x3f\x1a\x66\x52\x91\xfc\xbf\xb4\xff\xdf\xb8\x13\xf4\xff\xf5\xff" "\xf5\xff\xf5\xff\x17\xe9\xff\xeb\xff\x9f\x0b\xfd\x7f\xfd\xff\x4e\xf4\xff" "\xf5\xff\xfb\x79\xfd\xfa\xff\xfa\xff\x14\xeb\xb5\xfe\x7f\xcc\xfd\xeb\xb2" "\xac\x92\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\xf5\x61\x26\xf2\x3f\x00\x00" "\x00\x94\x46\xcc\xfd\x17\x84\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x5f" "\x18\x66\x52\x91\xfc\xef\xf7\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xb7\xf4" "\xff\xeb\x1f\x0c\xab\xff\xbf\x4a\xf4\xff\xf5\xff\x3b\xa9\x5e\xff\xbf\xbe" "\x1a\xfd\xff\xd5\xf1\x41\xaf\x5f\xff\x5f\xff\x9f\x62\xbd\xd6\xff\x8f\xb9" "\xff\xa2\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\x2f\x0e\x33\x91" "\xff\x01\x00\x00\xa0\x34\x62\xee\xbf\x24\xcc\x44\xfe\x07\x00\x00\x80\xd2" "\x88\xb9\x7f\x43\x98\x49\x45\xf2\xbf\xfe\xbf\xfe\x7f\xff\xf7\xff\xef\xcd" "\xb2\x4c\xff\x5f\xff\xff\x5c\xfb\xff\xc3\x8b\x8f\xeb\xf7\xff\x77\x85\xfe" "\xbf\xfe\x7f\xf0\x78\xbb\x0b\xab\xd7\xff\xf7\xfb\xff\x57\xd3\x07\xbd\x7e" "\xfd\x7f\xfd\x7f\x8a\xf5\x5a\xff\x3f\xe6\xfe\xff\x17\x66\x52\x91\xfc\x0f" "\x00\x00\x00\x55\x10\x73\xff\x87\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98" "\xfb\x2f\x0d\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xbf\x2c\xcc\xa4\x22" "\xf9\x5f\xff\x5f\xff\xbf\xff\xfb\xff\x7e\xff\xbf\xfe\xff\x2a\xff\xfe\xff" "\x40\xff\x7f\x75\xe8\xff\xeb\xff\x77\xa2\xff\xaf\xff\xdf\xcf\xeb\xd7\xff" "\xd7\xff\xa7\x58\xaf\xf5\xff\x63\xee\xbf\x3c\xcc\xa4\x22\xf9\x1f\x00\x00" "\x00\xaa\x20\xe6\xfe\x2b\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xaf" "\x0c\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xbf\x2a\xcc\xa4\x22\xf9\x5f" "\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x7f\xf5\x2d\xbe\xcb\xf5\xff" "\xf5\xff\x3b\xd1\xff\xd7\xff\xef\xe7\xf5\xeb\xff\xeb\xff\x53\xac\xd7\xfa" "\xff\x31\xf7\x5f\x1d\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\x35" "\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x1f\x0e\x33\x91\xff\x01\x00" "\x00\xa0\x34\x62\xee\xdf\x18\x66\x52\x91\xfc\xaf\xff\xaf\xff\xaf\xff\xaf" "\xff\xaf\xff\xaf\xff\xdf\x4d\xfa\xff\xfa\xff\x9d\xe8\xff\xeb\xff\xf7\xf3" "\xfa\xf5\xff\xf5\xff\x29\xd6\x6b\xfd\xff\x98\xfb\x3f\x12\x66\x52\x91\xfc" "\x0f\x00\x00\x00\x55\x10\x73\xff\xb5\x61\x26\xf2\x3f\x00\x00\x00\x94\x46" "\xcc\xfd\xd7\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x6f\x0a\x33\xa9" "\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\x26\xfd\x7f" "\xfd\xff\x4e\xf4\xff\xf5\xff\xfb\x79\xfd\xfa\xff\xfa\xff\x14\xeb\xb5\xfe" "\x7f\xcc\xfd\x9b\xc3\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xdf\x12" "\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x7f\x7d\x98\x89\xfc\x0f\x00\x00" "\x00\xa5\x11\x73\xff\x0d\x61\x26\x15\xc9\xff\xe7\xdc\xff\x3f\xa5\xff\xdf" "\x48\xff\xbf\xfd\xfa\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x3b" "\xd1\xff\xd7\xff\xef\xe7\xf5\xeb\xff\xeb\xff\x53\xac\xd7\xfa\xff\x31\xf7" "\xdf\x18\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\x4d\x61\x26\xf2" "\x3f\x00\x00\x00\x94\x46\xcc\xfd\x37\x87\x99\xc8\xff\x00\x00\x00\x50\x1a" "\x31\xf7\x6f\x0d\x33\xa9\x48\xfe\xf7\xfb\xff\xf5\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\xbb\x49\xff\x5f\xff\xbf\x13\xfd\x7f\xfd\xff\x7e\x5e\xbf\xfe" "\xbf\xfe\x3f\xc5\x7a\xad\xff\xbf\x35\xcb\xd6\xe4\x5f\x2d\x6e\xa9\xdd\xba" "\x7a\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\x5b\xc3\x4c\xe4\x7f\x00\x00\x00" "\x28\x8d\x98\xfb\x6f\x0b\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\x1f\x0b" "\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\x26" "\xfd\x7f\xfd\xff\x4e\xf4\xff\xf5\xff\xfb\x79\xfd\xfa\xff\xfa\xff\x14\xeb" "\xb5\xfe\x7f\xcc\xfd\xb7\x87\x99\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc" "\x7f\x47\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x78\x98\x89\xfc\x0f" "\x00\x00\x00\xa5\x11\x73\xff\x44\x98\x49\x45\xf2\xbf\xfe\xbf\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x37\xe9\xff\xeb\xff\x77\xa2\xff\xaf\xff\xdf" "\xcf\xeb\xd7\xff\xd7\xff\xa7\x58\xaf\xf5\xff\x63\xee\x9f\x0c\x33\xa9\x48" "\xfe\x07\x00\x00\x80\x2a\x88\xb9\x7f\x5b\x98\x89\xfc\x0f\x00\x00\x00\xa5" "\x11\x73\xff\xf6\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x1d\x61\x26" "\x15\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xdd\xa4\xff" "\xaf\xff\xdf\x89\xfe\xbf\xfe\x7f\x3f\xaf\x5f\xff\x5f\xff\x9f\x62\xbd\xd6" "\xff\x8f\xb9\x7f\x67\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\xbb" "\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xef\x0c\x33\x91\xff\x01\x00" "\x00\xa0\x34\x62\xee\xbf\x2b\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\x5f" "\xff\x5f\xff\x5f\xff\xbf\x9b\xf4\xff\xf5\xff\x3b\xd1\xff\xd7\xff\xef\xe7" "\xf5\xeb\xff\xeb\xff\x53\xac\xd7\xfa\xff\x31\xf7\xef\x0e\x33\xa9\x48\xfe" "\x07\x00\x00\x80\x2a\x88\xb9\xff\xa3\x61\x26\xf2\x3f\x00\x00\x00\x94\x46" "\xcc\xfd\x77\x87\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x7f\x2c\xcc\xa4" "\x22\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x1b\x46\xc2" "\xd4\xff\xd7\xff\xef\x44\xff\x5f\xff\xbf\x9f\xd7\xaf\xff\xaf\xff\x4f\xb1" "\x5e\xeb\xff\xc7\xdc\xbf\x27\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6" "\xfe\x7b\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xef\x0d\x33\x91\xff" "\x01\x00\x00\xa0\x34\x62\xee\xdf\x1b\x66\x52\x91\xfc\xaf\xff\xaf\xff\xaf" "\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x4d\xfa\xff\xfa\xff\x9d\xe8\xff\xeb\xff" "\xf7\xf3\xfa\xf5\xff\xf5\xff\x29\xd6\x6b\xfd\xff\x98\xfb\xef\x0b\x33\xa9" "\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\xe3\x61\x26\xf2\x3f\x00\x00\x00" "\x94\x46\xcc\xfd\x9f\x08\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xff\x64" "\x98\x49\x45\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x37" "\xe9\xff\xeb\xff\x77\xa2\xff\xaf\xff\xdf\xcf\xeb\xd7\xff\xd7\xff\xa7\x58" "\xaf\xf5\xff\x63\xee\xbf\x3f\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6" "\xfe\x4f\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xff\xff\x30\x13\xf9" "\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x07\xc2\x4c\x2a\x92\xff\xf5\xff\xf5\xff" "\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xbb\x49\xff\x5f\xff\xbf\x13\xfd\x7f\xfd" "\xff\x7e\x5e\xbf\xfe\xbf\xfe\x3f\xc5\x7a\xad\xff\x1f\x73\xff\xaf\x85\x99" "\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\xff\x60\x98\x89\xfc\x0f\x00\x00" "\x00\xa5\x11\x73\xff\xa7\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x7f" "\x3d\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf" "\x9b\xf4\xff\xf5\xff\x3b\xd1\xff\xd7\xff\xef\xe7\xf5\xeb\xff\xeb\xff\x53" "\xac\xd7\xfa\xff\x31\xf7\xff\x46\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41" "\xcc\xfd\xbf\x19\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xff\x5b\x61\x26" "\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x0f\x85\x99\x54\x24\xff\xeb\xff\xeb" "\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x77\x93\xfe\xbf\xfe\x7f\x27\xfa\xff" "\xfa\xff\xfd\xbc\x7e\xfd\x7f\xfd\x7f\x8a\xf5\x5a\xff\x3f\xe6\xfe\xdf\x0e" "\x33\xa9\x48\xfe\x07\x00\x00\x80\xb2\xf9\xee\x45\x4b\x2f\x8b\xb9\xff\xe1" "\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xcf\x84\x99\xc8\xff\x00\x00" "\x00\x50\x1a\x31\xf7\x7f\x36\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\x5f" "\xff\x5f\xff\x5f\xff\xbf\x9b\xf4\xff\xf5\xff\x3b\xd1\xff\xd7\xff\xef\xe7" "\xf5\xeb\xff\xeb\xff\x53\xac\x7b\xfd\xff\x75\xb5\x33\xfa\x4a\xfb\xff\x31" "\xf7\x3f\x12\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\xe7\xc2\x4c" "\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x7f\x27\xcc\x44\xfe\x07\x00\x00\x80" "\xd2\x88\xb9\xff\x77\xc3\x4c\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff" "\xf5\xff\xf5\xff\xcf\xcb\x9a\xce\x57\xeb\xff\xeb\xff\x77\xa2\xff\xaf\xff" "\xdf\xcf\xeb\xd7\xff\xd7\xff\xa7\x58\xaf\xfd\xfe\xff\x98\xfb\x3f\x1f\x66" "\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\xef\x85\x99\xc8\xff\x00\x00" "\x00\x50\x1a\x31\xf7\xff\x7e\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff" "\xa3\x61\x26\x15\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff" "\xdd\xa4\xff\xaf\xff\xdf\x89\xfe\xbf\xfe\x7f\x3f\xaf\x5f\xff\x5f\xff\x9f" "\x62\xbd\xd6\xff\x8f\xb9\xff\x0b\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05" "\x31\xf7\xff\x41\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xbe\x30\x13" "\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xc7\xc2\x4c\x2a\x92\xff\xf5\xff\xf5" "\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xbb\x49\xff\x5f\xff\xbf\x13\xfd\x7f" "\xfd\xff\x7e\x5e\xbf\xfe\xbf\xfe\x3f\xc5\x7a\xad\xff\x1f\x73\xff\xfe\x30" "\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\x1f\x0f\x33\x91\xff\x01\x00" "\x00\xa0\x34\x62\xee\x3f\x10\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x3f" "\x15\x66\x52\x91\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf" "\x4d\xfa\xff\xfa\xff\x9d\xe8\xff\xeb\xff\xf7\xf3\xfa\xf5\xff\xf5\xff\x29" "\xd6\x6b\xfd\xff\x98\xfb\xa7\xc3\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62" "\xee\x3f\x18\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x7f\x28\xcc\x44\xfe" "\x07\x00\x00\x80\xd2\x88\xb9\xff\x89\x30\x93\x8a\xe4\x7f\xfd\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\x6e\xd2\xff\xd7\xff\xef\x44\xff\x5f\xff" "\xbf\x9f\xd7\xaf\xff\xaf\xff\x4f\xb1\xd5\xec\xff\x87\x53\x64\x53\xda\x5b" "\x69\xff\x3f\xe6\xfe\xc3\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7" "\x7f\x31\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x4b\x61\x26\xf2\x3f" "\x00\x00\x00\x94\x46\xcc\xfd\x47\xc2\x4c\x2a\x92\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\xf5\xff\xf5\xff\xbb\x49\xff\x5f\xff\xbf\x13\xfd\x7f\xfd\xff" "\x7e\x5e\xff\x89\x47\x0e\x4c\xc5\x17\x4f\xff\x5f\xff\x9f\xf6\x56\xb3\xff" "\x5f\xfb\xb3\xf9\xdb\xd3\x15\xf7\xff\x63\xee\x3f\x1a\x66\x52\x91\xfc\x0f" "\x00\x00\x00\x55\x10\x73\xff\xb1\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6" "\xfe\xe3\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x27\xc2\x4c\x2a\x92" "\xff\x2b\xd6\xff\x1f\x89\x7f\xd1\xff\xaf\xd3\xff\xd7\xff\xcf\xf4\xff\xf5" "\xff\xbb\x4c\xff\x5f\xff\xbf\x13\xfd\x7f\xfd\xff\x7e\x5e\xbf\xdf\xff\xaf" "\xff\x4f\xb1\x5e\xeb\xff\xc7\xdc\xff\x87\x61\x26\x15\xc9\xff\x00\x00\x00" "\x50\x05\x31\xf7\x9f\x0c\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\x9f\x09" "\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\x9f\x0d\x33\xa9\x48\xfe\xaf\x58" "\xff\x3f\xd1\xff\xaf\xd3\xff\xd7\xff\xcf\xf4\xff\xf5\xff\xbb\x4c\xff\x5f" "\xff\xbf\x13\xfd\x7f\xfd\xff\x7e\x5e\xbf\xfe\xbf\xfe\x3f\xc5\x7a\xad\xff" "\x1f\x73\xff\x5c\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\x4f\x86" "\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x3f\x15\x66\x22\xff\x03\x00\x00" "\xff\xc7\xde\x5d\x2d\x79\x76\x55\x71\x1c\xef\x41\x42\xb8\xe3\x11\xb8\xe4" "\x11\xb8\xe1\xbd\xd0\xe0\xee\xee\x12\xdc\xdd\xdd\xdd\xdd\x5d\x82\x3b\x09" "\x52\x0c\x45\x7a\xad\x55\x74\x67\x72\xce\x74\x33\xa7\xff\xfb\xec\xf5\xf9" "\xdc\xac\x82\xea\x82\x3d\x95\x9a\x54\xfd\x6a\xf2\xcd\x01\xa6\x91\xbb\xff" "\xde\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x96" "\xf4\xff\xfa\xff\x25\xfa\x7f\xfd\xff\x9e\xdf\xaf\xff\xd7\xff\xb3\x6e\xb4" "\xfe\x3f\x77\xff\x7d\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\x7f\xdf" "\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xbf\x5f\xdc\x62\xff\x03\x00\x00" "\xc0\x34\x72\xf7\xdf\x3f\x6e\x69\xb2\xff\xf5\xff\xa3\xf7\xff\xd7\x1d\xe9" "\xff\xf5\xff\xfa\xff\x63\xfa\x7f\xfd\xff\x95\xe8\xff\xf5\xff\x47\xfa\xff" "\x73\x3b\x74\x3f\xbf\xf7\xf7\xeb\xff\xf5\xff\xac\x1b\xad\xff\xcf\xdd\xff" "\x80\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xdf\x10\xb7\xd8\xff\x00" "\x00\x00\x30\x8d\xdc\xfd\x0f\x8c\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe" "\x07\xc5\x2d\x4d\xf6\xbf\xfe\x7f\xf4\xfe\xdf\xf7\xff\xf5\xff\xfa\x7f\xfd" "\xbf\xfe\x7f\x89\xfe\x5f\xff\x7f\xa4\xff\x3f\xb7\x43\xf7\xf3\x7b\x7f\xbf" "\xfe\x5f\xff\xcf\xba\xd1\xfa\xff\xdc\xfd\x0f\x8e\x5b\x9a\xec\x7f\x00\x00" "\x00\xe8\x20\x77\xff\x43\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\xa1" "\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xb0\xb8\xa5\xc9\xfe\xd7\xff" "\xeb\xff\x77\xd0\xff\xd7\x6f\x4c\xfd\xff\x31\xfd\xbf\xfe\x7f\x4f\xf4\xff" "\xfa\xff\x25\xfa\x7f\xfd\xff\x9e\xdf\xaf\xff\xd7\xff\xb3\x6e\xb4\xfe\x3f" "\x77\xff\xc3\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x88\xb8\xc5" "\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x64\xdc\x62\xff\x03\x00\x00\xc0\x34" "\x72\xf7\x3f\x2a\x6e\x69\xb2\xff\xf5\xff\xfa\xff\x1d\xf4\xff\xbe\xff\xaf" "\xff\xbf\x95\xfe\x5f\xff\x7f\x25\xfa\x7f\xfd\xff\x91\xfe\xff\xdc\x0e\xdd" "\xcf\xef\xfd\xfd\xfa\x7f\xfd\x3f\xeb\x46\xeb\xff\x73\xf7\x3f\x3a\x6e\x69" "\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x8f\x89\x5b\xec\x7f\x00\x00\x00\x98" "\x46\xee\xfe\xc7\xc6\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\xe3\xe2\x96" "\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x2d\x5d\x74\xff" "\x7f\x69\xa3\x7f\x03\x80\xfe\xff\x98\xfe\xff\x24\xfd\xff\x99\xfa\xf9\x5b" "\xae\xc9\xa3\x0f\xf7\xfe\xdb\xd0\xff\xeb\xff\x59\x37\x5a\xff\x9f\xbb\xff" "\xf1\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x42\xdc\x62\xff\x03" "\x00\x00\xc0\x34\x72\xf7\x3f\x31\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb" "\x9f\x14\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x6f" "\xc9\xf7\xff\xf5\xff\x4b\xf4\xff\xad\xfa\xff\x6b\xee\xd0\xef\xd7\xff\xeb" "\xff\x59\x37\x5a\xff\x9f\xbb\xff\xc9\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d" "\xe4\xee\x7f\x4a\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x3f\x35\x6e\xb1" "\xff\x01\x00\x00\x60\x1a\xb9\xfb\x9f\x16\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\xd7\xff\x6f\x49\xff\xaf\xff\x5f\xa2\xff\xd7\xff\xef" "\xf9\xfd\xfa\x7f\xfd\x3f\xeb\x46\xeb\xff\x73\xf7\x3f\x3d\x6e\x69\xb2\xff" "\x01\x00\x00\xa0\x83\xdc\xfd\xcf\x88\x5b\xec\x7f\x00\x00\x00\x98\x46\xee" "\xfe\x67\xc6\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\xb3\xe2\x96\x26\xfb" "\x5f\xff\xdf\xa4\xff\x8f\xff\x3f\xfd\xff\xc9\xbf\x5e\xfa\xff\x93\xef\xd4" "\xff\xeb\xff\xb7\xa0\xff\xd7\xff\x2f\xd1\xff\xeb\xff\xf7\xfc\x7e\xfd\xbf" "\xfe\x9f\x75\xa3\xf5\xff\xb9\xfb\x9f\x1d\xb7\x34\xd9\xff\x00\x00\x00\xd0" "\x41\xee\xfe\xe7\xc4\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x73\xe3\x16" "\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x79\x71\x4b\x93\xfd\xaf\xff\x6f\xd2" "\xff\xfb\xfe\xbf\xfe\x5f\xff\xaf\xff\x3f\x10\xfd\xbf\xfe\x7f\x89\xfe\x5f" "\xff\xbf\xe7\xf7\xeb\xff\xf5\xff\xed\xdd\x61\xfd\x47\x46\xeb\xff\x73\xf7" "\x3f\x3f\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x2f\x88\x5b\xec\x7f" "\x00\x00\x00\x98\x46\xee\xfe\x17\xc6\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77" "\xff\x8b\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xcf\xd4\xff\xdf" "\x51\xff\xaf\xff\x3f\x1b\xfd\xbf\xfe\x7f\x89\xfe\x5f\xff\xbf\xe7\xf7\xeb" "\xff\xf5\xff\xac\x1b\xad\xff\xcf\xdd\x7f\x63\xdc\xd2\x64\xff\x03\x00\x00" "\x40\x07\xb9\xfb\x5f\x1c\xb7\x5c\xdd\xfe\xbf\xe1\x5e\xdb\x3c\x0b\x00\x00" "\x00\xb8\x86\x72\xf7\xbf\x24\x6e\xf1\xe7\xff\x00\x00\x00\x30\x8d\xdc\xfd" "\x2f\x8d\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xf7\xfd\x7f\xfd\xff" "\x96\xf4\xff\xfa\xff\x25\xfa\x7f\xfd\xff\x9e\xdf\xaf\xff\xd7\xff\xb3\x6e" "\xb4\xfe\x3f\x77\xff\xcb\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff" "\xf2\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x45\xdc\x62\xff\x03\x00" "\x00\xc0\x34\x72\xf7\xbf\x32\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\x7f\xb4\xfe\xff\xd2\x9d\x8e\x7f\xdd\xfa\x7f\xfd\xff\xd5\xd0\xff\xeb\xff" "\x8f\xf4\xff\xe7\x76\xe8\x7e\x7e\xef\xef\xd7\xff\xeb\xff\x59\x37\x5a\xff" "\x9f\xbb\xff\x55\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x75\xdc" "\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xbf\x26\x6e\xb1\xff\x01\x00\x00\x60" "\x1a\xb9\xfb\x5f\x1b\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x3f\x5a" "\xff\xef\xfb\xff\xfa\xff\xb3\xd0\xff\xeb\xff\x8f\xf4\xff\xe7\x76\xe8\x7e" "\x7e\xef\xef\xd7\xff\xeb\xff\x59\x37\x5a\xff\x9f\xbb\xff\x75\x71\x4b\x93" "\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x7d\xdc\x62\xff\x03\x00\x00\xc0\x34" "\x72\xf7\xbf\x21\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\xdf\x18\xb7\x34" "\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x6f\x49\xff\x7f\xd1" "\xfd\xff\x8d\x8b\x3f\xaf\xff\x3f\xf9\xeb\xd0\xff\xeb\xff\xf5\xff\xfa\x7f" "\xb6\x35\x5a\xff\x9f\xbb\xff\x4d\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4" "\xee\x7f\x73\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xbf\x25\x6e\xb1\xff" "\x01\x00\x00\x60\x1a\xb9\xfb\xdf\x1a\xb7\x34\xd9\xff\xdd\xfb\xff\xeb\xf5" "\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\x29\xfd\xbf\xef\xff\x2f\xd1\xff\xeb" "\xff\xf7\xfc\x7e\xfd\xbf\xfe\x9f\x75\xa3\xf5\xff\xb9\xfb\xdf\x16\xb7\x34" "\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xb7\xc7\x2d\xf6\x3f\x00\x00\x00\x4c" "\x23\x77\xff\x3b\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x9d\x71\x4b" "\x93\xfd\xdf\xbd\xff\x3f\xd2\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xa6\xf4" "\xff\xfa\xff\x25\xfa\x7f\xfd\xff\x9e\xdf\xaf\xff\xd7\xff\xb3\x6e\xb4\xfe" "\x3f\x77\xff\xbb\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xee\xb8" "\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x4f\xdc\x62\xff\x03\x00\x00\xc0" "\x34\x72\xf7\xbf\x37\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\xaf\xff\xdf\xd2\x6e\xfb\xff\x7b\xdc\xf5\xc4\x7f\xd4\xff\x1f\xd3\xff\x9f" "\xa4\xff\xdf\x7f\xff\x7f\xf9\xb2\xfe\x5f\xff\xcf\x96\x46\xeb\xff\x73\xf7" "\xbf\x2f\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xef\x8f\x5b\xec\x7f" "\x00\x00\x00\x98\x46\xee\xfe\x0f\xc4\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77" "\xff\x07\xe3\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff" "\x2d\xed\xb6\xff\x3f\x45\xff\x7f\x4c\xff\x7f\x92\xfe\x7f\xff\xfd\xbf\xef" "\xff\x5f\x48\xff\x7f\xcf\xcd\xfe\xe6\xcc\x48\xae\xbb\xd2\x7f\x39\x5a\xff" "\x9f\xbb\xff\x43\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x70\xdc" "\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x7f\x24\x6e\xb1\xff\x01\x00\x00\x60" "\x1a\xb9\xfb\x3f\x1a\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\x6f\x49\xff\xaf\xff\x5f\xa2\xff\xd7\xff\xef\xf9\xfd\xfa\x7f\xdf" "\xff\x67\xdd\x68\xfd\x7f\xee\xfe\x8f\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74" "\x90\xbb\xff\xe3\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\x89\xb8\xc5" "\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x64\xdc\xd2\x64\xff\xeb\xff\xcf\xd5" "\xff\x5f\x3a\x1d\x68\xea\xff\xaf\xfc\x7e\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7" "\xff\xeb\xff\x97\xe8\xff\xf5\xff\x7b\x7e\xbf\xfe\x5f\xff\xcf\xba\xd1\xfa" "\xff\xdc\xfd\x9f\x8a\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xa7\xe3" "\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x33\x71\x8b\xfd\x0f\x00\x00\x00" "\xd3\xc8\xdd\xff\xd9\xb8\xa5\xc9\xfe\xd7\xff\xfb\xfe\xbf\xfe\x5f\xff\xaf" "\xff\xd7\xff\x6f\x49\xff\xaf\xff\x5f\xa2\xff\xd7\xff\xef\xf9\xfd\xfa\x7f" "\xfd\x3f\xeb\x46\xeb\xff\x73\xf7\x7f\x2e\x6e\x69\xb2\xff\x01\x00\x00\xa0" "\x83\xdc\xfd\x9f\x8f\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x2f\xc4\x2d" "\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x17\xe3\x96\x26\xfb\x5f\xff\xaf\xff" "\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x2d\xe9\xff\xf5\xff\x4b\xf4\xff\xfa\xff" "\x3d\xbf\x5f\xff\xaf\xff\x67\xdd\x68\xfd\x7f\xee\xfe\x2f\xc5\x2d\x4d\xf6" "\x3f\x00\x00\x00\x74\x90\xbb\xff\xcb\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8" "\xdd\xff\x95\xb8\xe5\x7f\xf6\xff\xe9\x7f\x56\x14\x00\x00\x00\xd8\x97\xdc" "\xfd\x5f\x8d\x5b\x9a\xfc\xf9\xbf\xfe\x5f\xff\x7f\xa5\xfe\xff\x6e\xfa\x7f" "\xfd\xff\xad\xf4\xff\xfa\xff\xff\x9f\xfe\x5f\xff\xbf\x44\xff\xaf\xff\xdf" "\xf3\xfb\xf5\xff\xfa\x7f\xd6\x8d\xd6\xff\xe7\xee\xff\x5a\xdc\xd2\x64\xff" "\x03\x00\x00\x40\x07\xb9\xfb\xbf\x1e\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc" "\xfd\xdf\x88\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x6f\xc6\x2d\x4d\xf6" "\xbf\xfe\x5f\xff\xef\xfb\xff\xfa\x7f\xfd\xbf\xfe\x7f\x4b\xfa\x7f\xfd\xff" "\x12\xfd\xbf\xfe\x7f\xcf\xef\xd7\xff\xeb\xff\x59\x37\x5a\xff\x9f\xbb\xff" "\x5b\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x76\xdc\x62\xff\x03" "\x00\x00\xc0\x34\x72\xf7\x7f\x27\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb" "\xbf\x1b\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x6f" "\x49\xff\xaf\xff\x5f\xa2\xff\xd7\xff\xef\xf9\xfd\xfa\x7f\xfd\x3f\xeb\x46" "\xeb\xff\x73\xf7\x7f\x2f\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xdf" "\x8f\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x1f\xc4\x2d\xf6\x3f\x00\x00" "\x00\x4c\x23\x77\xff\x0f\xe3\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff" "\x07\xea\xff\x6f\x3a\xd2\xff\xeb\xff\xcf\x48\xff\x7f\xba\xff\xbf\xf3\xe2" "\xcf\xeb\xff\x4f\xfe\x3a\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x6d\x8d\xd6\xff" "\xe7\xee\xff\x51\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x7f\x1c\xb7" "\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x3f\x89\x5b\xec\x7f\x00\x00\x00\x98" "\x46\xee\xfe\x9f\xc6\x2d\x4d\xf6\xbf\xfe\x7f\xcb\xfe\xff\xee\xfa\x7f\xfd" "\xbf\xfe\xdf\xf7\xff\xf5\xff\xfa\x7f\xdf\xff\x5f\xa0\xff\xd7\xff\xef\xf9" "\xfd\xfb\xea\xff\xff\x7d\xea\x77\xb3\xfe\x9f\x8b\x31\x5a\xff\x9f\xbb\xff" "\x67\x71\x4b\x93\xfd\x0f\x00\x00\x00\xd3\xbb\xf9\xa8\x76\xff\xcf\xe3\x16" "\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x17\x71\x8b\xfd\x0f\x00\x00\x00\xd3" "\xc8\xdd\x7f\x53\xdc\xd2\x64\xff\xeb\xff\x7d\xff\x7f\xbe\xfe\xff\xbf\x3f" "\xaa\xff\xd7\xff\xeb\xff\x47\xa1\xff\xd7\xff\x2f\xd1\xff\xeb\xff\xf7\xfc" "\xfe\x7d\xf5\xff\xb7\xa5\xff\xe7\x22\x8c\xd6\xff\xe7\xee\xff\x65\xdc\xd2" "\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x7f\x15\xb7\x5c\xdd\xfe\xbf\x7e\x9b" "\x57\x01\x00\x00\x00\xd7\x52\xee\xfe\x5f\xc7\x2d\xfe\xfc\x1f\x00\x00\x00" "\xa6\x91\xbb\xff\x37\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xcf\xd7\xff\xfb\xfe" "\xbf\xfe\xff\x98\xfe\x7f\x0c\xfa\x7f\xfd\xff\x12\xfd\xbf\xfe\x7f\xcf\xef" "\xd7\xff\xeb\xff\x59\x77\x7b\xfd\xff\x5d\x0e\xd4\xff\xe7\xee\xff\x6d\xdc" "\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x7f\x17\xb7\xd8\xff\x00\x00\x00" "\x30\x8d\xdc\xfd\xbf\x8f\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x3f\xc4" "\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x6f\xd4\xff\x5f\xce\x9f\xd3" "\xff\xeb\xff\xf5\xff\xfa\xff\xdb\xa3\xff\xd7\xff\xef\xf9\xfd\xfa\x7f\xfd" "\x3f\xeb\x46\xfb\xfe\x7f\xee\xfe\x3f\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74" "\x90\xbb\xff\x4f\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xe7\xb8\xc5" "\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x4b\xdc\xd2\x64\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xef\xff\xeb\xff\xb7\xa4\xff\xd7\xff\x2f\xd1\xff\xeb\xff" "\xf7\xfc\x7e\xfd\xbf\xfe\x9f\x75\xa3\xf5\xff\xb9\xfb\xff\x1a\xb7\x34\xd9" "\xff\x00\x00\x00\xd0\x41\xee\xfe\xbf\xc5\x2d\xf6\x3f\x00\x00\x00\x4c\x23" "\x77\xff\xcd\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\x7f\x4b\xdc\xd2\x64" "\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\x25\xfd\xbf\xfe\x7f" "\xc9\xa5\x53\xff\xbb\xfa\x7f\xfd\xff\x9e\xde\xaf\xff\xd7\xff\xb3\x6e\xb4" "\xfe\x3f\x77\xff\xdf\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x8f" "\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x67\xdc\x62\xff\x03\x00\x00" "\xc0\x34\x72\xf7\xff\x2b\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f" "\xff\xaf\xff\xdf\x92\xfe\x5f\xff\xbf\xc4\xf7\xff\xf5\xff\x7b\x7e\xbf\xfe" "\x5f\xff\xcf\xba\xd1\xfa\xff\xdc\xfd\xff\x09\x00\x00\xff\xff\x86\x70\x4d" "\xb9", 24193); syz_mount_image(/*fs=*/0x20000180, /*dir=*/0x20000100, /*flags=MS_NOATIME|MS_MANDLOCK*/ 0x440, /*opts=*/0x20000080, /*chdir=*/2, /*size=*/0x5e81, /*img=*/0x200065c0); memcpy((void*)0x20000200, "cgroup.stat\000", 12); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000200ul, /*flags=*/0x26e1ul, /*mode=*/0ul); if (res != -1) r[0] = res; sprintf((char*)0x20000040, "%023llo", (long long)0x8000000000000000); *(uint8_t*)0x20000057 = 0x20; sprintf((char*)0x20000058, "%023llo", (long long)2); *(uint8_t*)0x2000006f = 0x20; sprintf((char*)0x20000070, "%023llo", (long long)0xe0000000000); *(uint8_t*)0x20000087 = 0; syscall(__NR_write, /*fd=*/r[0], /*val=*/0x20000040ul, /*len=*/0x48ul); memcpy((void*)0x20000000, ".\000", 2); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000000ul, /*flags=*/0ul, /*mode=*/0ul); if (res != -1) r[1] = res; *(uint32_t*)0x20000240 = 8; *(uint32_t*)0x20000244 = 2; *(uint32_t*)0x20000248 = 0xb; *(uint32_t*)0x2000024c = 0xb; syscall(__NR_open_by_handle_at, /*mountdirfd=*/r[1], /*handle=*/0x20000240ul, /*flags=*/0ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); do_sandbox_none(); return 0; }