// https://syzkaller.appspot.com/bug?id=78f98000deba69b5db400d53ad5890d7f51f16d6 // 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 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #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 void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } 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"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } 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; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } 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"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); 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; } remove_dir(cwdbuf); } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$bcachefs arguments: [ // fs: ptr[in, buffer] { // buffer: {62 63 61 63 68 65 66 73 00} (length 0x9) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x0 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYRES8: ANYRES8 (resource) // } // union ANYUNION { // ANYRESHEX: ANYRES64 (resource) // } // union ANYUNION { // ANYRES16: ANYRES16 (resource) // } // union ANYUNION { // ANYRESDEC: ANYRES64 (resource) // } // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x59ba (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x59ba) // } // ] // returns fd_dir memcpy((void*)0x200059c0, "bcachefs\000", 9); memcpy((void*)0x20000000, "./file0\000", 8); *(uint8_t*)0x20000140 = -1; sprintf((char*)0x20000141, "0x%016llx", (long long)-1); *(uint16_t*)0x20000153 = -1; sprintf((char*)0x20000155, "%020llu", (long long)-1); memcpy( (void*)0x20005a80, "\x78\x9c\xec\xdd\x0d\x90\x5c\x55\x9d\x28\xf0\x7b\x7b\x7a\x32\x9d\x99\x7c" "\xcc\x24\x0a\x43\xa2\x64\xf8\x28\x0c\xf5\xc8\x90\x90\xa7\xc4\x07\x3e\x52" "\xf0\xa8\xf2\xf9\x20\xc4\x27\x82\x20\xcf\x10\x65\x82\x91\x21\xc1\x64\x24" "\x09\xf8\x20\x08\x22\x16\x88\x14\xb8\xbb\x54\x51\x8b\xd9\xda\x2d\x13\x59" "\xa5\xe2\xc7\xae\xb5\xf8\xc1\x50\x2c\x58\x98\x05\x49\xa1\x5b\x15\x2c\x96" "\x8f\x92\x62\x97\x45\x70\xd7\x82\x45\x16\x99\xad\xee\xbe\xa7\xa7\xe7\x4e" "\xdf\xe9\x9e\x9e\x9e\x90\xc4\xdf\xaf\xc8\xdc\x3e\xa7\xef\xfd\x9f\x8f\x7b" "\xfa\xf6\x3d\x67\x9a\x9e\x08\x00\x00\x80\x3f\x0a\x0f\x7f\x71\xf3\x6b\xab" "\x16\x9c\xf9\xb3\x2f\x0c\xbc\x7a\xed\x07\xef\xbb\xfc\xba\xa8\xab\xad\x94" "\x5f\x08\x3b\x74\x27\xdb\xad\x6f\x57\x0d\x99\x4e\x1b\x7f\xf9\xd5\x73\xaa" "\xd3\x1d\xf9\xde\xd2\x36\x3d\x2e\x3e\x76\xfe\xb6\x57\x2e\x9a\x7f\xc6\x43" "\x37\xac\x3e\xed\x91\x57\xee\xfc\xd6\xd3\x6f\xbe\x78\xf2\x82\xfb\xcf\xfe" "\xd0\x5d\xb7\x9c\xb9\xe7\xf6\xaf\xdc\x7e\xfa\x85\xf5\xca\x09\xe3\xe9\xf8" "\xd1\x74\xfc\x9b\x38\x8a\xbe\xf1\xe6\xd0\xd7\x6e\x7c\x68\xcf\xe1\xc5\xbc" "\xb8\x58\x7e\xdc\xbd\x3d\xea\xe9\x89\x73\x0f\xf4\xc4\xa9\x10\x4b\xdf\x88" "\xa2\xe8\x92\x4a\x3d\xc7\x3e\xf9\xbd\x57\x97\xaf\x2b\x6e\xb7\xdf\xdc\x31" "\x26\x7f\x6e\x2a\x88\xf1\xfe\xc7\xad\x90\x8c\xb3\x1b\xee\xde\xf5\xcd\x2b" "\xaf\x59\xd5\x7f\xe3\x2f\x2f\xbc\x63\xf5\xe9\xdf\x7f\x6c\xfb\xe8\x2e\x71" "\x71\x9f\xef\x26\xe3\x29\x8a\xe6\x5c\x5c\x7d\x7c\x7b\x14\x45\x33\x93\x7f" "\x45\x61\xb4\xf5\x86\x83\x93\xed\xea\x28\x8a\x3a\xab\x8e\x5b\x51\xa7\x5e" "\x47\x37\x58\xff\x25\x19\xe9\x85\xc9\x76\x46\xb2\xed\xaa\x13\x27\x3c\x7f" "\x54\x2a\x9d\x6b\xb0\x1e\xf9\xd4\xb6\xb3\xc1\xe3\x9a\xd5\x68\xbd\x5a\x65" "\x56\x2a\x9d\xbe\x18\x4d\x97\xd0\xce\x70\xdd\xfa\x41\xb2\x3d\x7e\x92\x71" "\xda\xc2\xbf\x38\xca\xc5\x51\xbe\x52\xfd\xc1\x78\x74\x8c\x44\x55\xe7\x2d" "\x8e\xe2\xd2\xd8\x2e\x54\xd2\xb9\x52\x3a\xaa\xa4\xa3\x74\x3a\x4e\xa5\x73" "\xa9\x74\x5b\x7b\xaa\x5d\xa5\x72\x93\x81\xd6\x16\xc7\x63\xf3\xc3\x7e\xa9" "\xfc\xbe\x24\x3f\x9f\xe4\x1f\x55\x7d\xad\xae\xe1\x23\x19\xf9\x47\x24\xdb" "\x42\xf2\x42\x7d\x3d\xa4\xa3\xf4\x83\xb2\xae\x71\x0f\x2a\xed\x2a\x09\xf5" "\x7a\x66\x82\xba\xec\x0f\xb9\xaa\x6b\x50\xad\xfc\x50\xdf\x15\xc9\xc9\xe8" "\x4a\xf2\xba\xe2\x79\xe3\x8e\x19\xa9\x21\x3c\xb7\xf8\xc8\xe1\xfe\xfc\x8a" "\xc5\x0f\x77\x67\xd4\x23\xde\x1d\x27\xf1\xe3\xa6\xe2\xef\xdb\xb5\x75\x5d" "\xe7\xbe\x2d\x1b\x7b\xb3\xe2\x5f\x9c\x4b\xe2\xe7\x9a\x8a\x7f\xe5\xc8\x60" "\xf7\xee\xb3\x9f\x5b\x98\x19\xff\xb6\x10\xbf\xad\xa9\xf8\x77\xff\xe4\xae" "\x9f\x6e\x59\x72\xc6\x0f\x33\xfb\xe7\xb7\xa1\x7f\xf2\x4d\xc5\x7f\x7e\xef" "\xce\x1d\x2f\xdd\xfb\xf4\xa3\x99\xf5\xdf\x11\xe2\x17\x9a\x8a\xff\xc8\x73" "\xa7\xec\x1a\x5e\x7c\xc2\x05\x99\xf5\x5f\x1a\xfa\x67\x66\x53\xf1\xef\x79" "\xed\xf7\xd7\xfc\x7a\xe7\xf5\x0b\x32\xe3\x47\x21\x7e\x67\x53\xf1\xf7\x7e" "\xfc\xb1\x5b\x7e\x3c\xeb\xc1\xf9\x99\xf1\x87\x43\xff\x74\x35\x15\xff\xdc" "\x97\xcf\xba\xf1\x89\x39\x4f\xf6\xf4\x65\xc5\x7f\x3c\xc4\x9f\xdd\x54\xfc" "\xa7\x0a\xb7\xae\xf9\xfa\xb3\x4f\x0e\x67\x9e\xdf\x95\xa1\x7f\xba\x9b\x8a" "\x7f\x56\xef\xa9\x9d\xf7\xef\x39\xed\xfd\x59\xd7\xce\x78\xfb\xfe\x7e\x87" "\x05\x38\xb4\xcc\x4f\xee\xb1\x6e\x4a\xd2\xcd\xce\x33\xa7\xaa\x6a\xbe\x70" "\x67\x77\x5c\xbe\xe7\x9b\x95\xfc\x9b\xdd\xca\x82\x52\x8a\xe5\xcc\x99\xc6" "\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\xfc\x71\x38\xe6\xd1\xbf\xf9\x64\x75\xfa\x33\x1d\x0b\xcf\xfa\xf3" "\xe3\x7a\x9e\xcd\x27\xe9\x8e\x7c\x14\xc5\x51\x14\xfd\x2a\x57\x4e\x87\xfc" "\x19\x51\x14\xcf\x8c\xa2\x68\xf3\xd0\xda\x4d\x43\xeb\x37\x5c\xda\xf7\x99" "\x8d\x9f\xdb\xb4\x61\xed\x60\xdf\xda\xa1\xbe\x81\x0d\x43\x9b\xb6\xf5\xfd" "\xf7\x13\xfa\x36\x0d\x5c\x31\xb8\x76\x5b\xf1\xd9\xa5\x4b\x96\x97\x8f\x9b" "\x57\x8a\x16\x45\xf3\xe2\x77\x8f\xab\xcb\xc8\xc8\xc8\x48\x14\x45\x2b\xab" "\xf3\x42\x79\x7f\xb2\x67\x5b\xd7\x1b\x2f\x3e\xff\xf3\x28\x5a\xfa\xce\x27" "\x8e\xcc\x67\xb6\xe7\x95\x7f\x3f\x63\xd1\x9c\x1a\x3f\x53\xe2\x95\x23\xff" "\x7c\x51\xee\x3b\x5f\xbc\xaf\x70\x4c\x39\xa3\x3b\xa9\x57\x77\x56\xbd\xba" "\xc7\xe6\x85\x1a\xec\x3e\xa7\xf3\xb8\xeb\x4f\xfb\x3f\xef\x89\xa2\xa5\x87" "\x4d\x54\xaf\x2d\x9b\x3f\xfb\xe8\x98\x0a\x95\x32\x46\xe3\x24\x72\x1d\x51" "\xb9\xa3\x3b\xe2\xce\x9a\xf5\xa8\xd4\x7a\xb4\x3e\xa5\xfe\xca\xaf\x5b\x3f" "\x38\xb0\xb4\x7e\xff\xc6\x19\xfd\xfb\x67\xb3\xde\xfa\x6a\x5f\xbe\x77\x5e" "\xb9\x7f\x0b\x99\xed\x68\xb0\x7f\xe7\x46\x51\x54\x18\xb9\x63\xce\x7f\x0c" "\xde\x77\xf4\x49\x1f\x38\x80\xcf\x7b\xbd\xfe\xae\x6a\x42\xa9\x7e\xa1\xff" "\x0a\x49\x7f\xcf\x49\xda\x35\x27\xa3\x5d\xb9\x8c\x76\x5d\x76\xed\xa7\x9e" "\x7b\xf3\xea\xf3\xae\xd8\x1e\x2d\xcd\xff\x6e\xd1\xf8\xb2\xeb\xb5\xab\x3d" "\x19\x00\xed\xf1\x11\x0d\x95\x1b\x4a\xe8\x8c\x7b\xc6\xec\x5b\x48\xf6\x0f" "\x67\x3c\x1c\x77\xe2\xd0\xe5\x57\x9c\xb8\x79\xdb\x55\x4b\xd6\x5f\xbe\xf6" "\xd2\x81\x4b\x07\x36\x2c\x5f\xb1\x6c\xf9\x7b\x4f\x5e\xfe\xbe\x15\x4b\x4f" "\x2c\x35\xbd\xfc\xb3\x65\xed\x0f\xe5\xbf\xa7\xc1\xf6\x1f\xa8\xe3\xa9\x5e" "\xbd\xea\xf5\x47\xb1\x5e\xcd\xf4\x47\x4a\xf9\xf5\xd7\xfd\xd9\xbf\xbe\xe3" "\x2f\x37\x3f\x73\x78\x03\xe3\xbc\x6a\xd7\x52\xfd\x42\x3d\x3b\x8b\xa7\x79" "\x59\x54\x35\xde\xc6\xf7\x55\xad\x76\xd5\xeb\x87\xb6\x8c\x7e\xd8\xf8\xa3" "\xb7\xe6\x3e\xfa\xd4\x11\x57\xb5\xe8\x3a\x54\x3c\x3f\xfd\xbf\x5a\xf5\x8b" "\x65\xbf\x7b\x5f\x39\xe3\xa0\xb9\xce\x87\x5a\x27\xf5\x69\xab\xbe\xee\x2c" "\x3b\x70\xfb\xb7\xa3\x58\xd3\x52\xbb\xba\x6a\xd6\xeb\xde\xef\x1f\x76\xf7" "\xcd\x7f\xf5\x62\xa5\x3d\xd1\x8c\x19\xd1\xd6\xb5\x43\x43\x9b\x96\x95\x7f" "\xee\x9f\x76\xfd\xfc\x5b\xeb\xcf\x6c\x6d\xbb\x3e\xfd\xca\xcb\x8b\xde\x7a" "\xe0\xea\xf9\xe3\xda\x75\x52\xf9\x67\xbd\x76\xe5\x33\xda\xd5\xbd\x6e\x78" "\xe7\x29\x7f\xfb\x9d\xfe\x7a\xed\x2a\xb7\x68\xfc\xcf\xf1\xed\xfa\xf0\x29" "\xfb\x0e\x5f\xf5\x3f\x57\x5e\x94\xc4\xdf\x1f\xaf\x87\xea\x0a\x35\xf9\x7a" "\xa8\xd4\xba\xbb\x52\x8f\xd1\xd7\xc3\x49\x07\x4e\x3b\xde\xbe\xf3\x9c\xab" "\xde\x2d\x5e\x39\x72\xe6\xb2\xb6\x05\xfb\xfe\xd7\x4d\xfd\xe5\x8c\x7a\xfd" "\x5b\xd9\xbb\x56\xff\x2e\x8f\xa2\x59\x49\x4d\x67\xc5\x0b\x6b\xd6\x2b\x9d" "\x1b\xda\xb5\xa8\xf4\xb3\x2d\x4a\xba\x25\x6c\xa2\x42\xae\x76\xfb\xda\xa3" "\xf2\xeb\x2b\x7d\x5f\x13\x8e\x4b\xf7\x6a\x57\xf2\x5c\x57\x3c\xaf\x66\xbb" "\xd2\xc2\x73\x8b\x8f\x1c\xee\xcf\xaf\x58\xfc\x70\x56\x4f\xc7\xbb\xcb\x25" "\xce\x8c\x66\x97\xb7\xf1\xbb\x32\xf6\x1c\x4c\x1d\xd8\x56\xa9\x70\xad\xf2" "\xeb\x8d\x8f\xf6\x8c\xf1\xf1\x81\xdd\xc3\xf7\xbc\xf2\xc2\x96\xab\x5b\x77" "\x1d\x58\xdc\xf5\xd6\x6b\x9f\xfd\xf2\xe1\xa7\x97\x33\x0e\x94\xd7\x4f\x21" "\x19\xa7\x85\x8c\x71\x5a\xa9\x75\x52\x9f\xf6\xea\x71\xda\xff\xa9\x8d\x83" "\x97\x94\xf3\xeb\x8d\xd7\x45\x51\xed\xf6\xb4\x7a\xbc\xa6\xcb\x19\xdd\xbf" "\x76\xbc\xbe\x54\xba\x2b\x6a\x6b\x6a\x7c\xdf\xfd\x93\xbb\x7e\xba\x65\xc9" "\x19\x3f\xcc\x1c\xdf\xbf\x6d\x74\x7c\x7f\x7e\x4c\xaa\x6d\x8a\xe3\xfb\xed" "\xbb\xff\x2d\xeb\xa8\x33\xff\x09\xef\xdf\x9b\xb7\x5d\x75\xd9\xda\xc1\xc1" "\x81\x4d\x9b\xcb\xf9\xad\xba\x2f\x09\xe5\xa4\x47\x77\xb3\xf7\x25\x61\x54" "\xcc\xab\xd3\xae\xf6\x71\xed\x9a\xbe\x07\x8d\xf4\x57\xa3\xd7\xb9\x50\xff" "\x4b\x52\x31\x9a\xbd\xce\x75\x45\x71\x53\xaf\xa7\x7d\xbb\xb6\xae\xeb\xdc" "\xb7\x65\x63\xf7\xb8\xa3\x92\x82\x2e\xce\x25\xf1\x73\x4d\xc5\xbf\x72\x64" "\xb0\x7b\xf7\xd9\xcf\x2d\xcc\x8c\x7f\x5b\x88\x9f\x6f\x2a\xfe\xf3\x7b\x77" "\xee\x78\xe9\xde\xa7\x1f\xcd\x8c\xbf\x23\x4e\xe2\x17\x9a\x8a\xff\xc8\x73" "\xa7\xec\x1a\x5e\x7c\xc2\x05\x99\xf1\x97\x86\xfa\xcf\x6c\x2a\xfe\x3d\xaf" "\xfd\xfe\x9a\x5f\xef\xbc\x7e\x41\x66\xfc\x28\xc4\xef\x6a\x2a\xfe\xb9\x2f" "\x9f\x75\xe3\x13\x73\x9e\xec\xc9\x8c\xff\x78\x9c\x94\x53\x7c\x6f\x89\xa2" "\xef\xbe\xba\x7c\x5d\x39\x1d\x17\x5f\x5b\x95\x71\x5a\xac\x47\xfb\x98\x7a" "\x45\xe9\x74\x9c\x4a\xe7\x52\xe9\xb6\xea\x74\xae\xbc\xd6\x5a\x29\xa0\x2d" "\x8e\xc7\xe6\x87\xfd\x92\xfc\xa3\xaa\xea\x52\xcb\xf9\x19\xf9\xe1\xdd\xab" "\xd0\x5b\xde\xbe\x1e\xd2\x51\xfa\xc1\xc4\xf9\x07\x9a\x5c\xd5\xb5\xbf\x56" "\x7e\xbd\xf7\x77\x00\x80\x43\xcd\xde\x2b\x7f\xb6\xaa\x3a\x1d\x7e\xff\x1f" "\xee\x41\xc3\xef\xff\x07\x92\x1b\xa5\xec\x15\x1e\x18\x35\xd5\x79\x58\x6f" "\x46\xdc\x30\x0f\x1b\x5d\xcf\x99\x31\xe6\xf9\xde\x24\x7e\x38\x3e\xac\x63" "\x7f\xa2\xbf\x3c\x0d\xbb\xae\xaf\x7c\xa3\x3f\xd9\x75\xfa\xf0\x7a\x48\xaf" "\xd3\x87\x72\x16\x1f\x33\x36\x46\xb3\xeb\xf4\xf5\xd6\x2d\x8f\x4e\xa5\x43" "\xbd\x16\x25\xad\x0d\xf5\x99\x60\x5e\x33\x2b\x6a\x60\xdd\x72\x7c\x39\x13" "\xaf\x5b\xa6\x9a\x5f\x7f\x5d\xb1\xef\xa6\x54\x46\xbe\xb4\xf6\x99\x75\xfe" "\xda\x93\x15\xb3\x5a\x9f\x77\x48\xd5\x77\x56\x31\x42\xd6\xf8\x48\xaf\x8b" "\x85\xcf\x73\x1c\x39\x27\x6a\xef\xff\xd2\x83\x8f\xc5\x0d\x8e\x8f\xf4\xe7" "\x68\xc2\x79\x48\x7f\x8e\x26\x94\xb3\x20\x75\xe1\x6c\xf6\x73\x34\x53\x1d" "\x1f\x7d\xa3\xed\x2e\xf7\xc7\xf8\xf1\x51\x5a\x02\xa9\xbf\x2e\x3c\xfe\xfc" "\x45\x13\xf4\xef\xe8\xf9\xab\x1d\x2d\x7d\xfe\x26\x71\xbe\xbb\x8b\xfb\x4f" "\xf7\xef\x81\x0e\xfe\x75\xc3\xe9\xfd\x3d\x82\x75\xc9\x8c\xf8\xc9\xf5\xfe" "\x40\x5f\x37\x0c\xf9\xe1\xfa\x90\x6f\x70\x3d\xf1\xbc\x8c\xfc\x56\xad\x27" "\x86\xcb\x45\xa8\xd7\x33\x13\xd4\x65\x7f\xb0\x9e\x08\x1c\x2a\x6e\xbd\xa9" "\xff\xd5\xea\x74\x98\xff\x87\xf7\x88\xe2\xfc\xbf\xf8\x1e\xd0\x97\xba\x6f" "\xab\x77\x1f\x9a\xbe\x6b\x0c\xf1\xb2\x3e\x5f\xb1\xa2\xad\x76\xfd\xea\xcd" "\x3b\xc6\x7f\x1e\xa8\xb3\xa9\xf7\xf1\xbd\x1f\x7f\xec\x96\x1f\xcf\x7a\x70" "\x7e\xe6\x7d\xce\x70\xa3\x9f\x97\xb8\x62\x4c\xaa\xb3\xce\xe7\x25\xea\xf5" "\xe3\xb1\xa9\x74\xdd\x7e\xcc\x58\xa0\xa9\x37\xdf\x3b\x2e\xb5\x7f\x57\x34" "\xbb\xa9\x7e\x7c\xaa\x70\xeb\x9a\xaf\x3f\xfb\xe4\x70\x66\x3f\xae\x2c\xbf" "\x31\xd6\xef\xc7\xdb\xc6\xa4\x66\x4f\xb1\x1f\x17\xa7\xd2\x75\xfb\xb1\xbd" "\x76\xad\xea\xf5\x63\xba\x9c\x7a\xe3\xf7\xf8\x54\xba\x2b\xf9\x24\xd6\x64" "\xfb\xfd\xac\xde\x53\x3b\xef\xdf\x73\xda\xfb\x33\xfb\x7d\x7b\xa3\xfd\xbe" "\x63\x4c\xaa\xbb\x4e\xbf\x9b\x77\x65\xc4\x37\xef\x3a\x20\xe6\x5d\xd3\xbd" "\x0e\xf9\xb6\xcd\xeb\x92\x8f\xa1\x4f\xd7\xbc\xee\x23\x19\xf9\x93\x9d\xd7" "\x75\x8d\x7b\x50\x69\x57\xc9\xc1\x36\xaf\xcb\x7a\x5f\x00\x80\x83\xc9\x61" "\xff\xb8\xe3\xfa\xea\x74\x98\xff\x57\x7e\x7f\x96\xcc\xff\x1f\x4c\x1d\xe7" "\xbe\x3f\x23\xbe\xfb\xfe\x03\xe4\xbe\x7f\x7a\xd7\x81\xa6\x7b\x5e\x31\xdd" "\xeb\x2f\xd3\xbd\xce\x60\x5e\x94\xa4\xa3\xf4\x83\x32\xf3\x22\x00\x00\xde" "\x0e\xff\xe3\x17\xff\xfb\xef\xaa\xd3\x61\xfe\x1f\x6e\x57\xb3\xe7\xff\x53" "\x9b\x9f\x64\xce\xdf\x56\xb6\xe6\xff\x73\xce\x9c\x5f\x55\xe6\xb7\x53\x9b" "\x9f\x67\xd6\xbf\x32\x3f\x9f\xda\xfa\x48\x66\xfc\xca\xfa\xc8\xd4\xd6\x2f" "\x32\xfb\xa7\xb2\x7e\x31\xb5\xf5\x97\xcc\xf8\x17\xb7\x66\x7e\x9e\xd9\x3f" "\x2d\x9a\x9f\xa7\xbf\x87\xa3\x12\xff\xf1\x43\x65\x7d\x64\xff\xcc\xff\xbf" "\x67\xfe\x9f\x7a\x50\x66\xfe\x0f\x00\xc0\xdb\xe1\xf1\x07\xde\x18\xf3\xc9" "\xfb\x30\xff\x9f\x99\xa4\xa7\x6b\xfe\x9f\x39\x3f\xac\xcc\xff\xa7\x7b\xfe" "\x3c\xdd\xf3\xdb\xe9\x9e\x9f\x4f\xf7\xfa\xc5\x74\xaf\xbf\x1c\xec\xf3\xe7" "\x83\x7d\xfd\xc2\xfc\xdf\xfc\xbf\x3e\xf3\x7f\x00\x80\x43\xcb\xff\xfd\xd8" "\xac\x5f\x54\xa7\xc3\xfc\x3f\x7c\x3f\x7d\xf8\xfe\xbf\xbf\x4f\xd2\xe9\xef" "\xad\x37\x4f\xcf\x88\x6f\x9e\x6e\x9e\x3e\x41\xfc\xc6\xe7\xe9\xd3\xbd\xce" "\x66\x1d\xc0\x3a\x40\x7d\xd6\x01\x00\x00\x0e\x0d\xe9\xef\x31\x0b\x5f\x5b" "\x9a\xfe\x5e\xbd\xf6\xd2\x4c\x6a\xfc\xfe\xff\x2f\xd9\x6e\xad\xb1\x7f\xad" "\xf8\x17\x66\xec\x1f\xe4\x4b\xdf\x51\x16\x45\x9f\x1c\xda\x34\x30\xb0\xe6" "\x73\x57\x5c\xb2\x76\x68\x60\xcd\x86\x8d\x97\x0c\x6c\x5e\xb3\x65\xd3\xfa" "\xa1\xa1\x81\x0d\xe5\xfd\xa6\x3a\x6f\xcc\x9c\xb7\x24\x3d\xd0\x1e\xe5\x93" "\xf6\xd6\xde\x2f\x3d\x6f\x9b\x9b\x7c\xff\xdc\xdc\x8c\xef\x9f\x4b\xef\x1f" "\xc2\x2e\x2c\x3d\x18\xff\xfd\x73\xe9\x62\x67\xd6\xf9\x1e\xb6\xd1\xf3\xd3" "\x58\x7d\xb3\xce\x4f\x6e\x82\xfd\x6b\x9d\xff\xac\xf3\x99\x15\xff\xfc\x8c" "\xfd\x83\xc6\xcf\xff\xd4\xd6\x25\x32\xcf\xff\xd2\xc6\xce\x7f\xfa\xfb\xee" "\xeb\x9d\xff\xf4\xfe\x93\x3d\xff\x85\x29\x9e\xff\x74\xf9\xf5\xce\x7f\xad" "\xfd\x6b\x9d\xff\xac\xf3\x99\x15\xff\xdc\x8c\xfd\x83\xc6\xcf\xff\xd4\xd6" "\x05\x33\xcf\xff\xc5\x8d\x9d\xff\xf4\xf7\x65\xd6\x3b\xff\xe9\xfd\x27\x7b" "\xfe\xe3\x29\x9e\xff\x74\xf9\xf5\xce\x7f\xad\xfd\x6b\x9d\xff\xac\xf3\x99" "\x15\xff\xc3\x19\xfb\x07\x95\xf3\xff\xa9\x4f\x9f\xb4\x66\xdd\xe6\x35\xeb" "\x37\xac\x1f\x5a\xbf\x76\x70\xfd\x55\x03\x63\xf7\xeb\x8e\xe2\x52\x7d\x1a" "\xfd\x7b\xc5\xa1\x5b\x26\xf5\xf7\x8a\x53\x3f\xc6\xc9\x4d\xfe\xef\x26\xb7" "\xa6\x1e\xb9\x71\xf5\x68\x4f\xfa\xa3\xd6\xf9\x2f\xd6\x23\x4e\xd5\xa3\x27" "\xa9\x49\x4f\xd6\xdf\xb7\xc8\xa8\xf7\x3b\x5e\xff\xd7\x65\xeb\xbf\xf1\x17" "\x7f\x88\xa2\xa5\xef\x6c\x7b\xd7\x94\xfa\x2f\x5e\x39\xf2\xa3\x2b\x7a\x76" "\x2c\xfa\xfc\xb3\x73\x8b\xf5\xcf\x4d\x58\xff\xca\x9e\x49\xbd\xea\xfd\x9d" "\xe8\xf4\xfe\xa1\x3d\xf9\xc1\x8d\x9b\x87\xfe\xdb\xba\x8d\x9f\xdb\x90\xfe" "\x8b\xb2\xcd\x09\xeb\x99\xb9\x4a\x7a\x9a\xd6\x33\x93\xcc\xb6\x06\xd7\x27" "\x2f\xcc\xc8\x9f\xec\xfa\x64\xfb\xb8\x07\x07\xa6\x46\xd7\x27\x01\x28\xbb" "\xe9\x4f\xb7\x8e\xf9\x22\xf0\xf0\xfb\xff\xf0\x7e\xd6\x9b\x5c\x3b\x67\x26" "\x17\xd0\x90\xdf\xf8\x7d\xfa\xd4\x7e\xbf\x9e\x79\x9f\x7e\x5b\x63\xf7\xe9" "\xe9\xef\x57\xaf\x77\x9f\x9e\xde\x3f\xb4\xb7\xd1\xfb\xf4\xdc\x14\xef\xd3" "\xd3\xe5\xd7\xbb\x4f\xaf\xb5\x7f\xad\xfb\xf4\xac\xfb\xee\xac\xf8\xab\x32" "\xf6\x9f\xac\xb1\xe3\xa4\x38\x40\x4a\xe3\x63\x60\xcd\x96\x8d\x9b\x2e\xab" "\xda\x6f\xba\xbf\x8f\xb1\xf5\xf5\x9d\xde\xef\xa7\x9c\x7a\xfd\xa6\xf7\x73" "\x1b\xcd\x6a\xbc\xfe\xd3\xfb\xb9\x90\xe9\xaf\xff\xd4\x3e\x17\x92\x59\xff" "\xc7\xa7\x76\x27\xdb\x78\xfd\xa7\xf7\xfb\x45\x9b\xb5\xdf\xe6\x5b\xc9\x87" "\x45\xea\x7d\x7e\xa4\xde\x3c\xec\x82\x8c\xfc\xc9\xce\xc3\x66\x8c\x7b\x70" "\x60\x32\x0f\x03\x80\x03\xdf\x77\xfa\xff\xed\x5f\xaa\xd3\x61\xfe\x1f\xbe" "\x14\x20\xcc\xff\x6f\x4e\xd2\x19\x7f\xa6\xaf\x69\x07\xff\xf7\xfc\xfb\x1e" "\xfe\x9a\xf1\x5b\xf4\xf7\xb7\xea\xcd\x83\xcc\x07\x26\x28\xec\x00\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\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x50\xdb\xcb\xfb\xfe\xe1\xb5\xea\x74\x47\xbe\xb7\xb4\x7d\xf8\x8b\x9b" "\x5f\x5b\xb5\xe0\xcc\x9f\x7d\x61\xe0\xd5\x6b\x3f\x78\xdf\xe5\xd7\x7d\xec" "\xfc\x6d\xaf\x5c\x34\xff\x8c\x87\x6e\x58\x7d\xda\x23\xaf\xdc\xf9\xad\xa7" "\xdf\x7c\xf1\xe4\x05\xf7\x9f\xfd\xa1\xbb\x6e\x39\x73\xcf\xed\x5f\xb9\xfd" "\xf4\x0b\xeb\x16\xd4\x5d\xde\x1c\x9f\x24\x0b\x51\x14\xff\x26\x8e\xa2\x6f" "\xbc\x39\xf4\xb5\x1b\x1f\xda\x73\x78\x31\x2f\x2e\x96\x1f\x77\x6f\x8f\x7a" "\x7a\xe2\xdc\x03\x3d\x71\x2a\xc2\xd2\x37\xa2\x28\xba\xa4\x52\xcf\xb1\x4f" "\x7e\xef\xd5\xe5\xeb\x8a\xdb\xed\x37\x77\x8c\xc9\x9f\x9b\x0a\x92\x6e\x57" "\xd4\xd5\x16\xea\x33\xa6\x9e\xd1\xd6\xba\x2d\xe2\x20\x54\x48\xc6\xd9\x0d" "\x77\xef\xfa\xe6\x95\xd7\xac\xea\xbf\xf1\x97\x17\xde\xb1\xfa\xf4\xef\x3f" "\xb6\x7d\x74\x97\xb8\xb8\xcf\x77\x93\xf1\x14\x45\x73\x2e\xae\x3e\xbe\x3d" "\x8a\xa2\x99\xc9\xbf\xa2\x30\xda\x7a\xc3\xc1\xc9\x76\x75\x14\x45\x9d\x55" "\xc7\xad\xa8\x53\xaf\xa3\x1b\xac\xff\x92\x8c\xf4\xc2\x64\x3b\x23\xd9\x76" "\xd5\x89\x13\x9e\x3f\x2a\x95\xce\x35\x58\x8f\x7c\x6a\xdb\xd9\xe0\x71\xcd" "\x6a\xb4\x5e\xad\x32\x2b\x95\x4e\x5f\x8c\xa6\x4b\x68\x67\xb8\x6e\xfd\x20" "\xd9\x1e\x3f\xc9\x38\x6d\xe1\x5f\x1c\xe5\xe2\x28\x5f\xa9\xfe\x60\x3c\x3a" "\x46\xa2\xaa\xf3\x16\x47\x71\x69\x6c\x17\x2a\xe9\x5c\x29\x1d\x55\xd2\x51" "\x3a\x1d\xa7\xd2\xb9\x54\xba\xad\x3d\xd5\xae\x52\xb9\xc9\x40\x6b\x8b\xe3" "\xb1\xf9\x61\xbf\x54\x7e\x5f\x92\x9f\x4f\xf2\x8f\xaa\xbe\x56\xd7\xf0\x91" "\x8c\xfc\x23\x92\x6d\x21\x79\xa1\xbe\x1e\xd2\x51\xfa\x41\x59\xd7\xb8\x07" "\x95\x76\x95\x84\x7a\x3d\x33\x41\x5d\xf6\x87\x5c\xd5\x35\xa8\x56\x7e\xa8" "\xef\x8a\xe4\x64\x74\x25\x79\x5d\xf1\xbc\x71\xc7\x8c\xd4\x10\x9e\x5b\x7c" "\xe4\x70\x7f\x7e\xc5\xe2\x87\xbb\x33\xea\x11\xef\x8e\x93\xf8\x71\x53\xf1" "\xf7\xed\xda\xba\xae\x73\xdf\x96\x8d\xbd\x59\xf1\x2f\xce\x25\xf1\x73\x4d" "\xc5\xbf\x72\x64\xb0\x7b\xf7\xd9\xcf\x2d\xcc\x8c\x7f\x5b\x88\xdf\xd6\x54" "\xfc\xbb\x7f\x72\xd7\x4f\xb7\x2c\x39\xe3\x87\x99\xfd\xf3\xdb\xd0\x3f\xf9" "\xa6\xe2\x3f\xbf\x77\xe7\x8e\x97\xee\x7d\xfa\xd1\xcc\xfa\xef\x08\xf1\x0b" "\x4d\xc5\x7f\xe4\xb9\x53\x76\x0d\x2f\x3e\xe1\x82\xcc\xfa\x2f\x0d\xfd\x33" "\xb3\xa9\xf8\xf7\xbc\xf6\xfb\x6b\x7e\xbd\xf3\xfa\x05\x99\xf1\xa3\x10\xbf" "\xb3\xa9\xf8\x7b\x3f\xfe\xd8\x2d\x3f\x9e\xf5\xe0\xfc\xcc\xf8\xc3\xa1\x7f" "\xba\x9a\x8a\x7f\xee\xcb\x67\xdd\xf8\xc4\x9c\x27\x7b\xfa\xb2\xe2\x3f\x1e" "\xe2\xcf\x6e\x2a\xfe\x53\x85\x5b\xd7\x7c\xfd\xd9\x27\x87\x33\xcf\xef\xca" "\xd0\x3f\xdd\x4d\xc5\x3f\xab\xf7\xd4\xce\xfb\xf7\x9c\xf6\xfe\xac\x6b\x67" "\xbc\x7d\x7f\xbf\xc3\x02\x1c\x5a\xe6\x27\xf7\x58\x37\x25\xe9\x66\xe7\x99" "\x53\x55\x35\x5f\xb8\xb3\x3b\x2e\xdf\xf3\xcd\x4a\xfe\xcd\x6e\x65\x41\x29" "\xc5\x72\xe6\x4c\x63\x7c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0e\x0d\xff\xf4\xc1\x97\xb7" "\x55\xa7\xbf\xbd\xfa\x85\xf3\x8e\x3d\x67\xf5\x47\xf3\x71\x14\xc5\x19\xc7" "\x8c\xd4\x10\x9e\x6b\x9b\xb1\x72\x65\x5f\x13\xf5\x78\x7e\xef\xce\x1d\x2f" "\xdd\xfb\xf4\xa3\x21\x5d\x2c\xbb\xb7\x89\x38\x00\x00\x00\xc0\x78\x6f\x9c" "\xf3\x87\x33\xab\xd3\x61\x1e\x9e\x4b\xd2\x71\x54\x88\x7a\xa3\x2d\xf1\xcc" "\x68\x61\xcd\xe3\xc3\x1a\xc1\xc2\x90\x8a\xc7\xe6\xa7\xd7\x10\x66\x8e\xee" "\xd9\x92\x38\xb9\x16\xc5\x69\x6b\x51\x9c\x7c\x8b\xe2\xb4\xb7\x28\xce\x8c" "\x16\xc5\xe9\x68\x51\x9c\x42\x9d\x38\x85\xa8\xb1\x38\x33\x27\x8c\x93\x6b" "\xb8\x3e\x9d\x2d\x8a\xd3\xd5\xa2\x38\xb3\x5a\x14\x67\x76\x8b\xe2\xcc\x69" "\x51\x9c\xb9\x2d\x8a\xd3\x3d\x61\x9c\xc6\xc7\x61\x4f\x8b\xe2\xcc\x6b\x51" "\x9c\xf9\x2d\x8a\xf3\x8e\x16\xc5\x79\x67\x8b\xe2\x1c\xd6\xa2\x38\x87\xb7" "\x28\x4e\x7a\x4d\x79\xb2\xe3\x70\x76\xb2\xe7\x82\xac\x38\xa5\x07\x6d\x75" "\xe3\xe4\xe3\xb6\xca\x13\xb5\xd6\xd3\x43\x39\xef\x9e\x62\x39\x5d\x0d\x96" "\x93\x5e\xb3\x9f\x6c\x39\x33\x1b\x2c\xe7\x98\x29\x96\x53\x68\xb0\x9c\xe3" "\xa6\x58\x4e\xdc\x60\x39\xc7\xa7\x8e\xcb\x4d\xb2\x9c\x5c\x9d\x72\xc2\xb8" "\xdd\x9a\xd5\x9e\x90\x6a\x70\xfc\x6f\x6b\x51\x9c\xab\x5a\x14\xe7\xea\x16" "\xc5\xf9\x7c\x8b\xe2\xfc\xff\x16\xc5\xb9\xa6\x45\x71\xae\x9d\x62\x1c\x80" "\x2c\xd7\xf4\xfd\xe7\x7b\xaa\xd3\x61\xfe\x1f\xe6\x8d\x71\xd4\x1d\x75\xe4" "\x4f\x8d\x3a\x93\x2b\x4e\x7a\x15\x20\xcc\x77\x17\x95\x7e\x8e\x7f\xbf\x2b" "\xa4\x27\xe8\x89\x10\xef\x5d\xa9\xfc\x19\x75\xe2\xad\x48\x4f\xd4\x53\xf1" "\x16\xb5\xb8\x7e\x47\xa7\xf2\xdb\xc7\xc4\xcb\x57\xee\x9b\x26\x88\xd7\x5d" "\x1d\xef\xd8\xd4\x93\x75\xdb\x9b\x5e\x50\x48\xd5\x6f\xf1\x64\xe3\xa5\x17" "\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x85\x7a\x9f\x3a\xed\x4b" "\xd5\xe9\x6f\xaf\x7e\xe1\xbc\x63\xcf\x59\xfd\xd1\x28\x8e\x8a\xff\xd5\x34" "\x52\x43\x78\xae\x6d\xc6\xca\x95\x7d\x4d\xd4\x63\xf1\x91\xc3\xfd\xf9\x15" "\x8b\x1f\x0e\xe9\x62\xd9\x1d\xf9\x26\x02\x01\x00\x00\x00\xe3\xbc\xf0\xc4" "\x97\x4f\xac\x4e\x87\x79\x78\x7b\x92\x8e\xa3\x42\xd4\x91\x5f\x16\x75\xc4" "\x33\xc6\x1c\x57\x48\xd6\x01\x0a\x95\xfd\xa2\x95\xc5\xed\x91\x73\xa2\xf6" "\xfe\x2f\x3d\xf8\x58\xdc\x97\x2b\xe5\x77\xc6\x3d\x13\x1e\x97\x4b\x8e\x3b" "\x71\xe8\xf2\x2b\x4e\xdc\xbc\xed\xaa\x25\xeb\x2f\x5f\x7b\xe9\xc0\xa5\x03" "\x1b\x96\xaf\x58\xb6\xfc\xbd\x27\x2f\x7f\xdf\x8a\xa5\x27\xae\x5b\x3f\x38" "\x90\xfc\x8c\x3a\xea\xc4\x6b\x4b\xe2\x6d\xde\x76\xd5\x65\x6b\x07\x07\x07" "\x36\x6d\x2e\xe7\xa7\xeb\xdf\x9b\x1c\xd7\x9b\xa4\xf3\xc9\x71\x9f\xe8\x8f" "\x4a\x4d\xbf\x2e\xa9\xff\xbc\x3a\xe5\xb5\x8f\x2b\x6f\xfa\x1e\x34\x70\x3a" "\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\xf8\x2f\x76" "\xed\x36\x46\xae\xaa\x7c\x00\xf8\xb9\x3b\xb3\x33\xc3\x96\x6e\x87\x3f\x7f" "\xe8\xb4\x14\xba\x69\x37\x50\x83\x6e\xba\xd5\x40\x0c\x6f\x37\xbc\x7c\x12" "\xbb\x43\xe2\x6e\x34\x12\x09\x01\x1a\x81\x0d\x6d\x29\xda\xf2\xa2\x86\x10" "\x08\x44\x23\x26\xc5\x18\x63\xc2\x4b\x30\x80\xc0\x9a\x92\x10\x8d\x15\xb1" "\xc6\x0f\x06\x1b\x44\x03\x98\x14\x24\x01\xa2\x2e\xc1\xa4\x24\x12\x8b\x1a" "\xe9\x98\xd9\xbd\x67\xf7\xce\xec\x8c\xbb\x0c\x02\x96\xfc\x7e\x1f\xee\xcc" "\x33\xe7\x79\xce\x73\xee\x6c\xd3\xe4\xb9\xbb\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xbc\xa7\x9e\x39\xf5\x84\x8d\xf9" "\x78\xaa\x3e\x3d\x31\x3c\x56\x1f\x1f\x48\x42\x48\xba\xd4\x34\x3a\x88\x6b" "\x85\x52\x9a\x0e\xf5\x70\x8e\xdf\x7d\xfe\x37\xdf\xf8\xd9\xd1\xbf\x3c\x36" "\xc6\xcd\xde\xe5\x62\x0f\x1b\x01\x00\x00\x00\x0b\xfc\xfe\xd1\xc1\x2d\xf9" "\x38\xce\xe1\xfd\x59\x9c\x84\x4a\x28\x17\x0b\xa1\x10\x56\xcd\xc4\xeb\xe6" "\x53\xab\x21\xcc\xcf\xfd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x87\xdf\x99\xcf\x8f\x4c\xe4\xe3\xa9\xfa\xf4\xc4\xf0\x58\x7d" "\x7c\x59\x12\x42\xd2\xa5\xa6\xd1\x41\x5c\x2b\x94\xd2\x74\xa8\x87\x73\x7c" "\xe6\xe0\x85\xb7\x3d\x3b\xf8\xc2\x31\x31\x6e\xf6\xae\xf5\xb0\x0f\x00\x00" "\x00\xb0\xd0\xc1\x55\x95\xb3\xf3\x71\x9c\xc3\xfb\xb2\x38\x09\x95\x50\x0b" "\xeb\x43\x7f\xb2\xaa\xa5\x2e\x3e\x1b\x58\xdd\xb6\x5f\x7b\x5e\xdc\xe7\xc4" "\x25\xe6\xb5\x3f\x3b\xe8\x96\xb7\x7e\x89\x79\x27\x2f\x31\xef\x23\x8b\xe4" "\x6d\xce\x5e\x77\x05\x00\x00\x00\x38\xf2\x3c\xb9\xbc\xf2\xdd\x7c\x1c\xe7" "\xff\x62\x16\x27\xa1\x1a\xca\xc5\xe5\x5d\xe7\xff\xc5\xe6\xfa\x98\xb7\xb6" "\x2d\xaf\x90\xbd\xf6\xf2\xb7\x02\x00\x00\x00\xc0\x3b\x73\xdf\xce\x1f\xff" "\x2d\x1f\xc7\xf9\xbf\x94\xc5\x49\xa8\x85\x72\xb1\x36\x37\xaf\x2f\x75\xde" "\x5f\xd7\x96\x17\xeb\x17\xfb\xbd\x7d\xac\x5f\xec\xf7\xf6\x31\x6f\x43\x97" "\x3e\xed\xbf\xcf\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfe\x77\xac\x39\xb4\xad" "\x25\x9e\xaa\x4f\x4f\x0c\x8f\xd5\xc7\x0b\x49\x08\x49\x97\x9a\x46\x07\x71" "\xad\x50\x4a\xd3\xa1\x1e\xce\x71\xf7\x93\xdf\xfb\xd5\xce\x8f\x9d\xf7\xd3" "\x18\x37\x7b\x97\x8b\x3d\x6c\x04\x00\x00\x00\x2c\xf0\xf6\x17\x2e\xb9\x2a" "\x1f\xc7\x39\x3c\x8e\xde\x49\xa8\x84\x72\x71\x20\xf4\x87\x65\x33\x73\xff" "\x0f\x1f\x3f\xfe\xee\xaf\x7f\xff\xf5\x50\x08\x21\x9d\x49\x28\x95\xc2\xae" "\x4b\xaf\xbb\xee\xda\xd1\xd9\x6b\xcc\xfb\xe2\x1b\x07\xd7\x1e\xfe\xc5\x8d" "\xc7\x2e\xc8\xdb\x34\x7b\x7d\xff\xef\x14\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x78\xb7\x6e\xde\xb3\x37\xc9\xc7\x53\xf5\xe9\x89" "\xe1\xb1\xfa\xf8\x51\x49\x08\x49\x97\x9a\x46\x07\x71\xad\x50\x4a\xd3\xa1" "\x1e\xce\xf1\xf0\xa1\x7f\x7c\xf5\x8f\x0f\xde\xb2\x3a\xc6\xcd\xde\xb5\x1e" "\xf6\x01\x00\x00\x00\x16\x7a\xe0\xa2\x95\xbf\xce\xc7\x71\x0e\x8f\xb3\x7f" "\x12\x2a\xa1\x16\x4a\xa1\x14\x8e\x9f\x89\xf3\xb3\x7e\x53\x5f\xdb\x7e\xdd" "\x9e\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x1f\x1e\x3b\xae\xbf\xe1\xea\x4b\x27\x27\xaf\xb8\xd6\x1b\x6f\xbc\xf1\x66" "\xee\xcd\x07\xfd\x3f\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x41\x59\x7d\xd7\xe3\x4f\xe5\xe3\xa9\xfa\xf4\xc4" "\xf0\x58\x7d\xbc\x92\x84\x90\x74\xa9\x69\x74\x10\xd7\x0a\xa5\x34\x1d\xea" "\xe1\x1c\x4f\xbd\x7a\xc6\x43\xfb\x36\x7c\xf4\x73\x31\x6e\xf6\xae\xf5\xb0" "\x0f\x00\x00\x00\xb0\xd0\x8e\xe2\x69\x67\xe7\xe3\x38\x87\xc7\xd9\x3f\x09" "\x95\x50\x0b\xfd\xa1\x3f\x1c\x97\xc5\x0b\xcd\xcc\xff\xd5\xf7\xe3\xb4\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\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\x07\xe9\xcf\xf7" "\x5d\x73\x73\x3e\x9e\xaa\x4f\x4f\x0c\x8f\xd5\xc7\x97\x27\x21\x24\x5d\x6a" "\x1a\x1d\xc4\xb5\x42\x29\x4d\x87\x7a\x38\xc7\x4b\x95\x6f\x5e\x72\xcf\x2b" "\x2f\xec\x8b\x71\xb3\x77\xb9\xd8\xc3\x46\x00\x00\x00\xc0\x02\x57\x1d\xdc" "\xff\x89\x7c\x1c\xe7\xf0\xfe\x2c\x4e\x42\x25\x94\x8b\x6b\x42\x39\xac\xc9" "\x3e\x99\x6c\xdd\x20\x29\xc4\xc4\x8e\xcf\x05\xe6\xeb\x6e\x6a\x29\x2b\x2c" "\xb9\xee\xf6\xb6\x13\xcf\x3e\x14\xa8\x64\xcf\x21\x2a\x73\xe7\x0c\x69\xf3" "\x75\xae\x6e\x68\x61\xdd\x50\x08\xa1\x96\xd5\xd5\xe6\x77\x4b\x97\xfc\x65" "\x01\x00\x00\xc0\x11\xea\x9c\x1f\x9c\x7b\x52\x3e\x8e\xf3\x7f\x29\x8b\x93" "\x50\x0d\xe5\xe2\x71\xb9\xf9\x7f\x5b\x4b\xfd\xc0\x92\xe7\xf8\x6f\xb5\xd4" "\x2d\x5f\x72\xdd\xbd\x2d\x75\xd5\x45\xea\xfe\x0b\x5f\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\xf0\x2e\x9d\x7e\xcf\x03\xfb\xf3\xf1\x54\x7d" "\x7a\x62\x78\xac\x3e\x9e\x24\x21\x24\x5d\x6a\x1a\x1d\xc4\xb5\x42\x29\x4d" "\x87\x7a\x38\xc7\x81\x87\x76\x6d\x19\x38\xb0\x73\x6b\x8c\x9b\xbd\x6b\x3d" "\xec\x03\x00\x00\x00\x2c\x74\xe7\xf8\x6f\xcf\xcf\xc7\x71\x0e\x8f\xb3\x7f" "\x12\x2a\xa1\x16\x4e\x0c\x83\xe1\xc4\x99\xb9\x3f\x54\x5b\xeb\x63\xde\x9e" "\xb1\x81\x93\x6f\x39\xe7\x53\xa7\x84\xb0\xf1\xf8\x67\x4f\x2a\x76\xed\xb7" "\x73\xc7\xf6\xa7\xdb\x2f\x21\xf4\xb5\x26\xf5\x85\xb0\x22\xeb\x97\x74\xe9" "\xf7\xff\x7f\xff\xcb\xe8\x95\x0f\xdc\xf7\x76\x08\x1b\x8f\x2b\xac\x79\xa7" "\xfd\x5a\xb7\x4c\x1b\x4f\x6c\x3b\xe6\xde\xb5\x37\xbd\xb2\xa2\xeb\x36\x00" "\x00\x00\x70\x44\xfb\xc3\x65\xa7\x1c\x95\x8f\xe3\xfc\xdf\x9f\xc5\x49\xa8" "\x86\x72\xf1\x9a\xae\xf3\x7f\x9c\xbc\xdf\xd1\xfc\xff\xcc\xa3\x57\x5e\x30" "\x98\x5d\xb3\x89\xbc\xad\xa2\xaf\x1a\xfb\x85\x90\x76\xea\xf7\xed\xfd\xd7" "\x2f\xfb\xe7\xeb\x7f\x7a\xa6\x39\xff\xff\xa7\x7e\x6f\xfc\xf5\xbc\xb5\x83" "\x1d\xae\x6d\x92\xb4\xf1\xda\xc5\x7d\x8f\xdd\xba\xb7\xb2\x7e\xf6\x83\xd8" "\x3f\x69\xeb\x1f\xbf\x97\xef\x1c\x7d\xf8\xce\xa1\x62\xed\xff\x66\xfb\x57" "\x42\x25\xfb\x7c\x75\xb1\xa7\xfe\x2b\x42\x08\x95\xc6\xee\xc1\xb7\x26\xf7" "\xae\xdb\x74\x56\xae\x7f\x5f\x97\xfb\xbf\xfa\x6b\x97\xbd\xfa\xaf\x1b\x27" "\xb6\x35\xfb\xbf\xb9\x76\x60\xae\xff\x29\xbd\xdd\xff\x6c\xff\xea\xf6\x47" "\x76\xdf\xbf\xe3\xe5\x95\xb9\xfe\x85\x2e\xfd\xb7\x3e\x71\x78\xc5\xd3\x2f" "\xad\xba\xa1\xfd\xfe\x07\x3a\xf6\x9f\xfd\x51\x2f\xf2\xfd\x8f\xbc\xb8\xf9" "\xb9\xd1\x37\x4f\x6b\xfd\xfe\x8b\x5d\xbe\xff\xea\x96\x7d\x0f\x9e\xf1\xa3" "\xc7\x46\x62\xff\xf8\xb7\x22\x1b\xd6\xb7\x6e\x9c\xff\xa7\x96\xbf\xb6\x3d" "\x73\x4a\xd2\xc6\x05\xa3\x85\xd5\x07\xce\xbf\x7d\xa4\xb5\x7f\x7f\x97\xfb" "\x3f\x6b\xcf\xbe\x87\xdf\x98\xde\x79\x63\xfb\xfd\x5f\x1e\x96\xda\xbf\xfd" "\xfe\x37\x2c\x3b\x7c\x68\xfb\x1d\x2b\xcf\x6d\x5f\x02\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x38\x32\x7d\xf6\xb6\xab\x9f\xcf\xc7\x53\xf5\xe9\x89" "\xe1\xb1\xfa\x78\x28\x84\x90\x74\xa9\x69\x74\x10\xd7\x0a\xa5\x34\x1d\xea" "\xe1\x1c\x17\xd6\xce\x1c\xf8\xf9\xfe\x73\x3e\x19\xe3\x66\xef\x72\xb1\x87" "\x8d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x9e\x3d\xb2\x6b\x70\x5d\x3e\x9e\xaa\x4f\x4f\x0c\x8f\xd5\xc7\xfb" "\x92\x10\x92\x2e\x35\x8d\x0e\xe2\x5a\xa1\x94\xa6\x43\x3d\x9c\xe3\xcb\x8d" "\xc9\xea\x9e\x4f\xbf\x7a\x42\x8c\x9b\xbd\x6b\x3d\xec\x03\x00\x00\x00\x2c" "\x74\xde\xf0\xfe\xc7\xf3\x71\x9c\xc3\xe3\xec\x9f\x84\x4a\xa8\x85\x52\x28" "\x85\x81\x99\xb9\xff\x89\x6d\xc7\xdc\xbb\xf6\xa6\x57\x56\x84\x6a\xb6\x9e" "\xbd\x16\x27\xb7\xee\xb8\xee\xd4\x2d\x5b\xbf\x74\xcd\xe5\xef\xf7\x2d\x00" "\x00\x00\x00\x8b\x38\xfd\x27\x77\x7d\x25\x1f\xc7\xf9\xbf\x98\xc5\x49\xa8" "\x86\x72\x71\x38\xf4\x67\xf3\xff\x6b\x17\xf7\x3d\x76\xeb\xde\xca\xfa\x38" "\xff\x87\x10\xd2\xe6\xa5\xb8\xe5\xca\xc9\x2b\x36\x86\xb9\xbc\x0b\x46\x0b" "\xab\x0f\x9c\x7f\xfb\x48\xcc\x2b\x66\x79\x95\x66\xde\xc7\xe7\xf3\x5e\x1b" "\x79\x71\xf3\x73\xa3\x6f\x9e\x16\xf3\x0a\xf9\xbc\xd1\x30\xf7\xdc\x61\xc3" "\xb2\xc3\x87\xb6\xdf\xb1\xf2\xdc\x98\xd7\x9f\xcf\x1b\xb9\x6c\xeb\xe4\xe5" "\xf1\xf3\xd9\xfc\x8b\xce\x38\xb0\x72\xf3\xd9\xe9\xc5\x1d\xfb\x6f\x9a\xcf" "\xab\x6e\x7f\x64\xf7\xfd\x3b\x5e\x5e\x19\xef\xa3\x2f\x7b\x1d\xc8\xfa\xc7" "\xbc\xdd\x83\x6f\x4d\xee\x5d\xb7\xe9\xac\x98\x97\xe4\xf7\xdb\xf8\x5e\xfd" "\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x7f" "\xb3\x03\x07\x02\x00\x00\x00\x00\x40\xfe\xaf\x8d\x50\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x85\xfd\xfa\x09\xb1\xaa\x8a\xe3\x00\x7e\xce\x9b\x67\x3e" "\xe7\x8d\xd3\x9b\x66\xd1\x34\x42\x69\xab\x11\x52\x84\x59\x34\x51\x60\x28" "\x42\x84\xca\x40\x41\x65\x41\x2e\xca\x95\xd1\xa2\x50\xdb\xd8\x54\x36\x04" "\x59\x84\xb5\x10\x04\x73\x95\x53\x44\x48\x05\x41\x51\x4e\x84\x86\x0d\x49" "\x12\x2d\x14\xc2\x92\x6a\x11\x95\x6d\x94\x0a\xc1\x78\x33\xf7\x3c\xdf\x5c" "\xe7\x36\xd3\xf5\xcf\x42\x3e\x1f\x78\x9c\xf7\x3b\xef\xde\xef\xfd\xdd\x7b" "\xcf\xdc\x79\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xdc\xf2\xcb\xe0" "\x60\x7b\x3d\xbf\xda\x37\x39\x1e\x7e\xf1\xa9\xb3\xeb\xfb\xd7\x7c\xf5\xfc" "\xe3\x67\x9e\xbd\xe7\xe3\x27\x9e\x7b\xf0\x81\x67\x4e\x3f\xd2\xbb\xfa\xd0" "\x8e\xe1\x95\x47\x4e\xef\x7e\xf7\xe4\xb9\x5f\x6f\xef\x3f\xb8\xee\xde\x3d" "\x3b\xd7\x4c\xec\x7a\x65\xd7\xaa\x0d\xb3\x1e\x68\xdb\xd4\xb0\x34\x2b\x6b" "\x21\xc4\xdf\x63\x08\x6f\x9d\x7b\xfa\x8d\xd1\x43\x13\x37\x36\xe7\x62\xf3" "\xf8\xb1\x31\x12\x7a\x7a\x62\xe5\xf3\x9e\x98\x4b\x58\xf1\x4f\x08\xe1\xb1" "\x56\x9f\xd3\x3f\xfc\xe0\xcc\xe0\xa6\xe6\x38\xf2\xf2\xfc\x69\xf3\xd7\xe7" "\x42\xf2\xe7\x15\xea\x1d\xa9\x9f\x29\x8d\xe9\xfd\x72\x6d\xa9\x65\xeb\x6c" "\xc7\xde\xb1\xb7\xb7\x6c\x5f\xbf\x7c\xf4\xbb\x0d\xaf\x0f\xaf\xfa\xf0\xe8" "\xc8\x85\x4d\x62\x73\x9b\xf7\xb3\xf5\x14\x42\xf7\xc6\xf6\xfd\xe7\x85\x10" "\x16\x64\xaf\xa6\xb4\xda\xfa\xd2\xce\xd9\x38\x1c\x42\xe8\x6c\xdb\x6f\x68" "\x96\xbe\x6e\x9d\x63\xff\xcb\x0a\xea\x45\xd9\x78\x5d\x36\xd6\x67\xc9\x49" "\x9f\x2f\xc9\xd5\x95\x39\xf6\x51\xcd\x8d\x9d\x73\xdc\xaf\xac\xb9\xf6\x75" "\xb9\x74\xe5\xea\xfc\xc3\xe8\x4a\x49\xe7\x99\x9e\x5b\x1f\x65\xe3\xd2\xff" "\x99\xd3\x91\x5e\x31\x54\x62\xa8\xb6\xda\xdf\x1c\x2f\xac\x91\xd0\x76\xdf" "\x62\x88\x93\x6b\xbb\xd6\xaa\x2b\x93\x75\x68\xd5\x21\x5f\xc7\x5c\x5d\xc9" "\xd5\x1d\xf3\x72\xe7\x35\x79\xdc\x6c\xa1\x75\xc4\x38\x7d\x3e\x6d\x97\x9b" "\x5f\x9c\xcd\x57\xb3\xf9\x25\xed\xcf\xea\x19\xdc\x57\x30\x7f\x53\x36\xd6" "\xb2\x3f\xd4\xbf\x52\x1d\xf2\x6f\xa6\xd4\x2f\x7a\xd3\x3a\xaf\x49\xa9\xaf" "\x1f\xfe\xa3\x97\xab\xa1\xd2\xf6\x0c\x9a\x69\x3e\xf5\x3b\x94\xdd\x8c\x7a" "\x36\x57\x8f\x37\x5c\xb4\xcf\xf9\x19\xa4\xcf\x06\x6e\x1e\x5f\x5e\x1d\x1a" "\x38\xdc\x28\xe8\x23\x1e\x88\x59\x7e\x2c\x95\x7f\x7c\x6c\xdb\xa6\xce\xe3" "\x5b\x9f\xec\x2b\xca\xdf\x58\xc9\xf2\x2b\xa5\xf2\xb7\x9c\xdf\xdc\x38\xb0" "\xee\xd4\xa2\xc2\xfc\xd7\x52\x7e\x47\xa9\xfc\xbd\x9f\xed\xf9\x72\xeb\xb2" "\xd5\x9f\x14\x5e\x9f\x3f\xd3\xf5\xa9\x96\xca\xff\xf9\xd8\xfe\x7d\xbf\xbd" "\x77\xf2\xeb\xc2\xfe\xf7\xa5\xfc\x5a\xa9\xfc\x23\xa7\xee\x1c\x1b\x1f\xb8" "\xed\xa1\xc2\xfe\x57\xa4\xeb\xb3\xa0\x54\xfe\x3b\x67\xff\xde\xfe\xd3\xfe" "\x17\xfa\x0b\xf3\x43\xca\xef\x2c\x95\x7f\xec\xe1\xa3\x3b\x3f\xed\xfa\xa2" "\xb7\x30\x7f\x3c\x5d\x9f\x7a\xa9\xfc\xfb\xff\x58\x3b\xfa\x6d\xf7\x89\x9e" "\xc5\x45\xf9\xdf\xa4\xfc\x85\xa5\xf2\xbf\xaf\xbd\xfa\xe8\x9b\x3f\x9e\x18" "\x2f\xbc\xbf\x77\xa7\xeb\xd3\x28\x95\xbf\xb6\xef\xae\xce\x83\x13\x2b\xef" "\x28\x7a\x76\xc6\x91\xab\xfd\x1f\x16\xe0\xda\xd2\x9b\x7d\xc7\x7a\x29\xab" "\xcb\xfe\xce\xbc\x54\x6d\xbf\x17\x76\x37\xe2\xd4\x77\xbe\xae\xec\xb5\xf0" "\x72\x1e\x28\xa7\x79\x9c\xee\x2b\x98\x0f\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xc0\xbf\xec\xc0\x01\x09\x00\x00\x00\x80\xa0\xff\xaf\xdb\x11" "\x28\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\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\x53\x01\x00\x00\xff\xff\x83\x68" "\x7a\x5f", 22970); syz_mount_image(/*fs=*/0x200059c0, /*dir=*/0x20000000, /*flags=*/0, /*opts=*/0x20000140, /*chdir=*/1, /*size=*/0x59ba, /*img=*/0x20005a80); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-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=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }