// https://syzkaller.appspot.com/bug?id=e034c9e07ab1b5e447438b3fd58c545396340eab // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif #ifndef __NR_open_tree #define __NR_open_tree 428 #endif #ifndef __NR_renameat2 #define __NR_renameat2 316 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } uint64_t r[1] = {0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x20005d80, "bcachefs\000", 9); memcpy((void*)0x20005dc0, "./bus\000", 6); sprintf((char*)0x200001c0, "0x%016llx", (long long)0); memcpy( (void*)0x20005e00, "\x78\x9c\xec\xdd\x7d\x90\x1c\xe5\x99\x18\xf0\xee\x99\x59\xed\xae\x56\x42" "\x2b\x59\x36\x2b\x24\xc4\x62\x64\x3b\xe2\x82\x2d\x50\x20\xc6\x77\x0e\x1b" "\xe7\xec\xd8\x0e\x06\x59\x58\x80\xc5\x61\x49\x86\xc5\xd6\x59\x48\xb2\x3e" "\x10\x1f\x97\xf0\x95\xc3\x04\x3b\x29\x55\x41\x1d\x04\xe2\x14\x07\x2e\xe7" "\x2a\x75\x95\xe0\xd2\x25\xc4\x77\xa4\x4a\xc6\x18\x5f\xf9\xaa\x28\xb0\xe3" "\x3f\x7c\xe4\xeb\xa8\xd8\xf9\x23\x3e\xa2\x3a\x4b\xd8\x11\x2e\x6f\x6a\x77" "\xba\x67\xa7\x7b\xfb\xed\x9e\x9d\x99\x15\xc2\xfc\x7e\x55\xbb\xb3\x6f\xef" "\x33\xcf\xfb\x3e\x3d\xef\xf4\xf4\xdb\xbb\x3b\x1b\x01\x00\x00\xf0\x96\xf0" "\xfc\xef\xef\x7f\xed\x8a\xb3\x3e\xfc\xbd\x7b\x26\x4f\xdc\xf9\xd1\x3f\xbd" "\xf9\xee\x68\xa4\x3e\xb3\x7d\x28\x0d\x18\x4d\x6e\x6f\x7d\xa3\x46\xc8\x42" "\x5a\xff\xfd\xd7\x33\x8f\xec\x60\x63\x6c\xe6\x36\x3f\x2f\xce\xfc\xb3\x95" "\xaf\x8d\xde\x7b\xf9\x27\x1e\xb8\xf4\x23\xdf\xdf\xfe\xe7\xcb\x27\xd6\xae" "\x9b\xbc\xe4\x1b\x47\xae\xbc\xef\xde\x67\x3f\xf8\xcb\x67\x1f\x7e\xf4\xf2" "\xaa\x7e\xd2\xf9\x74\xfe\x6c\x3b\xfe\xeb\x38\x8a\xd6\xfe\xf8\xc8\xc3\xf7" "\x7d\xe7\x2f\xce\x9c\xde\x16\x4f\xf7\x1f\x8f\xde\x15\x2d\x5f\x1e\xaf\xf8" "\xd6\xf2\x38\x97\x62\xc3\xc9\x28\x8a\x6e\x6c\x8d\x33\xfb\xcd\x23\x27\x36" "\xde\x34\x7d\x7b\xf7\x97\x07\x33\xdb\x97\xe5\x92\x98\xef\x6f\x6d\x43\xc9" "\x3c\xbb\x63\xdb\x67\x9f\x38\xfa\x85\x89\xef\x1c\x19\xdf\xbb\xf1\xa7\xc7" "\x2f\xde\x73\xd7\x6c\x48\x3c\xd4\x36\x9f\xa2\xe8\x8c\xed\xed\xf7\x1f\x88" "\xa2\x68\x38\xf9\x98\x96\xce\xb6\xb1\xf4\xce\xc9\xed\xa6\x28\x8a\x16\xb7" "\xdd\xef\xfd\x15\xe3\x3a\xaf\xc3\xf1\x5f\x10\x68\xaf\x49\x6e\x17\x35\x6f" "\x3e\x53\xaf\xc8\x33\x92\xdc\x9e\x9b\x6b\x37\x3a\x1c\x47\x23\x77\x3b\xd8" "\xe1\xfd\xba\x55\x5b\xe0\xfc\x79\x23\xb9\x76\xfe\x60\xb4\x50\xd2\x3a\xcf" "\x48\x6e\x9f\x4e\x6e\xcf\x9f\x67\x9e\x7a\xfa\x11\x47\xb5\x38\x6a\xb4\x86" "\xbf\x2b\x6e\xcd\x91\x19\xe9\xe3\x16\x47\xf1\xcc\xdc\x1e\x6a\xb5\x6b\x33" "\xed\xa8\xd5\x8e\xf2\xed\x38\xd7\xae\xe5\xda\xf5\x81\x5c\x5d\x33\xfd\x26" "\x3b\xb6\x1e\xc7\xd9\xed\x69\x5c\x6e\x7b\x7a\x38\x6e\x24\xdb\xcf\x6d\x3f" "\x56\x17\xd8\x1c\xd8\xbe\x2a\xb9\x1d\x4a\x9e\xa8\xbf\x48\xdb\x51\xfe\x8b" "\xa6\x91\x39\x5f\xcc\xd6\x11\xb5\x8d\xeb\xd8\xa9\x9a\x18\x01\xb5\xc0\x73" "\x2f\xdd\xde\x1a\x5e\xf2\x60\x8c\x24\xdb\x46\xe2\x15\x73\xee\x33\x55\x20" "\xfd\xde\xb1\xef\xee\xd8\xfa\xea\x8f\x6e\x7f\x7a\x34\x30\x8e\xf8\xa9\x38" "\xc9\x1f\x77\x95\x7f\x62\xf2\xb1\xa3\x5f\xbf\xf6\x99\x55\x63\xa1\xfc\xdb" "\x6b\x49\xfe\x5a\x57\xf9\x9f\xaf\xbf\x70\xf2\x6b\xc7\xc7\x96\x04\xf3\x1f" "\x4e\xf3\xd7\xbb\xca\xbf\xe5\x57\x3f\xb9\xff\x9e\xab\x0e\xad\x0c\xee\x9f" "\x63\xe9\xfe\x69\x74\x95\x7f\xdd\x57\x96\xdc\x71\xe2\xd0\xe6\xc1\xf1\x50" "\xfe\xc7\xd3\xfc\x43\x5d\xe5\xbf\xe4\xfa\xb5\x97\x9e\x7d\xfc\xe0\x2d\xc1" "\xf1\x6f\x48\xf7\xcf\x70\x57\xf9\x7f\xf8\xe0\xfa\xd7\xaf\x3f\xfc\xcd\x67" "\x82\xf9\xa3\x34\xff\xe2\xae\xf2\xbf\xfc\xd8\x93\x6b\xea\xab\x1e\x7a\x29" "\x98\xff\x68\xba\x7f\x46\xba\xca\x7f\xf5\xc6\x47\x2e\xfb\xf8\xea\x7b\x1f" "\x0d\xee\xff\x17\xd3\xfc\x4b\xbb\xca\xbf\xf5\xa5\xfb\xb6\xef\x7d\xe2\xb9" "\xf5\xc1\xf9\xb9\x29\xdd\x3f\xa3\x5d\xe5\x3f\x79\xd9\x0f\x5e\x79\x7d\xf4" "\xf2\x27\x43\xc7\xce\xf8\xf1\x4e\x5e\x61\x87\x3b\x88\x01\x78\x6b\x7a\x5b" "\x72\x8e\x75\x7f\xd2\xee\x76\x9d\xd9\xab\xb6\xf5\xc2\x23\xe3\x8d\xe6\x39" "\xdf\x92\xe4\x63\x69\x3f\x3b\xca\x89\xdb\xd6\x2e\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd0\xad\x87\x2e\xfb" "\x0f\x5f\x6c\x6f\xbf\xeb\xff\xdc\xb2\xe5\xa5\xff\xb8\x76\x67\x23\x69\x0f" "\x36\xa2\x28\x8e\xa2\xe8\xd5\x7a\xb3\x9d\x6e\x5f\x14\x45\xf1\x70\x14\x45" "\xfb\x0f\xec\xd8\x77\x60\xe7\xee\xcf\x8d\xff\xee\x9e\x83\xfb\x76\xef\xd8" "\x35\xbe\xe3\xc0\xf8\xe4\xee\x03\xfb\x6e\x1b\xff\x3b\x7f\x7b\x7c\xdf\xe4" "\xde\x5d\x3b\x6e\x9b\xfe\xee\x86\x0b\x36\x36\xef\xb7\x62\x26\x5b\x14\xad" "\x88\xcf\x9e\x33\x96\xa9\xa9\xa9\xa9\x28\x8a\xc6\xdb\xb7\xa5\xfd\xfd\xe1" "\xc7\x9e\xfa\x7f\x5b\x1e\xfd\x9b\x4f\x47\xd1\x86\xb7\xff\x60\x6d\x23\x58" "\xcf\xfb\xfe\xeb\x2b\x1f\x5e\x59\xf0\x39\x27\x9e\x98\xda\xf4\xaf\x2e\x7e" "\xf0\xf6\x45\xff\x6b\x59\x73\xc3\x68\x32\xae\xd1\xb9\xe3\x1a\x2e\xea\x27" "\x1d\xc1\xc8\xc4\x8b\x7f\xf9\xa1\xa7\x7f\x34\x3d\xae\x77\x94\x8d\xeb\xe1" "\x17\xae\xf9\xbf\x99\x01\xcd\x6c\x98\xcd\x93\xa8\x0d\x46\xb5\x99\x2f\x06" "\xe3\xc5\x73\x72\x4c\xef\x9f\xd6\xa8\x47\x5b\x9b\x67\xf6\x57\xe3\xa6\x9d" "\xbb\x26\x37\x54\xef\xdf\x38\xb0\x7f\xdf\xf3\xdc\x9f\x1c\xff\xf7\xb7\x6e" "\xf9\xe7\xcd\xfd\x3b\x14\xac\xa3\xc3\xfd\x3b\xbd\x57\x1b\x53\x0f\xfc\xec" "\x9e\xf7\xdc\xf5\xa1\xc9\x0f\x9c\xc6\x8f\x7b\xd5\xfe\x6e\x2b\x61\x66\x7c" "\xe9\xfe\x1b\x4a\xf6\xf7\x19\x49\x5d\x67\x04\xea\xaa\x05\xea\xba\x65\xfc" "\xe5\x63\xff\xe2\xdf\xfd\xe7\xaf\xdd\x15\x6d\x68\xfc\xec\x9c\xb9\x7d\x57" "\xd5\x35\x90\x4c\x80\x81\x78\x55\x47\xfd\xa6\x3d\x2c\x8e\x97\x67\x62\x87" "\x92\xf8\xf4\x11\x4f\xef\xf7\xbe\x03\x37\xef\x7d\xdf\xfe\xdb\x6e\xbf\x60" "\xe7\xcd\x3b\x3e\x37\xf9\xb9\xc9\xdd\x1b\x37\x5e\x7c\xe9\x85\x1b\x2f\xbc" "\xe8\xd2\x8d\xef\x9b\x29\xbd\xf9\xb9\x6f\xf5\xa7\xfd\xbf\xa7\xc3\xfa\x97" "\x24\x99\x96\xc4\xab\x0b\xf7\x5b\x7e\x6b\xda\xef\x39\x33\x9f\xeb\x51\x32" "\xec\xf4\xa6\xed\x8b\xac\x81\x68\xa4\x79\x9b\xdb\xcf\x69\x78\xbe\xea\x91" "\xe4\x7b\x23\xf1\x8a\x39\xb9\xa6\x0a\xa4\xdf\x3b\xf6\xdd\x1d\x5b\x5f\xfd" "\xd1\xed\x4f\x87\x9e\x79\xf1\x53\xcd\x1e\x87\xa3\xa5\xcd\xdb\x78\x4d\x20" "\x72\x57\xee\x8e\xf5\xd6\x80\x8b\xfa\x3f\x35\xcf\xcb\x3d\x7f\x30\xb4\x2b" "\xfd\xdc\xd9\xf3\xb2\x6a\x5c\x55\xf3\x6a\x7a\x5c\xd5\xf3\xaa\x7d\x44\x25" "\xc7\xb1\x17\xce\xbb\xff\x67\x4f\x7c\xe9\x5f\x5e\xd7\xc1\xf1\xa2\x2d\x74" "\x66\x7c\xe9\x38\x17\x4f\x3f\x5d\x2e\x8c\xda\x9e\xb7\x73\xf7\x55\x51\x5d" "\x1d\x3c\x3e\x13\x45\xfb\xe1\x86\x0b\xf6\xfd\xc9\x6d\x3b\xb7\x1e\xae\x3a" "\x9e\xb7\x3f\x32\xed\x9f\x73\xe2\x89\xa9\xff\xb9\x26\xfe\xc4\xc1\xfd\x7f" "\xb9\xaf\xb9\xa1\xe4\xf5\xb2\x39\xae\xd1\xec\xb6\xae\x5e\x2f\xdb\x07\xd4" "\xe5\xeb\x65\x6b\xd4\xb3\xe3\x99\xd9\x5f\x43\xc9\xe3\x71\xba\xee\xdf\xc1" "\xa8\x9e\xd4\x35\x52\x38\xae\xcd\xf1\x13\x1f\x7c\xcf\xcd\xcf\xfc\x46\x6b" "\x7c\x8b\x16\x45\xb7\xee\x38\x70\x60\xdf\x85\xcd\xcf\x6f\xd6\xba\xfe\x6a" "\xd1\xb2\x95\x3b\xef\x5e\x7d\xf6\x9c\xba\x2e\x6a\x7e\xae\x3a\xee\x9f\x93" "\x6b\x57\x1e\xf7\x6b\xc5\xf5\x55\x1d\xf7\xf3\xfd\xcc\xc6\x17\xe7\x1b\xcf" "\xb5\x47\xa2\x7a\x57\xaf\x13\x5b\x7e\xf5\x93\xfb\xef\xb9\xea\xd0\xca\xe0" "\xeb\xc4\xb1\x4e\x5f\x27\x7e\x2f\xd3\xaa\xf7\xf8\x3a\x51\x0b\x3c\xdf\x1f" "\xf8\x9b\xaf\x8e\xbf\x76\xdd\xa7\x5e\xab\x9a\x4f\x57\xee\x5f\x7d\xe7\xca" "\x82\xcf\xf9\xf2\x26\xa6\xbe\xf9\xc7\xbf\x79\xe1\x07\xae\xb9\xea\x23\xcd" "\x0d\xa7\xe4\x38\xd4\x3e\xa0\x2e\x8f\x43\xad\x51\x27\xe3\x49\xf7\xd7\xcc" "\x71\xe8\xa2\xd3\xa7\x8e\x37\xee\x71\xce\x3c\x11\xe3\x89\xa9\x73\xbe\xf1" "\xee\xab\x5f\x3f\xf1\xc5\x4f\x36\x37\x54\xed\xdf\x56\x74\xd1\xfe\xdd\x58" "\x7d\x9c\xaf\x07\xea\xba\x6e\xe0\x9d\xcb\x1f\xfc\xe9\xea\x77\xf6\x6f\xfe" "\xee\xdf\xf6\xf3\xf3\xde\xbb\x78\x49\x37\xf3\xb7\x6d\x17\xf5\xfb\x71\x1f" "\x4a\x92\x0f\x05\xf6\x6f\x6b\xd4\xc9\x78\xea\xed\xfb\xf7\xbd\x37\xec\xd9" "\x75\x63\xb3\x7d\xfa\x9e\xb7\x35\x0d\x56\xac\x7f\xd2\xd7\x9d\xfd\xb7\xdd" "\xfe\x85\x1d\xbb\x76\x4d\xee\xdb\xdf\x59\x5d\x9d\xbe\x9e\xa6\xfd\xe4\xf7" "\x72\xb7\xaf\xa7\xe9\xab\xc7\x8a\x8a\xba\xd2\xc7\x6b\xb6\xae\x85\xfb\xa2" "\x93\xfd\xd5\xe9\xf3\x2d\x1d\xff\x8d\xb9\x1c\xdd\x3e\xdf\x00\x52\xb3\xaf" "\x0b\x8b\x32\xdb\xf3\xc7\xcf\xf4\xba\xdf\xda\x33\xa2\x2d\xef\xfd\xd2\xb7" "\x5f\x88\xc7\x9b\xaf\x97\xfd\xba\xde\x9a\xf6\x73\x56\xee\x85\xb9\xdb\xeb" "\xad\x55\xeb\xa4\x77\xe6\xda\xd9\x75\x52\x23\x6a\xab\xbb\x69\xee\x3a\x69" "\xe6\x2e\x55\xeb\xa4\x7c\x3f\x55\xeb\xa4\xf3\x72\xed\xea\x75\xcc\xfd\x85" "\x95\x84\x1e\xbf\x81\xe4\x95\xb7\xe8\xba\x69\x6e\xbc\x8d\xe9\x0c\xa1\xf9" "\x31\x96\xe4\x1f\x4b\xda\xe9\xf9\xe6\xda\xf7\x46\x17\xd7\x9f\x7e\xd7\xc7" "\xe2\x89\xce\xe6\x47\xa7\xe7\xd3\x69\x3f\x7f\x2b\xb7\x83\xba\x3d\x9f\xae" "\x9a\x1f\xeb\xa2\xe2\x71\xf5\x36\x3f\xee\x9c\x1d\x50\x72\xfb\xee\xdc\x9d" "\xaa\x1f\xef\xc3\x85\x23\x1b\x0a\x3c\x1e\x55\x8f\xf7\xba\x4c\xa2\xa9\xa9" "\x5e\xd7\xe5\xa3\x81\x51\xa7\xeb\xf2\x91\x28\xee\x2a\xff\xc4\xe4\x63\x47" "\xbf\x7e\xed\x33\xab\x82\xf9\xb7\xd7\x92\xfc\xb5\xae\xf2\x3f\x5f\x7f\xe1" "\xe4\xd7\x8e\x8f\x2d\x09\xe6\x3f\x9c\xe6\x6f\x74\x95\x7f\xdd\x57\x96\xdc" "\x71\xe2\xd0\xe6\xc1\x60\xfe\xc7\xd3\xfd\x33\xd4\x55\xfe\x4b\xae\x5f\x7b" "\xe9\xd9\xc7\x0f\xde\x12\xcc\xbf\x21\x1d\xff\x70\x57\xf9\x7f\xf8\xe0\xfa" "\xd7\xaf\x3f\xfc\xcd\x67\x82\xf9\xa3\x34\xff\x48\x57\xf9\xaf\xde\xf8\xc8" "\x65\x1f\x5f\x7d\xef\xa3\xc1\xfc\x2f\xc6\x49\x3f\xd3\xcf\xdd\x28\x3a\x72" "\x62\xe3\x4d\xcd\x76\x1c\x0d\x24\xf3\x3f\x1d\xc7\x40\x66\x5c\x51\xbe\x1d" "\xe7\xda\xb5\x5c\xbb\xde\xde\xae\x35\x7f\xd6\xdb\xea\xa0\x1e\xc7\xd9\xed" "\x69\x5c\x6e\x7b\x5a\x47\x23\xd9\x7e\x6e\xdb\x18\x8b\x6c\x09\x6c\x4f\x9f" "\xb5\x43\xc9\x13\xfb\x17\x69\x3b\xca\x7f\x51\xbe\x3d\x3d\x3c\xa5\xe3\x3a" "\x16\x78\xfd\x39\x55\x6a\x6d\xe7\x1e\x45\xdb\xab\xae\x4f\xf6\xcb\xab\x3f" "\x1e\xfb\xc3\xf6\x76\xfa\xf3\xff\x74\x0e\x0c\x36\x9a\x8f\xdd\x45\xb9\xfd" "\x55\xf5\xfa\x91\x3f\x7a\xa7\xf9\x82\xd7\x61\x03\x97\x30\xaa\xce\x17\xe6" "\xfe\xfc\x6d\x71\x57\xcf\xbf\x97\x1f\x7b\x72\x4d\x7d\xd5\x43\x2f\x05\xaf" "\xab\x1e\xed\xf4\xba\xea\xde\x4c\x6b\xf1\xec\x75\xd5\x2b\x96\x14\x0c\xa1" "\xd7\xf1\x06\x8f\x17\x47\xd3\xe3\x69\x6f\xc7\xa3\xb1\x50\xfe\x17\xd3\xfc" "\xbd\xbd\x1e\x04\xf3\x27\xaf\x07\x55\xf3\xec\x5d\xb9\x76\xe5\x3c\x1b\x28" "\xee\xaf\x6a\x9e\xe5\xcf\x53\x46\xa2\xa5\x5d\xd5\xbd\xf5\xa5\xfb\xb6\xef" "\x7d\xe2\xb9\xf5\xc1\x79\xb6\xa9\xf9\x84\xaf\x9e\x67\x0f\x65\x5a\x4b\x2b" "\xae\xdf\xf7\xfa\x73\xe9\xe0\x3c\x7b\x2a\xee\xcb\xfe\x08\xe6\xdf\xd4\x9f" "\xf3\x9a\xe0\x3c\x4b\xce\x6b\xaa\xe6\xd9\xf9\xb9\x76\xef\xf3\x2c\x7b\x3e" "\xfa\x89\xe4\xf6\xd6\x5c\xfc\x48\x72\x85\x78\xbe\x75\x9f\xbc\xec\x07\xaf" "\xbc\x3e\x7a\xf9\x93\xc1\x79\xf6\x78\xa7\xf3\xec\x8f\x32\xad\xd1\xca\x79" "\xd6\xdb\xf9\x6d\xf0\x71\x6a\x9d\xdf\x2e\xf4\xf9\xf9\x9b\xfb\xfc\xf3\x0d" "\x3b\x3f\x4c\x7e\x9c\xbb\x50\xe7\x87\x9b\x03\xdb\xe7\x7b\x7e\x38\x32\xe7" "\x8b\xd9\x3a\xa2\x37\xe3\xf9\x61\xe0\x38\x03\x00\x65\xbe\xf7\xc0\x6d\xff" "\xbb\xbd\x9d\xac\xff\x5b\xab\xf1\x74\xfd\xff\xed\xdc\xfd\x7a\x5d\x57\xe6" "\x7f\x1f\x2a\xd5\xaf\x75\x65\x30\xff\xe3\xfd\x59\xaf\x04\xcf\x53\x5b\xeb" "\x95\x85\x5e\x6f\x2d\xf4\x79\xf6\xc2\xae\xb7\x9c\xc7\x07\xf2\xb7\xae\x23" "\x2f\xf4\x75\xa1\x85\x5d\x57\x5a\x87\x24\xed\x28\xff\x45\x93\x75\x08\x00" "\x00\x6f\x84\x73\xff\xcd\x57\x7f\xbb\xbd\x9d\xfe\xfc\xbf\xf5\x7b\x6f\xc9" "\xdf\xff\x3f\x97\xb6\x73\xf7\xb7\xce\x0d\xe4\x3f\x65\xeb\xdc\x85\xbe\x4e" "\x62\x1d\x5d\x98\xbf\x4f\xbf\x5f\x51\x7d\x1d\x6c\xa1\xaf\x53\xb9\x0e\xe0" "\x3a\x40\x35\xd7\x01\x00\x00\x7e\x3d\x6c\xbb\x69\xdf\xe4\xe4\xfe\xbd\x3b" "\x6e\x98\xdc\xb6\x73\xf7\xce\x03\xad\xed\x03\x33\x2b\xa7\xb9\xbf\xa7\xfa" "\x77\x93\xdb\x4d\xb9\x3c\x55\xbf\x3f\x5d\x14\xbf\xb8\x24\xfe\x93\xc1\xfc" "\xd9\xf1\xbc\x3f\x10\x1f\xd2\x48\xde\xd0\xef\xb3\x37\x7c\xfe\xa2\x6d\x37" "\x4e\xde\x32\xdf\xfa\x43\xfd\x55\xd5\x5f\x14\x5f\x56\x7f\x7e\x7d\x11\xaa" "\xff\xd2\x40\x7c\x48\xaf\xf5\x87\xfa\xab\xaa\xbf\x28\xbe\xac\xfe\xab\x82" "\xf9\xb3\xe3\xf9\x40\x20\x3e\xa4\xd7\xfa\x43\xfd\x55\xd5\x5f\x14\x5f\x56" "\xff\xa7\x82\xf9\xb3\xe3\xf9\xcd\x40\x7c\x48\xaf\xf5\x87\xfa\x2b\xad\x7f" "\xa0\x38\xbe\xac\xfe\xfc\xdf\x83\x85\xea\xff\xad\x40\x7c\x48\xaf\xf5\x87" "\xfa\xab\x7a\xfc\x8b\xe2\xcb\xea\xbf\x3a\x98\x3f\x3b\x9e\x0f\x06\xe2\x43" "\x7a\xad\x3f\xd4\x5f\x55\xfd\x45\xf1\x65\xf5\x5f\x13\xcc\x9f\x1d\xcf\xdf" "\x0b\xc4\x87\xf4\x5a\x7f\xa8\xbf\xaa\xfa\x8b\xe2\xcb\xea\xbf\x36\x98\x3f" "\x3b\x9e\xcb\x02\xf1\x21\xbd\xd6\x1f\xea\xaf\xaa\xfe\xa2\xf8\xb2\xfa\x3f" "\x1d\xcc\x9f\x1d\xcf\x44\x20\x3e\xa4\xd7\xfa\x43\xfd\x55\xd5\x5f\x14\x5f" "\x56\xff\xd6\x60\xfe\xec\x78\xfe\x7e\x20\x3e\xa4\xd7\xfa\x43\xfd\x55\xd5" "\x5f\x14\x5f\x56\xff\x75\xc1\xfc\xd9\xf1\x7c\x28\x10\x1f\xd2\x6b\xfd\xa1" "\xfe\xaa\xea\x2f\x8a\x2f\xab\xff\x77\x82\xf9\xb3\xe3\xf9\x07\x81\xf8\x90" "\x5e\xeb\x0f\xf5\x57\x55\x7f\x51\x7c\x59\xfd\xd7\x07\xf3\x67\xc7\xf3\xdb" "\x81\xf8\x90\x6e\xeb\x8f\x2b\xfa\xab\xaa\xbf\x28\xbe\xac\xfe\xcf\x04\xf3" "\x67\xeb\xff\x70\x20\x3e\xa4\xd7\xc7\x3f\xd4\x5f\x55\xfd\x45\xf1\x65\xf5" "\x6f\x0b\xe6\xcf\x8e\xe7\x23\x81\xf8\x90\x5e\xeb\x0f\xf5\x57\x55\x7f\x51" "\x7c\x59\xfd\xdb\x83\xf9\xb3\xe3\xf9\x87\x81\xf8\x90\x5e\xeb\x0f\xf5\x57" "\x55\x7f\x51\x7c\x59\xfd\x3b\x82\xf9\xb3\xe3\xf9\x68\x20\x3e\xa4\xd7\xfa" "\x43\xfd\x55\xd5\x5f\x14\x5f\x56\xff\x67\x83\xf9\xb3\xe3\xf9\x58\x20\x3e" "\xa4\xd7\xfa\x43\xfd\x55\xd5\x5f\x14\x5f\x56\xff\x0d\xc1\xfc\xd9\xf1\x7c" "\x3c\x10\x1f\xd2\x6b\xfd\xa1\xfe\xaa\xea\x2f\x8a\x2f\xab\x3f\xff\x7e\x87" "\xa1\xfa\xff\x51\x20\x3e\xa4\xd7\xfa\x43\xfd\x55\xd5\x5f\x14\x5f\x56\xff" "\x64\x30\x7f\x76\x3c\x97\x07\xe2\x43\x7a\xad\x3f\xd4\x5f\x55\xfd\x45\xf1" "\x65\xf5\xdf\x14\xcc\x5f\xfc\xbe\x01\xf9\xf8\x90\x5e\xeb\x0f\xf5\x57\x55" "\x7f\x51\x7c\x59\xfd\x9f\x0b\xe6\xcf\x8e\xe7\x8a\x40\x7c\x48\xaf\xf5\x87" "\xfa\xab\xaa\xbf\x28\xbe\xac\xfe\xcf\x07\xf3\x67\xc7\x73\x65\x20\x3e\xa4" "\xd7\xfa\x43\xfd\x55\xd5\x5f\x14\x5f\x56\xff\xce\x60\xfe\xec\x78\x36\x05" "\xe2\x43\x7a\xad\x3f\xd4\x5f\x55\xfd\x45\xf1\x65\xf5\xff\x6e\x30\x7f\x76" "\x3c\x9f\x0c\xc4\x87\xf4\x5a\x7f\xa8\xbf\xaa\xfa\x8b\xe2\xcb\xea\xff\x42" "\x30\x7f\x76\x3c\x9b\x03\xf1\x21\xbd\xd6\x1f\xea\x2f\x1d\xdf\xa2\x40\xbf" "\x45\xf1\x65\xf5\xef\x0a\xe4\xcf\x8f\xe7\xaa\x40\x7c\x48\xaf\xf5\x87\xfa" "\xab\x7a\xfc\x8b\xe2\xcb\xea\xbf\x39\x98\x3f\x3b\x9e\x4f\x05\xe2\x43\x7a" "\xad\x3f\xd4\x5f\x55\xfd\x45\xf1\x65\xf5\xef\x0e\xe6\xcf\x8e\x67\x4b\x20" "\x3e\xa4\xd7\xfa\x43\xfd\x55\xd5\x5f\x14\x5f\x56\xff\x9e\x60\xfe\xec\x78" "\xae\x0e\xc4\x87\xf4\x5a\x7f\xa8\xbf\xaa\xfa\x8b\xe2\xcb\xea\xdf\x1b\xcc" "\x9f\x1d\xcf\x35\x81\xf8\x90\x5e\xeb\x0f\xf5\x57\x55\x7f\x51\x7c\x59\xfd" "\x5f\x0c\xe6\xcf\x8e\xe7\xda\x40\x7c\x48\xaf\xf5\x87\xfa\xab\xaa\xbf\x28" "\xbe\xac\xfe\x7d\xc1\xfc\xd9\xf1\x7c\x3a\x10\x1f\xd2\x6b\xfd\xa1\xfe\xaa" "\xea\x2f\x8a\x2f\xab\x7f\x7f\x30\x7f\x76\x3c\x5b\x03\xf1\x21\xbd\xd6\x1f" "\xea\xaf\xaa\xfe\xa2\xf8\xb2\xfa\x0f\x04\xf3\x67\xc7\x73\x5d\x20\x3e\xa4" "\xd7\xfa\x43\xfd\x55\xd5\x5f\x14\x5f\x56\xff\xc1\x60\xfe\xec\x78\x7e\x27" "\x10\x1f\xd2\x6b\xfd\xa1\xfe\xaa\xea\x2f\x8a\x2f\xab\xff\x96\x60\xfe\xec" "\x78\xae\x0f\xc4\x87\xf4\x5a\x7f\xa8\xbf\xaa\xfa\x8b\xe2\xcb\xea\x3f\x14" "\xcc\x9f\x1d\xcf\x67\x02\xf1\x21\xbd\xd6\x1f\xea\xaf\xaa\xfe\xa2\xf8\xb2" "\xfa\xf3\xef\x03\x19\xaa\x7f\x5b\x20\x3e\xa4\x55\xff\x81\x7d\x93\x93\xdb" "\x0e\xee\xbd\x71\xc7\x81\xc9\x6d\xbb\xf7\xdc\x38\xb9\x7f\xdb\xa1\x7d\x3b" "\x0f\x1c\x98\x4c\x4e\xd4\x7a\xfd\xbb\xb2\xf0\xdf\x05\xbd\xc1\x7f\xc8\x42" "\xa9\xcc\xf3\xa3\x39\x49\x76\xee\xde\x3f\xb9\x6f\xee\xf1\x7b\xb8\x74\xfe" "\xb6\xcf\x89\x68\xe6\xcf\x9e\x9a\xff\x46\x79\x28\x7e\x47\x47\xf1\xf9\xb7" "\xbd\xee\x76\xd6\x9c\x2e\xf3\x7d\x20\x6a\x94\xee\xaf\xb3\x72\xed\x65\xc9" "\xfb\xd1\x2e\x0b\xbc\x1f\x6d\x3e\x3e\x4d\xbb\x7a\xe6\x8b\xb9\xef\x47\x9b" "\xef\xb6\x51\xf1\x3e\xae\x55\xc7\xa7\x7c\xff\xa1\xe3\x53\x5c\x12\x5f\x74" "\x7c\x0d\x1d\xcf\xaa\x5e\xff\xe6\x7d\xfc\xab\x9c\xdf\x43\xa5\xf5\xe7\x37" "\x0f\x26\x7f\xd8\x37\x18\xbf\xbd\xa3\xf8\xa8\xe4\xff\xfa\x75\x36\x5f\x7b" "\xfb\xbb\xd3\xe0\x7c\x7d\xb1\xb3\xf9\x9a\x7f\xdf\xf5\xaa\xf9\x9a\x8f\x9f" "\xef\x7c\x1d\xe9\x71\xbe\xe6\xfb\x0f\xcd\xa7\x5a\x49\x7c\xd9\xf9\x50\xa7" "\xf3\x75\x6b\x20\x3e\xd5\xf9\xfc\x8c\x83\xf5\x16\xcd\xab\xf9\xfe\x7f\xc9" "\x34\xed\xbc\xfe\xcf\x60\xee\xd3\x1c\x5d\xfc\x2f\x83\xce\x9f\x0f\xbd\xfd" "\x1d\x79\xf0\xf9\x90\x0c\xba\xea\xf9\x90\xff\x3b\xee\xaa\xe7\x43\x3e\x7e" "\xbe\xcf\x87\xe1\x1e\x9f\x0f\xf9\xfe\xab\x9e\x0f\x45\xf1\x65\xeb\xe3\x4e" "\x9f\x0f\xd7\x04\xe2\x43\x3a\x9f\x0f\xbd\xbd\x6f\x41\x70\x3e\x6c\xe8\x6c" "\x3e\xe4\xff\x8f\x55\xd5\x7c\xc8\xc7\xcf\x77\x3e\x0c\xf5\x38\x1f\xf2\xfd" "\x57\xcd\x87\xa2\xf8\xb2\xeb\x85\x9d\xce\x87\x4f\x05\xe2\x3b\xd5\xf9\xfc" "\xe8\xed\x7d\x45\x82\xf3\x63\x7b\x67\xf3\x23\xff\xff\x24\xaa\xe6\x47\x3e" "\x7e\xbe\xf3\x23\x9e\x9d\x1f\x83\x45\x25\x56\xcd\x8f\x7c\xff\x55\xf3\xa3" "\x28\xbe\xec\xe7\x29\x9d\xce\x8f\x4f\x06\xe2\x53\x99\xd7\xcf\x9b\xf6\xcf" "\x2c\xea\x77\xee\xd8\xb5\xf3\xf6\xdc\x2f\x60\x8c\x26\xaf\x9f\x6f\xf4\xeb" "\xe1\x29\x79\x5d\xfe\xf9\x6f\xfd\xd5\x2f\x9a\x9f\x92\x71\xd4\xe6\x8c\xa3" "\xea\x7c\x22\xce\x8d\x63\x79\x32\x92\xe5\xa1\xff\x7b\x18\x18\xf7\x0d\xff" "\xe5\xdf\x6e\xf9\xf6\x2f\xbf\xf4\xd5\x28\xda\xf0\xf6\xfa\x9a\xf0\xb8\x67" "\x87\x3c\xfb\x29\x27\x9e\x98\x5a\x71\xe7\xba\xaf\x5f\xfb\x8e\x97\x3e\x34" "\x3d\xfe\x5a\xe9\xf8\x5b\x91\xe9\xff\x2d\xae\xf8\x7f\xc7\xf9\xf8\xb4\x9e" "\xc6\xae\x3d\xfb\x0f\xfc\xc6\x4d\x7b\x0e\xee\xee\xf4\x37\xae\xca\xa5\xef" "\x87\x52\x6b\xb5\x17\xe8\xfd\x50\x92\x8d\xf5\x0e\xdf\xdf\x24\xf4\xf7\x04" "\xf3\x7d\x7f\x93\x81\x39\x5f\x9c\x9e\x3a\x7e\x7f\x13\x80\x5f\x13\xcb\x1e" "\x7f\x6a\x69\x7b\x3b\x7d\xff\xbf\xf4\xf5\x68\x2c\x39\xf6\x0d\x27\x07\xc0" "\x74\x7b\xe7\xe7\xd9\xbd\xbd\xbf\x5e\xf0\x3c\xfb\x70\x67\xe7\xd9\xeb\xf3" "\xf5\x56\x9c\x67\xe7\xe3\xd3\x7a\x3b\x3d\xcf\xae\xcd\x59\x87\x0d\x66\xaa" "\xad\x3a\xcf\xce\xf7\x5f\x75\x9e\x5d\x14\x5f\xf6\x7b\x7b\x9d\x9e\x67\x5f" "\x11\x88\x9f\xaf\xec\x3c\x99\x9e\x20\x33\xf3\x63\x72\xdb\xa1\x3d\xfb\xda" "\x7f\x27\x6e\xa1\xff\x6f\x6d\xff\xc7\xbb\xb0\xff\xc7\xb7\xf7\xf1\x2d\xec" "\xfb\x36\x76\xab\xf3\xf1\x2f\xec\xfb\x42\x2e\xfc\xf8\x17\xf6\xff\x00\x2f" "\xfc\xf8\x17\xf6\xff\x3c\x77\xeb\x94\xad\x97\x92\x5f\xe4\xad\x7a\xff\xc8" "\xaa\x75\x54\xe8\xef\xd2\xe7\xbb\x8e\x5a\x34\xe7\x8b\xd3\x93\x75\x14\x00" "\x9c\xfe\xfe\xd9\xbe\x1f\xff\xeb\xf6\x76\xba\xfe\x4f\x56\xb1\xad\xf5\xff" "\x97\x93\x76\xbd\xcf\xfd\x2f\xf4\x3a\x6a\xa1\xd7\x95\x0b\x7d\x9e\xfc\xe6" "\x7f\xff\xfd\x85\x5d\x07\x59\x0f\x94\x74\x76\x1a\xe8\x6a\x3d\x60\x91\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xbc\x05\xfc\xd1\x7f\xff\x4f\xdf\x6a\x6f\x0f\x36\xc6\x66\x6e\x9f\xff\xfd" "\xfd\xaf\x5d\x71\xd6\x87\xbf\x77\xcf\xe4\x89\x3b\x3f\xfa\xa7\x37\xdf\x7d" "\xe6\x9f\xad\x7c\x6d\xf4\xde\xcb\x3f\xf1\xc0\xa5\x1f\xf9\xfe\xf6\x3f\x5f" "\x3e\xb1\x76\xdd\xe4\x25\xdf\x38\x72\xe5\x7d\xf7\x3e\xfb\xc1\x5f\x3e\xfb" "\xf0\xa3\x97\x57\x76\x34\xda\xbc\x39\x3f\x69\x0e\x45\x51\xfc\xd7\x71\x14" "\xad\xfd\xf1\x91\x87\xef\xfb\xce\x5f\x9c\x39\xbd\x2d\x9e\xee\x3f\x1e\xbd" "\x2b\x5a\xbe\x3c\x5e\xf1\xad\xe5\x71\x2e\xc3\x86\x93\x51\x14\xdd\xd8\x1a" "\x67\xf6\x9b\x47\x4e\x6c\xbc\x69\xfa\xf6\xee\x2f\x0f\x66\xb6\x2f\xcb\x25" "\xc9\xd7\x15\x8d\xd4\xd3\xf1\x64\xc6\x19\xdd\x9a\xdc\xc6\x51\x74\x57\x65" "\x71\xbc\x59\x0c\x25\xf3\xec\x8e\x6d\x9f\x7d\xe2\xe8\x17\x26\xbe\x73\x64" "\x7c\xef\xc6\x9f\x1e\xbf\x78\x4f\xdb\x63\x1c\x0f\xb5\xcd\xa7\x28\x3a\x63" "\x7b\xfb\xfd\x07\xa2\x28\x1a\x4e\x3e\xa6\xa5\xb3\x6d\x2c\xbd\x73\x72\xbb" "\x29\x8a\xa2\xc5\x6d\xf7\x7b\x7f\xc5\xb8\xce\xeb\x70\xfc\x17\x04\xda\x6b" "\x92\xdb\x45\xc9\xed\x48\x45\x9e\xf4\xfb\xe7\xe6\xda\x8d\x0e\xc7\xd1\xc8" "\xdd\x0e\x76\x78\xbf\x6e\xd5\x16\x38\x7f\x5e\x7e\xff\xe5\x0f\x46\x0b\x25" "\xad\xf3\x8c\xe4\xf6\xe9\xe4\xf6\xfc\x79\xe6\xa9\xa7\x1f\x71\x54\x8b\xa3" "\x46\x6b\xf8\xbb\xe2\xd9\x39\x12\xb5\x3d\x6e\x71\x14\xcf\xcc\xed\xa1\x56" "\xbb\x36\xd3\x8e\x5a\xed\x28\xdf\x8e\x73\xed\x5a\xae\x5d\x1f\xc8\xd5\x35" "\xd3\x6f\xb2\x63\xeb\x71\x9c\xdd\x9e\xc6\xe5\xb6\xa7\x87\xe3\x46\xb2\xfd" "\xdc\xf6\x63\x75\x81\xcd\x81\xed\xab\x92\xdb\xa1\xe4\x89\xfa\x8b\xb4\x1d" "\xe5\xbf\x68\x1a\x99\xf3\xc5\x6c\x1d\x51\xdb\xb8\x8e\x9d\xaa\x89\x11\x50" "\x0b\x3c\xf7\xd2\xed\xad\xe1\x25\x0f\xc6\x48\xb2\x6d\x24\x5e\x31\xe7\x3e" "\x53\x05\xd2\xef\x1d\xfb\xee\x8e\xad\xaf\xfe\xe8\xf6\xa7\x47\x03\xe3\x88" "\x9f\x8a\x93\xfc\x71\x57\xf9\x27\x26\x1f\x3b\xfa\xf5\x6b\x9f\x59\x35\x16" "\xca\xbf\xbd\x96\xe4\xaf\x75\x95\xff\xf9\xfa\x0b\x27\xbf\x76\x7c\x6c\x49" "\x30\xff\xe1\x34\x7f\xbd\xab\xfc\x5b\x7e\xf5\x93\xfb\xef\xb9\xea\xd0\xca" "\xe0\xfe\x39\x96\xee\x9f\x46\x57\xf9\xd7\x7d\x65\xc9\x1d\x27\x0e\x6d\x1e" "\x1c\x0f\xe5\x7f\x3c\xcd\x3f\xd4\x55\xfe\x4b\xae\x5f\x7b\xe9\xd9\xc7\x0f" "\xde\x12\x1c\xff\x86\x74\xff\x0c\x77\x95\xff\x87\x0f\xae\x7f\xfd\xfa\xc3" "\xdf\x7c\x26\x98\x3f\x4a\xf3\x2f\xee\x2a\xff\xcb\x8f\x3d\xb9\xa6\xbe\xea" "\xa1\x97\x82\xf9\x8f\xa6\xfb\x67\xa4\xab\xfc\x57\x6f\x7c\xe4\xb2\x8f\xaf" "\xbe\xf7\xd1\xe0\xfe\x7f\x31\xcd\xbf\xb4\xab\xfc\x5b\x5f\xba\x6f\xfb\xde" "\x27\x9e\x5b\x1f\x9c\x9f\x9b\xd2\xfd\x33\xda\x55\xfe\x93\x97\xfd\xe0\x95" "\xd7\x47\x2f\x7f\x32\x74\xec\x8c\x1f\x3f\xd5\xaf\xb0\x00\xbf\x5e\xde\x96" "\x9c\x63\xdd\x9f\xb4\xbb\x5d\x67\xf6\xaa\x6d\xbd\xf0\xc8\x78\xa3\x79\xce" "\xb7\x24\xf9\x58\xda\xcf\x8e\x72\xe2\xb6\xb5\x0b\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x84" "\xec\x99\xaa\x1f\x6c\x6f\xbf\xf2\xcc\x03\x57\x7e\xfe\x7f\x6c\xfb\x6f\x8d" "\x38\x8a\xe2\xc0\x7d\xa6\x0a\xa4\xdf\xab\x2f\x9a\x98\x18\xef\x62\x1c\xeb" "\xbe\xb2\xe4\x8e\x13\x87\x36\x0f\xa6\xed\xe9\xbe\xc7\xba\xc8\x03\x00\x00" "\x00\xcc\xb5\xfa\xe5\x2f\x7d\xb1\xbd\x9d\xae\xc3\x6b\x49\x3b\x8e\x86\xa2" "\xb1\xe8\x50\x3c\x1c\xad\x2e\xbc\x7f\x7a\x8d\x60\x75\xda\x8a\xb3\xdb\xf3" "\xd7\x10\x86\x67\x23\xfb\x92\xa7\xd6\xa7\x3c\xf5\x3e\xe5\x69\xf4\x29\xcf" "\x40\x9f\xf2\x2c\xea\x53\x9e\xc1\x3e\xe5\x19\xaa\xc8\x33\x14\x75\x96\x67" "\xb8\x34\x4f\xad\xe3\xf1\x2c\xee\x53\x9e\x91\x3e\xe5\x59\xd2\xa7\x3c\x4b" "\xfb\x94\xe7\x8c\x3e\xe5\x59\xd6\xa7\x3c\xa3\xa5\x79\x42\xf3\x70\x6a\x59" "\x3e\xcf\xf2\xae\xf2\xcc\x1d\xcf\x8a\x3e\xe5\x79\x5b\x9f\xf2\xac\xec\x53" "\x9e\xb7\x77\x9b\xe7\xae\x6c\x9e\x77\xf4\x69\x3c\x67\xf6\x29\x4f\xfe\x9a" "\xf2\x7c\xe7\xe1\xd2\x24\xf2\xac\x50\x9e\x99\x2f\xea\x95\x79\x1a\x71\xbd" "\xf5\x8d\xa2\xeb\xe9\x69\x3f\x67\xf7\xd8\xcf\x48\x87\xfd\xe4\xaf\xd9\xcf" "\xb7\x9f\xe1\x0e\xfb\x39\xaf\xc7\x7e\x86\x3a\xec\xe7\xdd\x3d\xf6\x13\x77" "\xd8\xcf\xfa\xdc\xfd\x6a\xf3\xec\xa7\x56\xd1\x4f\x3a\x6f\x6f\x0d\xd5\x93" "\xb6\x3a\x9c\xff\xb7\xf5\x29\xcf\xed\x7d\xca\x73\x47\x9f\xf2\xfc\x5e\x9f" "\xf2\xfc\xe3\x3e\xe5\xf9\x27\x7d\xca\x73\x67\x8f\x79\xa6\xdd\x5d\xb0\x0d" "\xe0\x0f\x9e\x3d\xff\x8f\xdb\xdb\xe9\xfa\x3f\x5d\x7f\xc6\xd1\x68\x34\xd8" "\xb8\x28\x5a\x9c\x1c\x71\xf2\x57\x01\xd2\xf5\xee\x39\x33\x9f\xe7\xbe\xde" "\x15\x1e\x90\x66\xd6\x5d\xcd\x4c\x6b\x72\xdb\x07\xaa\xf2\xe5\x17\xd8\xb9" "\x7c\xe7\xcc\x77\x7c\xf9\x0b\x08\xb9\x7c\xef\x2c\xc9\x37\x18\x35\xe6\xac" "\x57\x0b\xf2\x35\xda\xf3\xad\x2b\x1d\x5f\xe7\xf9\x00\x00\x00\x60\x3e\xfe" "\xe9\xc9\x3b\x32\x3f\x9a\x9b\xbb\xfe\x1f\x8b\x06\x1b\x2b\x5b\xeb\xd7\x77" "\xe5\xee\x5f\xb9\x5e\xcf\xff\x20\x3b\x91\xe6\x3b\xbf\x4f\xf9\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\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\xb3\x6b\xef\x21" "\x72\x95\xed\x01\xc0\xdf\xb3\x33\x3b\x33\x5d\x2f\x59\x25\x89\x13\x73\x5b" "\x92\xd4\x28\x62\x2e\x86\x94\x6a\x5b\x1d\x02\x15\x2c\xd5\x8d\xb5\x89\x97" "\x20\xdb\x54\x57\x37\xb8\x26\x9a\x4d\xd4\xa4\x2d\xb1\x5a\x9a\xb0\x60\xb1" "\x8d\xbd\x78\xfb\xa3\xd1\x4a\x11\xa9\x0a\x42\xb0\xdd\x82\x45\x5b\xe9\x1f" "\x0d\x0d\xd6\xe2\xa5\xdb\xd5\xad\xe8\x3f\x52\xad\xb9\xa9\xb1\xdf\x7c\xcc" "\xee\xbc\xbb\x67\xe7\xe2\xee\x37\xdf\x67\xf2\xe5\xfb\x7e\x3f\xe4\x9c\x79" "\xce\x79\x9e\xf7\x79\xcf\x11\x84\xe7\xac\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xfc\xf4\xfb\xcf\x3f\xff\xbf\x37\xd3\xf1\xe8\xd0\x60\x77\xdf\x48\xcf" "\x70\x48\x42\xe5\x9f\x86\xca\x0d\xc4\x7b\x99\x5c\xa9\xd4\xd5\xc2\x3e\xbe" "\x78\x6b\xf3\xad\xff\xfb\xde\xee\x83\x31\xae\xf4\xce\x67\x5b\x58\x08\x00" "\x00\x00\xa8\xf3\xf2\x55\xf3\x2e\x4e\xc7\x71\x0e\x8f\xa3\x77\x12\x0a\x21" "\x9f\x5d\x1d\xf2\x49\x6e\x4a\x5d\xb1\xfa\x1d\xa0\x58\x8d\xdb\x3a\xc7\xcf" "\x8b\x56\x84\xb5\x99\x83\xbf\x78\x6d\x52\x6a\x1b\x8b\xcf\x4f\xce\x9b\x52" "\x57\xa8\xd6\x15\xaa\x71\xa6\x5a\x37\xb0\x6b\xf7\xdd\x9b\xfb\xfb\x7b\xb7" "\x7f\x8f\x3f\x2a\x7d\x6a\x9f\xa3\x76\x3f\x49\x08\x63\x9f\x2f\x16\x9d\x1b" "\x36\xac\xd8\xfb\xc6\xa1\xa4\x6b\xfc\x39\x3a\xa6\x79\x8e\xb6\x6a\xdd\xca" "\x1d\xf7\xdc\xbb\x72\x60\xd7\xee\xcb\xb6\xdc\xb3\xf9\xae\xde\xbb\x7a\xb7" "\xae\x59\xb3\xf6\x8a\xd5\x6b\x56\x5f\x7e\xc5\x9a\x95\x77\x6e\xe9\xef\x5d" "\x35\x7e\x0c\xf9\x69\xd6\x0b\x21\x94\xa6\xbe\x97\x69\xfe\x45\x02\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x29\xb0\xe7\x5f\x0f\xfe" "\x51\x3a\x1e\x1d\x1a\xec\xee\x1b\xe9\x19\xee\x48\x42\x48\x9a\xd4\x94\x1b" "\x88\xf7\x32\xb9\x52\xa9\xab\x85\x7d\x7c\xf0\xd4\xb3\x0b\x32\xf3\x1e\x3f" "\x1c\xe3\x4a\xef\x7c\xb6\x85\x85\x00\x00\x00\x80\x3a\xff\xf4\xf2\xbc\xab" "\xd3\x71\x9c\xc3\xe3\xe8\x9d\x84\x42\xc8\x67\x73\x21\x13\xe6\x8d\xc5\x4b" "\x26\x53\xb3\x21\x94\xcb\xf1\xfa\xb2\x9a\xeb\xa7\x62\xef\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xa9\x75\xe4\x78\xf7\x7f\xa7" "\xe3\xd1\xa1\xc1\xee\xbe\x91\x9e\xe1\xb3\x92\x10\x92\x26\x35\xe5\x06\xe2" "\xbd\x4c\xae\x54\xea\x6a\x61\x1f\x1b\xd7\xfc\xd5\xd5\xbf\x31\xff\x91\x27" "\x63\x5c\xe9\x5d\x6c\x61\x1d\x00\x00\x00\xa0\xde\x3b\x17\xb7\x3f\x92\x8e" "\xe3\x1c\xde\x56\x8d\x93\x50\x08\xc5\xb0\x34\xb4\x27\xf3\xa6\xd4\xc5\x6f" "\x03\x17\xd6\xac\x57\x9b\x17\xd7\x59\x38\xc3\xbc\xda\x6f\x07\xcd\xf2\x96" "\xce\x30\xef\xa2\x19\xe6\x5d\x32\x4d\xde\xf5\xd5\xf3\x83\x01\x00\x00\x00" "\xce\x3c\xb7\x74\xfe\xdb\xc6\x74\x1c\xe7\xff\xf6\x6a\x9c\x84\xce\x90\xcf" "\x16\x43\xa6\x1a\x4f\x37\xc7\xc7\xef\x02\x8b\x6b\xf2\x62\xfd\x74\xf3\x7d" "\xac\x5f\xd2\xa4\x7e\xba\xb9\x3f\xd6\xd7\xce\xfd\x00\x00\x00\xf0\xf3\xec" "\xb2\x4f\x5f\xf9\x36\x1d\xd7\xcf\xff\xc5\x90\xcf\x16\x26\xe6\xef\xe9\xfe" "\x9e\x7e\x5d\xf5\xec\xef\xe4\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\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\x33\xff\x7c" "\xfc\xda\x7f\x48\xc7\xa3\x43\x83\xdd\x7d\x23\x3d\xc3\x99\x24\x84\xa4\x49" "\x4d\xb9\x81\x78\x2f\x93\x2b\x95\xba\x5a\xd8\xc7\x86\x1f\x7c\xb2\xef\xe1" "\x1b\x1f\x98\x1d\xe3\x4a\xef\x7c\xb6\x85\x85\x00\x00\x00\x80\x3a\x2f\xe6" "\x7e\xf9\x81\x74\x1c\xe7\xf0\x38\x7a\x27\xa1\x10\xf2\xd9\x8e\xd0\x1e\xce" "\x1a\x9b\xfb\x3f\xca\xcd\x9a\xbd\xe5\x0f\xe7\x2f\x0c\x21\x94\xc6\x12\x72" "\xb9\xf0\xe0\xe6\x1d\x3b\xb6\x5f\x3e\x7e\x8c\x79\xbf\x95\x1c\xf8\xb5\xe5" "\xf7\x0c\x5d\x5a\x97\xb7\x7a\xfc\x78\xea\x9f\x14\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xf8\x71\xad\x79\x61\xff\xa6\x74\x3c\x3a" "\x34\xd8\xdd\x37\xd2\x33\xfc\x0b\x49\x08\x49\x93\x9a\x72\x03\xf1\x5e\x26" "\x57\x2a\x75\xb5\xb0\x8f\x77\xf6\x5f\x72\xf2\xb6\xc7\x5e\x1b\x8a\x71\xa5" "\x77\xb1\x85\x75\x00\x00\x00\x80\x7a\x0b\xfa\x5f\xff\x9f\x74\x1c\xe7\xf0" "\x38\xfb\x27\xa1\x10\x8a\x21\x17\x72\x61\xee\x58\x9c\x9e\xf5\x2b\xda\x6a" "\xd6\x6b\xf6\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xf8\xd9\x31\xb0\x6b\xf7\xdd\x9b\xfb\xfb\x7b\xb7\xfb\xe1\x87\x1f" "\x7e\x4c\xfc\x38\xdd\xff\x65\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x4e\x97\xbf\xdf\xfa\x67\x9f\xa7\xe3\xd1\xa1" "\xc1\xee\xbe\x91\x9e\xe1\x42\x12\x42\xd2\xa4\xa6\xdc\x40\xbc\x97\xc9\x95" "\x4a\x5d\x2d\xec\xe3\x97\x6e\x5b\x74\xc5\xc2\xa3\x3b\xef\x8f\x71\xa5\x77" "\xb1\x85\x75\x00\x00\x00\x80\x7a\x9b\x3e\xdb\x79\x34\x1d\xc7\x39\x3c\xce" "\xfe\x49\x28\x84\x62\x68\x0f\xed\x61\x4e\x35\xae\x37\x36\xff\x77\x9e\x8a" "\xdd\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa7\xd3" "\xe2\x90\x84\xf2\x8f\xe8\x82\xf5\xa7\x7b\xd7\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xf7\xe1\xd8\xbb\x1b\x9e" "\x4a\xc7\xa3\x43\x83\xdd\x7d\x23\x3d\xc3\xe7\x24\x21\x24\x4d\x6a\xca\x0d" "\xc4\x7b\x99\x5c\xa9\xd4\xd5\xc2\x3e\x6e\x3d\xfc\xc7\xbf\x73\xef\x81\x37" "\x2f\x89\x71\xa5\x77\x3e\xdb\xc2\x42\x00\x00\x00\x40\x9d\xf6\x4f\xdf\xfd" "\xdd\x74\x1c\xe7\xf0\x38\x7a\x27\xa1\x10\xf2\xd9\x05\x21\x1f\x16\x54\xaf" "\xf4\x4f\x5d\x20\xc9\xc4\xc4\x86\xdf\x05\x26\xeb\x7e\x7f\x4a\x59\x66\xc6" "\x75\xfb\x6a\x76\x3c\xbe\xb3\x42\xf5\x3b\x44\x61\x62\x9f\x61\xec\xb3\xc3" "\x64\xdd\x63\xdf\x59\x57\xac\x5e\x6d\xeb\x9c\xd9\x7b\x02\x00\x00\x80\x33" "\xd9\x9c\x7d\xd7\xff\x41\x3a\x8e\xf3\x7f\x7b\x35\x4e\x42\x67\xc8\x67\xe7" "\xa4\xe6\xea\x7b\xa7\xd4\x77\xcc\x78\x8e\x7f\x7c\x4a\xdd\x39\x33\xae\xfb" "\xdb\x29\x75\x9d\xd3\xd4\xfd\x04\x5e\x09\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xd0\xa2\x47\xd7\xbf\x75\x41\x3a\x1e\x1d\x1a\xec\xee\x1b\xe9\x19" "\x4e\x92\x10\x92\x26\x35\xe5\x06\xe2\xbd\x4c\xae\x54\xea\x6a\x61\x1f\xa5" "\xde\xa7\x5e\x7f\xfe\xe6\xa1\x79\x31\xae\xf4\x2e\xb6\xb0\x0e\x00\x00\x00" "\x50\xef\xc6\x4f\x0a\x7f\x9a\x8e\xe3\x1c\x1e\x67\xff\x24\x14\x42\x31\x2c" "\x0c\xe7\x86\x85\x63\x73\x7f\xe8\x9c\x5a\x1f\xf3\xce\x2a\xfd\xfb\xfb\xeb" "\x0e\xbe\x77\x4b\x08\xab\xe6\xbe\xbd\x28\xdb\xb0\x57\x12\xc2\x43\x7f\x79" "\xe8\xa6\xcf\xc3\x89\x5f\xfd\xe8\xab\xf1\xc3\x58\x18\x42\xdb\xd4\xc4\xb6" "\x10\x66\x55\xfb\x25\x4d\xfa\xdd\xfe\x1f\x2f\x6c\x78\xe3\xdb\xbd\xcf\x84" "\xb0\x6a\x4e\x66\x41\xe3\x7e\x15\x93\xad\x26\x0f\xb5\xdb\x2a\x95\xcf\xdf" "\xb3\xec\xf9\x9b\xe7\x1e\x5e\xd7\x74\x19\x00\x00\x00\x38\xa3\x15\x9e\x3d" "\xf6\x37\xe9\x38\xce\xff\x71\xa2\x4e\x42\x67\xc8\x67\xb7\x36\x9d\xff\x63" "\xde\x4c\xe6\xff\x8a\xb1\x81\xbf\x7b\x60\xfe\x9e\xd9\xd5\x63\xf5\x0b\x40" "\x4d\x45\x5b\x67\xb5\x5f\x5b\x93\x7e\x83\x5f\x3e\xd3\x75\x7c\xd3\x6f\x1f" "\xaf\xcc\xff\x6f\x2f\x2a\x4c\xfc\xbf\x02\x17\x2f\x9d\x92\x7e\xb2\x5c\x2e" "\x4f\xb4\x4a\x1f\x6b\xbe\x39\x24\xa5\xf2\xe2\x57\x2e\xda\x78\xf2\xd8\x7d" "\x37\x8c\x5f\x88\xfd\x33\x4d\xfa\x6f\x6a\x5f\x72\xde\xfe\xcf\xe6\x2f\x89" "\xfd\x0b\xd5\xeb\x77\xd4\x3c\x6f\x7d\xe7\xd8\x3f\xd4\xf4\x1f\xe8\x39\xb1" "\x74\x45\xc7\xd9\xd7\x4c\xed\x1f\x42\xe8\x6a\xd4\xff\xaf\xaf\x7d\xf9\xeb" "\x0d\x4f\x7e\x79\xcb\x78\xff\xe6\xef\x7b\xe5\x7f\x8d\xfe\xfa\xec\xb0\xed" "\x2f\x0a\xfd\xf1\x38\x7e\xa5\xbe\xff\xfa\xa7\xd7\xee\xdf\x9d\xfb\x78\xd6" "\xd4\xfe\x49\x93\xfe\xcb\xdf\x7c\xf5\xe8\x4b\x0f\x6e\x78\xb4\xf6\xf9\x2f" "\xcc\x36\xea\x5f\x7f\xac\x51\xe9\x9a\x2d\x0f\x1e\x79\x78\xf9\x43\xeb\x7a" "\xaf\x4c\xf5\x6f\x6b\xd2\xff\xfe\xae\x0f\xbe\xf8\x93\xbf\xfb\xc7\xe7\x2a" "\xfd\x8f\x2c\xee\x98\xe8\xbf\xfc\x3b\x9e\x7f\xda\xfe\x87\x96\xee\x3b\x72" "\x60\xef\x13\x9b\xa6\xbe\xff\x52\xa3\xfe\xb7\x5f\xb6\xfd\xd5\x5d\x5b\x6e" "\x7d\x6c\xfc\xf9\xcb\xe5\xd8\xbf\xa3\x66\xe1\xf4\x9b\x4f\x1f\xeb\xdf\xff" "\x87\x0b\x92\xeb\x76\x0e\xbc\xbf\xbd\xf6\x16\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xc0\x99\xad\xe7\xa5\x6f\x4e\xa4\xe3\xd1\xa1\xc1\xee\xbe" "\x91\x9e\xe1\xb6\x24\x84\xa4\x49\x4d\xb9\x81\x78\x2f\x93\x2b\x95\xba\x5a" "\xd8\xc7\xbf\x64\x0e\x7d\xf3\xdc\xd1\xe2\xd9\x31\xae\xf4\x2e\xb6\xb0\x0e" "\x00\x00\x00\x50\xef\x86\x75\x1f\xde\x95\x8e\xe3\x1c\x1e\x67\xff\x24\x14" "\x42\x31\xe4\x42\x2e\x74\x8c\xcd\xfd\xe7\xef\x59\xf6\xfc\xcd\x73\x0f\xaf" "\x0b\x9d\xd5\xfb\xd5\x73\xb6\x7f\xdb\xc0\x8e\x4b\xef\xdc\xb6\x73\xeb\x1d" "\xa7\xfa\x11\x00\x00\x00\x80\x69\x1c\xb8\xea\xeb\x75\xe9\x38\xce\xff\xd9" "\x6a\x9c\x84\xce\x90\xcf\x2e\x0b\xed\xd5\xf9\x7f\xfd\xd3\x6b\xf7\xef\xce" "\x7d\x3c\x2b\xce\xff\x21\x84\xb1\x3f\xf7\x67\xef\xdc\xd2\xdf\xbb\x2a\x4c" "\x7c\x27\x18\xe8\x39\xb1\x74\x45\xc7\xd9\xd7\xc4\xbc\x4c\xf5\x5c\xa8\xe4" "\xad\xb8\x7d\x5b\x7f\xf5\x33\x41\x5c\xf7\xb5\x17\x7f\x65\xf5\x95\x37\xdd" "\x38\x91\xdf\x96\xce\xbf\x7c\x32\x6f\xf1\x2b\x17\x6d\x3c\x79\xec\xbe\x1b" "\x1a\xe6\xad\x99\xcc\xfb\x70\x41\x72\xdd\xce\x81\xf7\xb7\xa7\xf6\x59\x9a" "\xc8\x5b\x3d\x99\x37\x78\xe4\xe1\xe5\x0f\xad\xeb\xbd\x32\x3e\x47\x52\x3d" "\x17\xaa\xcf\x13\xf3\x0e\x2d\xdd\x77\xe4\xc0\xde\x27\x36\xc5\xbc\xb6\xea" "\xb9\xa3\xba\x1e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\xc2\x79\x5f" "\xfd\xff\xef\xa5\xe3\xd1\xa1\xc1\xee\xbe\x91\x9e\xe1\x90\x09\x21\x69\x52" "\x53\x6e\x20\xde\xcb\xe4\x4a\xa5\xae\x16\xf6\xf1\xcd\xd5\x6f\x8f\x9e\xec" "\xfc\xcd\x67\x63\x5c\xe9\x9d\xcf\xb6\xb0\x10\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfc\x90\x1d\x38\x10\x00\x00" "\x00\x00\x00\xf2\x7f\x6d\x84\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x2a\xec" "\xd4\x4f\x68\x5c\x45\x1c\x07\xf0\x99\xdd\xad\xd9\x76\x6b\x4d\x4a\xa1\x89" "\xd6\xd0\x62\x2f\x2d\x08\x85\x60\xb1\x07\x31\x17\xff\x20\x55\x4b\x45\xd1" "\x42\x31\x8a\xf1\xa2\x62\x41\xb4\x62\x0f\xb6\x0d\x06\x51\x0f\x05\x85\x4a" "\x7b\x91\x2a\x9e\x95\x1c\x8a\xda\x43\x2c\xb6\x8a\x82\x58\xc1\x83\x78\xf2" "\xa0\x27\x95\x1c\x92\x22\x55\x54\xb2\x99\xd9\xec\xbe\xf6\x91\xf8\x20\x22" "\xe5\xf3\x81\x65\xf6\x37\xbb\xf3\x7d\xbf\x37\x3b\xfb\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x80\xff\xb5\x47\x7e\xbc\xab\xd1\x5d\xf7" "\x35\x06\xdb\xe3\xf9\x57\x9e\xbb\x78\xdf\xf5\x77\x7c\x79\x74\x7c\xee\xe5" "\xbb\x3f\x7e\xe6\xc8\xc6\x4f\x36\x5c\xec\x9f\xd8\x7d\xef\x6b\xbb\xee\xfc" "\x76\xec\x8b\x81\xd1\xe1\xad\xe3\x3b\x3f\x9c\xba\x7f\x72\xe2\xec\x6d\x7f" "\x9e\x3d\x7e\x62\xf7\x92\x17\x7a\x71\x61\xd8\x9e\xca\x66\x08\xf1\xd7\x18" "\xc2\xf0\x4f\x53\xc7\x27\xcf\x7d\xb5\x71\x7e\x2e\xce\x5f\x3f\xf6\x1f\x0e" "\x03\x03\x71\xfd\xa7\x03\xb1\x90\xb0\xe3\x52\x08\xe1\x89\x4e\x9f\xbd\x1f" "\x4e\xcd\x8d\x3c\x39\x3f\x1e\x79\xbd\xaf\x67\xfe\xba\x42\x48\xf1\xbe\x42" "\xab\x9e\xfb\x59\xd0\xdf\xdb\x2f\x57\x97\x66\x3a\x67\x87\x1e\x7d\xfc\xd4" "\xf4\x53\xa3\xe7\xa6\x36\x1f\x18\xf9\x65\xf6\x96\x67\x0f\x2f\x7e\x25\x36" "\xbb\xce\x53\x08\xeb\xc6\xba\xd7\xaf\x0a\x21\xac\x4e\xaf\x79\xf9\xb4\x0d" "\xe6\xc5\x69\xdc\x13\x42\x58\xd3\xb5\xee\xd6\x25\xfa\xba\x69\x99\xfd\xdf" "\x5c\x52\x6f\x4a\xe3\x35\x69\x6c\x2d\x91\x93\x3f\xdf\x52\xa8\x1b\xcb\xec" "\xa3\x51\x18\xfb\x96\xb9\xae\xaa\xda\x0a\xe7\x17\x15\xf7\xaf\xf8\x30\x5a" "\x29\xf9\x3e\xd7\xa5\xf1\x74\x1a\xb7\xff\xcb\x9c\x7a\x7e\xc5\x50\x8b\xa1" "\xd1\x69\xff\xe9\xb8\x78\x46\x42\xd7\xef\x16\x43\x6c\x9f\xed\x66\xa7\xae" "\xb5\xeb\xd0\xa9\x43\xb1\x8e\x85\xba\x56\xa8\xeb\xab\x0a\xf7\xd5\xbe\x6e" "\xda\xd8\x7a\x8c\xbd\xf3\xf9\x7b\x85\xf9\xfc\x38\x6e\xa4\xf9\x2d\xdd\xcf" "\xea\x2b\xd8\x5b\x32\x3f\x94\xc6\x66\xfa\xa3\xfe\x9e\xeb\x50\x7c\xb3\xa0" "\x75\xd9\x9b\xc5\xfb\x08\x5d\x7d\xcd\xfc\x57\x07\xa3\x44\xad\xe4\xbf\x97" "\xe7\x3b\xed\xa5\x1f\xa3\x95\xe6\x5a\x71\xfd\x65\x6b\xfe\xbe\x82\xfc\xd9" "\xcc\xe7\x8f\xed\xfb\xed\xfb\x97\x4e\xf7\x97\xf4\x11\x3f\x88\x29\x3f\x56" "\xca\x1f\x1d\x3f\x39\xfd\xfe\xc3\x67\x86\x06\xcb\xf2\xc7\x6a\x29\xbf\x56" "\x29\xff\x7c\xfd\xeb\x4b\xef\xcd\x0e\xae\x2d\xcd\x3f\x96\xf3\xeb\x95\xf2" "\x1f\xfc\xeb\xe7\x57\x8f\x3e\x70\x70\x43\xe9\xfe\xcc\xe4\xfd\x69\x54\xca" "\xdf\xfa\xc6\xda\x43\x73\x07\xf7\xf6\x6d\x2e\xcb\x7f\x27\xe7\x37\x2b\xe5" "\xef\xdc\x3f\xbc\xeb\xc6\xd9\xe7\x5f\x28\xed\x7f\x47\xde\x9f\xd5\x95\xf2" "\xbf\x7b\x73\xdb\x1f\xfb\x8f\x7d\x74\xa6\x34\x3f\xe4\xfc\x35\x95\xf2\x7f" "\x38\xf9\xee\xa6\xfa\xd0\x5b\x17\x4a\xf3\xa7\xf3\xfe\xb4\x2a\xe5\x3f\x34" "\xf2\xf6\xed\xf7\xdc\x30\x71\xa2\x74\xff\xbf\xc9\xf9\xd7\x56\xca\xdf\x77" "\x61\x72\xec\xc0\xa9\xcf\xb6\x95\x9e\xcf\x3d\x79\x7f\xfe\x61\xbf\x8e\x4d" "\x20\x84\xa1\x30\x00\x13\xb8\xf2\x0e\x02\xb7\x80\x9b\xb8\x80\x83\x39\x82" "\xa5\xe0\x48\x6e\xe0\x18\xda\x58\x18\x21\x08\x36\x51\x2c\xe4\xfb\x20\x45" "\x9a\xa4\x7b\xef\xff\x63\xd1\xfb\x73\x3d\x4e\x4b\x6c\x86\xb3\xd9\x19\xfa" "\xa7\x37\x2c\xc0\xbb\xfc\x53\xc6\x6a\xd3\xbd\xb4\x67\x5e\x95\xf5\x85\xae" "\xfa\x6c\x99\xef\x9b\xce\xef\xce\x8f\x0e\x42\xd6\x5d\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x60\xb7" "\x06\x00\x00\xff\xff\xff\x8b\x5d\xc2", 24021); syz_mount_image(/*fs=*/0x20005d80, /*dir=*/0x20005dc0, /*flags=*/0, /*opts=*/0x200001c0, /*chdir=*/1, /*size=*/0x5dd5, /*img=*/0x20005e00); memcpy((void*)0x20000040, "./file0\000", 8); res = syscall(__NR_open_tree, /*dfd=*/0xffffff9c, /*filename=*/0x20000040ul, /*flags=*/0ul); if (res != -1) r[0] = res; memcpy((void*)0x20000080, "./file1\000", 8); memcpy((void*)0x20000980, "./file0\000", 8); syscall(__NR_renameat2, /*oldfd=*/0xffffff9c, /*old=*/0x20000080ul, /*newfd=*/r[0], /*new=*/0x20000980ul, /*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); const char* reason; (void)reason; loop(); return 0; }