// 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\xe2\xc9\xf1\xe3\xe1\xfb\xa2\x25\x4b\xe2\xa5\xdf" "\x5c\x12\xe7\x52\xac\x3d\x15\x45\xd1\x6d\xd3\x75\x66\xbf\x79\xf8\xe4\xba" "\xdb\x27\x6f\xef\xff\x52\x7f\x66\xfd\xb9\xb9\x24\xe6\xfb\x2f\xb7\x81\x64" "\x9e\x1d\xd8\xfc\x99\xa7\x8f\x7e\x7e\xec\xdb\x87\x47\x77\xad\xfb\xc9\x89" "\x2b\x77\xde\x37\x13\x12\x0f\xb4\xcc\xa7\x28\x3a\x67\x4b\xeb\xe3\xfb\xa2" "\x28\x1a\x4c\xfe\x4d\x4a\x67\xdb\x48\xfa\xe0\xe4\x76\x7d\x14\x45\x0b\x5b" "\x1e\xf7\xbe\x8a\xba\x2e\x69\xb3\xfe\xcb\x02\xcb\x2b\x93\xdb\x05\xc9\xed" "\x50\x45\x9e\xf4\xfb\x17\xe7\x96\x1b\x6d\xd6\xd1\xc8\xdd\xf6\xb7\xf9\xb8" "\x4e\xd5\xe6\x39\x7f\x5e\x7e\xfb\xe5\x77\x46\xf3\x25\xed\xf3\x9c\xe4\xf6" "\xb9\xe4\xf6\xd2\x39\xe6\xa9\xa7\xff\xe2\xa8\x16\x47\x8d\xe9\xf2\xb7\xc7" "\x33\x73\x24\x6a\x79\xde\xe2\x28\x9e\x9a\xdb\x03\xd3\xcb\xb5\xa9\xe5\x68" "\x7a\x39\xca\x2f\xc7\xb9\xe5\x5a\x6e\xb9\xde\x97\xeb\x6b\x6a\xdc\x64\xc3" "\xd6\xe3\x38\xbb\x3e\x8d\xcb\xad\x4f\x77\xc7\x8d\x64\xfd\xc5\xad\xfb\xea" "\x02\x1b\x02\xeb\x97\x27\xb7\x03\xc9\x0b\xf5\x8d\x74\x39\xca\xdf\x69\x1a" "\x9a\x75\x67\xa6\x8f\xa8\xa5\xae\xe3\x67\x6a\x62\x04\xd4\x02\xaf\xbd\x74" "\xfd\x74\x79\xc9\x93\x31\x94\xac\x1b\x8a\x97\xce\x7a\xcc\x44\x81\xf4\x7b" "\xc7\xbf\xb3\x75\xd3\x6b\x3f\xbc\xe7\xb9\xe1\x40\x1d\xf1\xb3\x71\x92\x3f" "\xee\x28\xff\xd8\xf8\x53\x47\xbf\x76\xd3\x91\xe5\x23\xa1\xfc\x5b\x6a\x49" "\xfe\x5a\x47\xf9\x5f\xac\xbf\x74\xea\xab\x27\x46\x16\x05\xf3\x1f\x4c\xf3" "\xd7\x3b\xca\xbf\xf1\xe7\x3f\x7e\xf8\x81\xeb\xf7\x2f\x0b\x6e\x9f\xe3\xe9" "\xf6\x69\x74\x94\x7f\xf5\x97\x17\x1d\x38\xb9\x7f\x43\xff\x68\x28\xff\xa1" "\x34\xff\x40\x47\xf9\xaf\xba\x65\xd5\xd5\x17\x9e\xd8\x77\x67\xb0\xfe\xb5" "\xe9\xf6\x19\xec\x28\xff\x0f\x1e\x5d\x73\xfa\x96\x83\xdf\x38\x12\xcc\x1f" "\xa5\xf9\x17\x76\x94\xff\x95\xa7\x9e\x59\x59\x5f\xfe\xd8\xb1\x60\xfe\xa3" "\xe9\xf6\x19\xea\x28\xff\x0d\xeb\x9e\xb8\xe6\x63\x2b\x1e\x7c\x32\xb8\xfd" "\x5f\x4e\xf3\x2f\xee\x28\xff\xa6\x63\x0f\x6d\xd9\xf5\xf4\x0b\x6b\x82\xf3" "\x73\x7d\xba\x7d\x86\x3b\xca\x7f\xea\x9a\xef\xbf\x7a\x7a\xf8\xda\x67\x42" "\xfb\xce\xf8\xd0\x99\x7e\x87\x05\xf8\xc5\xf2\xb6\xe4\x18\xeb\xe1\x64\xb9" "\xd3\xf3\xcc\x6e\xb5\x9c\x2f\x3c\x31\xda\x68\x1e\xf3\x2d\x4a\xfe\x2d\xee" "\xe5\x40\x39\x71\xcb\xb9\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x74\xea\xb1\x6b\xfe\xfd\x17\x5a\x97\xdf" "\xf9\x7f\xee\xdc\x78\xec\x3f\xac\xda\xd6\x48\x96\xfb\x1b\x51\x14\x47\x51" "\xf4\x5a\xbd\xb9\x9c\xae\x5f\x10\x45\xf1\x60\x14\x45\x7b\xf6\x6e\xdd\xbd" "\x77\xdb\x8e\xcf\x8e\xfe\xd6\xce\x7d\xbb\x77\x6c\xdd\x3e\xba\x75\xef\xe8" "\xf8\x8e\xbd\xbb\xef\x1e\xfd\x5b\x7f\x73\x74\xf7\xf8\xae\xed\x5b\xef\x9e" "\xfc\xee\xda\xcb\xd6\x35\x1f\xb7\x74\x2a\x5b\x14\x2d\x8d\x2f\x9c\x55\xcb" "\xc4\xc4\xc4\x44\x14\x45\xa3\xad\xeb\xd2\xf1\x7e\xef\xa3\xcf\xfe\xbf\x8d" "\x4f\xfe\xe5\xa7\xa3\x68\xed\x79\xdf\x5f\xd5\x08\xf6\xf3\xde\xff\xfa\xea" "\x87\x96\x15\x7c\xcd\x89\xc7\x26\xd6\xff\x8b\x2b\x1f\xbd\x67\xc1\xff\x3a" "\xb7\xb9\x62\x38\xa9\x6b\x38\x54\xd7\x70\x76\x5d\x5a\xc1\xd0\xd8\xcb\x7f" "\xf6\xc1\xe7\x7e\x38\x59\xd7\xdb\xcb\xea\x7a\xfc\xa5\x1b\xff\x6f\xa6\xa0" "\xa9\x15\x33\x79\x12\xb5\xfe\xa8\x36\x75\xa7\x3f\x5e\x58\x58\xc7\x74\xd5" "\x33\xf5\x4c\x6d\xaf\xc6\xed\xdb\xb6\x8f\xaf\xad\xde\xbe\x71\x60\xfb\xbe" "\xfb\x85\x3f\x3c\xf1\xef\xee\xda\xf8\x4f\x9b\xdb\x77\x20\xd8\x47\x9b\xdb" "\x77\x72\xab\x36\x26\x1e\xf9\xe9\x03\xef\xbe\xef\x83\xe3\xef\x3f\x8b\x9f" "\xf7\xaa\xed\xdd\xd2\xc2\x54\x7d\xe9\xf6\x1b\x48\xb6\xf7\x39\x49\x5f\xe7" "\x04\xfa\xaa\x05\xfa\xba\x73\xf4\x95\xe3\xff\xec\xdf\xfe\xa7\xaf\xde\x17" "\xad\x6d\xfc\xf4\xa2\xd9\x63\x57\xf5\xd5\x97\x4c\x80\xbe\x78\x79\x5b\xe3" "\xa6\x23\x2c\x8c\x97\x64\x62\x07\x92\xf8\xf4\x19\x4f\x1f\xf7\xde\xbd\x77" "\xec\x7a\xef\x9e\xbb\xef\xb9\x6c\xdb\x1d\x5b\x3f\x3b\xfe\xd9\xf1\x1d\xeb" "\xd6\x5d\x79\xf5\xe5\xeb\x2e\xbf\xe2\xea\x75\xef\x9d\x6a\xbd\xf9\xb5\x67" "\xfd\xa7\xe3\xbf\xbb\xcd\xfe\x17\x25\x99\x16\xc5\x2b\x0a\xb7\x5b\x7e\x6d" "\x3a\xee\x45\x53\x5f\xeb\x51\x52\x76\x7a\xd3\x72\x27\xab\x2f\x1a\x6a\xde" "\xe6\xb6\x73\x1a\x9e\xef\x7a\x28\xf9\xde\x50\xbc\x74\x56\xae\x89\x02\xe9" "\xf7\x8e\x7f\x67\xeb\xa6\xd7\x7e\x78\xcf\x73\xa1\x57\x5e\xfc\x6c\x73\xc4" "\xc1\x68\x71\xf3\x36\x5e\x19\x88\xdc\x9e\x7b\x60\x7d\xba\xe0\xa2\xf1\xcf" "\xcc\xeb\x72\xe7\xef\x0e\x6c\x4f\xbf\xe6\x5e\x97\x7d\xcd\xea\xf2\xaf\xcb" "\xaa\xba\xaa\xe6\xd5\x64\x5d\xd5\xf3\xaa\xb5\xa2\x92\xfd\xd8\x4b\x97\x3c" "\xfc\xd3\xa7\xbf\xf8\xcf\x6f\x6e\x63\x7f\xd1\x12\x3a\x55\x5f\x5a\xe7\xc2" "\xc9\x97\xcb\xe5\x51\xcb\xeb\x76\xf6\xb6\x2a\xea\xab\x8d\xe7\x67\xac\x68" "\x3b\xdc\x7a\xd9\xee\x3f\xbc\x7b\xdb\xa6\x83\x55\xfb\xf3\xd6\x67\xa6\xf5" "\x6b\x4e\x3c\x36\xf1\x3f\x57\xc6\x1f\xdf\xb7\xe7\xcf\x76\x37\x57\x9c\x91" "\xf7\xcb\xd6\x82\x3a\x7c\xbf\x9c\xae\x7a\xa6\x9e\xa9\xed\x35\x90\x3c\x1f" "\x67\xeb\xf6\xed\x8f\xea\x49\x5f\x43\x85\x75\x6d\x88\x9f\xfe\xc0\xbb\xef" "\x38\xf2\x2b\xd3\xf5\x2d\x58\x10\xdd\xb5\x75\xef\xde\xdd\x97\x37\xbf\xbe" "\x55\xfb\xfa\xf3\x05\xe7\x2e\xdb\x76\xff\x8a\x0b\x67\xf5\x75\x45\xf3\x6b" "\xd5\x7e\xff\xa2\xdc\x72\xe5\x7e\xbf\x56\xdc\x5f\xd5\x7e\x3f\x3f\xce\x4c" "\x7c\x71\xbe\xd1\xdc\xf2\x50\x54\xef\xe8\x7d\x62\xe3\xcf\x7f\xfc\xf0\x03" "\xd7\xef\x5f\x16\x7c\x9f\x38\xde\xee\xfb\xc4\x6f\x67\x96\xea\x5d\xbe\x4f" "\xd4\x02\xaf\xf7\x47\xfe\xf2\x2b\xa3\xaf\xdf\xfc\xa9\xd7\xab\xe6\xd3\x75" "\x7b\x56\xdc\xbb\xac\xe0\x6b\xbe\xbd\xb1\x89\x6f\xfc\xc1\xaf\x5e\xfe\xfe" "\x1b\xaf\xff\x70\x73\xc5\x19\xd9\x0f\xb5\x16\xd4\xe1\x7e\x68\xba\xea\xa4" "\x9e\x74\x7b\x4d\xed\x87\xae\x38\x7b\xfa\x78\xf3\x9e\xe7\xcc\x0b\x31\x1e" "\x9b\xb8\xe8\xeb\xef\xba\xe1\xf4\xc9\x2f\x7c\xb2\xb9\xa2\x6a\xfb\x4e\x47" "\x17\x6d\xdf\x75\xd5\xfb\xf9\x7a\xa0\xaf\x9b\xfb\xde\xb1\xe4\xd1\x9f\xac" "\x78\x47\xef\xe6\xef\x9e\xcd\x7f\x75\xc9\x7b\x16\x2e\x3a\xcb\xe6\xef\x40" "\xb2\x7d\x07\x02\xdb\x77\xba\xea\xa4\x9e\x7a\xeb\xf6\x7d\xcf\xad\x3b\xb7" "\xdf\xd6\x5c\x3e\x7b\x8f\xdb\x9a\xfa\x2b\xce\x7f\xd2\xf7\x9d\x3d\x77\xdf" "\xf3\xf9\xad\xdb\xb7\x8f\xef\xde\xd3\x5e\x5f\xed\xbe\x9f\xa6\xe3\xe4\xb7" "\x72\xa7\xef\xa7\xe9\xbb\xc7\xd2\x8a\xbe\xd2\xe7\x6b\xa6\xaf\xe2\x3b\x83" "\x49\x7c\xc1\xb7\x5e\x8c\x82\x8f\xca\xde\x69\x67\x7b\xb5\xfb\x7a\x4b\xeb" "\xbf\x2d\x97\xa3\xd3\xd7\x1b\x40\x6a\xe6\x7d\x61\x41\x66\x7d\x7e\xff\x99" "\x5e\xf7\x5b\x75\x4e\xb4\xf1\x3d\x5f\xfc\xd6\x4b\xf1\x68\xf3\xfd\xb2\x57" "\xd7\x5b\xd3\x71\x2e\xc8\xbd\x31\x77\x7a\xbd\xb5\xea\x3c\xe9\x1d\xb9\xe5" "\xec\x79\x52\x23\x6a\xe9\xbb\x69\xf6\x79\xd2\xd4\x43\xaa\xce\x93\xf2\xe3" "\x54\x9d\x27\x5d\x92\x5b\xae\x3e\x8f\x79\xb8\xb0\x93\xd0\xf3\xd7\x97\xbc" "\xf3\x16\x5d\x37\xcd\xd5\xdb\x98\xcc\x50\x38\x3f\xe2\x28\x1a\x49\xf2\x8f" "\x24\xab\xd2\xe3\xcd\x55\xef\x89\xae\xac\x3f\xf7\xce\x8f\xc6\x63\xed\xcd" "\x8f\x76\x8f\xa7\xd3\x71\xfe\x46\x6e\x03\x75\x7a\x3c\x5d\x35\x3f\x56\x47" "\xc5\x75\xf5\x7a\x7e\xbc\x2b\xf7\xa0\xea\xe7\xfb\x60\x61\x65\x03\x81\xe7" "\xa3\xea\xf9\x5e\x9d\x49\x34\x31\xd1\xed\x79\xf9\x70\xa0\xea\xf4\xbc\x7c" "\x28\x8a\x3b\xca\x3f\x36\xfe\xd4\xd1\xaf\xdd\x74\x64\x79\x30\xff\x96\x5a" "\x92\xbf\xd6\x51\xfe\x17\xeb\x2f\x9d\xfa\xea\x89\x91\x45\xc1\xfc\x07\xd3" "\xfc\x8d\x8e\xf2\xaf\xfe\xf2\xa2\x03\x27\xf7\x6f\xe8\x0f\xe6\x3f\x94\x6e" "\x9f\x81\x8e\xf2\x5f\x75\xcb\xaa\xab\x2f\x3c\xb1\xef\xce\x60\xfe\xb5\x69" "\xfd\x83\x1d\xe5\xff\xc1\xa3\x6b\x4e\xdf\x72\xf0\x1b\x47\x82\xf9\xa3\x34" "\xff\x50\x47\xf9\x6f\x58\xf7\xc4\x35\x1f\x5b\xf1\xe0\x93\xc1\xfc\x2f\xc7" "\xc9\x38\x93\xaf\xdd\x28\x3a\x7c\x72\xdd\xed\xcd\xe5\x78\xea\x12\xfa\x40" "\x4b\x1d\x7d\x99\xba\xa2\xfc\x72\x3c\xbd\xbc\xa0\xa8\x8f\xa8\xde\x1a\x5f" "\x4b\xc3\x92\x01\xea\x71\x9c\x5d\x9f\xc6\xe5\xd6\xa7\x7d\x34\x92\xf5\x17" "\xb7\xd4\x58\x64\x63\x60\x7d\xfa\xaa\x1d\x48\x5e\xd8\x6f\xa4\xcb\x51\xfe" "\x4e\xf9\xfa\x74\xf7\x94\xd6\x75\x3c\xf0\xfe\x73\xa6\xd4\x5a\x8e\x3d\x8a" "\xd6\x57\x5d\x9f\xec\x95\xd7\x7e\x34\xf2\x7b\xad\xcb\xe9\xcf\xff\xd3\x39" "\xd0\xdf\x68\x3e\x77\x57\xe4\xb6\x57\xd5\xfb\x47\x7e\xef\x9d\xe6\x0b\x5e" "\x87\x0d\x5c\xc2\xa8\x3a\x5e\x98\xfd\xf3\xb7\x85\x1d\xbd\xfe\x5e\x79\xea" "\x99\x95\xf5\xe5\x8f\x1d\x0b\x5e\x57\x3d\xda\xee\x75\xd5\x5d\x99\xa5\x85" "\x15\xd7\x55\xbb\xad\x37\xb8\xbf\x38\x9a\xee\x4f\xbb\xdb\x1f\x8d\x84\xf2" "\xbf\x9c\xe6\xef\xee\xfd\x20\x98\x3f\x79\x3f\xa8\x9a\x67\xef\xcc\x2d\x57" "\xce\xb3\xbe\xe2\xf1\xaa\xe6\x59\xfe\x38\x65\x28\x5a\x5c\xd6\xf7\xac\xde" "\xd3\xef\x6d\x3a\xf6\xd0\x96\x5d\x4f\xbf\xb0\x26\x38\xcf\xd6\x37\x5f\xf0" "\xd5\xf3\xec\xb1\xcc\xd2\xe2\xca\x79\xd6\xdd\xcf\xa5\x83\xf3\xec\xd9\xb8" "\x9d\xed\x11\xcc\x9f\x6e\x8f\x60\xfe\xf5\xbd\x39\xae\x09\xce\xb3\xe4\xb8" "\xa6\x6a\x9e\x5d\x9a\x5b\xee\x7e\x9e\x65\x8f\x47\x3f\x9e\xdc\xde\x95\x8b" "\x1f\x4a\xae\x10\xcf\xb5\xef\x53\xd7\x7c\xff\xd5\xd3\xc3\xd7\x3e\x13\x9c" "\x67\x87\xda\x9d\x67\xbf\x9f\x59\x1a\xae\x9c\x67\xcd\xe3\xdb\xfe\x0e\x8f" "\x6f\x83\xcf\xd3\xf4\xf1\xed\x7c\x1f\x9f\xbf\xb5\x8f\x3f\x7b\x7a\x7c\xd8" "\x5c\xae\xe5\x96\x8b\x8f\x0f\x93\x1f\xe7\xce\xd7\xf1\xe1\x86\xc0\xfa\xb9" "\x1e\x1f\x0e\xcd\xba\x33\xd3\x47\xf4\x56\x3c\x3e\x0c\xec\x67\x00\xa0\xcc" "\x77\x1f\xb9\xfb\x7f\xb7\x2e\xa7\xe7\xff\xe9\x7b\x77\x7a\xfe\xff\xad\xdc" "\xe3\xba\x3d\xaf\xcc\xff\x7f\xa8\x54\xaf\xce\x2b\x83\xf9\x0f\xf5\xe6\x7c" "\x25\x78\x9c\x3a\x7d\xbe\x32\xdf\xe7\x5b\xdd\x5d\x47\xae\x3e\xce\x9e\xdf" "\xf3\x2d\xc7\xf1\xad\x06\x67\xf2\x4f\x5f\x47\x9e\xef\xeb\x42\xf3\x7b\x5e" "\xe9\x3c\x24\x59\x8e\xf2\x77\x9a\x9c\x87\x00\x00\xf0\x66\xb8\xf8\x5f\x7f" "\xe5\xd7\x5b\x97\xd3\xf3\xff\xd6\x63\xbb\xc9\xdb\x17\x92\xfb\xf9\x63\x41" "\xe7\xb9\x81\xfc\x67\xec\x3c\x77\xbe\xaf\x93\xbc\x95\xce\xa3\x5b\xf2\x9f" "\xb1\xf3\xe8\xf9\xbe\x0e\x36\xdf\xd7\xa9\xe6\x72\x1d\xe0\x3f\x9f\x97\x7e" "\xcf\x75\x80\x62\xae\x03\x9c\xd9\xba\x00\x00\x98\x9b\xcd\xb7\xef\x1e\x1f" "\xdf\xb3\x6b\xeb\xad\xe3\x9b\xb7\xed\xd8\xb6\x77\x7a\x7d\xdf\xd4\x99\xd3" "\xec\xff\xa7\xfa\xb7\x93\xdb\xf5\xb9\x3c\x55\xff\x7f\xba\x28\x7e\x61\x49" "\xfc\x27\x83\xf9\xb3\xf5\xbc\x2f\x10\x1f\xd2\x48\x7e\xda\xfa\x99\x5b\x3f" "\x77\xc5\xe6\xdb\xc6\xef\x9c\x6b\xff\xa1\xf1\xaa\xfa\x2f\x8a\x2f\xeb\x3f" "\x7f\x7e\x11\xea\xff\xea\x40\x7c\x48\xb7\xfd\x87\xc6\xab\xea\xbf\x28\xbe" "\xac\xff\xeb\x83\xf9\xb3\xf5\xbc\x3f\x10\x1f\xd2\x6d\xff\xa1\xf1\xaa\xfa" "\x2f\x8a\x2f\xeb\xff\x53\xc1\xfc\xd9\x7a\x7e\x35\x10\x1f\xd2\x6d\xff\xa1" "\xf1\xaa\xfa\x2f\x8a\x2f\xeb\x3f\xff\xfb\x60\xa1\xfe\x7f\x2d\x10\x1f\xd2" "\x6d\xff\xa1\xf1\xaa\xfa\x2f\x8a\x2f\xeb\xff\x86\x60\xfe\x6c\x3d\x1f\x08" "\xc4\x87\x74\xdb\x7f\x68\xbc\xaa\xfe\x8b\xe2\xcb\xfa\xbf\x31\x98\x3f\x5b" "\xcf\xdf\x09\xc4\x87\x74\xdb\x7f\x68\xbc\xaa\xfe\x8b\xe2\xcb\xfa\xbf\x29" "\x98\x3f\x5b\xcf\x35\x81\xf8\x90\x6e\xfb\x0f\x8d\x57\xd5\x7f\x51\x7c\x59" "\xff\x9f\x0e\xe6\xcf\xd6\x33\x16\x88\x0f\xe9\xb6\xff\xd0\x78\x55\xfd\x17" "\xc5\x97\xf5\xbf\x29\x98\x3f\x5b\xcf\xdf\x0d\xc4\x87\x74\xdb\x7f\x68\xbc" "\xaa\xfe\x8b\xe2\xcb\xfa\xbf\x39\x98\x3f\x5b\xcf\x07\x03\xf1\x21\x45\xfd" "\x47\x63\xed\xf7\x1f\x1a\xaf\xaa\xff\xa2\xf8\xb2\xfe\x7f\x23\x98\x3f\x5b" "\xcf\xdf\x0b\xc4\x87\x94\x3e\xff\x85\xf5\xb5\x37\x5e\x55\xff\x45\xf1\x65" "\xfd\xdf\x12\xcc\x9f\xad\xe7\xd7\x03\xf1\x21\xdd\xce\xff\xd0\x78\x55\xfd" "\x17\xc5\x97\xf5\xff\x9b\xc1\xfc\xd9\x7a\x3e\x14\x88\x0f\xe9\xb6\xff\xd0" "\x78\x55\xfd\x17\xc5\x97\xf5\xbf\x39\x98\x3f\x5b\xcf\x87\x03\xf1\x21\xdd" "\xf6\x1f\x1a\xaf\xaa\xff\xa2\xf8\xb2\xfe\xb7\x04\xf3\x67\xeb\xf9\xfb\x81" "\xf8\x90\x6e\xfb\x0f\x8d\x57\xd5\x7f\x51\x7c\x59\xff\x5b\x83\xf9\xb3\xf5" "\x7c\x24\x10\x1f\xd2\x6d\xff\xa1\xf1\xaa\xfa\x2f\x8a\x2f\xeb\xff\x33\xc1" "\xfc\xd9\x7a\x3e\x1a\x88\x0f\xe9\xb6\xff\xd0\x78\x55\xfd\x17\xc5\x97\xf5" "\x7f\x6b\x30\x7f\xb6\x9e\x8f\x05\xe2\x43\xba\xed\x3f\x34\x5e\x55\xff\x45" "\xf1\x65\xfd\xe7\x3f\xef\x30\xd4\xff\x3f\x08\xc4\x87\x74\xdb\x7f\x68\xbc" "\xaa\xfe\x8b\xe2\xcb\xfa\x1f\x0f\xe6\xcf\xd6\x73\x6d\x20\x3e\xa4\xdb\xfe" "\x43\xe3\x55\xf5\x5f\x14\x5f\xd6\xff\xed\xc1\xfc\xc5\x9f\x1b\x90\x8f\x0f" "\xe9\xb6\xff\xd0\x78\x55\xfd\x17\xc5\x97\xf5\xff\xd9\x60\xfe\x6c\x3d\x9f" "\x08\xc4\x87\x74\xdb\x7f\x68\xbc\xaa\xfe\x8b\xe2\xcb\xfa\xff\x5c\x30\x7f" "\xb6\x9e\xeb\x02\xf1\x21\xdd\xf6\x1f\x1a\xaf\xaa\xff\xa2\xf8\xb2\xfe\xb7" "\x05\xf3\x67\xeb\x59\x1f\x88\x0f\xe9\xb6\xff\xd0\x78\x55\xfd\x17\xc5\x97" "\xf5\xff\x5b\xc1\xfc\xd9\x7a\x3e\x19\x88\x0f\xe9\xb6\xff\xd0\x78\x55\xfd" "\x17\xc5\x97\xf5\xff\xf9\x60\xfe\x6c\x3d\x1b\x02\xf1\x21\xdd\xf6\x1f\x1a" "\xaf\xaa\xff\xa2\xf8\xb2\xfe\xb7\x07\xf3\x67\xeb\xb9\x3e\x10\x1f\xd2\x6d" "\xff\xa1\xf1\xaa\xfa\x2f\x8a\x2f\xeb\xff\x8e\x60\xfe\x6c\x3d\x9f\x0a\xc4" "\x87\x74\xdb\xff\xe4\x78\xff\xaa\x20\x6f\x55\xff\x45\xfd\x94\xf5\xbf\x23" "\x98\x3f\x5b\xcf\xc6\x40\x7c\x48\xb7\xfd\x87\xc6\xab\xea\xbf\x28\xbe\xac" "\xff\x9d\xc1\xfc\xd9\x7a\x6e\x08\xc4\x87\x74\xdb\x7f\x68\xbc\xaa\xfe\x8b" "\xe2\xcb\xfa\xdf\x15\xcc\x9f\xad\xe7\xc6\x40\x7c\x48\xb7\xfd\x87\xc6\xab" "\xea\xbf\x28\xbe\xac\xff\x2f\x04\xf3\x67\xeb\xb9\x29\x10\x1f\xd2\x6d\xff" "\xa1\xf1\xaa\xfa\x2f\x8a\x2f\xeb\x7f\x77\x30\x7f\xb6\x9e\x4f\x07\xe2\x43" "\xba\xed\x3f\x34\x5e\x55\xff\x45\xf1\x65\xfd\xef\x09\xe6\xcf\xd6\xb3\x29" "\x10\x1f\xd2\x6d\xff\xa1\xf1\xaa\xfa\x2f\x8a\x2f\xeb\x7f\x6f\x30\x7f\xb6" "\x9e\x9b\x03\xf1\x21\xdd\xf6\x1f\x1a\xaf\xaa\xff\xa2\xf8\xb2\xfe\xf7\x35" "\x6f\x06\x66\xe7\xcf\xd6\xf3\x1b\xd9\xf8\x4a\xdd\xf6\x1f\x1a\xaf\xaa\xff" "\xa2\xf8\xb2\xfe\xef\x0c\xe6\xcf\xd6\x73\x4b\x20\x3e\xa4\xdb\xfe\x43\xe3" "\x55\xf5\x5f\x14\x5f\xd6\xff\xfe\x60\xfe\x6c\x3d\xbf\x19\x88\x0f\xe9\xb6" "\xff\xd0\x78\x55\xfd\x17\xc5\x97\xf5\x9f\xff\x1c\xc8\x50\xff\x9b\x03\xf1" "\x21\xd3\xfd\xef\xdd\x3d\x3e\xbe\x79\xdf\xae\xdb\xb6\xee\x1d\xdf\xbc\x63" "\xe7\x6d\xe3\x7b\x36\xef\xdf\xbd\x6d\xef\xde\xf1\xe4\x40\xad\xdb\xdf\x2b" "\x0b\xff\x5e\xd0\x9b\xfc\x8b\x2c\x94\xca\xbc\x3e\x9a\x93\x64\xdb\x8e\x3d" "\xe3\xbb\x67\xef\xbf\x07\x4b\xe7\x6f\xeb\x9c\x88\xa6\x76\xe4\xcd\xcf\xb8" "\x19\x88\xdf\xde\x56\x7c\xfe\x63\xaf\x3b\x9d\x35\x67\xcb\x7c\xef\x8b\x1a" "\xa5\xdb\xeb\x82\xdc\xf2\xb9\xc9\xe7\xd1\x9e\x1b\xf8\x3c\xda\x7c\x7c\x9a" "\x76\xc5\xd4\x9d\xd9\x9f\x47\x9b\x1f\xb6\x51\xf1\x39\xae\x55\xfb\xa7\xfc" "\xf8\xa1\xfd\x53\x5c\x12\x5f\xb4\x7f\x0d\xed\xcf\xaa\xde\xff\xe6\xbc\xff" "\xab\x9c\xdf\x03\xa5\xfd\xe7\x57\xf7\x27\x87\x2a\xfd\xf1\x79\x6d\xc5\x47" "\x25\x7f\xdf\xad\xbd\xf9\xda\xdd\xef\x9d\x06\xe7\xeb\xcb\xed\xcd\xd7\xfc" "\xe7\xae\x57\xcd\xd7\x7c\xfc\x5c\xe7\xeb\x50\x97\xf3\x35\x3f\x7e\x68\x3e" "\xd5\x4a\xe2\xcb\x8e\x87\xda\x9d\xaf\x9b\x02\xf1\xa9\xf6\xe7\x67\x1c\xec" "\xb7\x68\x5e\xcd\xf5\xef\x0c\xa6\x69\xe7\xf4\x77\x06\x73\x5f\x66\xe9\xe0" "\x6f\x19\xb4\xff\x7a\xe8\xee\xf7\xc8\x83\xaf\x87\xa4\xe8\xaa\xd7\x43\xfe" "\xf7\xb8\xab\x5e\x0f\xf9\xf8\xb9\xbe\x1e\x06\xbb\x7c\x3d\xe4\xc7\xaf\x7a" "\x3d\x14\xc5\x97\x9d\x1f\xb7\xfb\x7a\xb8\x31\x10\x1f\x92\x99\x0f\x0b\xa2" "\x92\xf9\xd0\xdd\xe7\x16\x04\xe7\xc3\xda\xf6\xe6\x43\xfe\xef\x58\x55\xcd" "\x87\x7c\xfc\x5c\xe7\xc3\x40\x97\xf3\x21\x3f\x7e\xd5\x7c\x28\x8a\x2f\xbb" "\x5e\xd8\xee\x7c\xf8\x54\x20\xbe\x5d\xed\xef\x2f\xba\xfb\x5c\x91\xe0\xfc" "\xd8\xd2\xde\xfc\xc8\xff\x3d\x89\xaa\xf9\x91\x8f\x9f\xeb\xfc\x88\xbb\x9c" "\x1f\xf9\xf1\xab\xe6\x47\x51\x7c\xe8\xe7\x29\xd1\x1c\xe6\xc7\x27\x03\xf1" "\xa9\xcc\xfb\xe7\xed\x7b\xa6\x4e\xea\xb7\x6d\xdd\xbe\xed\x9e\xdc\x7f\xc0" "\x18\x4e\xde\x3f\xdf\xec\xf7\xc3\x33\xf2\xbe\xfc\x57\xbf\xf6\xe7\x6f\x34" "\xbf\x24\x75\xd4\x66\xd5\x51\x75\x3c\x11\xe7\xea\x58\x92\x54\xb2\x24\xf4" "\x77\x0f\x03\x75\xdf\xfa\x5f\xfe\xcd\xc6\x6f\xfd\xec\x8b\x5f\x89\xa2\xb5" "\xe7\xd5\x57\x86\xeb\x9e\x29\x79\xe6\x4b\x4e\x3c\x36\xb1\xf4\xde\xd5\x5f" "\xbb\xe9\xed\xc7\x3e\x38\x59\x7f\xad\xb4\xfe\xe9\xc8\xf4\xef\x16\x57\xfc" "\xbd\xe3\x7c\x7c\xda\x4f\x63\xfb\xce\x3d\x7b\x7f\xe5\xf6\x9d\xfb\x76\xb4" "\xfb\x3f\xae\xca\xa5\x9f\x87\x52\x9b\x5e\x9e\xa7\xcf\x43\x49\x56\xd6\xdb" "\xfc\x7c\x93\xd0\xef\x13\xcc\xf5\xf3\x4d\xfa\x66\xdd\x39\x3b\xb5\xfd\xf9" "\x26\x00\xbf\x20\xce\x3d\xf4\xec\xe2\xd6\xe5\xf4\xf3\xff\xd2\xf7\xa3\x91" "\x64\xdf\x37\x98\xec\x00\xd3\xf5\xed\x1f\x67\x77\xf7\xf9\x7a\xc1\xe3\xec" "\x83\xed\x1d\x67\xaf\xc9\xf7\x5b\x71\x9c\x9d\x8f\x4f\xfb\x6d\xf7\x38\xbb" "\xd6\xe5\x71\x76\x7e\xfc\xaa\xe3\xec\xa2\xf8\xb2\xff\xb7\xd7\xee\x71\xf6" "\x27\x02\xf1\x73\x95\x9d\x27\x93\x13\x64\x6a\x7e\x8c\x6f\xde\xbf\x73\x77" "\xeb\xff\x89\x9b\xef\xbf\x5b\xdb\xfb\x7a\xe7\xf7\xef\xf8\x76\x5f\xdf\xfc" "\x7e\x6e\x63\xa7\xda\xaf\x7f\x7e\x3f\x17\x72\xfe\xeb\x9f\xdf\xbf\x03\x3c" "\xff\xf5\xcf\xef\xdf\x79\xee\xd4\x19\x3b\x5f\x4a\x3e\x2c\xb2\xea\xf3\x23" "\xab\xce\xa3\x42\xbf\x97\x3e\xd7\xf3\xa8\x05\xb3\xee\x9c\x9d\x9c\x47\x01" "\xc0\xd9\xef\x9f\xec\xfe\xd1\xbf\x6c\x5d\x4e\xcf\xff\x93\xb3\xd8\xe9\xf3" "\xff\x2f\x25\xcb\xf5\x1e\x8f\x3f\xdf\xe7\x51\xf3\x7d\x5e\x39\xdf\xc7\xc9" "\x6f\xfd\xcf\xdf\x9f\xdf\xf3\x20\xe7\x03\x25\x83\x9d\x05\x9c\x0f\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x14" "\xfb\xfd\xff\xfe\x1f\xbf\xd9\xba\xdc\xdf\x18\x99\xba\x7d\xf1\x77\xf6\xbc" "\xfe\x89\x0b\x3e\xf4\xdd\x07\xc6\x4f\xde\xfb\x91\x3f\xba\xe3\xfe\xf3\xff" "\x78\xd9\xeb\xc3\x0f\x5e\xfb\xf1\x47\xae\xfe\xf0\xf7\xb6\xfc\xc9\x92\xb1" "\x55\xab\xc7\xaf\xfa\xfa\xe1\xeb\x1e\x7a\xf0\xf9\x0f\xfc\xec\xf9\xc7\x9f" "\xbc\xb6\x72\xa0\xe1\xe6\xcd\xa5\xc9\xe2\x40\x14\xc5\x7f\x11\x47\xd1\xaa" "\x1f\x1d\x7e\xfc\xa1\x6f\xff\xe9\xf9\x93\xeb\xe2\xc9\xf1\xe3\xe1\xfb\xa2" "\x25\x4b\xe2\xa5\xdf\x5c\x12\xe7\x32\xac\x3d\x15\x45\xd1\x6d\xd3\x75\x66" "\xbf\x79\xf8\xe4\xba\xdb\x27\x6f\xef\xff\x52\x7f\x66\xfd\xb9\xb9\x24\xf9" "\xbe\xa2\xa1\x7a\x5a\x4f\xa6\xce\xe8\xae\xca\x8e\x78\x0b\x1a\x48\xe6\xd9" "\x81\xcd\x9f\x79\xfa\xe8\xe7\xc7\xbe\x7d\x78\x74\xd7\xba\x9f\x9c\xb8\x72" "\xe7\x7d\x33\x21\xf1\x40\xcb\x7c\x8a\xa2\x73\xb6\xb4\x3e\xbe\x2f\x8a\xa2" "\xc1\xe4\xdf\xa4\x74\xb6\x8d\xa4\x0f\x4e\x6e\xd7\x47\x51\xb4\xb0\xe5\x71" "\xef\xab\xa8\xeb\x92\x36\xeb\xbf\x2c\xb0\xbc\x32\xb9\x5d\x90\xdc\x0e\x55" "\xe4\x49\xbf\x7f\x71\x6e\xb9\xd1\x66\x1d\x8d\xdc\x6d\x7f\x9b\x8f\xeb\xd0" "\xff\xaf\xcd\x6f\xfe\x59\xf2\xdb\x2f\xbf\x33\x9a\x2f\x69\x9f\xe7\x24\xb7" "\xcf\x25\xb7\x97\xce\x31\x4f\x3d\xfd\x17\x47\xb5\x38\x6a\x4c\x97\xbf\x3d" "\x9e\x99\x23\x51\xcb\xf3\x16\x47\xf1\xd4\xdc\x1e\x98\x5e\xae\x4d\x2d\x47" "\xd3\xcb\x51\x7e\x39\xce\x2d\xd7\x72\xcb\xf5\xbe\x5c\x5f\x53\xe3\x26\x1b" "\xb6\x1e\xc7\xd9\xf5\x69\x5c\x6e\x7d\xba\x3b\x6e\x24\xeb\x2f\x6e\xdd\x57" "\x17\xd8\x10\x58\xbf\x3c\xb9\x1d\x48\x5e\xa8\x6f\xa4\xcb\x51\xfe\x4e\xd3" "\xd0\xac\x3b\x33\x7d\x44\x2d\x75\x1d\x3f\x53\x13\x23\xa0\x16\x78\xed\xa5" "\xeb\xa7\xcb\x4b\x9e\x8c\xa1\x64\xdd\x50\xbc\x74\xd6\x63\x26\x0a\xa4\xdf" "\x3b\xfe\x9d\xad\x9b\x5e\xfb\xe1\x3d\xcf\x0d\x07\xea\x88\x9f\x8d\x93\xfc" "\x71\x47\xf9\xc7\xc6\x9f\x3a\xfa\xb5\x9b\x8e\x2c\x1f\x09\xe5\xdf\x52\x4b" "\xf2\xd7\x3a\xca\xff\x62\xfd\xa5\x53\x5f\x3d\x31\xb2\x28\x98\xff\x60\x9a" "\xbf\xde\x51\xfe\x8d\x3f\xff\xf1\xc3\x0f\x5c\xbf\x7f\x59\x70\xfb\x1c\x4f" "\xb7\x4f\xa3\xa3\xfc\xab\xbf\xbc\xe8\xc0\xc9\xfd\x1b\xfa\x47\x43\xf9\x0f" "\xa5\xf9\x07\x3a\xca\x7f\xd5\x2d\xab\xae\xbe\xf0\xc4\xbe\x3b\x83\xf5\xaf" "\x4d\xb7\xcf\x60\x47\xf9\x7f\xf0\xe8\x9a\xd3\xb7\x1c\xfc\xc6\x91\x60\xfe" "\x28\xcd\xbf\xb0\xa3\xfc\xaf\x3c\xf5\xcc\xca\xfa\xf2\xc7\x8e\x05\xf3\x1f" "\x4d\xb7\xcf\x50\x47\xf9\x6f\x58\xf7\xc4\x35\x1f\x5b\xf1\xe0\x93\xc1\xed" "\xff\x72\x9a\x7f\x71\x47\xf9\x37\x1d\x7b\x68\xcb\xae\xa7\x5f\x58\x13\x9c" "\x9f\xeb\xd3\xed\x33\xdc\x51\xfe\x53\xd7\x7c\xff\xd5\xd3\xc3\xd7\x3e\x13" "\xda\x77\xc6\x87\xce\xf4\x3b\x2c\xc0\x2f\x96\xb7\x25\xc7\x58\x0f\x27\xcb" "\x9d\x9e\x67\x76\xab\xe5\x7c\xe1\x89\xd1\x46\xf3\x98\x6f\x51\xf2\x6f\x71" "\x2f\x07\xca\x89\x5b\xce\x5d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x20\x64\xe7\x44\x7d\x5f" "\xeb\xf2\xab\x47\x1e\xb9\xee\x73\xff\x63\xf3\x7f\x6b\xc4\x51\x14\x07\x1e" "\x33\x51\x20\xfd\x5e\x7d\xc1\xd8\xd8\x68\x07\x75\xac\xfe\xf2\xa2\x03\x27" "\xf7\x6f\xe8\x4f\x97\x27\xc7\x1e\xe9\x20\x0f\x00\x00\x00\x30\xdb\x8a\x57" "\xbe\xf8\x85\xd6\xe5\xf4\x3c\xbc\x96\x2c\xc7\xd1\x40\x34\x12\xed\x8f\x07" "\xa3\x15\x85\x8f\x4f\xaf\x11\xac\x48\x97\xe2\xec\xfa\xfc\x35\x84\xc1\x99" "\xc8\x9e\xe4\xa9\xf5\x28\x4f\xbd\x47\x79\x1a\x3d\xca\xd3\xd7\xa3\x3c\x0b" "\x7a\x94\xa7\xbf\x47\x79\x06\x2a\xf2\x0c\x44\xed\xe5\x19\x2c\xcd\x53\x6b" "\xbb\x9e\x85\x3d\xca\x33\xd4\xa3\x3c\x8b\x7a\x94\x67\x71\x8f\xf2\x9c\xd3" "\x79\x9e\x46\x6b\x9e\x73\x7b\x54\xcf\x70\x69\x9e\xf6\xe7\xe1\x92\x1e\xe5" "\x59\xda\xa3\x3c\x6f\xeb\x51\x9e\x65\x3d\xca\x73\x5e\x8f\xf2\xbc\xbd\x47" "\x79\xce\xef\x51\x9e\xfc\x35\xe5\xb9\xce\xc3\xc5\x49\xe4\x05\xa1\x3c\x53" "\x77\xea\x95\x79\x1a\x71\x7d\xfa\x1b\x45\xd7\xd3\xd3\x71\x2e\xec\x72\x9c" "\xa1\x36\xc7\xc9\x5f\xb3\x9f\xeb\x38\x83\x6d\x8e\x73\x49\x97\xe3\x0c\xb4" "\x39\xce\xbb\xba\x1c\x27\x6e\x73\x9c\x35\xb9\xc7\xd5\xe6\x38\x4e\xad\x62" "\x9c\x74\xde\xde\x15\xea\x27\x5d\x6a\x73\xfe\xdf\xdd\xa3\x3c\xf7\xf4\x28" "\xcf\x81\x1e\xe5\xf9\xed\x1e\xe5\xf9\x87\x3d\xca\xf3\x8f\x7a\x94\xe7\xde" "\x2e\xf3\x00\x84\xfc\xee\xf3\x97\xfe\x41\xeb\x72\x7a\xfe\x9f\x9e\x7f\xc6" "\xd1\x70\xd4\xdf\xb8\x22\x5a\x98\xec\x71\xf2\x57\x01\xd2\xf3\xdd\x8b\xa6" "\xbe\xce\x7e\xbf\x0b\xed\x90\xd2\x7c\x2b\x73\xeb\xfb\xaa\xf2\xe5\x4f\xb0" "\x73\xf9\x2e\x9a\x6b\x7d\xf9\x0b\x08\xb9\x7c\xef\x28\xcd\xd7\x98\x75\xbe" "\x5a\x90\xaf\xd1\x9a\x6f\x75\x8f\xf2\x01\x00\x00\xc0\x5c\xfc\xe3\x53\x07" "\x32\x3f\x9a\x9b\x7d\xfe\x3f\x12\xf5\x37\x96\x4d\x9f\xbf\xbe\x33\xf7\xf8" "\xca\xf3\xf5\xfc\x0f\xb2\x13\x69\xbe\x4b\x7b\x94\x0f\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\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\xbf\x66\xd7\x5e\x63\xe4\x2a\xcb" "\x07\x80\xbf\x67\x67\x76\x66\xfe\xcb\xa5\x0b\x69\xcb\x94\xde\x36\x6d\xff" "\x14\x42\xe8\x85\xa6\x46\x50\x61\xd2\x44\x12\x8c\xb0\x45\x6c\xb9\x34\x64" "\xad\xb0\xb0\x0d\x4b\x0b\xdd\x16\x68\xd5\x14\xc1\xd8\x66\x13\x0c\x5a\xbc" "\x70\xfb\x60\x41\x62\x08\x11\x48\x48\x1a\x74\x4d\x30\xa0\xc4\x0f\x36\x36" "\x88\xe1\xe2\xba\xb0\x12\xf8\x42\x04\xe9\x0d\x28\x3a\x66\x76\xcf\xd9\x3d" "\x3b\xb3\xc3\x2e\xa3\xb4\x56\x7f\xbf\x90\x73\xe6\x39\xe7\x79\xde\xe7\x3d" "\x87\x84\xe4\x39\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\xfc\xe7\xfb\xe3" "\xf7\xff\xf6\x6c\x3a\x1e\xec\xeb\x6d\xef\x1a\xe8\xe8\x0f\x51\xa8\xfc\x33" "\xae\xf2\x38\x92\x7b\x99\x5c\xa9\xd4\xd6\xc0\x3e\xde\x79\x6e\xed\x95\x7f" "\x7d\x69\xeb\xee\x24\xae\xf4\xce\x67\x1b\x58\x08\x00\x00\x00\xa8\xf1\xf8" "\x79\x33\x4e\x4f\xc7\xc9\x1c\x9e\x8c\xde\x51\x28\x84\x7c\x76\x69\xc8\x47" "\xb9\x31\x75\xc5\xf8\x3b\x40\x31\x8e\x9b\x5a\x87\xcf\x73\x16\x85\xe5\x99" "\xdd\xff\x7f\x61\x54\x6a\x1a\x8a\x4f\x8e\x4e\x1a\x53\x57\x88\xeb\x0a\x71" "\x9c\x89\xeb\x7a\xb6\x6c\xbd\x7e\x6d\x77\x77\xe7\xc6\x4f\xf0\x47\xa5\x4f" "\xf5\x73\x54\xef\x27\x0a\x61\xe8\xf3\xc5\x9c\x13\xc3\xaa\x45\xdb\x9f\xd9" "\x13\xb5\x0d\x3f\x47\xcb\x04\xcf\xd1\x14\xd7\x2d\xde\x74\xc3\x8d\x8b\x7b" "\xb6\x6c\x3d\x6b\xdd\x0d\x6b\xaf\xeb\xbc\xae\x73\xfd\xb2\x65\xcb\xcf\x59" "\xba\x6c\xe9\xd9\xe7\x2c\x5b\x7c\xed\xba\xee\xce\x25\xc3\xc7\x90\x9f\x60" "\xbd\x10\x42\x69\xec\x7b\x99\xe0\x5f\x24\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x1c\x01\xdb\x7e\xbb\xfb\x5b\xe9\x78\xb0\xaf\xb7" "\xbd\x6b\xa0\xa3\xbf\x25\x0a\x21\xaa\x53\x53\x1e\x47\x72\x2f\x93\x2b\x95" "\xda\x1a\xd8\xc7\x2b\xf7\x3d\x38\x2b\x33\xe3\xee\xbd\x49\x5c\xe9\x9d\xcf" "\x36\xb0\x10\x00\x00\x00\x50\xe3\x57\x8f\xcf\x38\x3f\x1d\x27\x73\x78\x32" "\x7a\x47\xa1\x10\xf2\xd9\x5c\xc8\x84\x19\x43\xf1\xbc\xd1\xd4\x6c\x08\xe5" "\x72\x72\x7d\x41\xd5\xf5\x23\xb1\x77\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\xc8\xda\x77\xb0\xfd\xcf\xe9\x78\xb0\xaf\xb7\xbd" "\x6b\xa0\xa3\xff\xb8\x28\x84\xa8\x4e\x4d\x79\x1c\xc9\xbd\x4c\xae\x54\x6a" "\x6b\x60\x1f\xab\x97\xfd\xe8\xfc\x2f\xcc\xbc\xe3\xde\x24\xae\xf4\x2e\x36" "\xb0\x0e\x00\x00\x00\x50\xeb\x85\xd3\x9b\xef\x48\xc7\xc9\x1c\xde\x14\xc7" "\x51\x28\x84\x62\x98\x1f\x9a\xa3\x19\x63\xea\x92\x6f\x03\xa7\x56\xad\x57" "\x9d\x97\xac\x33\x7b\x92\x79\xd5\xdf\x0e\xea\xe5\xcd\x9f\x64\xde\x69\x93" "\xcc\x3b\x63\x82\xbc\x8b\xe3\xf3\xad\x01\x00\x00\x00\x8e\x3d\x57\xb4\xfe" "\x6e\x75\x3a\x4e\xe6\xff\xe6\x38\x8e\x42\x6b\xc8\x67\x8b\x21\x13\xc7\x13" "\xcd\xf1\xc9\x77\x81\xb9\x55\x79\x49\xfd\x44\xf3\x7d\x52\x3f\xaf\x4e\xfd" "\x44\x73\x7f\x52\x5f\x3d\xf7\x03\x00\x00\xc0\xff\xb2\xb3\xde\x7c\xe2\xc3" "\x74\x5c\x3b\xff\x17\x43\x3e\x5b\x18\x99\xbf\x27\xfa\x7b\xfa\x45\xf1\xd9" "\xdf\xc9\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\x80\x7a\x7e\x7d\xf0\xc2\x5f\xa4\xe3" "\xc1\xbe\xde\xf6\xae\x81\x8e\xfe\x4c\x14\x42\x54\xa7\xa6\x3c\x8e\xe4\x5e" "\x26\x57\x2a\xb5\x35\xb0\x8f\x55\xff\x78\x63\xc7\xed\x97\xde\x32\x35\x89" "\x2b\xbd\xf3\xd9\x06\x16\x02\x00\x00\x00\x6a\x3c\x9a\xfb\xf4\x2d\xe9\x38" "\x99\xc3\x93\xd1\x3b\x0a\x85\x90\xcf\xb6\x84\xe6\x70\xdc\xd0\xdc\xff\x5a" "\x6e\xca\xd4\x75\xdf\x9c\x39\x3b\x84\x50\x1a\x4a\xc8\xe5\xc2\xad\x6b\x37" "\x6d\xda\x78\xf6\xf0\x31\xc9\xfb\x52\xb4\xeb\x73\x0b\x6f\xe8\x3b\xb3\x26" "\x6f\xe9\xf0\xf1\xc8\x3f\x29\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\xaf\x5a\xf6\xc8\xce\x35\xe9\x78\xb0\xaf\xb7\xbd\x6b\xa0" "\xa3\xff\xff\xa2\x10\xa2\x3a\x35\xe5\x71\x24\xf7\x32\xb9\x52\xa9\xad\x81" "\x7d\xbc\xb0\xf3\x8c\xc3\x57\xdd\xf5\x54\x5f\x12\x57\x7a\x17\x1b\x58\x07" "\x00\x00\x00\xa8\x35\xab\xfb\xe9\xbf\xa4\xe3\x64\x0e\x4f\x66\xff\x28\x14" "\x42\x31\xe4\x42\x2e\x4c\x1f\x8a\xd3\xb3\x7e\x45\x53\xd5\x7a\xf5\xbe\x19" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x3d" "\x7a\xb6\x6c\xbd\x7e\x6d\x77\x77\xe7\x46\x3f\xfc\xf0\xc3\x8f\x91\x1f\x47" "\xfb\xbf\x4c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\xd1\xf2\xf3\xf5\xdf\x7b\x3b\x1d\x0f\xf6\xf5\xb6\x77\x0d\x74" "\xf4\x17\xa2\x10\xa2\x3a\x35\xe5\x71\x24\xf7\x32\xb9\x52\xa9\xad\x81\x7d" "\x7c\xea\xaa\x39\xe7\xcc\xde\xbf\xf9\xe6\x24\xae\xf4\x2e\x36\xb0\x0e\x00" "\x00\x00\x50\x6b\xcd\x5b\x9b\xf7\xa7\xe3\x64\x0e\x4f\x66\xff\x28\x14\x42" "\x31\x34\x87\xe6\x30\x2d\x8e\x6b\x0d\xcd\xff\xad\x47\x62\xb7\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\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\xd1\x34\x37\x44\xa1\xfc" "\x31\x9d\xb2\xf2\x68\xef\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\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\x24\x1c\x78\x71\xd5\x7d\xe9\x78\xb0\xaf" "\xb7\xbd\x6b\xa0\xa3\xff\x84\x28\x84\xa8\x4e\x4d\x79\x1c\xc9\xbd\x4c\xae" "\x54\x6a\x6b\x60\x1f\x57\xee\xfd\xf6\x57\x6e\xdc\xf5\xec\x19\x49\x5c\xe9" "\x9d\xcf\x36\xb0\x10\x00\x00\x00\x50\xa3\xf9\xcd\x17\xbf\x9a\x8e\x93\x39" "\x3c\x19\xbd\xa3\x50\x08\xf9\xec\xac\x90\x0f\xb3\xe2\x2b\xdd\x63\x17\x88" "\x32\x49\xe2\xb8\xdf\x05\x46\xeb\xbe\x3e\xa6\x2c\x33\xe9\xba\x1d\x55\x3b" "\x1e\xde\x59\x21\xfe\x0e\x51\x18\xd9\x67\x18\xfa\xec\x30\x5a\x77\xd7\x47" "\xd6\x15\xe3\xab\x4d\xad\x93\x7b\x4f\x00\x00\x00\x70\x2c\x9b\xb6\xe3\xe2" "\x6f\xa4\xe3\x64\xfe\x6f\x8e\xe3\x28\xb4\x86\x7c\x76\x5a\x6a\xae\xbe\x71" "\x4c\x7d\xcb\xa4\xe7\xf8\xbb\xc7\xd4\x9d\x30\xe9\xba\x9f\x8e\xa9\x6b\x9d" "\xa0\xee\xdf\xf0\x4a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x06\xdd" "\xb9\xf2\xb9\x53\xd2\xf1\x60\x5f\x6f\x7b\xd7\x40\x47\x7f\x14\x85\x10\xd5" "\xa9\x29\x8f\x23\xb9\x97\xc9\x95\x4a\x6d\x0d\xec\xa3\xd4\x79\xdf\xd3\x0f" "\x5f\xde\x37\x23\x89\x2b\xbd\x8b\x0d\xac\x03\x00\x00\x00\xd4\xba\xf4\x8d" "\xc2\x77\xd3\x71\x32\x87\x27\xb3\x7f\x14\x0a\xa1\x18\x66\x87\x13\xc3\xec" "\xa1\xb9\x3f\xb4\x8e\xad\x4f\xf2\x8e\x2b\xfd\xfe\xe5\x15\xbb\x5f\xba\x22" "\x84\x25\xd3\x9f\x9f\x93\xad\xdb\xef\x87\x7b\x2e\x7b\x3b\x1c\xfa\xec\x6b" "\xef\x0d\x1f\x86\xc2\x10\x9a\xc6\x26\x35\x85\x30\x25\xee\x17\xd5\xe9\x77" "\xf5\x1f\x1e\x59\xf5\xcc\x87\xdb\x1f\x08\x61\xc9\xb4\xcc\xac\xfa\xfd\x46" "\x5b\x8d\x1e\xaa\x44\xa5\xf2\xc9\xdb\x16\x3c\x7c\xf9\xf4\xbd\x2b\xea\x2e" "\x03\x00\x00\x00\xc7\xb4\xc2\x83\x07\x7e\x92\x8e\x93\xf9\x3f\x99\xa8\xa3" "\xd0\x1a\xf2\xd9\xf5\x75\xe7\xff\x24\xef\x63\xcd\xff\xed\x3d\x33\xb7\x4d" "\x8d\x8f\xf1\x17\x80\xaa\x8a\xa6\xd6\xb8\x5f\x53\x9d\x7e\xbd\xef\x3e\xd0" "\x76\x70\xcd\x97\x0f\x56\xe6\xff\xe7\xe7\x14\x46\xfe\x5f\x81\xd3\xe7\x8f" "\xcd\x4f\xb7\x4a\x1f\xab\xbe\x39\x44\xa5\xf2\xdc\x27\x4e\x5b\x7d\xf8\xc0" "\x4d\x97\x0c\x5f\x48\xfa\x67\xea\xf4\x5f\xd3\x3c\xef\xa4\x9d\x6f\xcd\x9c" "\x97\xf4\x2f\xc4\xd7\xaf\x09\x93\xed\x1f\xaa\xfa\xf7\x74\x1c\x9a\xbf\xa8" "\xe5\xf8\x0b\xc6\xf6\x0f\x21\xb4\x8d\xd7\xff\xc7\x17\x3e\xfe\xfe\xaa\x7b" "\xdf\xbd\x62\xb8\x7f\xfd\xf7\xbd\xf8\x4f\x83\x9f\x9f\x1a\x36\xfc\xa0\xd0" "\x9d\x1c\x87\xaf\xd4\xf6\x5f\x79\xff\xf2\x9d\x5b\x73\xaf\x4f\x19\xdb\x3f" "\xaa\xd3\x7f\xe1\xb3\x4f\xee\x7f\xec\xd6\x55\x77\x56\x3f\xff\xa9\xd9\xf1" "\xfa\xd7\x1e\xab\x54\xba\x66\xcb\xbd\xfb\x6e\x5f\x78\xdb\x8a\xce\x73\x53" "\xfd\x9b\xea\xf4\xbf\xb9\xed\x95\x77\xbe\xf3\xb3\x5f\x3e\x54\xe9\xbf\x6f" "\x6e\xcb\x48\xff\x85\x1f\xf1\xfc\x13\xf6\xdf\x33\x7f\xc7\xbe\x5d\xdb\xef" "\x59\x33\xf6\xfd\x97\x6a\xfb\xdf\x16\xae\x3e\x6b\xe3\x93\x5b\xd6\x5d\x79" "\x57\xf5\xf3\xb7\x54\x2d\x9c\x7e\xf3\xe9\x63\xed\xfb\x7f\x75\x56\x74\xd1" "\xe6\x9e\x97\x37\x56\xdf\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x38\xb6\x75\x3c\xf6\xc1\xa1\x74\x3c\xd8\xd7\xdb\xde\x35\xd0\xd1\xdf\x14" "\x85\x10\xd5\xa9\x29\x8f\x23\xb9\x97\xc9\x95\x4a\x6d\x0d\xec\xe3\x37\x99" "\x3d\x1f\x3c\xb4\xbf\x78\x7c\x12\x57\x7a\x17\x1b\x58\x07\x00\x00\x00\xa8" "\x75\xc9\x8a\x57\xaf\x4b\xc7\xc9\x1c\x9e\xcc\xfe\x51\x28\x84\x62\xc8\x85" "\x5c\x68\x19\x9a\xfb\x4f\xde\xb6\xe0\xe1\xcb\xa7\xef\x5d\x11\x5a\xe3\xfb" "\xf1\x39\xdb\xbd\xa1\x67\xd3\x99\xd7\x6e\xd8\xbc\xfe\x9a\x23\xfd\x08\x00" "\x00\x00\xc0\x04\x76\x9d\xf7\xfe\x8a\x74\x9c\xcc\xff\xd9\x38\x8e\x42\x6b" "\xc8\x67\x17\x84\xe6\x78\xfe\x5f\x79\xff\xf2\x9d\x5b\x73\xaf\x4f\x49\xe6" "\xff\x10\xc2\xd0\x9f\xfb\xb3\xd7\xae\xeb\xee\x5c\x12\x46\xbe\x13\xf4\x74" "\x1c\x9a\xbf\xa8\xe5\xf8\x0b\x92\xbc\x4c\x7c\x2e\x54\xf2\x16\x5d\xbd\xa1" "\x3b\xfe\x4c\x90\xac\xfb\xd4\xa3\x9f\x59\x7a\xee\x65\x97\x8e\xe4\x37\xa5" "\xf3\xcf\x1e\xcd\x9b\xfb\xc4\x69\xab\x0f\x1f\xb8\xe9\x92\x71\xf3\x96\x8d" "\xe6\xbd\x3a\x2b\xba\x68\x73\xcf\xcb\x1b\x53\xfb\x2c\x8d\xe4\x2d\x1d\xcd" "\xeb\xdd\x77\xfb\xc2\xdb\x56\x74\x9e\x9b\x3c\x47\x14\x9f\x0b\xf1\xf3\x24" "\x79\x7b\xe6\xef\xd8\xb7\x6b\xfb\x3d\x6b\x92\xbc\xa6\xf8\xdc\x12\xaf\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\x84\x70\xd2\x7b\x7f\xff\x5a\x3a" "\x1e\xec\xeb\x6d\xef\x1a\xe8\xe8\x0f\x99\x10\xa2\x3a\x35\xe5\x71\x24\xf7" "\x32\xb9\x52\xa9\xad\x81\x7d\x7c\x70\xfe\xf3\x83\x87\x5b\xbf\xf8\x60\x12" "\x57\x7a\xe7\xb3\x0d\x2c\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\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\x3f\xd9\x81\x03\x01\x00\x00\x00" "\x00\x20\xff\xd7\x46\xa8\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xc2\x4e\xfd" "\x84\xc6\x55\xc4\x71\x00\x9f\xd9\xdd\x9a\x6d\xb7\xd6\x4d\x29\x34\xd1\x1a" "\x5a\xec\xa5\x05\xa1\x10\x2c\xf6\x20\xcd\xc5\x3f\x48\xd4\x52\x51\xb4\x50" "\x8c\x62\xbc\xa8\x58\x10\xad\xd8\x83\x6d\x83\x41\xd4\x43\x41\xa1\xd2\x5e" "\xa4\x15\xcf\x4a\x0e\x45\xed\x21\x16\x5b\x45\x41\xac\xe2\x41\x3c\x29\xe8" "\x49\x25\x87\xa4\x48\x2a\x2a\xbb\x79\xb3\xd9\x7d\xed\x23\xf1\x41\x44\xe4" "\xf3\x81\x65\xf6\x37\xbb\xf3\x7d\xbf\x37\x3b\xfb\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xfe\xd3\x1e\xfe\xe1\xce\x5a\x77\xdd\x57\x1b\x68\x8f" "\x17\x5e\x7e\xf6\xd2\xbd\xd7\xdf\xfe\xf9\xd1\xf1\xb9\x97\xee\xfa\xf0\xe9" "\x23\x1b\x3f\xda\x70\xa9\x39\x31\x7a\xcf\xab\xbb\xee\xf8\x7a\xec\xb3\xfe" "\x91\xa1\xad\xe3\x3b\xdf\x9f\xba\x6f\x72\xe2\xdc\x6d\x7f\x9c\x3b\x7e\x62" "\x74\xc9\x0b\xbd\xb0\x30\x6c\xcf\xca\x7a\x08\xf1\xd7\x18\xc2\xd0\x4f\x53" "\xc7\x27\xcf\x7f\xb1\xb1\x35\x17\x5b\xd7\x8f\xcd\xc3\xa1\xbf\x3f\xae\xff" "\xb8\x3f\xe6\x12\x76\xcc\x87\x10\x1e\xef\xf4\xd9\xfb\xe1\xd4\xdc\xf0\x13" "\xad\xf1\xc8\x6b\x7d\x3d\xf3\xd7\xe5\x42\xf2\xf7\x15\x1a\xd5\xd4\xcf\x82" "\x66\x6f\xbf\xfc\xbf\xd4\xb3\x73\x76\xe8\x91\xc7\x4e\x4d\x3f\x39\x72\x7e" "\x6a\xf3\x81\xe1\x5f\x66\x6f\x79\xe6\xf0\xe2\x57\x62\xbd\xeb\x3c\x85\xb0" "\x6e\xac\x7b\xfd\xaa\x10\xc2\xea\xec\xd5\x92\x4e\xdb\x40\x5a\x9c\x8d\x7b" "\x42\x08\x6b\xba\xd6\xdd\xba\x44\x5f\x37\x2d\xb3\xff\x9b\x0b\xea\x4d\xd9" "\x78\x4d\x36\x36\x96\xc8\x49\x9f\x6f\xc9\xd5\xb5\x65\xf6\x51\xcb\x8d\x7d" "\xcb\x5c\x57\x56\x65\x85\xf3\xf3\xf2\xfb\x97\x7f\x18\xad\x94\x74\x9f\xeb" "\xb2\xf1\x4c\x36\x6e\xff\x87\x39\xd5\xf4\x8a\xa1\x12\x43\xad\xd3\xfe\x53" "\x71\xf1\x8c\x84\xae\xdf\x2d\x86\xd8\x3e\xdb\xf5\x4e\x5d\x69\xd7\xa1\x53" "\x87\x7c\x1d\x73\x75\x25\x57\x57\x57\xe5\xee\xab\x7d\xdd\x6c\x63\xab\x31" "\xf6\xce\xa7\xef\xe5\xe6\xd3\xe3\xb8\x96\xcd\x6f\xe9\x7e\x56\x5f\xc5\xde" "\x82\xf9\xc1\x6c\xac\x67\x7f\xd4\xdf\x53\x1d\xf2\x6f\x16\x34\xae\x78\xb3" "\x78\x1f\xa1\xab\xaf\x99\x7f\xeb\x60\x14\xa8\x14\xfc\xf7\xd2\x7c\xa7\xbd" "\xec\xc7\x68\x64\x73\x8d\xb8\xfe\x8a\x35\x7f\x5d\x45\xfa\x6c\xe6\xd3\x47" "\xf7\xfd\xf6\xdd\x8b\x67\x9a\x05\x7d\xc4\xf7\x62\x96\x1f\x4b\xe5\x8f\x8c" "\x9f\x9c\x7e\xf7\xa1\xb3\x83\x03\x45\xf9\x63\x95\x2c\xbf\x52\x2a\xff\x42" "\xf5\xcb\xf9\x77\x66\x07\xd6\x16\xe6\x1f\x4b\xf9\xd5\x52\xf9\x0f\xfc\xf9" "\xf3\x2b\x47\xef\x3f\xb8\xa1\x70\x7f\x66\xd2\xfe\xd4\x4a\xe5\x6f\x7d\x7d" "\xed\xa1\xb9\x83\x7b\xfb\x36\x17\xe5\xbf\x9d\xf2\xeb\xa5\xf2\x77\xee\x1f" "\xda\x75\xe3\xec\x73\xcf\x17\xf6\xbf\x23\xed\xcf\xea\x52\xf9\xdf\xbe\xb1" "\xed\xf2\xfe\x63\x1f\x9c\x2d\xcc\x0f\x29\x7f\x4d\xa9\xfc\xef\x4f\x9e\xde" "\x54\x1d\x7c\xf3\x62\x61\xfe\x74\xda\x9f\x46\xa9\xfc\x07\x87\xdf\xda\x7d" "\xf7\x0d\x13\x27\x0a\xf7\xff\xab\x94\x7f\x6d\xa9\xfc\x7d\x17\x27\xc7\x0e" "\x9c\xfa\x64\x5b\xe1\xf9\xdc\x93\xf6\xa7\x59\x2a\x7f\x7e\xf7\x37\x3f\x5e" "\x6e\x8e\x9e\x2e\x7a\x76\xfe\xcd\x7e\x1d\x9b\x00\x08\xc4\x50\x00\x25\x60" "\xa9\x95\x0b\x38\xae\x23\x58\x3a\xaa\x85\x11\x82\xa5\x1e\x57\x1c\xef\x41" "\x8a\x54\x29\xf3\x7f\x9c\xbd\x3f\x2c\xc0\x58\xd6\xcc\x58\x7b\xee\x5f\x7b" "\xe6\x5f\xa5\x2f\x1c\xdb\x74\x67\xbe\x39\x67\x69\x79\xe8\x25\x4a\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\x80\xc7\x15\x00\x00\xff\xff\x14\x7e\x60\x7d", 23989); 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; }