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