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