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