// https://syzkaller.appspot.com/bug?id=0f2cf7b72ba525cc8d9f12a776ab45f440dadac4 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static 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$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: mount_flags = 0x3210842 (8 bytes) // opts: ptr[in, fs_options[jfs_options]] { // fs_options[jfs_options] { // elems: array[fs_opt_elem[jfs_options]] { // fs_opt_elem[jfs_options] { // elem: union jfs_options { // discard_size: fs_opt["discard", fmt[hex, int32]] { // name: buffer: {64 69 73 63 61 72 64} (length 0x7) // eq: const = 0x3d (1 bytes) // val: int32 = 0x738c (18 bytes) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // usrquota: buffer: {75 73 72 71 75 6f 74 61} (length 0x8) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // errors_continue: buffer: {65 72 72 6f 72 73 3d 63 6f 6e 74 69 // 6e 75 65} (length 0xf) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // iocharset: fs_opt["iocharset", stringnoz[codepages_names]] { // name: buffer: {69 6f 63 68 61 72 73 65 74} (length 0x9) // eq: const = 0x3d (1 bytes) // val: buffer: {6d 61 63 72 6f 6d 61 6e 69 61 6e} (length 0xb) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // quota: buffer: {71 75 6f 74 61} (length 0x5) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // nointegrity: buffer: {6e 6f 69 6e 74 65 67 72 69 74 79} // (length 0xb) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // grpquota: buffer: {67 72 70 71 75 6f 74 61} (length 0x8) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // noquota: buffer: {6e 6f 71 75 6f 74 61} (length 0x7) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // nodiscard: buffer: {6e 6f 64 69 73 63 61 72 64} (length 0x9) // } // comma: const = 0x2c (1 bytes) // } // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // chdir: int8 = 0x24 (1 bytes) // size: len = 0x6318 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x6318) // } // ] // returns fd_dir memcpy((void*)0x200000000140, "jfs\000", 4); memcpy((void*)0x200000000080, "./file1\000", 8); memcpy((void*)0x200000006580, "discard", 7); *(uint8_t*)0x200000006587 = 0x3d; sprintf((char*)0x200000006588, "0x%016llx", (long long)0x738c); *(uint8_t*)0x20000000659a = 0x2c; memcpy((void*)0x20000000659b, "usrquota", 8); *(uint8_t*)0x2000000065a3 = 0x2c; memcpy((void*)0x2000000065a4, "errors=continue", 15); *(uint8_t*)0x2000000065b3 = 0x2c; memcpy((void*)0x2000000065b4, "iocharset", 9); *(uint8_t*)0x2000000065bd = 0x3d; memcpy((void*)0x2000000065be, "macromanian", 11); *(uint8_t*)0x2000000065c9 = 0x2c; memcpy((void*)0x2000000065ca, "quota", 5); *(uint8_t*)0x2000000065cf = 0x2c; memcpy((void*)0x2000000065d0, "nointegrity", 11); *(uint8_t*)0x2000000065db = 0x2c; memcpy((void*)0x2000000065dc, "grpquota", 8); *(uint8_t*)0x2000000065e4 = 0x2c; memcpy((void*)0x2000000065e5, "noquota", 7); *(uint8_t*)0x2000000065ec = 0x2c; memcpy((void*)0x2000000065ed, "nodiscard", 9); *(uint8_t*)0x2000000065f6 = 0x2c; *(uint8_t*)0x2000000065f7 = 0; memcpy( (void*)0x200000006600, "\x78\x9c\xec\xdd\xcb\x8e\x1c\x57\x19\x07\xf0\xaf\xfa\x36\x17\x13\xc7\xca" "\x22\x0a\x16\x42\x93\xc4\x5c\x42\x88\xaf\xc1\x18\x02\x24\x59\xc0\x82\x0d" "\x0b\xe4\x2d\xb2\x35\x99\x44\x16\x0e\x20\xdb\x20\x27\xb2\xf0\x44\xb3\x61" "\xc1\x43\x80\x90\x58\x22\xc4\x92\x15\x0f\x90\x05\x5b\x76\x3c\x00\x96\x6c" "\x24\x50\x16\x28\x85\x6a\xe6\x9c\x71\x75\xa5\x7b\x7a\xc6\xf6\x74\xf5\xb8" "\x7e\x3f\x69\x5c\xf5\xf5\xa9\x9a\x3e\xe5\x7f\x57\x5f\xa6\xaa\xfa\x04\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x3f\xfc\xc1\x8f\xcf" "\x15\x11\x71\xe5\x57\xe9\x86\x13\x11\x9f\x8b\x7e\x44\x2f\x62\xa5\xaa\xd7" "\x22\x62\x65\xed\x44\x7d\x9d\x17\x62\xbb\x39\x9e\x8f\x88\xe1\x52\x44\xb5" "\xfe\xf6\x3f\xcf\x46\xbc\x1e\x11\x1f\x1f\x8f\xb8\xff\xe0\xce\x7a\x75\xf3" "\xf9\x7d\xf6\xe3\xfb\x7f\xfe\xc7\x1f\x7e\x72\xec\x47\x7f\xff\xd3\xf0\xcc" "\x7f\xff\x72\xab\xff\xc6\xb4\xe5\x6e\xdf\xfe\xed\x7f\xfe\x7a\xf7\xd1\xb7" "\x17\x00\x00\x00\xba\xa8\x2c\xcb\xb2\x48\x1f\xf3\x4f\x46\xc4\x20\x7d\xb6" "\x07\x00\x9e\x7e\xf9\xf5\xbf\x4c\xf2\xed\xea\x85\xab\x37\x17\xac\x3f\x6a" "\xb5\x5a\xad\x3e\x82\x75\x5d\x39\xd9\xdd\x7a\x11\x11\x9b\xf5\x75\xaa\xf7" "\x0c\x0e\xc7\x03\xc0\x11\xb3\x19\x9f\xb4\xdd\x05\x5a\x24\xff\x4e\x1b\x44" "\xc4\xb1\xb6\x3b\x01\x2c\xb4\xa2\xed\x0e\x70\x28\xee\x3f\xb8\xb3\x5e\xa4" "\x7c\x8b\xfa\xeb\xc1\xda\x4e\x7b\x3e\x17\x64\x2c\xff\xcd\x62\xf7\xfa\x8e" "\x69\xd3\x59\x9a\xe7\x98\xcc\xeb\xf1\xb5\x15\xfd\x78\x6e\x4a\x7f\x56\xe6" "\xd4\x87\x45\x92\xf3\xef\x35\xf3\xbf\xb2\xd3\x3e\x4a\xcb\x1d\x76\xfe\x4f" "\x58\x31\x98\xd2\x30\x2d\xff\xd1\xce\xa5\x4f\x9d\x93\xf3\xef\x37\xf3\x6f" "\x38\x62\xf9\x4f\xb5\x15\xbd\x89\xf9\x77\x55\xce\x7f\x70\xa0\xfc\xfb\xf2" "\x07\x00\x00\x00\x00\x80\x05\x96\xff\xfe\x7f\xa2\xe5\xe3\xbf\x4b\x8f\xbf" "\x29\xfb\xb2\xd7\xf1\xdf\xb5\x39\xf5\x01\x00\x00\x00\x00\x00\x00\x00\x9e" "\xb4\x83\x8e\xff\x37\x68\x8c\xff\xb7\xcb\xf8\x7f\x00\x00\x00\xb0\xb0\xaa" "\xcf\xea\x95\xdf\x1d\x7f\x78\xdb\xb4\xef\x62\xab\x6e\xbf\x5c\x44\x3c\xd3" "\x58\x1e\xe8\x98\x74\xb1\xcc\x6a\xdb\xfd\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x80\x2e\x19\xec\x9c\xc3\x7b\xb9\x88\x18\x46\xc4\x33\xab\xab\x65" "\x59\x56\x3f\x75\xcd\xfa\xa0\x1e\x77\xfd\xa3\xae\xeb\xdb\x0f\x5d\xd6\xf6" "\x93\x3c\x00\x00\xec\xf8\xf8\x78\xe3\x5a\xfe\x22\x62\x39\x22\x2e\xa7\xef" "\xfa\x1b\xae\xae\xae\x96\xe5\xf2\xca\x6a\xb9\x5a\xae\x2c\xe5\xf7\xb3\xa3" "\xa5\xe5\x72\xa5\xf6\xb9\x36\x4f\xab\xdb\x96\x46\xfb\x78\x43\x3c\x18\x95" "\xd5\x2f\x5b\xae\xad\x57\x37\xeb\xf3\xf2\xac\xf6\xe6\xef\xab\xee\x6b\x54" "\xf6\xf7\xd1\xb1\xf9\x68\x31\x70\x00\x88\x88\x9d\x57\xa3\xfb\xd3\x5e\x91" "\xfe\xe7\xf5\xea\x68\x2a\xcb\x67\xa3\xe5\x37\x39\x1c\x11\x7b\xec\xff\x1c" "\x51\xf6\x7f\xf6\xa3\xed\xc7\x29\x00\x00\x00\x70\xf8\xca\xb2\x2c\x8b\xf4" "\x75\xde\x27\xd3\x31\xff\x5e\xdb\x9d\x02\x00\xe6\x22\xbf\xfe\x37\x8f\x0b" "\xa8\xd5\x6a\xb5\x5a\xad\x7e\xfa\xea\xba\x72\xb2\xbb\xf5\x22\x22\x36\xeb" "\xeb\x54\xef\x19\x0c\xc7\x0f\x00\x47\xcc\x66\x7c\xd2\x76\x17\x68\x91\xfc" "\x3b\x6d\x10\x11\x2f\xb4\xdd\x09\x60\xa1\x15\x6d\x77\x80\x43\x71\xff\xc1" "\x9d\xf5\x22\xe5\x5b\xd4\x5f\x0f\xd2\xf8\xee\xf9\x5c\x90\xb1\xfc\x37\x8b" "\xed\xf5\xf2\xfa\x93\xa6\xb3\x34\xcf\x31\x99\xd7\xe3\x6b\x2b\xfa\xf1\xdc" "\x94\xfe\x3c\x3f\xa7\x3e\x2c\x92\x9c\x7f\xaf\x99\xff\x95\x9d\xf6\x51\x5a" "\xee\xf1\xf3\x2f\xc7\xfe\x4c\xd8\xd6\x39\x46\xd3\xf2\xaf\xb6\xf3\x44\x0b" "\xfd\x69\x5b\xce\xbf\xdf\xcc\xbf\xe1\xb0\xf7\xff\x79\xd9\x8a\xde\xc4\xfc" "\xbb\x2a\xe7\x3f\x38\x50\xfe\x7d\xf9\x03\x00\x00\x00\x00\xc0\x02\xcb\x7f" "\xff\x3f\xb1\x50\xc7\x7f\x47\x8f\xba\x39\x33\xed\x75\xfc\x77\x6d\xe2\x1a" "\x87\xd7\x17\x00\x00\x00\x00\x00\x00\x00\x78\x52\xee\x3f\xb8\xb3\x9e\xaf" "\x7b\xcd\xc7\xff\xbf\x30\x61\x39\xd7\x7f\x3e\x9d\x72\xfe\x85\xfc\x3b\x29" "\xe7\xdf\x6b\xe4\xff\xd5\xc6\x72\xfd\xda\xfc\xbd\xb7\x1f\xe6\xff\xef\x07" "\x77\xd6\xff\x78\xeb\x5f\x9f\xcf\xd3\xfd\xe6\xbf\x94\x67\x8a\xf4\xc8\x2a" "\xd2\x23\xa2\x48\xf7\x54\x0c\xd2\xf4\x71\xb6\xee\xb3\xb6\x86\xfd\x51\x75" "\x4f\xc3\xa2\xd7\x1f\xa4\x73\x7e\xca\xe1\xbb\x71\x2d\xae\xc7\x46\x9c\x1d" "\x5b\xb6\x97\xfe\x3f\x1e\xb6\x9f\x1b\x6b\xaf\x7a\x3a\xdc\x6e\x2f\xfb\x3b" "\xed\xe7\xc7\xda\x07\xbb\xed\x79\xfd\x0b\x63\xed\xc3\x74\x76\x51\xb9\x92" "\xdb\x4f\xc7\x7a\xfc\x3c\xae\xc7\x3b\xdb\xed\x55\xdb\xd2\x8c\xed\x5f\x9e" "\xd1\x5e\xce\x68\xcf\xf9\xf7\xed\xff\x9d\x94\xf3\x1f\xd4\x7e\xaa\xfc\x57" "\x53\x7b\xd1\x98\x56\xee\x7d\xd4\xfb\xcc\x7e\x5f\x9f\x4e\xba\x9f\xb7\xae" "\x7d\xf1\x37\x67\x0f\x7f\x73\x66\xda\x8a\xfe\xee\xb6\xd5\x55\xdb\xf7\x52" "\x0b\xfd\xd9\xfe\x3f\x39\x36\x8a\x5f\xde\xdc\xb8\x71\xfa\xf6\xd5\x5b\xb7" "\x6e\x9c\x8b\x34\x19\xbb\xf5\x7c\xa4\xc9\x13\x96\xf3\x1f\xa6\x9f\xdd\xe7" "\xff\x97\x77\xda\xf3\xf3\x7e\x7d\x7f\xbd\xf7\xd1\xe8\xc0\xf9\x2f\x8a\xad" "\x18\x4c\xcd\xff\xe5\xda\x7c\xb5\xbd\xaf\xcc\xb9\x6f\x6d\xc8\xf9\x8f\xd2" "\x4f\xce\xff\x9d\xd4\x3e\x79\xff\x3f\xca\xf9\x4f\xdf\xff\x5f\x6d\xa1\x3f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb0\x97\xb2\x2c\xb7\x2f" "\x11\x7d\x2b\x22\x2e\xa6\xeb\x7f\xda\xba\x36\x13\x00\x98\x9f\x61\xed\xf5" "\xbf\x4c\x72\xdb\xbc\xea\xfe\x9c\xef\x4f\xad\x3e\xb4\xba\x28\xe6\x71\x7f" "\xc5\xc2\x6c\x6f\x0b\xf5\xa7\xe5\x9c\xef\x7f\x30\x7e\x43\xdb\xdb\xaf\x56" "\x3f\x89\xba\xae\x9c\xec\xcd\x7a\x11\x11\x7f\xab\xaf\x53\xbd\x67\xf8\xf5" "\xa4\x5f\x06\x00\x2c\xb2\x4f\x23\xe2\x9f\x6d\x77\x82\xd6\xc8\xbf\xc3\xf2" "\xf7\xfd\x55\xd3\x53\x6d\x77\x06\x98\xab\x9b\x1f\x7c\xf8\xd3\xab\xd7\xaf" "\x6f\xdc\xb8\xd9\x76\x4f\x00\x00\x00\x00\x00\x00\x00\x80\x47\x95\xc7\xff" "\x5c\xab\x8d\xff\x7c\xaa\x2c\xcb\xbb\x8d\xe5\xc6\xc6\x7f\x7d\x3b\xd6\x1e" "\x77\xfc\xcf\x7c\x39\xcd\xc3\x01\x46\xa7\x0c\x54\xdd\x3f\xf8\x36\xed\x65" "\xab\x37\xea\xf7\x6a\xc3\x8d\xbf\x18\xd3\xc6\xff\x1e\xee\xce\xed\x35\xfe" "\xf7\x60\xc6\xfd\x0d\x67\xb4\x8f\x66\xb4\x2f\xcd\x68\x5f\x9e\xd1\x3e\xf1" "\x42\x8f\x9a\x9c\xff\x8b\xb5\xf1\xce\x4f\x45\xc4\xc9\xc6\xf0\xeb\x5d\x18" "\xff\xb5\x39\xe6\x7d\x17\xe4\xfc\x5f\xaa\x3d\x9e\xab\xfc\xbf\xd2\x58\xae" "\x9e\x7f\xf9\xfb\xa3\x9c\x7f\x6f\x2c\xff\x33\xb7\xde\xff\xc5\x99\x9b\x1f" "\x7c\xf8\xda\xb5\xf7\xaf\xbe\xb7\xf1\xde\xc6\xcf\x2e\x9c\x3b\x77\xf6\xc2" "\xc5\x8b\x97\x2e\x5d\x3a\xf3\xee\xb5\xeb\x1b\x67\x77\xfe\x6d\xb1\xc7\x87" "\x2b\xe7\x9f\xc7\xbe\x76\x1e\x68\xb7\xe4\xfc\x73\xe6\xf2\xef\x96\x9c\xff" "\x97\x52\x2d\xff\x6e\xc9\xf9\x7f\x39\xd5\xf2\xef\x96\x9c\x7f\x7e\xbf\x27" "\xff\x6e\xc9\xf9\xe7\xcf\x3e\xf2\xef\x96\x9c\xff\x2b\xa9\x96\x7f\xb7\xe4" "\xfc\xbf\x96\x6a\xf9\x77\x4b\xce\xff\xd5\x54\xcb\xbf\x5b\x72\xfe\x5f\x4f" "\xb5\xfc\xbb\x25\xe7\xff\x5a\xaa\xe5\xdf\x2d\x39\xff\xd3\xa9\x96\x7f\xb7" "\xe4\xfc\xcf\xa4\x7a\x9f\xf9\xaf\x1c\x76\xbf\x98\x8f\x9c\x7f\x3e\xc2\x65" "\xff\xef\x96\x9c\x7f\x3e\xb3\x41\xfe\xdd\x92\xf3\x3f\x9f\x6a\xf9\x77\x4b" "\xce\xff\x42\xaa\xe5\xdf\x2d\x39\xff\xd7\x53\x2d\xff\x6e\xc9\xf9\x7f\x23" "\xd5\xf2\xef\x96\x9c\xff\xc5\x54\xcb\xbf\x5b\x72\xfe\xdf\x4c\xb5\xfc\xbb" "\x25\xe7\x7f\x29\xd5\xf2\xef\x96\x9c\xff\xb7\x52\x2d\xff\x6e\xc9\xf9\x7f" "\x3b\xd5\xf2\xef\x96\x9c\xff\x1b\xa9\x96\x7f\xb7\xe4\xfc\xbf\x93\x6a\xf9" "\x77\x4b\xce\xff\xbb\xa9\x96\x7f\xb7\xe4\xfc\xbf\x97\x6a\xf9\x77\x4b\xce" "\xff\xcd\x54\xcb\xbf\x5b\x1e\x7e\xff\xbf\x19\x33\x66\xcc\xe4\x99\xb6\x9f" "\x99\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xa6\x79\x9c\x4e\xdc\xf6" "\x36\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x67\x07\x0e\x04\x00\x00\x00\x00" "\x80\xfc\x5f\x1b\xa1\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x0a\x3b\x70\x20" "\x00\x00\x00\x00\x00\xe4\xff\xda\x08\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\xd8\xbb\xd7\x18\xb9\xce\xfa\x7e\xe0\x67\xf6\xe6\xb5\x03\x89\x81\x90" "\xbf\x93\xbf\x81\x8d\x63\x92\x90\x6c\xb2\xeb\x4b\x7c\xa1\x75\x31\xe1\xda" "\x70\x2b\x81\x50\xe8\x05\xdb\xf5\xae\xcd\x82\x6f\x78\xed\x12\x68\x24\x9b" "\x06\x4a\x24\x8c\x8a\x2a\xda\x86\x4a\x6d\x01\xa1\x36\x6f\x2a\xfc\x82\x17" "\xb4\x02\x94\x17\xa8\x15\x52\x25\x68\x5f\xd0\x37\x88\x0a\x95\x17\x11\x0a" "\x28\x20\x55\xa2\x15\x64\xab\x39\xe7\x79\x9e\x9d\x99\x9d\xcb\xae\x77\xbd" "\x3b\x73\xce\xe7\x23\xd9\x3f\xef\x99\x33\x73\x9e\x39\xf3\x9c\x33\xfb\xdb" "\xf5\x77\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x8d\x6e\x7f\xdd\xec\xa7\x6a\x59\x96\xd5\xff\xe4\x7f\x6d\xcd\xb2\x17" "\xd4\xff\xbd\x79\x62\x6b\xbe\xec\xd5\x1b\x3d\x42\x00\x00\x00\x60\xb5\x7e" "\x95\xff\xfd\xdc\x4d\x69\xc1\xe1\x65\xdc\xa9\x61\x9d\x7f\x79\xf9\x77\xbe" "\xba\xb0\xb0\xb0\x90\xbd\x77\xf8\xcf\x47\x3f\xb7\xb0\x90\x6e\x98\xc8\xb2" "\xd1\x4d\x59\x96\xdf\x16\x5d\xfd\xe1\xfb\x6a\x8d\xeb\x04\x8f\x67\xe3\xb5" "\xa1\x86\xaf\x87\x7a\x6c\x7e\xb8\xc7\xed\x23\x3d\x6e\x1f\xed\x71\xfb\x58" "\x8f\xdb\x37\xf5\xb8\x7d\xbc\xc7\xed\x4b\x76\xc0\x12\x9b\x8b\x9f\xc7\xe4" "\x0f\xb6\x33\xff\xe7\xd6\x62\x97\x66\x37\x67\xa3\xf9\x6d\x3b\xdb\xdc\xeb" "\xf1\xda\xa6\xa1\xa1\xf8\xb3\x9c\x5c\x2d\xbf\xcf\xc2\xe8\x89\x6c\x2e\x3b" "\x95\xcd\x66\xd3\x4d\xeb\x17\xeb\xd6\xf2\xf5\xbf\x7e\x7b\x7d\x5b\x6f\xce" "\xe2\xb6\x86\x1a\xb6\xb5\xbd\x3e\x43\x7e\xf6\xd8\xf1\x38\x86\x5a\xd8\xc7" "\x3b\x9b\xb6\xb5\xf8\x98\xd1\x4f\x5e\x9b\x4d\xfc\xfc\x67\x8f\x1d\xff\xbb" "\x0b\xcf\xde\xda\xae\xf6\xdc\x0d\x4d\x8f\x57\x8c\xf3\xee\x1d\xf5\x71\x7e" "\x22\x2c\x29\xc6\x5a\xcb\x36\xa5\x7d\x12\xc7\x39\xd4\x30\xce\xed\x6d\x5e" "\x93\xe1\xa6\x71\xd6\xf2\xfb\xd5\xff\xdd\x3a\xce\xe7\x96\x39\xce\xe1\xc5" "\x61\xae\xab\xd6\xd7\x7c\x3c\x1b\xca\xff\xfd\xdd\x7c\x3f\x8d\x34\xfe\x58" "\x2f\xed\xa7\xed\x61\xd9\x2f\xee\xc8\xb2\xec\xf2\xe2\xb0\x5b\xd7\x59\xb2" "\xad\x6c\x28\xdb\xd2\xb4\x64\x68\xf1\xf5\x19\x2f\x66\x64\xfd\x31\xea\x53" "\xe9\xc5\xd9\xc8\x8a\xe6\xe9\xed\xcb\x98\xa7\xf5\x3a\xb3\xb3\x79\x9e\xb6" "\x1e\x13\xf1\xf5\xbf\x3d\xdc\x6f\xa4\xc3\x18\x1a\x5f\xa6\x9f\x7c\x7c\xac" "\xe1\x75\xff\xe5\xc2\xb5\xcc\xd3\xa8\xfe\xac\x3b\x1d\x2b\xad\x73\x70\xad" "\x8f\x95\x7e\x99\x83\x71\x5e\x7c\x37\x7f\xd2\x4f\xb4\x9d\x83\x3b\xc3\xf3" "\x7f\xec\xce\xce\x73\xb0\xed\xdc\x69\x33\x07\xd3\xf3\x6e\x98\x83\x3b\x7a" "\xcd\xc1\xa1\xb1\xe1\x7c\xcc\xe9\x45\xa8\xe5\xf7\x59\x9c\x83\xbb\x9a\xd6" "\x1f\xce\xb7\x54\xcb\xeb\x33\x77\x76\x9f\x83\x53\x17\x4e\x9f\x9b\x9a\xff" "\xe8\xc7\xee\x9b\x3b\x7d\xec\xe4\xec\xc9\xd9\x33\x7b\x76\xed\x9a\xde\xb3" "\x6f\xdf\x81\x03\x07\xa6\x4e\xcc\x9d\x9a\x9d\x2e\xfe\xbe\xc6\xbd\xdd\xff" "\xb6\x64\x43\xe9\x18\xd8\x11\xf6\x5d\x3c\x06\xee\x6a\x59\xb7\x71\xaa\x2e" "\x7c\x71\x6c\xc9\xf9\xf7\x5a\x8f\xc3\xf1\x2e\xc7\xe1\xd6\x96\x75\xd7\xfa" "\x38\x1c\x69\x7d\x72\xb5\xf5\x39\x20\x97\xce\xe9\xe2\xd8\x78\x77\x7d\xa7" "\x8f\x5f\x19\xca\x3a\x1c\x63\xf9\xeb\x73\xcf\xea\x8f\xc3\xf4\xbc\x1b\x8e" "\xc3\x91\x86\xe3\xb0\xed\x7b\x4a\x9b\xe3\x70\x64\x19\xc7\x61\x7d\x9d\x73" "\xf7\x2c\xef\x7b\x96\x91\x86\x3f\xed\xc6\xd0\xf9\xbd\x60\x75\x73\x70\x6b" "\xc3\x1c\x6c\xfd\x7e\xa4\x75\x0e\xae\xf5\xf7\x23\xfd\x32\x07\xc7\xc3\xbc" "\xf8\xfe\x3d\x9d\xdf\x0b\xb6\x87\xf1\x3e\x31\xb9\xd2\xef\x47\x86\xb3\x2d" "\x4d\x6f\xaa\x43\x8b\x4f\x37\x9c\x7b\xea\x4b\xd2\xf7\xfb\xe3\x07\xf2\xd2" "\x6e\x5e\xde\x56\xbf\xe1\x86\xb1\xec\xe2\xfc\xec\xf9\xfb\x1f\x3d\x76\xe1" "\xc2\xf9\x5d\x59\x28\xeb\xe2\x25\x0d\x73\xa5\x75\xbe\x6e\x69\x78\x4e\xd9" "\x92\xf9\x3a\xb4\xe2\xf9\x7a\x78\xee\xe5\x4f\xdc\xd6\x66\xf9\xd6\xb0\xaf" "\xc6\xef\xab\xff\x35\xde\xf1\xb5\xaa\xaf\xb3\xf7\xfe\xee\xaf\x55\xfe\xee" "\xd6\x7e\x7f\x36\x2d\xdd\x9d\x85\xb2\xc6\xd6\x7b\x7f\xb6\x7b\x37\xaf\xef" "\xcf\xb1\x2c\xfb\xfc\xb7\x3e\xfe\xf0\x37\x1e\xfb\xfc\xeb\x3a\xee\xcf\x7a" "\xbf\xf9\x89\xa9\xd5\x7f\x2f\x9e\xfa\xd2\x86\xf3\xef\x68\x87\xf3\x6f\xec" "\xfb\x9f\x2f\xb6\x97\x1e\xea\xf1\xe1\xd1\x91\xe2\xf8\x1d\x4e\x7b\x67\xb4" "\xe9\x7c\xdc\xfc\x52\x8d\xe4\xe7\xae\x5a\xbe\xed\xe7\xa6\x96\x77\x3e\x1e" "\x0d\x7f\xd6\xfb\x7c\x7c\x73\x97\xf3\xf1\xb6\x96\x75\xd7\xfa\x7c\x3c\xda" "\xfa\xe4\xe2\xf9\xb8\xd6\xeb\xa7\x1d\xab\xd3\xfa\x7a\x8e\x87\x79\x72\x6a" "\xba\xfb\xf9\xb8\xbe\xce\xb6\xdd\x2b\x9d\x93\x23\x4b\xe6\x64\xe3\x31\x76" "\x47\xa8\xb5\xb0\xff\x5f\x15\x3a\x85\x74\x0a\x6f\x98\x3b\x9d\xe6\x6d\xda" "\xd6\xc8\xc8\x68\x78\x5e\x23\x71\x0b\xcd\xf3\x74\x4f\xd3\xfa\xa3\xa1\x37" "\xab\x6f\xeb\xa9\xdd\xe1\x9b\xc2\x34\xca\xe5\xcd\xd3\xbb\xef\x28\xd6\x1f" "\x6e\xb8\x5f\xb4\x5e\xf3\x74\xa2\x65\xdd\xb5\x9e\xa7\xe9\x67\x5f\x9d\xe6" "\x69\xad\xd7\x4f\xdf\xae\x4d\xeb\xeb\x39\x1e\xe6\xc5\xcd\x7b\xba\xcf\xd3" "\xfa\x3a\x4f\xef\x5d\xfd\xb9\x73\x73\xfc\x67\xc3\xb9\x73\xac\xd7\x1c\x1c" "\x1d\x1e\xab\x8f\x79\x34\x4d\xc2\xfc\x7c\x9f\x2d\x6c\x8e\x73\xf0\xfe\xec" "\x78\x76\x36\x3b\x95\xcd\xe4\xb7\x8e\xe5\xf3\xa9\x96\x6f\x6b\xf2\x81\xe5" "\x9d\x2b\xc7\xc2\x9f\xf5\x3e\x57\x6e\xeb\x32\x07\xef\x6e\x59\x77\xad\xe7" "\x60\x7a\x1f\xeb\x34\xf7\x6a\x23\x4b\x9f\xfc\x1a\x68\x7d\x3d\xc7\xc3\xbc" "\x78\xf2\x81\xee\x73\xb0\xbe\xce\xeb\xf7\x5f\xc3\xf7\xae\x4d\x4b\x9a\xcf" "\x95\x77\x87\x25\x69\x9d\x86\xef\x5d\x5b\x7f\xbe\xd6\xe9\x67\x5e\xb7\xb5" "\xec\xa6\xeb\x35\x57\x46\xc2\x38\xbf\xb5\xbf\xfb\xcf\x66\xeb\xeb\x9c\x3a" "\xb0\xd2\x3e\xb3\xfb\x7e\xba\x37\x2c\xb9\xa1\xcd\x7e\x6a\x3d\x7e\x3b\x1d" "\x53\x33\xd9\xfa\xec\xa7\x6d\x61\x9c\xcf\x1e\xe8\xbc\x9f\xea\xe3\xa9\xaf" "\xf3\xb9\x83\xcb\x9c\x4f\x87\xb3\x2c\xbb\xf4\xe1\x07\xf3\x9f\xf7\x86\xdf" "\xaf\x5c\xba\xf8\xbd\xaf\x36\xfd\xde\xa5\xdd\xef\x74\x2e\x7d\xf8\xc1\x9f" "\xbe\xf0\xc4\x3f\xaf\x64\xfc\x00\x0c\xbe\xe7\x8b\xb2\xa5\x78\xaf\x6b\xf8" "\x21\xda\x72\x7e\xff\x0f\x00\x00\x00\x0c\x84\xd8\xf7\x0f\x85\x9a\xe8\xff" "\x01\x00\x00\xa0\x34\x62\xdf\x1f\xff\x57\x78\xa2\xff\x07\x00\x00\x80\xd2" "\x88\x7d\xff\x48\xa8\x49\x19\xfa\xff\x3f\xee\xbd\xca\xb6\xd7\x3f\x3b\xf7" "\xfc\xa5\x2c\x25\xf3\x17\x82\x78\x7b\xda\x0d\x0f\x15\xeb\xc5\x8c\xeb\x74" "\xf8\x7a\x62\x61\x51\x7d\xf9\x83\x5f\x9e\xfd\xef\x7f\xba\xb4\xbc\xe1\x0d" "\x65\x59\xf6\xcb\x87\xfe\xa8\xed\xfa\xdb\x1e\x8a\xe3\x2a\x4c\x84\x71\x5e" "\x7d\x43\xf3\xf2\x25\xbe\x7a\xdf\xb2\xb6\x7d\xf4\x91\x4b\x69\xbb\x8d\xf9" "\xf5\x2f\x84\xc7\x8f\xcf\x67\xb9\xd3\xa0\x5d\x04\x77\x3a\xcb\xb2\xaf\xdf" "\xf4\x99\x7c\x3b\x13\xef\xbb\x92\xd7\xa7\x1f\x3a\x9a\xd7\x87\x2f\x3f\xf1" "\x78\x7d\x9d\xe7\x0e\x16\x5f\xc7\xfb\x3f\xf3\x92\x62\xfd\xbf\x0e\xe1\xdf" "\xc3\x27\x8e\x35\xdd\xff\x99\xb0\x1f\x7e\x14\xea\xf4\x5b\xda\xef\x8f\x78" "\xbf\xaf\x5c\x79\xd5\xf6\xfd\xef\x59\xdc\x5e\xbc\x5f\x6d\xc7\x8d\xf9\xd3" "\x7e\xf2\xfd\xc5\xe3\xc6\xcf\xc9\xf9\xec\xe3\xc5\xfa\x71\x3f\x77\x1a\xff" "\x37\x3e\xfd\xd4\x57\xea\xeb\x3f\xfa\xca\xf6\xe3\xbf\x34\xd4\x7e\xfc\x4f" "\x85\xc7\xfd\x72\xa8\xff\xf3\xb2\x62\xfd\xc6\xd7\xa0\xfe\x75\xbc\xdf\x27" "\xc3\xf8\xe3\xf6\xe2\xfd\xee\xff\xd2\x37\xdb\x8e\xff\xea\xa7\x8a\xf5\xcf" "\xbd\xb1\x58\xef\x68\xa8\x71\xfb\x77\x87\xaf\x77\xbe\xf1\xd9\xb9\xc6\xfd" "\xf5\x68\xed\x58\xd3\xf3\xca\xde\x54\xac\x17\xb7\x3f\xfd\xbd\x3f\xcd\x6f" "\x8f\x8f\x17\x1f\xbf\x75\xfc\xe3\x47\xae\x34\xed\x8f\xd6\xf9\xf1\xf4\xbf" "\x17\x8f\x33\xd5\xb2\x7e\x5c\x1e\xb7\x13\xfd\x63\xcb\xf6\xeb\x8f\xd3\x38" "\x3f\xe3\xf6\x9f\xfa\x93\xa3\x4d\xfb\xb9\xd7\xf6\xaf\x3e\xfc\xcc\xcb\xea" "\x8f\xdb\xba\xfd\x7b\x5b\xd6\x3b\xf7\xe1\x7b\xf2\xed\x2f\x3e\x5e\xf3\x27" "\x36\xfd\xcd\x27\x3f\xd3\x76\x7b\x71\x3c\x87\xff\xe1\x5c\xd3\xf3\x39\xfc" "\xce\x70\x1c\x87\xed\x3f\xf9\xfe\x30\x1f\xc3\xed\xff\x7b\xb5\x78\xbc\xd6" "\x4f\x57\x38\xfa\xce\xe6\xf3\x4f\x5c\xff\x0b\x5b\x2f\x35\x3d\x9f\xe8\xcd" "\x3f\x2f\xb6\x7f\xf5\x35\x27\xf3\xba\x69\x7c\xf3\x96\x1b\x5e\xf0\xc2\x1b" "\x2f\xbf\xa2\xbe\xef\xb2\xec\xbb\x9b\x8a\xc7\xeb\xb5\xfd\x93\x7f\x7b\xb6" "\x69\xfc\x5f\xbc\xa5\xd8\x1f\xf1\xf6\x98\xd1\x6f\xdd\x7e\x27\x71\xfb\xe7" "\x3f\x32\x79\xe6\xec\xfc\xc5\xb9\x99\xb4\x57\x1f\xbb\x29\xff\xec\x9c\xb7" "\x16\xe3\x89\xe3\xbd\x29\x9c\x5b\x5b\xbf\x3e\x72\xf6\xc2\x07\x66\xcf\x4f" "\x4c\x4f\x4c\x67\xd9\x44\x79\x3f\x42\xef\x9a\x7d\x29\xd4\x9f\x16\xe5\x72" "\xf7\xb5\x17\x96\x9c\x41\xef\x79\x24\xbc\x9e\xb7\xfd\xe5\xd7\xb7\xdc\xf9" "\x6f\x9f\x8e\xcb\xff\xe3\xdd\xc5\xf2\x2b\x6f\x29\xde\xb7\xee\x0a\xeb\x7d" "\x36\x2c\xdf\x1a\x5e\xbf\x95\x6d\x7f\xa9\x27\x6f\xbf\x25\x3f\xbe\x6b\x4f" "\x87\x11\x2e\x2c\xfd\xbc\xe0\xd5\xd8\xbe\xf3\xc7\x07\x96\xb5\x62\x78\xfe" "\xad\xdf\x17\xc4\xf9\x7e\xee\xa5\x1f\xc8\xf7\x43\xfd\xb6\xfc\x7d\x23\x1e" "\xd7\xab\x1c\xff\x0f\x66\x8a\xc7\xf9\x5a\xd8\xaf\x0b\xe1\x93\x99\x77\xdc" "\xb2\xb8\xbd\xc6\xf5\xe3\x67\x23\x5c\x79\x57\x71\xbc\xaf\x7a\xff\x85\xd3" "\x5c\x7c\x5d\xff\x3e\xbc\xde\x6f\xfb\x51\xf1\xf8\x71\x5c\xf1\xf9\xfe\x20" "\x7c\x1f\xf3\xcd\x6d\xcd\xe7\xbb\x38\x3f\xbe\x76\x69\xa8\xf5\xf1\xf3\x4f" "\xf1\xb8\x1c\xce\x27\xd9\xe5\xe2\xf6\xb8\x56\xdc\xdf\x57\x9e\xbb\xa5\xed" "\xf0\xe2\xe7\x90\x64\x97\x6f\xcd\xbf\xfe\xb3\xf4\x38\xb7\xae\xe8\x69\x76" "\x32\xff\xd1\xf9\xa9\x53\x73\x67\x2e\x3e\x3a\x75\x61\x76\xfe\xc2\xd4\xfc" "\x47\x3f\x76\xe4\xf4\xd9\x8b\x67\x2e\x1c\xc9\x3f\xcb\xf3\xc8\x07\xbb\xdc" "\xf5\xaf\xee\xca\xb2\x6c\xf1\xfc\xb4\x25\x3f\x3f\xcd\xcc\xee\xdb\x9b\xe5" "\x67\xab\xb3\x45\xb9\xce\x56\x31\xfe\xdc\x6a\xc7\x7f\xee\x91\xe3\x33\xfb" "\xa7\xef\x9c\x99\x3d\x71\xec\xe2\x89\x0b\x8f\x9c\x9b\x3d\x7f\xf2\xf8\xfc" "\xfc\xf1\xd9\x99\xf9\x3b\x8f\x9d\x38\x31\xfb\x91\x5e\xf7\x9f\x9b\x39\xb4" "\x6b\xf7\xc1\x3d\xfb\x77\x4f\x9e\x9c\x9b\x39\x74\xe0\xe0\xc1\x3d\x07\x27" "\xe7\xce\x9c\xad\x0f\xa3\x18\x54\x0f\xfb\xa6\x3f\x34\x79\xe6\xfc\x91\xfc" "\x2e\xf3\x87\xf6\x1e\xdc\xf5\xc0\x03\x7b\xa7\x27\x4f\x9f\x9d\x99\x3d\xb4" "\x7f\x7a\x7a\xf2\x62\xaf\xfb\xe7\xef\x4d\x93\xf5\x7b\xff\xe1\xe4\xf9\xd9" "\x53\xc7\x2e\xcc\x9d\x9e\x9d\x9c\x9f\xfb\xd8\xec\xa1\x5d\x07\xf7\xed\xdb" "\xdd\xf3\xd3\x00\x4f\x9f\x3b\x31\x3f\x31\x75\xfe\xe2\x99\xa9\x8b\xf3\xb3" "\xe7\xa7\x8a\xe7\x32\x71\x21\x5f\x5c\x7f\xef\xeb\x75\x7f\xca\x69\xfe\x3f" "\x8b\xef\x67\x5b\xd5\x8a\x0f\xe2\xcb\xde\x71\xef\xbe\xf4\xf9\xac\x75\x5f" "\xfe\x78\xc7\x87\x2a\x56\x69\xf9\x00\xd1\x67\xc3\x67\xd1\x7c\xfb\x45\xe7" "\x0e\x2c\xe7\xeb\xd8\xf7\x8f\x86\x9a\x94\xa1\xff\x07\x00\x00\x00\x72\xb1" "\xef\x1f\x0b\x35\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\x7f\x53\xa8\x89\xfe" "\x1f\x00\x00\x00\x4a\x23\xf6\xfd\xe3\xa1\xa6\xff\x12\x50\x91\xfe\xbf\x74" "\xf9\xff\x6d\x97\x96\xb5\x7d\xf9\x7f\xf9\xff\xc6\xfd\x25\xff\x5f\xb1\xfc" "\xff\xbb\xfa\x2d\xff\x5f\x9c\x2f\xe4\xff\xd7\xc6\x6a\xf3\xf7\xf2\xff\x81" "\xfc\xbf\xfc\x7f\xca\xcf\x8f\x65\x59\xb6\x3e\xf9\xf9\xeb\x33\x7e\xf9\x7f" "\xf9\x7f\x36\x52\xbf\xe5\xff\x63\xdf\xbf\x39\xcb\xfc\xfe\x1f\x00\x00\x00" "\x4a\x2a\xf6\xfd\x5b\x42\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef\xbf\x21" "\xd4\x44\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe\x17\x84\x9a\x54\xa4\xff\x97" "\xff\x97\xff\x97\xff\x97\xff\x97\xff\x6f\xbf\x7d\xf9\xff\xc1\x24\xff\xdf" "\x9d\xfc\x7f\x27\xc5\x27\x42\xcb\xff\xcf\x4f\x65\x1b\x98\x9f\x5f\x8b\xf1" "\xaf\x30\xff\x7f\x79\x2d\xc7\xbf\x01\xf9\xff\xcd\x8d\x5f\xc8\xff\xd3\x8f" "\xfa\x2d\xff\x1f\xfb\xfe\x17\x86\x9a\x54\xa4\xff\x07\x00\x00\x80\x2a\x88" "\x7d\xff\x8d\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\xdf\x14\x6a\xa2" "\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\xd6\x50\x93\x8a\xf4\xff\xf2\xff\xab" "\xca\xff\xa7\xcc\x95\xfc\x7f\xf3\xf8\xe5\xff\x9b\xc9\xff\x87\xf9\x20\xff" "\x2f\xff\xbf\x0e\xe4\xff\xbb\x93\xff\xef\x41\xfe\x7f\x43\xaf\x9f\x3f\xe8" "\xe3\x77\xfd\x7f\xf9\x7f\x96\xea\xb7\xfc\x7f\xec\xfb\x5f\x14\x6a\x52\x91" "\xfe\x1f\x00\x00\x00\x4a\x6b\x74\xf1\x9f\xb1\xef\x7f\x71\xa8\x89\xfe\x1f" "\x00\x00\x00\xfa\xcf\xc8\xb5\xdd\x2d\xf6\xfd\x2f\x09\x35\x59\xd2\xff\x5f" "\xe3\x06\x00\x00\x00\x80\x0d\x17\xfb\xfe\x9b\xb3\x96\x20\x78\x45\x7e\xff" "\x2f\xff\xef\xfa\xff\xf2\xff\xf2\xff\xf2\xff\xed\xb7\xbf\xfc\xfc\xff\x70" "\x26\xff\xdf\x3f\xe4\xff\xbb\x93\xff\xef\x41\xfe\x5f\xfe\xbf\xba\xf9\xff" "\xf1\x4c\xfe\x9f\xeb\xa0\xdf\xf2\xff\x79\xdf\x9f\x8d\x67\x2f\x0d\x35\xa9" "\x48\xff\x0f\x00\x00\x00\x55\x10\xfb\xfe\x5b\x42\x4d\xf4\xff\x00\x00\x00" "\x50\x1a\xb1\xef\xff\x7f\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\x6f" "\x0b\x35\xa9\x48\xff\x2f\xff\x5f\x9a\xfc\xff\x2f\x1a\x5f\x3a\xf9\x7f\xf9" "\xff\x6e\xdb\x97\xff\x77\xfd\xff\x32\x93\xff\xef\x4e\xfe\xbf\x07\xf9\x7f" "\xf9\xff\xea\xe6\xff\x5d\xff\x9f\xeb\xa2\xdf\xf2\xff\xb1\xef\xbf\x35\xd4" "\xa4\x22\xfd\x3f\x00\x00\x00\x54\x41\xec\xfb\x6f\x0b\x35\xd1\xff\x03\x00" "\x00\x40\x69\xc4\xbe\xff\xff\x87\x9a\xe8\xff\x01\x00\x00\xa0\x34\x62\xdf" "\xbf\x3d\xd4\xa4\x22\xfd\xbf\xfc\x7f\x9f\xe7\xff\x63\x72\xd4\xf5\xff\xe5" "\xff\xe5\xff\xfb\x32\xff\x3f\x2e\xff\xdf\x77\xe4\xff\xbb\x93\xff\xef\x41" "\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x9f\x35\xd5\x6f\xf9\xff\xd8\xf7\xbf\x2c\xd4" "\xa4\x22\xfd\x3f\x00\x00\x00\x54\x41\xec\xfb\x5f\x1e\x6a\xa2\xff\x07\x00" "\x00\x80\xd2\x88\x7d\xff\x2b\x42\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef" "\x9f\x08\x35\xa9\x48\xff\xbf\x92\xfc\x7f\xed\xb2\xfc\x7f\x27\xd7\xf9\xfa" "\xff\x63\xcb\xb8\xfe\x7f\x13\xf9\x7f\xf9\xff\x6e\xdb\x97\xff\x77\xfd\xff" "\x32\x93\xff\xef\x4e\xfe\xbf\x07\xf9\x7f\xf9\x7f\xf9\x7f\xf9\x7f\xd6\x54" "\xbf\xe5\xff\x63\xdf\x7f\x7b\xa8\x49\x45\xfa\x7f\x00\x00\x00\xa8\x82\xd8" "\xf7\xef\x08\x35\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\xff\x8e\x50\x13\xfd" "\x3f\x00\x00\x00\x94\x46\xec\xfb\x77\x86\x9a\x54\xa4\xff\x77\xfd\xff\x81" "\xc8\xff\x67\xf2\xff\xf2\xff\xf2\xff\xf2\xff\xf2\xff\xcb\x23\xff\xdf\x9d" "\xfc\x7f\x0f\xf2\xff\xf2\xff\xf2\xff\xf2\xff\xac\xa9\x35\xce\xff\x0f\xb5" "\x2e\x5c\x69\xfe\x3f\xf6\xfd\xaf\x0c\x35\xa9\x48\xff\x0f\x00\x00\x00\x55" "\x10\xfb\xfe\x3b\x43\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef\xbf\x2b\xd4" "\x44\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe\xbb\x43\x4d\x2a\xd2\xff\xcb\xff" "\xcb\xff\xcb\xff\xcb\xff\xcb\xff\xb7\xdf\xbe\xfc\xff\x60\x92\xff\xef\x4e" "\xfe\xbf\x07\xf9\xff\x81\xca\xff\xb7\x06\x81\x37\x7a\xfc\xf2\xff\xf2\xff" "\x2c\xd5\x6f\xd7\xff\x8f\x7d\xff\xab\x42\x4d\x2a\xd2\xff\x03\x00\x00\x40" "\x15\xc4\xbe\xff\x9e\x50\x13\xfd\x3f\x00\x00\x00\x94\x46\xec\xfb\xef\x0d" "\x35\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\x7f\x32\xd4\xa4\x22\xfd\xbf\xfc" "\xbf\xfc\xbf\xfc\xbf\xfc\xbf\xfc\x7f\xfb\xed\xcb\xff\x0f\x26\xf9\xff\xee" "\xe4\xff\x7b\x90\xff\x1f\xa8\xfc\x7f\xbf\x8d\x5f\xfe\x5f\xfe\x9f\xa5\xfa" "\x2d\xff\x1f\xfb\xfe\xfb\x42\x4d\x2a\xd2\xff\x03\x00\x00\x40\x15\xc4\xbe" "\xff\xfe\x50\x13\xfd\x3f\x00\x00\x00\x94\x46\xec\xfb\xa7\x42\x4d\xf4\xff" "\x00\x00\x00\x50\x1a\xb1\xef\x9f\x0e\x35\xa9\x48\xff\x2f\xff\x2f\xff\x2f" "\xff\x2f\xff\xbf\xa2\xfc\xff\x2b\x16\x1f\x57\xfe\xbf\x20\xff\xdf\x5f\xe4" "\xff\xbb\x93\xff\xef\x41\xfe\x5f\xfe\x7f\xc3\xf3\xff\xa3\xf2\xff\x94\x4a" "\xbf\xe5\xff\x63\xdf\xbf\x2b\xd4\xa4\x22\xfd\x3f\x00\x00\x00\x54\x41\xec" "\xfb\x77\x87\x9a\xe8\xff\x01\x00\x00\xa0\x34\x62\xdf\xbf\x27\xd4\x44\xff" "\x0f\x00\x00\x00\xa5\x11\xfb\xfe\xbd\xa1\x26\x15\xe9\xff\xe5\xff\xe5\xff" "\xe5\xff\xe5\xff\x5d\xff\xbf\xfd\xf6\xe5\xff\x07\x93\xfc\x7f\x77\x6b\x9f" "\xff\x8f\x4f\x51\xfe\x5f\xfe\x5f\xfe\xdf\xf5\xff\xe5\xff\x59\xaa\xdf\xf2" "\xff\xb1\xef\x7f\x20\xd4\xa4\x22\xfd\x3f\x00\x00\x00\x54\x41\xec\xfb\xf7" "\x85\x9a\xe8\xff\x01\x00\x00\xa0\x34\x62\xdf\xbf\x3f\xd4\x44\xff\x0f\x00" "\x00\x00\xa5\x11\xfb\xfe\x03\xa1\x26\x15\xe9\xff\xe5\xff\xe5\xff\xe5\xff" "\xe5\xff\xe5\xff\xdb\x6f\x5f\xfe\x7f\x30\xc9\xff\x77\xe7\xfa\xff\x3d\xb4" "\xe4\xff\xc7\xc2\xfb\x92\xfc\xbf\xfc\xff\x20\xe4\xff\xeb\x73\x4b\xfe\x9f" "\x7e\xd3\x6f\xf9\xff\xd8\xf7\x1f\x0c\x35\xa9\x48\xff\x0f\x00\x00\x00\x55" "\x10\xfb\xfe\x57\x87\x9a\xe8\xff\x01\x00\x00\xa0\x34\x62\xdf\xff\x6b\xa1" "\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\xff\x7a\xa8\x49\x45\xfa\x7f\xf9" "\x7f\xf9\x7f\xf9\x7f\xf9\xff\x7e\xcf\xff\x8f\xc9\xff\xcb\xff\xaf\x80\xfc" "\x7f\x77\xf2\xff\x3d\xb8\xfe\xbf\xfc\xff\x00\xe7\xff\x5d\xff\x9f\x7e\xd4" "\x6f\xf9\xff\xd8\xf7\x1f\x0a\x35\xa9\x48\xff\x0f\x00\x00\x00\x55\x10\xfb" "\xfe\xdf\x08\x35\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\xff\x35\xa1\x26\xfa" "\x7f\x00\x00\x00\x28\x8d\xd8\xf7\x1f\x0e\x35\xa9\x48\xff\x2f\xff\xbf\x4e" "\xf9\xff\xb8\x50\xfe\x5f\xfe\x5f\xfe\xdf\xf5\xff\xe5\xff\xaf\x2b\xf9\xff" "\xee\xe4\xff\x7b\x90\xff\x97\xff\x97\xff\x97\xff\x67\x4d\xf5\x5b\xfe\x3f" "\xf6\xfd\xaf\x0d\x35\xa9\x48\xff\x0f\x00\x00\x00\x55\x10\xfb\xfe\x07\x43" "\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef\x7f\x5d\xa8\x89\xfe\x1f\x00\x00" "\x00\x4a\x23\xf6\xfd\xaf\x0f\x35\xa9\x48\xff\x2f\xff\xef\xfa\xff\x1b\x9f" "\xff\x1f\x6d\x1a\xbb\xfc\xff\xe2\xfd\xe4\xff\x0b\xf2\xff\xf2\xff\x2b\x21" "\xff\xdf\x9d\xfc\x7f\x0f\xf2\xff\xf2\xff\xf2\xff\xf2\xff\xac\xa9\x7e\xcb" "\xff\xc7\xbe\xff\x0d\xa1\x26\x15\xe9\xff\x01\x00\x00\xa0\x0a\x62\xdf\xff" "\xc6\x50\x13\xfd\x3f\x00\x00\x00\x94\x46\xec\xfb\xdf\x14\x6a\xa2\xff\x07" "\x00\x00\x80\xd2\x88\x7d\xff\x9b\x43\x4d\x2a\xd2\xff\xcb\xff\xcb\xff\x6f" "\x7c\xfe\xdf\xf5\xff\xe5\xff\x0b\xf2\xff\xf2\xff\x6b\x41\xfe\xbf\xbb\xc1" "\xcc\xff\xd7\x77\xa3\xfc\x7f\x26\xff\xdf\xf7\xe3\x97\xff\x97\xff\x67\xa9" "\x7e\xcb\xff\xc7\xbe\xff\x37\x43\x4d\x2a\xd2\xff\x03\x00\x00\x40\x15\xc4" "\xbe\xff\xa1\x50\x13\xfd\x3f\x00\x00\x00\x94\x46\xec\xfb\xdf\x12\x6a\xa2" "\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\x5b\x43\x4d\x2a\xd2\xff\xcb\xff\xcb" "\xff\xcb\xff\xcb\xff\xcb\xff\xb7\xdf\xbe\xfc\xff\x60\x92\xff\xef\x6e\xc0" "\xf2\xff\xbf\xba\x31\x2c\xdf\x90\xeb\xff\xc7\x93\xbb\xfc\xbf\xfc\xff\x75" "\xca\xff\x8f\xb4\x7c\x7d\x5d\xf2\xff\x3f\xec\x94\xff\x5f\xd8\xd4\x7a\x7f" "\xf9\x7f\xae\x87\x7e\xcb\xff\xc7\xbe\xff\x6d\xa1\x26\x15\xe9\xff\x01\x00" "\x00\xa0\x0a\x62\xdf\xff\xf6\x50\x13\xfd\x3f\x00\x00\x00\x94\x46\xec\xfb" "\xdf\x11\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\x6f\x85\x9a\x54\xa4" "\xff\x97\xff\xaf\x8f\x63\x31\xbd\x2c\xff\x2f\xff\x9f\x2f\x90\xff\x97\xff" "\x97\xff\x1f\x58\xf2\xff\xdd\x0d\x58\xfe\x3f\x5c\xff\x7f\x83\xf2\xff\xae" "\xff\x2f\xff\xef\xfa\xff\xf2\xff\xac\x5a\xbf\xe5\xff\x63\xdf\xff\xce\x50" "\x93\x8a\xf4\xff\x00\x00\x00\x50\x05\xb1\xef\x7f\x38\xd4\x44\xff\x0f\x00" "\x00\x00\xa5\x11\xfb\xfe\x77\x85\x9a\xe8\xff\x01\x00\x00\xa0\x34\x62\xdf" "\xff\xee\x50\x93\x8a\xf4\xff\xf2\xff\xae\xff\x2f\xff\x2f\xff\x2f\xff\xdf" "\x7e\xfb\xf2\xff\x83\x69\x6d\xf2\xff\xc3\xf2\xff\xf2\xff\xf2\xff\xf2\xff" "\xfd\x91\xff\xff\x2f\xf9\x7f\x06\x5b\xbf\xe5\xff\x63\xdf\xff\x48\xa8\x49" "\x45\xfa\x7f\x00\x00\x00\xa8\x82\xd8\xf7\xbf\x27\xd4\x44\xff\x0f\x00\x00" "\x00\xa5\x11\xfb\xfe\xdf\x0e\x35\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\xff" "\xbd\xa1\x26\x15\xe9\xff\xe5\xff\x07\x25\xff\x3f\x21\xff\xbf\xc2\xfc\xff" "\x58\x58\x26\xff\x2f\xff\x2f\xff\x5f\x2d\xae\xff\xdf\xdd\xf6\x9d\x3f\xee" "\x9c\xac\x6c\x24\xff\x2f\xff\x2f\xff\xdf\x1f\xf9\x7f\xd7\xff\x67\xc0\xf5" "\x5b\xfe\x3f\xf6\xfd\xef\x0b\x35\x59\x7e\xff\x3f\xbe\xec\x35\x01\x00\x00" "\x80\x0d\x11\xfb\xfe\xdf\x09\x35\xa9\xc8\xef\xff\x01\x00\x00\xa0\x0a\x62" "\xdf\xff\xbb\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\xff\x5e\xa8\x49" "\xe9\xfa\xff\xcf\xb5\x5d\x2a\xff\x3f\x28\xf9\x7f\xd7\xff\xcf\x5c\xff\x5f" "\xfe\xbf\xe5\xf9\xc8\xff\xcb\xff\xb7\xb3\x7e\xf9\xff\x78\xe6\x19\xb8\xfc" "\xbf\xeb\xff\x77\x23\xff\x2f\xff\x2f\xff\xdf\x31\xff\x3f\xd4\xe3\xfe\xf2" "\xff\xb4\xd3\x6f\xf9\xff\xd8\xf7\xff\x7e\xa8\x49\xe9\xfa\x7f\x00\x00\x00" "\xa8\xae\xd8\xf7\xbf\x3f\xd4\x44\xff\x0f\x00\x00\x00\x03\xa1\xdd\xff\xc9" "\x6e\x15\xfb\xfe\x23\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\x1f\x0d" "\x35\xa9\x48\xff\x2f\xff\x2f\xff\x2f\xff\xdf\xa7\xf9\xff\xbf\xd8\xf1\xaf" "\xdf\xff\xce\xdb\x8f\xee\x92\xff\x97\xff\x97\xff\x5f\x91\x75\xbd\xfe\x7f" "\xfd\xe0\x1f\xbc\xeb\xff\xcb\xff\x77\x23\xff\x2f\xff\x2f\xff\xef\xfa\xff" "\xac\xa9\x7e\xcb\xff\xc7\xbe\xff\x58\xa8\xc9\x62\xe3\xf7\x56\x17\xf8\x07" "\x00\x00\x80\xc1\x16\xfb\xfe\x3f\x08\x35\xa9\xc8\xef\xff\x01\x00\x00\xa0" "\x0a\x62\xdf\x7f\x3c\xd4\x44\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe\x99\x50" "\x93\x8a\xf4\xff\xf2\xff\xf2\xff\xf2\xff\x7d\x9a\xff\x1f\xe0\xeb\xff\xc7" "\xfd\x31\x48\xf9\xff\xc9\x4d\x03\x94\xff\x8f\x27\x5d\xf9\xff\xb6\xd6\x35" "\xff\xff\x9e\xc5\x9c\xb8\xfc\xff\x4a\xf3\xff\x63\x6d\x97\xb6\xe6\xff\x6b" "\xf2\xff\x4d\xe4\xff\x57\x3c\xfe\x6f\x67\x59\x26\xff\x2f\xff\xcf\x06\xea" "\xb7\xfc\x7f\xec\xfb\x67\x43\x4d\x2a\xd2\xff\x03\x00\x00\x40\x15\x84\xbe" "\x7f\xe8\x44\x51\x17\x6f\xd0\xff\x03\x00\x00\x40\x69\xc4\xbe\xff\x64\xa8" "\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\x1f\x08\x35\xa9\x48\xff\x2f\xff" "\x2f\xff\x2f\xff\x2f\xff\xef\xfa\xff\xed\xb7\xdf\xb7\xf9\x7f\xd7\xff\xef" "\x4a\xfe\xbf\xbb\xfe\xc9\xff\xb7\xd7\x87\xd7\xff\x1f\x92\xff\x1f\xe8\xfc" "\xbf\xeb\xff\xcb\xff\xb3\xc1\xfa\x2d\xff\x1f\xfb\xfe\xb9\x50\x93\x8a\xf4" "\xff\x00\x00\x00\x50\x05\xb1\xef\xff\x60\xa8\x89\xfe\x1f\x00\x00\x00\x4a" "\x23\xf6\xfd\x1f\x0a\x35\xd1\xff\x03\xff\xc7\xde\x9d\x3c\x59\x56\xa6\x75" "\x1c\x3f\x89\x49\x90\x15\x84\x15\x06\x1b\x17\x2e\x70\xef\x9f\xc0\x42\xd6" "\xfa\x07\xb8\x60\xe3\x42\x43\xc3\x50\x50\x71\x9e\x28\xc4\x79\x40\x9c\x67" "\x51\x71\xc0\x01\x07\x50\xc4\x09\xc5\x59\x70\x42\x71\x06\x15\xe7\xb9\x69" "\x7a\xa6\xbb\xa3\x3a\x2a\xf3\x79\x9e\xca\xe1\xe4\xb9\x99\x95\xf7\xe6\x3d" "\xe7\x7d\x3f\x9f\x85\x4f\x93\xdd\xc5\xcd\x6e\x2b\xe8\xfe\x51\x7c\x79\x01" "\x00\x80\x66\xe4\xee\xff\xf4\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5" "\xff\xfa\xff\xf1\xcf\xd7\xff\x2f\x93\xfe\x7f\x9a\xfe\x7f\x05\xef\xff\xeb" "\xff\xf5\xff\xfa\x7f\xd6\x6a\x6e\xfd\x7f\xee\xfe\xcf\x88\x5b\x3a\xd9\xff" "\x00\x00\x00\xd0\x83\xdc\xfd\xf7\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77" "\xff\x03\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x99\x71\xcb\x22\xf7" "\xff\xce\x1b\xe7\xad\x04\xf5\xff\xfa\xff\x66\xfb\xff\x8f\xd5\xff\x9f\xf6" "\xf9\xfa\x7f\xfd\x7f\xcb\xf4\xff\xd3\xf4\xff\x2b\x5c\x56\xff\x7f\x75\xd0" "\xff\x6f\xc0\xb6\xbf\xff\x0b\xf4\xff\x6f\x0e\xfa\x7f\x1a\x35\xb7\xfe\x3f" "\x77\xff\x67\xc5\x2d\x8b\xdc\xff\x00\x00\x00\xc0\x98\xdc\xfd\x9f\x1d\xb7" "\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x0f\xc6\x2d\xf6\x3f\x00\x00\x00\x34" "\x23\x77\xff\xe7\xc4\x2d\x9d\xec\xff\x63\xfd\xff\xce\xd0\x67\xff\x9f\x19" "\xaf\xfe\xbf\xa5\xfe\xff\x66\xaf\xbf\x3b\xe8\xff\x8f\x7c\xbe\xfe\x5f\xff" "\xdf\xb2\xcb\xed\xff\x1f\xbe\xf1\x47\x3e\xfd\xbf\xfe\xdf\xfb\xff\x41\xff" "\xef\xfd\x7f\xfd\x3f\xc7\xcd\xad\xff\xcf\xdd\xff\xb9\x71\x4b\x27\xfb\x1f" "\x00\x00\x00\x7a\x90\xbb\xff\xf3\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb" "\xff\xf3\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x0b\xe2\x96\x4e\xf6" "\xff\x0c\xdf\xff\xdf\xff\x7f\x82\xf7\xff\x0f\x7e\x5b\xff\xbf\x96\xfe\xdf" "\xfb\xff\xc7\x3e\x5f\xff\xaf\xff\x6f\x59\xdf\xef\xff\xef\xad\xfc\x57\xf4" "\xd4\xff\x3f\xf8\xca\x9d\xf7\xbf\xf9\xec\x47\x3d\x77\x9e\xcf\xd7\xff\xeb" "\xff\xf5\xff\xfa\x7f\xd6\x6b\x6e\xfd\x7f\xee\xfe\x2f\x8c\x5b\x3a\xd9\xff" "\x00\x00\x00\xd0\x83\xdc\xfd\x5f\x14\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc" "\xfd\x5f\x1c\xb7\xd8\xff\x00\x00\x00\xb0\x40\x57\x46\xbf\x9a\xbb\xff\x4b" "\xe2\x96\x4e\xf6\xff\x0c\xfb\xff\x83\xef\x4b\xff\xbf\x4f\xff\x7f\x89\xfd" "\xff\x9e\xfe\x5f\xff\xaf\xff\x6f\x41\xdf\xfd\xff\x6a\x3d\xf5\xff\xb7\xf2" "\xf9\x9d\xf4\xff\xe3\xff\xa3\x78\x06\xfd\xfc\x45\xad\xed\xfb\x7f\x62\xd0" "\xff\xeb\xff\x59\x93\xb9\xf5\xff\xb9\xfb\xbf\x34\x6e\xe9\x64\xff\x03\x00" "\x00\x40\x0f\x72\xf7\x7f\x59\xdc\x62\xff\x03\x00\x00\xc0\x7c\x8d\xfd\x85" "\xd8\x13\x72\xf7\x3f\x14\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xd7\xe2" "\x96\x4e\xf6\xbf\xfe\x7f\xf3\xfd\xff\x07\xf5\xff\xcb\xe8\xff\xbd\xff\xaf" "\xff\xd7\xff\x37\x41\xff\x3f\x4d\xff\xbf\x42\x1f\xfd\xff\xa9\xf4\xff\xde" "\xff\xd7\xff\xb3\x6e\x73\xeb\xff\x73\xf7\x3f\x1c\xb7\x74\xb2\xff\x01\x00" "\x00\xa0\x07\xb9\xfb\xbf\x3c\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x1f" "\x89\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xaf\x88\x5b\x3a\xd9\xff\xfa" "\xff\xd9\xbd\xff\xbf\x3b\xe8\xff\xf5\xff\x41\xff\x7f\x40\xff\xaf\xff\x3f" "\x0f\xfd\xff\x34\xfd\xff\x0a\xfa\xff\x8b\xf6\xf3\xb7\xeb\xff\xf5\xff\xfa" "\x7f\x0e\x3b\x67\xff\xff\xd6\xc4\x1f\xb6\xd7\xd2\xff\xe7\xee\xff\xca\xb8" "\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x55\x71\x8b\xfd\x0f\x00\x00" "\x00\xcd\xc8\xdd\xff\xd5\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x35" "\x71\x4b\x27\xfb\x5f\xff\x3f\xbb\xfe\xdf\xfb\xff\x4b\xeb\xff\xaf\xde\xfc" "\xfd\x74\xd7\xff\x9f\xfc\xa9\xb7\x4f\xff\x3f\x4e\xff\x7f\x39\xf4\xff\xd3" "\x66\xd3\xff\xef\xec\x8e\x7e\x59\xff\xbf\xf8\xfe\xdf\xfb\xff\xfa\x7f\xfd" "\x3f\x47\xcc\xed\xfd\xff\xdc\xfd\x5f\x1b\xb7\x74\xb2\xff\x01\x00\x00\xa0" "\x07\xb9\xfb\xbf\x2e\x6e\x99\xd8\xff\xe7\xfe\x93\xf9\x00\x00\x00\xc0\x56" "\xe5\xee\xff\xfa\xb8\xc5\xaf\xff\x03\x00\x00\xc0\xe2\x65\x75\x96\xbb\xff" "\x1b\xe2\x96\x4e\xf6\xbf\xfe\x5f\xff\xaf\xff\xf7\xfe\xbf\xf7\xff\xc7\x3f" "\x7f\xaa\xff\x7f\xee\xd0\xf7\xa7\xff\x9f\x17\xfd\xff\xb4\xd9\xf4\xff\xa7" "\xd0\xff\xeb\xff\x97\xfc\xfd\xeb\xff\xf5\xff\x9c\x34\xb7\xfe\x3f\x77\xff" "\x37\xc6\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x47\xe3\x16\xfb\x1f" "\x00\x00\x00\x9a\x91\xbb\xff\x9b\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb" "\xff\xb1\xb8\xa5\x93\xfd\x3f\xde\xff\xdf\xfc\xe7\xf5\xff\x67\xa3\xff\x3f" "\xfa\xfd\xeb\xff\xc7\x7f\x7e\xac\xab\xff\xcf\xdf\xa3\xfe\x7f\xb2\xff\xbf" "\xd7\xfb\xff\x7d\xd2\xff\x4f\xd3\xff\xaf\xa0\xff\xd7\xff\xeb\xff\x4f\xeb" "\xff\xaf\xac\xfa\xf1\xfa\x7f\xc6\xcc\xad\xff\xcf\xdd\xff\xcd\x71\x4b\x27" "\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x5b\xe2\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\x5b\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xdb\xe2\x96" "\x4e\xf6\xbf\xf7\xff\xf5\xff\xfa\xff\xe5\xf5\xff\xde\xff\x3f\xb0\xcd\xf7" "\xff\x87\x4b\xef\xff\x77\xf5\xff\x67\xa4\xff\x9f\xb6\xa0\xfe\xff\xd5\xab" "\x9f\x72\x97\xfe\xff\x18\xfd\xff\xbc\xbf\xff\xc6\xfb\xff\x83\xf7\xff\x27" "\xfe\x2e\x00\xfa\x7f\xc6\xcc\xad\xff\xcf\xdd\xff\xed\x71\x4b\x27\xfb\x1f" "\x00\x00\x00\x7a\x90\xbb\xff\x3b\xe2\x16\xfb\x1f\x00\x00\x00\x96\xe1\xf0" "\x5f\x3b\x70\xfc\x2f\x28\x0d\xb9\xfb\xbf\x33\x6e\xb1\xff\x01\x00\x00\xa0" "\x19\xb9\xfb\xbf\x2b\x6e\x69\x67\xff\x4f\xbe\xd5\xa9\xff\xd7\xff\xeb\xff" "\xf5\xff\xfa\xff\xf1\xcf\x9f\x57\xff\xef\xfd\xff\xb3\xd2\xff\x4f\x5b\x50" "\xff\xef\xfd\xff\x11\x0b\xed\xff\x77\x1b\xeb\xff\x1f\x3f\xed\xc7\xcf\xa1" "\xff\x7f\x68\xd3\xfd\xff\x04\xfd\x3f\x63\x8e\xf4\xff\xcf\xdf\xfc\xfa\xb6" "\xfa\xff\xdc\xfd\xdf\x1d\xb7\xb4\xb3\xff\x01\x00\x00\xa0\x7b\xb9\xfb\xbf" "\x27\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xbf\x37\x6e\xb1\xff\x01\x00" "\x00\xa0\x19\xb9\xfb\xbf\x2f\x6e\xe9\x64\xff\x6f\xbc\xff\x9f\xf8\xbb\x0f" "\xe8\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\x6e\xfa\xff\x69\xfa\xff" "\x15\xf4\xff\xde\xff\xf7\xfe\xbf\xfe\x9f\xb5\x3a\xd2\xff\x1f\xb2\xad\xfe" "\x3f\x77\xff\xf7\xc7\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x1f\x88" "\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xc7\xe3\x16\xfb\x1f\x00\x00\x00" "\x9a\x91\xbb\xff\x07\xe3\x96\x4e\xf6\xbf\xf7\xff\xf5\xff\xfa\x7f\xfd\xbf" "\xfe\x7f\xfc\xf3\xf5\xff\xcb\x74\xa1\xfe\xfe\x36\xfd\x7f\xd1\xff\xeb\xff" "\xf5\xff\xfa\x7f\xfd\x3f\x6b\x30\xb7\xfe\x3f\x77\xff\x0f\xc5\x2d\x9d\xec" "\x7f\x00\x00\x00\xe8\x41\xee\xfe\x1f\x8e\x5b\xec\x7f\x00\x00\x00\x68\x46" "\xee\xfe\x27\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x47\xe2\x96\x4e" "\xf6\xbf\xfe\x7f\xb3\xfd\x7f\x7e\x5d\xff\xaf\xff\x1f\xf4\xff\xfa\x7f\xfd" "\xff\xa5\xe8\xf6\xfd\xff\x9d\xb1\xff\x26\x3a\xe9\x94\xfe\xff\xa5\x4f\xbd" "\xf6\xf1\x47\xbf\xa2\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xce\xe8\x23\x26" "\xfe\xb9\x59\xf4\xff\xd7\x6f\xfe\xaf\xcb\xdc\xfd\x3f\x1a\xb7\x74\xb2\xff" "\x01\x00\x00\xa0\x07\xb9\xfb\x7f\x2c\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9" "\xfb\x7f\x3c\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x9f\x8c\x5b\xce\xb9" "\xff\xa7\x9a\x87\x71\x6f\xdc\x7d\xee\x1f\xb2\x01\xfa\x7f\xef\xff\xeb\xff" "\xf5\xff\xfa\xff\xf1\xcf\xd7\xff\x2f\x53\xb7\xfd\xff\x19\x79\xff\x7f\x05" "\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xad\x66\xd1\xff\x1f\xfa\xed\xdc\xfd\x3f" "\x11\xb7\xf8\xf5\x7f\x00\x00\x00\x68\x46\xee\xfe\x9f\x8c\x5b\xec\x7f\x00" "\x00\x00\x68\x46\xee\xfe\x9f\x8a\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe" "\x9f\x8e\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x1f\xff\x7c" "\xfd\xff\x32\xe9\xff\xa7\xe9\xff\x57\x58\x52\xff\xff\xe4\x05\xfa\xff\xdd" "\xf1\x2f\x6f\xbb\x9f\xbf\xa8\x6d\x7f\xff\xfa\x7f\xfd\x3f\x27\xcd\xad\xff" "\xcf\xdd\xff\x54\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xff\x99\xb8" "\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\xd9\xb8\xc5\xfe\x07\x00\x00\x80" "\x66\xe4\xee\xff\xb9\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa" "\xff\xf1\xcf\xd7\xff\x2f\x93\xfe\x7f\x9a\xfe\x7f\x18\x86\xa7\x27\xbe\x81" "\xb1\xfe\xff\xfa\x1d\xf3\xec\xff\xbd\xff\x3f\xbb\xef\x5f\xff\xaf\xff\xe7" "\xa4\xb9\xf5\xff\xb9\xfb\x7f\x3e\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72" "\xf7\x3f\x1d\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xcf\xc4\x2d\xf6\x3f" "\x00\x00\x00\x34\x23\x77\xff\x2f\xc4\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff" "\xaf\xff\x5f\x43\xff\x7f\xa4\xaf\xd5\xff\x8f\xd3\xff\x5f\x0e\xfd\xff\x34" "\xfd\xff\x0a\x4b\x7a\xff\x5f\xff\x3f\xbb\xef\x5f\xff\xaf\xff\xe7\xa4\xb9" "\xf5\xff\xb9\xfb\x7f\x31\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x3f" "\x1b\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xbf\x14\xb7\xd8\xff\x00\x00" "\x00\xd0\x8c\xdc\xfd\xcf\xc5\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff" "\xf7\xfe\xff\xf8\xe7\xeb\xff\x97\x69\x73\xfd\xff\xa0\xff\xd7\xff\xeb\xff" "\x57\xd0\xff\xeb\xff\xf5\xff\x1c\x37\xb7\xfe\x3f\x77\xff\x2f\xc7\x2d\x9d" "\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x5f\x89\x5b\xec\x7f\x00\x00\x00\x68" "\x46\xee\xfe\x5f\x8d\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x5f\x8b\x5b" "\x3a\xd9\xff\xfa\x7f\xfd\xff\x7e\x3f\x1f\xdf\x80\xfe\x5f\xff\x3f\x6c\xad" "\xff\xbf\xf1\xc7\x20\xfd\xbf\xfe\xff\xe2\xbc\xff\x3f\x4d\xff\xbf\x82\xfe" "\x5f\xff\xaf\xff\xd7\xff\xb3\x56\xe3\xfd\xff\x43\x5b\xeb\xff\x73\xf7\xff" "\x7a\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x3e\x6e\xb1\xff\x01" "\x00\x00\xa0\x19\xb9\xfb\x7f\x23\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb" "\x7f\x33\x6e\xe9\x64\xff\x5f\xb0\xff\xbf\x63\xd0\xff\xef\x5b\x7c\xff\x1f" "\x3f\xee\xb1\x47\x86\x41\xff\xaf\xff\x5f\xd9\xff\xc7\x1f\x21\xbc\xff\x7f" "\xe0\x02\xfd\xff\xde\xa0\xff\x5f\x3b\xfd\xff\x34\xfd\xff\x0a\xfa\xff\x36" "\xfb\xff\xdb\x86\x86\xfa\xff\x2b\xa7\xfe\x78\xfd\x3f\x73\x34\xb7\xf7\xff" "\x73\xf7\xbf\x10\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x7f\x2b\x6e" "\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x7f\x3b\x6e\xb1\xff\x01\x00\x00\xa0" "\x19\xb9\xfb\x7f\x27\x6e\xe9\x64\xff\x7b\xff\x5f\xff\x7f\xb4\xff\xf7\xfe" "\xff\xfe\x17\xf4\xff\x5b\x78\xff\xbf\xcb\xfe\xbf\xfe\x53\xd5\xff\xaf\x8f" "\xfe\x7f\x9a\xfe\x7f\x05\xfd\x7f\x9b\xfd\xbf\xf7\xff\xf5\xff\x6c\xcd\xdc" "\xfa\xff\xdc\xfd\xbf\x1b\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x7f" "\x2f\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x7f\x3f\x6e\xb1\xff\x01\x00" "\x00\xa0\x19\xb9\xfb\xff\x20\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xb7\xd0\xff" "\xdf\xa6\xff\xd7\xff\x0f\xfa\x7f\xfd\xff\x4c\xe9\xff\xa7\xe9\xff\x57\xd0" "\xff\xeb\xff\xf5\xff\xfa\x7f\xd6\x6a\x6e\xfd\x7f\xee\xfe\x3f\x8c\x5b\x3a" "\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x2f\xc6\x2d\xf6\x3f\x00\x00\x00\x34" "\x23\x77\xff\x4b\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x47\x71\x4b" "\x27\xfb\x5f\xff\xaf\xff\xf7\xfe\xff\x32\xfb\xff\x3d\xfd\xbf\xfe\x5f\xff" "\x3f\x6a\x2e\xfd\xff\x3d\xf7\x7c\xdc\xcb\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf" "\xff\xd7\xff\xf7\x6e\x6e\xfd\x7f\xee\xfe\x3f\x8e\x5b\x3a\xd9\xff\x00\x00" "\x00\xd0\x83\xdc\xfd\x7f\x12\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x7f" "\x1a\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x7f\x16\xb7\x74\xb2\xff\x4f" "\xf6\xff\xb7\x0f\x07\x85\xea\x81\xb1\xfe\x3f\x1a\x35\xfd\xff\x21\x5b\xef" "\xff\xf7\x8e\x7e\xb6\xfe\xbf\xfd\xfe\x7f\xd0\xff\xeb\xff\xf5\xff\xa3\xe6" "\xd2\xff\x7b\xff\xff\xd6\xbe\x7f\xfd\xbf\xfe\x7f\xc9\xdf\xff\xb9\xfa\xff" "\x8f\x3e\xf9\xe3\xf5\xff\xb4\x68\x6e\xfd\x7f\xee\xfe\x97\xe3\x96\x4e\xf6" "\x3f\x00\x00\x00\xf4\x20\x77\xff\x9f\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23" "\x77\xff\x5f\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x2b\x71\x4b\x27" "\xfb\xdf\xfb\xff\x8d\xf4\xff\xc7\xe8\xff\xf5\xff\x53\x9f\xaf\xff\xd7\xff" "\xb7\x4c\xff\x3f\x4d\xff\xbf\x82\xfe\x5f\xff\xef\xfd\xff\x07\x3e\xe9\xc3" "\xf4\xff\xac\xcf\xdc\xfa\xff\xdc\xfd\x7f\x19\xb7\x74\xb2\xff\x01\x00\x00" "\xa0\x07\xb9\xfb\xff\x2a\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xff\x3a" "\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xff\x26\x6e\xe9\x64\xff\xeb\xff" "\xf5\xff\xfa\xff\x0d\xf4\xff\xbb\xe3\x3f\x3f\xf4\xff\xfa\x7f\xfd\xff\xe6" "\xe9\xff\xa7\xe9\xff\xcb\xf1\x7f\x6b\x07\xfa\xe9\xff\xf7\xc6\xbe\xb8\xed" "\x7e\xfe\xa2\xb6\xfd\xfd\x6f\xa8\xff\x7f\xe1\x4e\xef\xff\xb3\x60\x73\xeb" "\xff\x73\xf7\xff\x6d\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xff\xbb" "\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\xfb\xb8\xc5\xfe\x07\x00\x00" "\x80\x66\xe4\xee\x7f\x35\x6e\xe9\x64\xff\xeb\xff\x1b\xef\xff\x6f\xfc\x46" "\xf7\xfd\xff\x27\x7a\xff\xff\xd8\xe7\xeb\xff\xf5\xff\x2d\xd3\xff\xe7\x7f" "\xa3\x8f\x1b\xef\xff\x77\x4f\x7e\xa9\xfd\xfe\x7f\x5c\x3f\xfd\xff\xa8\x6d" "\xf7\xf3\x4b\xff\xfe\x9b\x79\xff\x5f\xff\xcf\x1a\xcd\xad\xff\xcf\xdd\xff" "\x5a\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xff\x87\xb8\xc5\xfe\x07" "\x00\x00\x80\x66\xe4\xee\xff\xc7\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee" "\xff\xa7\xb8\xa5\x93\xfd\xaf\xff\x6f\xbc\xff\x3f\xf6\xfe\xff\xce\xd0\x63" "\xff\xbf\x85\xf7\xff\x4f\xf9\xf9\xa1\xff\xd7\xff\xeb\xff\x37\x4f\xff\x3f" "\xcd\xfb\xff\x2b\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x6b\x35\xb7\xfe\x3f\x77" "\xff\xeb\x3b\xbb\x5d\xee\x7f\x00\x00\x00\x58\xaa\x4f\xf8\x98\x4f\x7b\xed" "\xac\xff\xda\xd7\xf7\xff\xef\xde\xf0\xcf\x71\xcb\xbd\xc3\xf5\x33\xfe\x32" "\x36\x00\x00\x00\x30\x73\x37\x76\xff\xce\xee\x30\xfc\xcb\xfe\x6f\xf9\xf5" "\x7f\x00\x00\x00\x68\x51\xee\xfe\x7f\x8d\x5b\x3a\xd9\xff\xfa\xff\xbe\xfa" "\xff\x3e\xdf\xff\xdf\x60\xff\x7f\xe3\x83\xf5\xff\xfa\x7f\xfd\xff\xac\xe8" "\xff\xa7\x6d\xa1\xff\xdf\x3b\xcf\xf7\xa7\xff\xd7\xff\x2f\xf9\xfb\xd7\xff" "\xeb\xff\x39\x69\x6e\xfd\x7f\xee\xfe\x7f\x8b\x5b\x0e\x0d\xbf\xdd\x73\xff" "\xbb\x04\x00\x00\x00\xe6\x24\x77\xff\xbf\xc7\x2d\x9d\xfc\xfa\x3f\x00\x00" "\x00\xf4\x20\x77\xff\x7f\xc4\x2d\x27\xf6\xbf\xbf\x1d\x20\x00\x00\x00\x2c" "\x55\xee\xfe\xff\x8c\x5b\x3a\xf9\xf5\x7f\xfd\xff\xcc\xfb\xff\x61\x43\xfd" "\x7f\xfc\xeb\xf4\xff\x07\xbc\xff\xaf\xff\x1f\xfb\x7c\xfd\xff\x32\xe9\xff" "\xa7\x5d\xb0\xff\xbf\xbe\xe3\xfd\x7f\xfd\xff\x04\xfd\xbf\xfe\x5f\xff\xcf" "\x71\x73\xeb\xff\x73\xf7\xff\x57\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x46\x1d" "\xf9\x33\x0a\xb9\xfb\xff\x3b\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xff" "\x27\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xff\x37\x6e\xe9\x64\xff\xeb" "\xff\x2f\xbd\xff\xcf\x54\x7d\x83\xef\xff\x5f\xa9\x7f\xe4\xfd\xff\xce\xfb" "\xff\x47\xf7\x46\x3f\x5f\xff\xaf\xff\x6f\x99\xfe\x7f\xda\x16\xde\xff\xd7" "\xff\x1f\xfd\xfd\xeb\xff\x37\xe8\xd0\xf7\x7f\x87\xfe\x5f\xff\xcf\x3c\xcc" "\xad\xff\xcf\xdd\xff\x7f\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff" "\xff\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x6d\x71\x8b\xfd\x0f\x00" "\x00\x00\xcd\xc8\xdd\xff\xc6\x8d\xf3\xe1\xfd\xed\xff\xad\xf4\xff\xf1\x3b" "\xe9\xb4\xff\x3f\xdf\xfb\xff\x67\xec\xff\xef\xba\x7a\xf4\xb3\x57\xbe\xff" "\xaf\xff\xef\xa3\xff\x3f\xe5\xf3\xdb\xe9\xff\x3f\xf2\xce\x6b\x2f\xde\xf7" "\xc9\xcf\x3c\xa5\xff\xe7\xa6\xcb\xec\xff\xf3\xe7\x82\xfe\x5f\xff\xaf\xff" "\x3f\x30\xa3\xfe\xdf\xfb\xff\xfa\x7f\x66\x62\xfd\xfd\xff\xee\x91\x2f\x9e" "\xb7\xff\xdf\xdf\xfd\xc3\xde\xf0\xf6\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d" "\xc8\xdd\xff\x66\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xbf\x23\x6e\xb1" "\xff\x01\x00\x00\xa0\x19\xb9\xfb\xdf\x19\xb7\x74\xb2\xff\xbd\xff\xdf\x46" "\xff\x7f\xdc\x12\xfb\xff\xfc\xcf\x7a\x0b\xfd\xff\xb5\x5b\xee\xff\xaf\x0c" "\xc3\xb0\x95\xfe\x3f\x9b\xe2\xde\xfb\x7f\xef\xff\xeb\xff\x4f\xf2\xfe\xff" "\x34\xfd\xff\x0a\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x5a\xad\xbf\xff\x3f\xfa" "\xc5\xf3\xf6\xff\xb9\xfb\xdf\x15\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9" "\xfb\xdf\x1d\xb7\xe4\xfe\xdf\x39\xf7\x9f\xba\x07\x00\x00\x00\x66\x26\x77" "\xff\x7b\xe2\x16\xbf\xfe\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xde\xb8\xa5\x93" "\xfd\xaf\xff\xd7\xff\xcf\xa5\xff\x4f\xde\xff\xbf\xf9\xe3\xda\x7a\xff\xff" "\xbe\x8a\x53\xfb\xec\xff\xef\xae\x7f\xa4\xff\xdf\x2c\xfd\xff\x34\xfd\xff" "\x0a\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x5a\xcd\xad\xff\xcf\xdd\xff\xbe\xb8" "\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x56\xdc\x62\xff\x03\x00\x00" "\x40\x33\x72\xf7\xbf\x3f\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x3f\x10" "\xb7\x74\xb2\xff\xf5\xff\xad\xf6\xff\x59\xc4\xeb\xff\xf5\xff\x73\xe9\xff" "\xbd\xff\xef\xfd\xff\xcb\xa1\xff\x9f\xa6\xff\x5f\x41\xff\xbf\xf0\xfe\x3f" "\x7e\xc2\x0c\xfa\x7f\xfd\x3f\x73\x31\xb7\xfe\x3f\x77\xff\x87\x02\x00\x00" "\xff\xff\xc5\x13\x67\xe2", 25368); syz_mount_image( /*fs=*/0x200000000140, /*dir=*/0x200000000080, /*flags=MS_LAZYTIME|MS_POSIXACL|MS_STRICTATIME|MS_RELATIME|MS_NOSUID|0x840*/ 0x3210842, /*opts=*/0x200000006580, /*chdir=*/0x24, /*size=*/0x6318, /*img=*/0x200000006600); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*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=*/0x200001000000ul, /*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; }