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