// https://syzkaller.appspot.com/bug?id=8ddfd9363c0b29693bd928b821ae2b41cdaae6f4 // 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); } } uint64_t r[1] = {0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; 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 30 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 00} (length 0x101) // } // flags: mount_flags = 0x301c802 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // chdir: int8 = 0x11 (1 bytes) // size: len = 0x605c (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x605c) // } // ] // returns fd_dir memcpy((void*)0x200000000400, "jfs\000", 4); memcpy((void*)0x200000000680, "./" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 257); memcpy( (void*)0x20000000a140, "\x78\x9c\xec\xdd\x5d\x6f\x1c\x57\x19\x07\xf0\x67\x76\xd7\xeb\x97\xd2\x34" "\xaa\x50\x15\x22\x2e\xd2\x14\x4a\x4b\x69\xde\x13\x28\x6f\x4d\xb9\xe0\x02" "\x90\x40\x42\xb9\x26\x91\xeb\x56\x81\x14\x50\x12\x10\xad\x22\xe2\x2a\x17" "\x88\x0b\x5e\x3e\x02\xdc\xf4\x86\x8b\x7e\x91\xf2\x15\x10\x1f\x80\x48\x09" "\x57\x95\xa0\x0c\x1a\xfb\x9c\x64\x3c\x59\x67\x9d\x26\xde\x59\xfb\xfc\x7e" "\x92\x33\xf3\xec\x99\xf1\x9e\xc9\xdf\xe3\xd9\xf5\xcc\xec\x09\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x20\xbe\xf7\xdd\x1f\x9f\xac\x22" "\xe2\xe2\xaf\xd3\x03\x07\x23\x3e\x13\xc3\x88\x41\xc4\x72\x53\x1f\x89\x66" "\xe6\x7c\x5e\x7e\x14\x11\x87\x62\xa3\x39\x9e\x8b\x88\xe1\x62\x44\xb3\xfe" "\xc6\x3f\xcf\x44\x9c\x89\x88\x8f\x0e\x44\xdc\xb9\x7b\x63\xb5\x79\xf8\xd4" "\x0e\xfb\x71\xf6\xc4\xf5\xab\x9f\x7c\xff\x3b\xff\xf8\xdd\x9f\x6e\x1d\xfa" "\xe9\x9b\x3f\xf9\xa0\xdb\xfe\xa3\xcf\x9e\xfe\xf0\xf7\x37\x23\x0e\xfe\xf0" "\xb5\x0f\x3f\xb9\xf9\x64\xb6\x1d\x00\x00\x00\x4a\x51\xd7\x75\x5d\xa5\xb7" "\xf9\x87\xd3\xfb\xfb\x41\xdf\x9d\x02\x00\x66\x22\x1f\xff\xeb\x24\x3f\xae" "\x56\xab\xd5\xea\x27\x5a\xff\x71\x30\x5f\xfd\xd9\x79\xbd\x14\xf3\xd5\x1f" "\xf5\x63\xd5\x6d\xf5\x64\x37\xdb\x45\x44\xac\xb7\xd7\x69\x5e\x33\x38\x1d" "\x0f\x00\x7b\xcc\x7a\x7c\xdc\x77\x17\xe8\x91\xfc\x8b\x36\x8a\x88\xa7\xfa" "\xee\x04\x30\xd7\xaa\xbe\x3b\xc0\xae\xb8\x73\xf7\xc6\x6a\x95\xf2\xad\xda" "\xc7\x83\x23\x9b\xed\xf9\xef\x94\x5b\xf2\x5f\xaf\xee\xdd\xdf\xb1\xdd\x74" "\x9a\xee\x35\x26\xb3\xfa\xf9\xba\x15\xc3\x78\x76\x9b\xfe\x2c\xcf\xa8\x0f" "\xf3\x24\xe7\x3f\xe8\xe6\x7f\x71\xb3\x7d\x9c\x96\xdb\xed\xfc\x67\x65\xbb" "\xfc\xc7\x9b\xb7\x3e\x15\x27\xe7\x3f\xec\xe6\xdf\xb1\x25\xff\x3f\x47\xc4" "\x9e\xcd\x7f\x30\x31\xff\x52\xe5\xfc\x47\x8f\x92\xff\xfa\x70\x0f\xef\xff" "\xf2\x07\x00\x00\x00\x00\x60\xff\xcb\x7f\xff\x3f\xd8\xf3\xf9\xdf\xc5\xc7" "\xdf\x94\x1d\x79\xd8\xf9\xdf\x23\x33\xea\x03\x00\x00\x00\x00\x00\x00\x00" "\x3c\x69\x8f\x3b\xfe\xdf\x3d\xc6\xff\x03\x00\x00\x80\xb9\xd5\xbc\x57\x6f" "\xfc\xe5\xc0\xfd\xc7\xda\xd7\xfa\x77\xe7\x2f\x54\x11\x4f\x77\x96\x07\x0a" "\x93\x6e\x96\x59\xe9\xbb\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x50" "\x92\xd1\xe6\x35\xbc\x17\xaa\x88\x85\x88\x78\x7a\x65\xa5\xae\xeb\xe6\xab" "\xad\x5b\x3f\xaa\xc7\x5d\x7f\xaf\x2b\x7d\xfb\xa1\x64\x7d\xff\x92\x07\x00" "\x80\x4d\x1f\x1d\xe8\xdc\xcb\x5f\x45\x2c\x45\xc4\x85\xf4\x59\x7f\x0b\x2b" "\x2b\x2b\x75\xbd\xb4\xbc\x52\xaf\xd4\xcb\x8b\xf9\xf5\xec\x78\x71\xa9\x5e" "\x6e\xbd\xaf\xcd\xd3\xe6\xb1\xc5\xf1\x0e\x5e\x10\x8f\xc6\x75\xf3\xcd\x96" "\x5a\xeb\xb5\x4d\x7b\xbf\x3c\xad\xbd\xfb\xfd\x9a\xe7\x1a\xd7\xc3\x1d\x74" "\x6c\x36\x7a\x0c\x1c\x00\x22\x62\xf3\x68\x74\xc7\x11\x69\x9f\xa9\xeb\x67" "\xa2\xef\x57\x39\xec\x0d\xf6\xff\xfd\xc7\xfe\xcf\x4e\xf4\xfd\x73\x0a\x00" "\x00\x00\xec\xbe\xba\xae\xeb\x2a\x7d\x9c\xf7\xe1\x74\xce\x7f\xd0\x77\xa7" "\x00\x80\x59\x58\xca\xc7\xff\xee\x79\x01\xb5\x5a\x5d\x5c\xbd\x38\x67\xfd" "\x51\xab\xd5\xbb\x50\xb7\xd5\x93\xdd\x6c\x17\x11\xb1\xde\x5e\xa7\x79\xcd" "\x60\x38\x7e\x00\xd8\x63\xd6\xe3\xe3\xbe\xbb\x40\x8f\xe4\x5f\xb4\x51\x44" "\x1c\xea\xbb\x13\xc0\x5c\xab\xfa\xee\x00\xbb\xe2\xce\xdd\x1b\xab\x55\xca" "\xb7\x6a\x1f\x0f\xd2\xf8\xee\xf9\x5a\x90\x2d\xf9\xaf\x57\x1b\xeb\xe5\xf5" "\x27\x4d\xa7\xe9\x5e\x63\x32\xab\x9f\xaf\x5b\x31\x8c\x67\xb7\xe9\xcf\x73" "\x33\xea\xc3\x3c\xc9\xf9\x0f\xba\xf9\x5f\xdc\x6c\x1f\xa7\xe5\x76\x3b\xff" "\x59\xd9\x2e\xff\x66\x3b\x0f\xf6\xd0\x9f\xbe\xe5\xfc\x87\xdd\xfc\x3b\xf6" "\x4f\xfe\x83\x89\xf9\x97\x2a\xe7\x3f\x7a\xa4\xfc\x87\xf2\x07\x00\x00\x00" "\x00\x80\x39\x96\xff\xfe\x7f\xd0\xf9\xdf\xbc\xc9\x00\x00\x00\x00\x00\x00" "\x00\xb0\xe7\xdc\xb9\x7b\x63\x35\xdf\xf7\x9a\xcf\xff\x7f\x7e\xc2\x72\x55" "\x7b\xce\xfd\x9f\xfb\x46\xce\xbf\xda\x71\xfe\xee\xff\xdd\x4f\x72\xfe\x83" "\x6e\xfe\x9d\x0b\x72\x86\xad\xf9\xdb\x6f\xdc\xcf\xff\xdf\x77\x6f\xac\x7e" "\x70\xfd\x5f\x9f\xcb\xd3\xb9\xcf\x7f\x61\x38\x6e\x9e\x7b\xa1\x1a\x0c\x47" "\xe9\x9a\x9f\x7a\xe1\xad\xb8\x1c\x57\x62\x6d\xf8\xe0\xf2\xa3\x76\x7b\x9c" "\x7c\xa0\x7d\x61\x4b\xfb\xa9\x29\xed\xa7\x1f\x68\x1f\x37\xed\xcb\xb9\xfd" "\x58\xac\xc6\x2f\xe2\x4a\xbc\x79\xaf\x7d\x71\xca\x85\x51\x4b\x53\xda\xeb" "\x29\xed\x39\xff\xa1\xfd\xbf\x48\x39\xff\x51\xeb\xab\xc9\x7f\x25\xb5\x57" "\x9d\x69\xe3\xf6\xfb\x83\x07\xf6\xfb\xf6\x74\xd2\xf3\x9c\xff\xdb\x7f\x5f" "\x3c\xb1\xfb\x9b\x33\xd5\xad\x18\xde\xdb\xb6\xb6\x66\xfb\x8e\xf6\xd0\x9f" "\x8d\xff\x93\xa7\xc6\xf1\xab\x6b\x6b\x57\x8f\xfd\xe6\xd2\xf5\xeb\x57\x4f" "\x46\x9a\x6c\x79\xf4\x54\xa4\xc9\x13\x96\xf3\x5f\x48\x5f\x39\xff\x97\x5e" "\xd8\x6c\xcf\xbf\x12\xdb\xfb\xeb\xed\xf7\xc7\x8f\x9c\xff\xbc\xb8\x15\xa3" "\x6d\xf3\x7f\xa1\x35\xdf\x6c\xef\xcb\x33\xee\x5b\x1f\x72\xfe\xe3\xf4\x95" "\xf3\xcf\x47\xa0\xc9\xfb\xff\x5e\xce\x7f\xfb\xfd\xff\x95\x1e\xfa\x03\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0f\x53\xd7\xf5\xc6\x2d\xa2" "\xe7\x23\xe2\x5c\xba\xff\xa7\xaf\x7b\x33\x01\x80\x99\xfa\xc3\x0f\xd2\x4c" "\x9d\x84\x7a\xb3\xae\x62\xbe\xfa\xa3\x56\xab\xd5\x6a\xf5\x13\xa8\xdb\xea" "\xc9\x5e\x6f\x17\xb1\xb4\x75\x9d\x73\x11\xf1\xdb\x49\xdf\x0c\x00\x98\x67" "\xff\x8b\x88\x7f\xf6\xdd\x09\x7a\x23\xff\x82\xe5\xcf\xfb\x6b\xa6\x5f\xe8" "\xbb\x33\xc0\x4c\x5d\x7b\xf7\xbd\x9f\x5d\xba\x72\x65\xed\xea\xb5\xbe\x7b" "\x02\x00\x00\x00\x00\x00\x00\x00\x7c\x5a\x79\xfc\xcf\x23\xad\xf1\x9f\x37" "\xae\x03\xea\x8c\x1b\xbd\x65\xfc\xd7\x37\xe2\xc8\x9e\x1d\xff\x73\x30\x1e" "\x6e\x8c\x75\x9e\x36\xe8\xf9\x68\x8f\xcf\xfd\xe0\x08\xc5\x47\xe3\xe1\xe3" "\x7f\x8f\xa6\x3c\xdf\xc2\x94\xf6\xf1\x94\xf6\xc5\x29\xed\x4b\x53\xda\x27" "\xde\xe8\xd1\x92\xf3\x7f\x3e\x65\x9c\xf3\x3f\x9c\x36\xac\xa4\xf1\x5f\x5f" "\xea\xa1\x3f\x7d\xcb\xf9\x1f\x4d\x63\x3d\xe7\xfc\xbf\xd4\x59\xae\x9d\x7f" "\xfd\xd7\xbd\x9c\xff\x60\x4b\xfe\xc7\xaf\xbf\xf3\xcb\xe3\xd7\xde\x7d\xef" "\xd5\xcb\xef\x5c\x7a\x7b\xed\xed\xb5\x9f\x9f\x3c\x71\xee\xcc\xe9\xb3\x67" "\x4e\x9f\x3d\x7b\xfc\xad\xcb\x57\xd6\x4e\x6c\xfe\xdb\x63\x8f\x77\x57\xce" "\x3f\x8f\x7d\xed\x3a\xd0\xb2\xe4\xfc\x73\xe6\xf2\x2f\x4b\xce\xff\x8b\xa9" "\x96\x7f\x59\x72\xfe\x2f\xa6\x5a\xfe\x65\xc9\xf9\xe7\xd7\x7b\xf2\x2f\x4b" "\xce\x3f\xbf\xf7\x91\x7f\x59\x72\xfe\x2f\xa7\x5a\xfe\x65\xc9\xf9\x7f\x39" "\xd5\xf2\x2f\x4b\xce\xff\x95\x54\xcb\xbf\x2c\x39\xff\xaf\xa4\x5a\xfe\x65" "\xc9\xf9\xbf\x9a\x6a\xf9\x97\x25\xe7\x7f\x2c\xd5\xf2\x2f\x4b\xce\xff\x78" "\xaa\xe5\x5f\x96\x9c\x7f\x3e\xc3\x25\xff\xb2\xe4\xfc\xf3\x95\x0d\xf2\x2f" "\x4b\xce\xff\x54\xaa\xe5\x5f\x96\x9c\xff\xe9\x54\xcb\xbf\x2c\x39\xff\x33" "\xa9\x96\x7f\x59\x72\xfe\x67\x53\x2d\xff\xb2\xe4\xfc\xcf\xa5\x5a\xfe\x65" "\xc9\xf9\x7f\x35\xd5\xf2\x2f\x4b\xce\xff\x6b\xa9\x96\x7f\x59\x72\xfe\xaf" "\xa5\x5a\xfe\x65\xc9\xf9\x7f\x3d\xd5\xf2\x2f\x4b\xce\xff\x1b\xa9\x96\x7f" "\x59\x72\xfe\xdf\x4c\xb5\xfc\xcb\x92\xf3\xff\x56\xaa\xe5\x5f\x96\x9c\xff" "\xb7\x53\x2d\xff\xb2\xe4\xfc\x5f\x4f\xb5\xfc\xcb\x72\xff\xf3\xff\xcd\xcc" "\x78\xe6\x3f\x7f\x8f\x98\x83\x6e\x98\x29\x72\xa6\x8a\x2a\x1e\xba\x4c\xdf" "\xbf\x99\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xae\x59\x5c\x72\xdc" "\xf7\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\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\xbb\x18\xb9\xce\xfa" "\x0c\xe0\x67\x3f\xbd\x76\x02\x71\x49\x08\x21\x18\xb2\x76\x9c\x60\xc8\xc6" "\xbb\xeb\xaf\xc4\x04\x83\xf9\x6c\x1a\x5a\x9a\x06\x42\x4b\x0b\x75\x8c\xbd" "\xfe\x00\x7f\xd5\xbb\x86\x04\xa1\x66\x69\x68\x0b\x02\xa9\x51\xdb\x0b\x7a" "\x51\x0a\x88\x22\xa4\xb6\x4a\x84\x90\x0a\x12\x45\x91\x8a\xd4\xde\x95\x2b" "\x50\x6e\x50\x2b\x21\xd5\x52\x93\xca\x44\x50\x89\x96\x64\xab\x33\xe7\x7d" "\xdf\x9d\x99\x9d\x9d\xd9\xb5\x77\xed\x33\xe7\xfc\x7e\x51\xf2\x8f\x77\xce" "\xcc\xbc\x73\xe6\xec\xec\x3c\x6b\x3d\x73\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x68" "\xb6\xf5\x1d\x33\x7f\x3a\x90\x65\x59\xfe\x6f\xe3\x3f\x9b\xb3\xec\xfa\xfc" "\xff\x37\x66\x07\xf3\x3f\xce\xef\xbb\xd6\x2b\x04\x00\x00\x00\xae\xd4\x8b" "\x8d\xff\xfe\xfd\x0d\xe9\x0b\x07\x57\x70\xa5\xa6\x6d\xfe\xe5\x75\xff\xf6" "\xad\x85\x85\x85\x85\xec\x23\x2f\x5c\x7c\xe9\x2f\x16\x16\xd2\x05\xe3\x59" "\x36\xb4\x21\xcb\x1a\x97\x45\xff\xfa\x8b\x9f\x2f\x34\x6f\x13\x3c\x91\x8d" "\x0d\x0c\x36\xfd\x79\xb0\xc7\xdd\x0f\xf5\xb8\x7c\xb8\xc7\xe5\x23\x3d\x2e" "\x1f\xed\x71\xf9\x86\x1e\x97\x8f\xf5\xb8\x7c\xc9\x0e\x58\x62\x63\xf1\xfb" "\x98\xc6\x8d\x6d\x6f\xfc\xef\xe6\x62\x97\x66\x37\x65\x23\x8d\xcb\xb6\x77" "\xb8\xd6\x13\x03\x1b\x06\x07\xe3\xef\x72\x1a\x06\x1a\xd7\x59\x18\x39\x96" "\x9d\xcc\x4e\x65\x33\xd9\xd4\x92\xeb\x0c\x34\xfe\xc9\xb2\xef\x6e\xcd\xef" "\xeb\xfe\x2c\xde\xd7\x60\xd3\x7d\x6d\xc9\xb2\xec\xd2\x4f\x3f\x75\x24\xae" "\x61\x20\xec\xe3\xed\x59\xcb\x9d\x35\x34\x3f\x77\xcf\xbf\x2d\x1b\x7f\xe1" "\xa7\x9f\x3a\xf2\xf5\xb9\xe7\x5e\xdd\x69\xf6\xdc\x0d\x4b\x56\x9a\x65\x3b" "\xb6\xe5\xeb\xfc\x4c\x96\x2d\xfe\xba\x2a\x1b\xc8\x36\xa4\x7d\x12\xd7\x39" "\xd8\xb4\xce\x2d\x1d\xd6\x39\xd4\xb2\xce\x81\xc6\xf5\xf2\xff\x6f\x5f\xe7" "\xa5\x15\xae\x33\x3e\xee\xb1\xb0\xce\x1f\x74\x59\xe7\x96\xf0\xb5\x47\x6f" "\xcf\xb2\x6c\x3e\x5b\x76\x9b\x76\x4f\x64\x83\xd9\xa6\xb6\x7b\x4d\xfb\x7b" "\xac\x38\x22\xf2\xdb\xc8\x9f\xca\x57\x64\xc3\xab\x3a\x4e\xb6\xae\xe0\x38" "\xc9\xaf\xf3\x93\xdb\x5b\x8f\x93\xf6\x63\x32\xee\xff\xad\x61\x9f\x0c\x2f" "\xb3\x86\xe6\xa7\xe3\xf9\x4f\x8f\x2e\xd9\xef\x97\x7b\x9c\xe4\x8f\xba\x0c" "\xc7\x6a\x7e\xdb\x0f\xe6\x77\x3a\x36\xd6\xfc\xab\xd5\x96\x63\x35\xdf\xe6" "\x53\x77\x2c\x7f\x0c\x74\x7c\xee\x3a\x1c\x03\xe9\x58\x6e\x3a\x06\xb6\xf5" "\x3a\x06\x06\x47\x87\x1a\xc7\xc0\xe0\xe2\x9a\xb7\xb5\x1c\x03\xd3\x4b\xae" "\x33\x98\x0d\x34\xee\xeb\xe2\x1d\xdd\x8f\x81\xc9\xb9\xd3\xe7\x26\x67\x1f" "\xfb\xe4\xdd\x27\x4f\x1f\x3e\x3e\x73\x7c\xe6\xcc\xf4\xd4\xbe\x3d\xbb\xf7" "\xee\xd9\xbd\x77\xef\xe4\xb1\x93\xa7\x66\xa6\x8a\xff\xae\x6e\x97\xf6\x91" "\x4d\xd9\x60\x3a\x06\xb7\x85\xd7\x9a\x78\x0c\xbe\xbe\x6d\xdb\xe6\x43\x72" "\xe1\x2b\x6b\xf7\x7d\x30\x56\x92\xef\x83\xfc\xb1\xbf\xff\xce\x7c\x41\xd7" "\x0f\x66\xcb\x1c\xe3\xf9\x36\x9f\xd9\x71\xe5\xdf\x07\xe9\xe7\x7e\xd3\xf7" "\xc1\x70\xd3\xf7\x41\xc7\xd7\xd4\x0e\xdf\x07\xc3\x2b\xf8\x3e\xc8\xb7\xb9" "\xb4\x63\x65\x3f\x33\x87\x9b\xfe\xed\xb4\x86\xf5\x7a\x2d\xdc\xdc\x74\x0c" "\x5c\xcb\x9f\x87\xf9\x7d\x7e\xe8\x0d\xcb\xbf\x16\x6e\x09\xeb\xfa\xec\x1b" "\x57\xfb\xf3\x70\x68\xc9\x31\x10\x1f\xd6\x40\xf8\xde\xcb\xbf\x92\xde\xef" "\x8d\xdd\x1b\xf6\xcb\xd2\xe3\xe2\xd6\xfc\x82\xeb\x46\x1b\xef\xed\x76\x3e" "\x7a\x78\x6e\xee\xfc\x74\x16\xc6\x55\x71\x63\xd3\x73\xd5\x7e\xbc\x6c\x6a" "\x7a\x4c\xd9\x92\xe3\x65\x70\xd5\xc7\xcb\xc1\xbf\xfb\xe5\x9d\xb7\x76\xf8" "\xfa\xe6\xb0\xaf\xc6\xee\xea\xfe\x5c\xe5\xdb\xec\x99\xe8\xfe\x5c\x35\x5e" "\xdd\xaf\x1b\xcd\x2e\xcc\xce\x9c\x0f\xfb\x73\x34\x2b\xf6\x67\xcb\x57\x77" "\x65\x61\xac\xb1\xab\xbd\x3f\x3b\xfd\x34\xcb\xf7\x67\xca\x12\x5d\xf6\x67" "\xbe\xcd\x67\xee\xbe\xf2\xf7\x82\x29\x97\x34\xbd\xfe\x8d\xf4\x7a\xfd\x1b" "\x1a\x19\x2e\x5e\xff\x86\xd2\xde\x18\x69\x79\xfd\x5b\xfa\xd4\x0c\x35\x56" "\x96\x65\x97\xee\x5e\xd9\xeb\xdf\x48\xf8\xf7\x6a\xbf\xfe\xdd\x54\x92\xd7" "\xbf\x7c\x5f\x7d\x68\x67\xf7\x63\x20\xdf\xe6\xb3\x93\xab\x3d\x06\x86\xbb" "\xbe\xfe\xdd\x1e\xe6\x40\x58\xcf\x1b\x42\x62\x18\x6b\xca\xfd\x2f\x35\x2e" "\x9f\x2f\x0e\xd3\xa6\xe7\xb2\xe7\x71\x33\x3c\x3c\x12\x8e\x9b\xe1\x78\x8f" "\xad\xc7\xcd\xee\x25\xd7\xc9\x6f\x2d\xbf\xef\x1d\x53\x97\x77\xdc\xec\xb8" "\xbd\xf5\xb9\x6a\x79\xdf\xb2\xf2\xe3\xa6\xd7\xaf\x0f\x4a\x73\xdc\xe4\xfb" "\xea\x2f\xa7\xba\x1f\x37\xf9\x36\xcf\x4c\x5f\xf9\x6b\xc7\xc6\xf8\xbf\x4d" "\xaf\x1d\xa3\xbd\x8e\x81\x91\xa1\xd1\x7c\xbd\x23\xe9\x20\x28\x5e\xef\x16" "\x36\xc6\x63\x60\x67\x76\x24\x3b\x9b\x9d\xca\x8e\xa6\xeb\xe4\xcf\x72\x7e" "\x5f\x13\xbb\x56\x76\x0c\x8c\x86\x7f\xaf\xf6\x6b\xc7\x2d\x25\x39\x06\xf2" "\x7d\xf5\xc5\x5d\xdd\x8f\x81\x7c\x9b\xef\xef\x5e\xdb\xf7\x4e\x3b\xc2\x57" "\xd2\x36\x4d\xef\x9d\xda\x7f\xbf\xb0\x5c\xe6\xbf\x75\x78\xf1\xf6\xda\x77" "\xdb\x5a\x67\xfe\x7c\x9d\xef\xfc\xe1\x7b\xd3\xd7\x3a\x65\x88\x7c\x9b\xe7" "\xf6\xac\x36\x67\x74\xdf\x4f\x77\x85\xaf\x5c\xd7\x61\x3f\xb5\x7f\xff\x2c" "\x77\x4c\x1f\xcd\xae\xce\x7e\xba\x25\xac\xf3\xd4\xde\xee\xbf\x9b\xca\xb7" "\xb9\x69\xdf\x0a\x8f\xa7\x83\x59\x96\x3d\x3b\xfd\x6c\xe3\xf7\x5d\xe1\xf7" "\xbb\xdf\xbc\xf0\xc3\x6f\xb5\xfc\xde\xb7\xd3\xef\x94\x9f\x9d\x7e\xf6\x81" "\xc9\x87\x7e\xb4\x9a\xf5\x03\x00\x70\xf9\x5e\x6a\xfc\x77\x7e\xb4\x78\xaf" "\xd9\xf4\x37\xd6\x2b\xf9\xfb\x7f\x00\x00\x00\xa0\x2f\xc4\xdc\x3f\x18\x66" "\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x3f\x14\x66\x22\xff\x03\x00\x00\x40" "\x65\xc4\xdc\x3f\x1c\x66\x52\x93\xfc\x7f\xe2\xde\xfd\x4f\xbd\xf8\x78\x96" "\x3e\x0d\x70\x21\x88\x97\xc7\xdd\xf0\xe0\x5b\x8a\xed\x62\xc7\x7b\x3e\xfc" "\x79\x7c\x61\x51\xfe\xf5\xb7\x7f\x6d\xe4\xa9\xcf\x3d\xbe\xb2\xfb\x1e\xcc" "\xb2\xec\x97\x0f\xbc\xa6\xe3\xf6\x27\xde\x12\xd7\x55\x38\x17\xd7\xf9\xa6" "\xd6\xaf\x2f\x71\xcb\x6d\x2b\xba\xff\x47\x1e\x5e\xdc\xae\xf9\xf3\x13\x2e" "\xed\x2f\x6e\x3f\x3e\x9e\x95\x1e\x06\xb1\xab\xfc\xdd\xc9\x5d\x8d\xdb\x1d" "\x7f\x6c\xba\x31\x9f\x79\x20\x6b\xcc\x87\xe6\x3f\xfb\x44\x71\xfb\xc5\x9f" "\xe3\xf6\x17\x77\x17\xdb\xff\x75\xf8\xd0\x92\x83\xc7\x06\x5a\xae\xbf\x23" "\xac\x67\x7b\x98\xe3\xe1\x33\x65\x1e\x3c\xb8\xb8\x1f\xf2\x19\xaf\xf7\xd4" "\x96\xd7\xfd\xf3\x8d\x1f\x58\xbc\xbf\x78\xbd\x81\x6d\x2f\x6f\x3c\xcc\x2f" "\xfe\x61\x71\xbb\xf1\x33\xa2\x9e\xbc\xb1\xd8\x3e\x3e\xee\xe5\xd6\xff\x4f" "\x9f\xff\xc6\x53\xf9\xf6\x8f\xde\xd1\x79\xfd\x8f\x0f\x76\x5e\xff\xc5\x70" "\xbb\x3f\x09\xf3\x17\x07\x8a\xed\x9b\xf7\xf9\xe7\x9a\xd6\xff\xc7\x61\xfd" "\xf1\xfe\xe2\xf5\x76\x7e\xf5\x7b\x1d\xd7\xff\xf4\xab\x8a\xed\x9f\x0e\xc7" "\xc5\x97\xc3\x6c\x5f\xff\xdb\xfe\xec\xb5\x2f\x76\x7a\xbe\xe2\xfd\x1c\xbc" "\xaf\xb8\x5e\xbc\xff\xa9\xff\xd9\xd3\xb8\x5e\xbc\xbd\x78\xfb\xed\xeb\x1f" "\x7b\x7c\xba\x65\x7f\xb4\xdf\xfe\x33\x2f\x14\xb7\x73\xe0\xe3\x3f\x1b\x6a" "\xde\x3e\x7e\x3d\xde\x4f\xf4\xc8\x7d\xad\xc7\xf7\x40\x78\x7e\x5b\x7a\xe4" "\x59\x96\x7d\xe3\x4f\xb2\x96\xfd\x9c\xbd\xb9\xb8\xde\x77\xda\xd6\x1f\x6f" "\xef\xdc\x7d\x9d\xd7\x7f\x57\xdb\x3a\xcf\x0d\xdc\xd6\xb8\xfe\xe2\xe3\xd9" "\xdc\xf2\xb8\xbe\xf4\xb7\xbb\x3a\x3e\xde\xb8\x9e\x83\xff\xb0\xb9\xe5\xf1" "\x3c\xf9\xae\xb0\xff\x5e\x98\xfc\x7e\x7e\xbb\x17\x1f\x0a\xc7\x63\xb8\xfc" "\x7f\x7f\x50\xdc\x5e\xfb\x87\x91\x3c\xfd\xae\xd6\xd7\x9b\xb8\xfd\x97\x37" "\x17\xdf\xb7\xf1\xf6\x26\xdb\xd6\xff\x64\xdb\xfa\xe7\x6f\xcb\xf7\x5d\xef" "\xf5\xdf\xff\x42\xb1\xfe\xa7\xdf\xba\xa1\x65\xfd\x07\xdf\x1d\x8e\xa7\xfb" "\x8b\xd9\x6b\xfd\xc7\xff\xe6\x86\x96\xeb\x7f\xe5\xeb\xc5\xf3\x71\xfe\x13" "\x13\x67\xce\xce\x5e\x38\x79\xb4\x69\xaf\x36\x7f\x1f\x6f\x18\xdb\xb8\xe9" "\xba\xeb\x5f\xf6\xf2\x1b\xc2\x6b\x69\xfb\x9f\x0f\x9d\x9d\x3b\x31\x73\x7e" "\x7c\x6a\x7c\x2a\xcb\xc6\xfb\xf0\x23\x03\xd7\x7b\xfd\x5f\x0d\xf3\xbf\x8b" "\x31\xbf\xf6\xf7\x50\xf8\xd1\xcf\x8a\xe3\xee\x0b\xef\x29\x7e\x6e\xbd\xfe" "\xe7\xc5\x9f\x9f\x0c\x5f\x7f\x24\x3c\x9f\xf1\xe7\xe3\x97\xfe\x6a\xa4\xe5" "\x78\x6d\x7f\xde\xe7\xdf\x5a\xcc\x2b\x5d\xff\x1b\xc3\x3a\x56\xea\x55\x9f" "\xff\x8f\xdb\x56\xb4\xe1\xc5\x0f\x7f\xf7\xc2\x3f\xfe\xd1\x73\xed\xef\x0b" "\xe2\xe3\x39\xf7\xca\xb1\xc6\xe3\xfb\xe2\xd6\x9b\x1b\x97\x0d\x3c\x53\x5c" "\xde\xfe\x7a\xd5\xcb\xbf\xbf\xb2\xf5\xfb\xfa\xc7\xc3\x53\x8d\xf9\xed\xb0" "\x5f\x17\xc2\x27\x33\x6f\xbb\xb9\xb8\xbf\xf6\xdb\x8f\x9f\x4d\xf2\x85\xf7" "\x15\xdf\xbf\xf1\x9d\x5c\xbc\x7e\xd6\xf6\x79\x22\x9b\x87\x5a\x1f\xc7\x95" "\xae\xff\xc7\xe1\x7d\xcc\xf7\x6e\x69\x7d\xfd\x8b\xc7\xc7\xb7\x1f\x6f\xfb" "\x34\xe7\xcd\xd9\x40\xbe\x84\xf9\xf0\xfa\x90\xcd\x17\x97\xc7\xad\xe2\xfe" "\xfe\xc2\xa5\x9b\x3b\xde\x5f\xfc\x1c\x9e\x6c\xfe\xd5\xab\x59\xe6\xb2\x66" "\x1f\x9b\x9d\x3c\x75\xf2\xcc\x85\x47\x27\xe7\x66\x66\xe7\x26\x67\x1f\xfb" "\xe4\xa1\xd3\x67\x2f\x9c\x99\x3b\xd4\xf8\xec\xd2\x43\x1f\xed\x75\xfd\xc5" "\xef\xef\x4d\x8d\xef\xef\xa3\x33\xfb\xf6\x64\x8d\xef\xf6\xb3\xc5\x58\x67" "\xd7\x7a\xfd\xe7\x1e\x3e\x72\xf4\x9e\xa9\x3b\x8f\xce\x1c\x3b\x7c\xe1\xd8" "\xdc\xc3\xe7\x66\xce\x1f\x3f\x32\x3b\x7b\x64\xe6\xe8\xec\x9d\x87\x8f\x1d" "\x9b\xf9\x44\xaf\xeb\x9f\x3c\x7a\x60\x7a\xd7\xfe\xdd\xf7\xec\x9a\x38\x7e" "\xf2\xe8\x81\x7b\xf7\xef\xdf\xbd\x7f\xe2\xe4\x99\xb3\xf9\x32\x8a\x45\xf5" "\xb0\x6f\xea\x63\x13\x67\xce\x1f\x6a\x5c\x65\xf6\xc0\x9e\xfd\xd3\x7b\xf7" "\xee\x99\x9a\x38\x7d\xf6\xe8\xcc\x81\x7b\xa6\xa6\x26\x2e\xf4\xba\x7e\xe3" "\x67\xd3\x44\x7e\xed\x8f\x4f\x9c\x9f\x39\x75\x78\xee\xe4\xe9\x99\x89\xd9" "\x93\x9f\x9c\x39\x30\xbd\x7f\xdf\xbe\x5d\x3d\x3f\xfd\xf1\xf4\xb9\x63\xb3" "\xe3\x93\xe7\x2f\x9c\x99\xbc\x30\x3b\x73\x7e\xb2\x78\x2c\xe3\x73\x8d\x2f" "\xe7\x3f\xfb\x7a\x5d\x9f\x7a\x98\x3d\x1b\x5e\xef\xda\x0c\x84\x77\xe7\x1f" "\xbc\x6b\x5f\xfa\x7c\xdc\xdc\xd7\x3e\xbd\xec\x4d\x15\x9b\xb4\xbe\x3d\xcd" "\x9e\x0f\x9f\x05\x15\x7f\xbe\xf5\xfa\x73\xcc\xfd\x23\x61\x26\x35\xc9\xff" "\x00\x00\x00\x50\x07\x31\xf7\x87\x0f\xfe\x5f\xbc\x40\xfe\x07\x00\x00\x80" "\xca\x88\xb9\x7f\x43\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\x7f\x91\xfc" "\xc7\xd2\xe9\xdf\xeb\x92\xff\xd7\xaa\xff\xff\x69\xfd\xff\x06\xfd\x7f\xfd" "\xff\x4c\xff\x3f\xd1\xff\xd7\xff\xcf\xf4\xff\xf5\xff\x7b\xd0\xff\x2f\x45" "\xff\xff\x84\xfe\xbf\xfe\xbf\xfe\x3f\xeb\xa5\x6c\xfd\xff\x90\xfb\xb3\x8d" "\x59\xe6\xef\xff\x01\x00\x00\xa0\xa2\x62\xee\xdf\x14\x66\x22\xff\x03\x00" "\x00\x40\x65\xc4\xdc\x7f\x5d\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff" "\xf5\x61\x26\x35\xc9\xff\xce\xff\xaf\xff\xaf\xff\xdf\xad\xff\x1f\xb7\x5d" "\xdb\xfe\xff\x98\xfe\x7f\x83\xfe\xff\xaa\xfb\xff\xdb\xff\x4b\xff\x7f\x09" "\xfd\x7f\xfd\xff\x4c\xff\xff\xb2\x5d\xeb\xfe\x7c\xbf\xaf\xbf\x84\xfd\xff" "\x8d\xfa\xff\x94\x4d\xd9\xfa\xff\x31\xf7\xbf\x2c\xcc\xa4\x26\xf9\x1f\x00" "\x00\x00\xea\x20\xe6\xfe\x97\x87\x99\xc8\xff\x00\x00\x00\x50\x6a\x1b\x56" "\xb1\x6d\xcc\xfd\x37\x84\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x6f\x0e" "\x33\xa9\x49\xfe\xbf\x76\xfd\xff\x51\xfd\x7f\xfd\xff\x86\x72\xf7\xff\x9d" "\xff\xbf\x99\xfe\xff\x35\xef\xff\x3b\xff\x7f\x07\xfa\xff\xfa\xff\x59\x6d" "\xfa\xff\xc5\x9b\x05\xfd\xff\xf2\xac\x7f\xfd\xfb\xff\x7f\xde\xf5\xfa\xce" "\xff\x4f\x3f\x28\x5b\xff\x3f\xe6\xfe\x5f\x09\x33\xa9\x49\xfe\x07\x00\x00" "\x80\x3a\x88\xb9\xff\x15\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x37" "\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xdf\x14\x66\x52\x93\xfc\x5f" "\xcf\xf3\xff\xff\x24\xcb\x32\xfd\xff\x4c\xff\x5f\xff\xbf\x6d\x9d\xfa\xff" "\xfa\xff\xeb\x41\xff\x5f\xff\xbf\x9b\x6b\xdb\xff\xcf\xdf\xfb\xf4\x53\xff" "\xdf\xf9\xff\xcb\xb6\xfe\x12\x9e\xff\x5f\xff\x9f\xd2\x29\x5b\xff\x3f\xe6" "\xfe\x57\x86\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\x7f\x73\x98\x89" "\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xab\xc2\x4c\xe4\x7f\x00\x00\x00\xa8" "\x8c\x98\xfb\x6f\x09\x33\xa9\x49\xfe\xaf\x67\xff\xdf\xf9\xff\xf5\xff\x0b" "\xeb\xd0\xff\x1f\x18\xd6\xff\x4f\xf4\xff\xf5\xff\x33\xfd\x7f\xfd\xff\x1e" "\x9c\xff\x5f\xff\xbf\x9f\xd7\xaf\xff\xaf\xff\x4f\x6f\x65\xeb\xff\xc7\xdc" "\xff\xea\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\x6f\x0d\x33\x91" "\xff\x01\x00\x00\xa0\x32\x62\xee\x7f\x4d\x98\x89\xfc\x0f\x00\x00\x00\x95" "\x11\x73\xff\x96\x30\x93\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xe7\xff\xd7" "\xff\xd7\xff\x5f\x4f\xfd\xd5\xff\x1f\x5c\xf6\x12\xfd\xff\x82\xfe\x7f\xab" "\xb5\xeb\xff\xcf\x2f\x2e\x40\xff\xbf\x6f\xd6\xaf\xff\xaf\xff\x4f\x6f\x65" "\xeb\xff\xc7\xdc\xff\xda\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb" "\x5f\x17\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x5b\x98\x89\xfc\x0f" "\x00\x00\x00\x95\x11\x73\xff\x78\x98\x49\x4d\xf2\xbf\xfe\xbf\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\xff\x7a\xea\xaf\xfe\xff\xf2\xf4\xff\x0b\xfa\xff" "\xad\x9c\xff\x5f\xff\x5f\xff\x5f\xff\x9f\xee\xca\xd6\xff\x8f\xb9\x7f\x6b" "\x98\x00\x00\x00\x40\xf5\xc4\xdc\xbf\x2d\xcc\xa4\x26\x7f\xff\x0f\x00\x00" "\x00\x75\x10\x73\xff\xed\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xdb" "\xc3\x4c\x6a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xd7" "\x93\xfe\xbf\xfe\x7f\x37\xfa\xff\xfa\xff\xfd\xbc\x7e\xfd\x7f\xfd\x7f\x7a" "\x2b\x5b\xff\x3f\xe6\xfe\x3b\xc2\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62" "\xee\xbf\x33\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xf5\x61\x26\xf2" "\x3f\x00\x00\x00\x54\x46\xcc\xfd\x3b\xc2\x4c\x6a\x92\xff\xf5\xff\xf5\xff" "\xf5\xff\xfb\xb8\xff\x3f\xa4\xff\x9f\xe9\xff\x97\x5e\x8f\xf5\xff\x5f\xdb" "\x8f\x9d\x55\xd3\xff\xd7\xff\xcf\xf4\xff\x2f\xdb\xb5\xee\xcf\xf7\xfb\xfa" "\xf5\xff\xf5\xff\xe9\xad\x6c\xfd\xff\x98\xfb\xdf\x10\x66\x52\x93\xfc\x0f" "\x00\x00\x00\x75\x10\x73\xff\x1b\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98" "\xfb\xef\x0a\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x9f\x08\x33\xa9\x49" "\xfe\xaf\x78\xff\xff\xb9\xff\x5c\x66\x33\xfd\xff\x82\xfe\x7f\x9f\xf7\xff" "\x9d\xff\xbf\x65\xfd\xfa\xff\xe5\xe4\xfc\xff\xfa\xff\xdd\xe8\xff\xeb\xff" "\xf7\xf3\xfa\xf5\xff\xf5\xff\xe9\xad\x6c\xfd\xff\x98\xfb\xef\x0e\x33\xa9" "\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\x7f\x67\x98\x89\xfc\x0f\x00\x00\x00" "\x95\x11\x73\xff\x64\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x54\x98" "\x49\x4d\xf2\x7f\xc5\xfb\xff\xcb\xd2\xff\x2f\xe8\xff\xeb\xff\x67\xfa\xff" "\xfa\xff\xeb\x4c\xff\x5f\xff\xbf\x1b\xfd\x7f\xfd\xff\x7e\x5e\xbf\xfe\xbf" "\xfe\x3f\xbd\x95\xad\xff\x1f\x73\xff\x74\x98\x49\x4d\xf2\x3f\x00\x00\x00" "\xd4\x41\xcc\xfd\xbb\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x77\x87" "\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xef\x09\x33\xa9\x49\xfe\xef\x93" "\xfe\xff\xce\x54\x80\xd2\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\x2b\xfa" "\xff\x15\xed\xff\xe7\x2f\x24\xfa\xff\xfa\xff\x67\xe7\xd2\x0e\xd6\xff\xd7" "\xff\xd7\xff\x67\xb0\xc3\xd7\xca\xd6\xff\x8f\xb9\x7f\x6f\x98\x49\x4d\xf2" "\x3f\x00\x00\x00\xd4\x41\xcc\xfd\xfb\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c" "\x98\xfb\xef\x09\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xbf\x37\xcc\xa4" "\x26\xf9\xbf\x4f\xfa\xff\xce\xff\xaf\xff\xaf\xff\xdf\x44\xff\x5f\xff\xbf" "\x9f\xe8\xff\x57\xb4\xff\xef\xfc\xff\x0d\xfa\xff\xce\xff\xaf\xff\xaf\xff" "\x4f\x77\x65\xeb\xff\xc7\xdc\xbf\x3f\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea" "\x20\xe6\xfe\x37\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xdf\x17\x66" "\x22\xff\x03\x00\x00\x40\x5f\xe9\x74\x1e\xc2\x28\xe6\xfe\x37\x87\x99\xd4" "\x24\xff\xeb\xff\x57\xbd\xff\xbf\xb0\x41\xff\x5f\xff\x5f\xff\xbf\xfb\xfa" "\xfb\xa3\xff\x3f\x9c\xf5\x2b\xfd\x7f\xfd\xff\x6e\xf4\xff\xf5\xff\xfb\x79" "\xfd\xfa\xff\xfa\xff\xf4\x56\xb6\xfe\x7f\xcc\xfd\x07\xc2\x4c\x6a\x92\xff" "\x01\x00\x00\xa0\x0e\x62\xee\x7f\x4b\x98\x89\xfc\x0f\x00\x00\x00\x95\x11" "\x73\xff\x5b\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x0f\x86\x99\xd4" "\x24\xff\xeb\xff\x57\xbd\xff\xef\xfc\xff\xfa\xff\x57\xaf\xff\x3f\xa2\xff" "\xef\xfc\xff\x1d\xe8\xff\xeb\xff\x77\x53\xc9\xfe\xff\x86\xea\xf7\xff\xc3" "\xdb\x16\xfd\xff\x12\xf5\xff\xf3\x63\x48\xff\x9f\x32\x2a\x5b\xff\x3f\xe6" "\xfe\xb7\x85\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\xff\xf6\x30\x13" "\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x77\x84\x99\xc8\xff\x00\x00\x00\x50" "\x19\x31\xf7\xbf\x33\xcc\xa4\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xdf" "\xf9\xff\xf5\xff\xd7\x93\xfe\xff\xba\xf5\xff\x1b\x2f\x85\xfa\xff\x85\x52" "\xf5\xff\x9d\xff\x5f\xff\xdf\xf9\xff\xf5\xff\x49\xca\xd6\xff\x8f\xb9\xff" "\x5d\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\xbf\x3b\xcc\x44\xfe" "\x07\x00\x00\x80\xca\x88\xb9\xff\x57\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c" "\x98\xfb\xef\x0f\x33\xa9\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff" "\xd7\xff\x5f\x4f\xfa\xff\xce\xff\xdf\x8d\xfe\xbf\xfe\x7f\x3f\xaf\x5f\xff" "\x5f\xff\x9f\xde\xca\xd6\xff\x8f\xb9\xff\xd7\xc2\x4c\x6a\x92\xff\x01\x00" "\x00\xa0\x0e\x62\xee\x7f\x20\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff" "\x3d\x61\x26\xf2\x3f\x00\x00\x00\xf4\x99\xd1\x65\x2f\x89\xb9\xff\xd7\xc3" "\x4c\x6a\x92\xff\xfb\xaf\xff\x3f\xde\x97\xfd\xff\xc1\x74\xfb\xfa\xff\xfa" "\xff\xfa\xff\xfa\xff\xfa\xff\x6b\x49\xff\x5f\xff\x3f\xd3\xff\xbf\x6c\xd7" "\xba\x3f\xdf\xef\xeb\xd7\xff\xd7\xff\xa7\xb7\xb2\xf5\xff\x63\xee\xff\x8d" "\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\xdf\x1b\x66\x22\xff\x03" "\x00\x00\x40\x65\xc4\xdc\xff\x9b\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc" "\xfd\x0f\x86\x99\xd4\x24\xff\xaf\x75\xff\xbf\xfd\xfa\x9d\x0c\x36\x4d\xe7" "\xff\xd7\xff\xd7\xff\x5f\xbc\x9e\xfe\x7f\x78\x5e\xf5\xff\xf5\xff\x57\x41" "\xff\x5f\xff\x3f\xd3\xff\xbf\x6c\xd7\xba\x3f\xdf\xef\xeb\xd7\xff\xd7\xff" "\xa7\xb7\xb2\xf5\xff\x63\xee\xff\xad\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8" "\x83\x98\xfb\x1f\x0a\x33\x91\xff\x01\x00\x00\xa0\xa4\x4e\xac\xfa\x1a\x31" "\xf7\xbf\x2f\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xfd\x61\x26\x35" "\xc9\xff\xfd\x77\xfe\x7f\xfd\x7f\xfd\x7f\xfd\xff\xb2\xf5\xff\x23\xfd\x7f" "\xfd\xff\x4e\xf4\xff\xf5\xff\xbb\xd1\xff\xd7\xff\xef\xe7\xf5\xeb\xff\xeb" "\xff\xd3\x5b\xd9\xfa\xff\x31\xf7\x3f\x1c\x66\x52\x93\xfc\x0f\x00\x00\x00" "\x75\x10\x73\xff\x07\xc2\x4c\x56\x92\xff\x37\xac\xd7\xaa\x00\x00\x00\x80" "\xb5\x14\x73\xff\x6f\x87\x99\xf8\xfb\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x7f" "\x27\xcc\xa4\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xdf\xf9\xff\xf5\xff" "\xd7\x93\xfe\xff\xd2\xfe\x7f\xfe\x1a\xa6\xff\x5f\xd0\xff\xd7\xff\xef\xe7" "\xf5\xeb\xff\xeb\xff\xd3\x5b\xd9\xfa\xff\x31\xf7\x7f\x30\xcc\xa4\x26\xf9" "\x1f\x00\x00\x00\xea\x20\xe6\xfe\xdf\x0d\x33\x91\xff\x01\x00\x00\xa0\x32" "\x62\xee\xff\xbd\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x0f\x85\x99" "\xd4\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xaf\x27\xfd" "\x7f\xe7\xff\xef\x46\xff\x5f\xff\xbf\x9f\xd7\xaf\xff\xaf\xff\x4f\xbb\xf6" "\x77\x75\xe5\xeb\xff\xc7\xdc\xff\xe1\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8" "\x83\x98\xfb\x7f\x3f\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x50\x98" "\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x23\x61\x26\x35\xc9\xff\xfa\xff" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xeb\x49\xff\x5f\xff\xbf\x1b\xfd" "\x7f\xfd\xff\x7e\x5e\xbf\xfe\xbf\xfe\x3f\xbd\x95\xad\xff\x1f\x73\xff\xe1" "\x30\x93\x83\xad\x77\x03\x00\x00\x00\xf4\xaf\x98\xfb\x3f\x12\x66\x52\x93" "\xbf\xff\x07\x00\x00\x80\x3a\x88\xb9\xff\x48\x98\x89\xfc\x0f\x00\x00\x00" "\x95\x11\x73\xff\xd1\x30\x93\x9a\xe4\x7f\xfd\x7f\xfd\xff\xb5\xee\xff\x8f" "\x86\xcb\xf4\xff\xf5\xff\xf5\xff\xf5\xff\x33\xfd\x7f\xfd\xff\x1e\xf4\xff" "\xf5\xff\xfb\x79\xfd\xfa\xff\xfa\xff\xf4\x56\xb6\xfe\x7f\xcc\xfd\x33\x61" "\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\x1f\x0b\x33\x91\xff\x01\x00" "\x00\xa0\x32\x62\xee\x3f\x1e\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f" "\x22\xcc\xa4\x26\xf9\x5f\xff\x5f\xff\xdf\xf9\xff\x6b\xdb\xff\xff\xc1\x37" "\xdb\xd6\xa9\xff\xaf\xff\xbf\x1e\xf4\xff\x97\xeb\xff\x5f\xaf\xff\xaf\xff" "\xaf\xff\xdf\xe7\xeb\xd7\xff\xd7\xff\xa7\xb7\xb2\xf5\xff\x63\xee\x3f\x19" "\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73\xff\x47\xc3\x4c\xe4\x7f\x00" "\x00\x00\xa8\x8c\x98\xfb\x3f\x16\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc" "\x7f\x2a\xcc\xa4\x26\xf9\x5f\xff\x5f\xff\x5f\xff\xbf\xb6\xfd\xff\x95\x9d" "\xff\x7f\xe3\xe2\xfd\xea\xff\xeb\xff\x5f\x0e\xfd\x7f\xe7\xff\xef\x46\xff" "\x5f\xff\xbf\x9f\xd7\xaf\xff\xaf\xff\x4f\x6f\x65\xeb\xff\xc7\xdc\x7f\x3a" "\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\x33\x61\x26\xf2\x3f\x00" "\x00\x00\x54\x46\xcc\xfd\x67\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb" "\xcf\x85\x99\xd4\x24\xff\xeb\xff\xaf\xae\xff\x3f\xb0\x4c\x37\x50\xff\xbf" "\xf3\xfa\xf5\xff\x2b\xd0\xff\x6f\xa2\xff\xaf\xff\x7f\x39\xf4\xff\xf5\xff" "\xbb\xd1\xff\xd7\xff\xef\xe7\xf5\xeb\xff\xeb\xff\xd3\x5b\xd9\xfa\xff\x31" "\xf7\xff\x41\x98\x49\x73\xf0\xdb\xfe\x9d\xd5\x3e\x4c\x00\x00\x00\xa0\x44" "\x62\xee\x3f\x1f\x66\x52\x93\xbf\xff\x07\x00\xf8\x7f\xf6\xee\x7b\xc9\xd2" "\xb2\xda\xe3\xf8\x66\x38\x33\x0c\x35\xc5\x3d\x70\x0b\xe7\x0a\xbc\x04\xbd" "\x04\xad\xf2\x0e\xcc\x19\x8c\x60\x56\xcc\x39\x61\x4e\x98\x15\x73\xce\x39" "\xe7\x9c\x51\x8c\x98\xaa\xb4\x98\x5e\x6b\x41\x37\xdd\xef\x6e\xa6\xf7\xee" "\xfd\xbe\xcf\xfa\x7c\xfe\x70\x9d\x69\x38\xc5\x4b\x38\x75\xea\x57\xf8\xad" "\x07\x00\x3a\xc8\xdd\x7f\xbf\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xbf" "\x7f\xdc\xd2\x64\xff\xeb\xff\xbd\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xdb" "\xa4\xff\xbf\xc4\xfe\xff\xb6\xe3\x7d\x97\xfe\x7f\x8f\xfe\xff\xd2\xec\xba" "\x9f\x5f\xfa\xf7\xeb\xff\xf5\xff\xac\x37\xb7\xfe\x3f\x77\xff\x03\xe2\x96" "\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xc0\xb8\xc5\xfe\x07\x00\x00\x80" "\x61\xe4\xee\x7f\x50\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f\x38\x6e" "\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf\x26\xfd\xff" "\x42\xdf\xff\x5f\xad\xf4\xff\xc7\xa0\xff\xd7\xff\xeb\xff\xf5\xff\x4c\x9b" "\x5b\xff\x9f\xbb\xff\x21\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f" "\x68\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f\x2c\x6e\xb1\xff\x01\x00" "\x00\x60\x18\xb9\xfb\x1f\x1e\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\xaf\xff\xd7\xff\x6f\x93\xfe\x7f\xa1\xfd\xbf\xf7\xff\x8f\x45\xff\xaf\xff" "\xd7\xff\xeb\xff\x99\x36\xb7\xfe\x3f\x77\xff\x23\xe2\x96\x26\xfb\x1f\x00" "\x00\x00\x3a\xc8\xdd\xff\xc8\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f" "\x54\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x5f\x13\xb7\x34\xd9\xff\xfa" "\x7f\xfd\xbf\xfe\x7f\x81\xfd\xff\xff\xe9\xff\xf5\xff\xcb\xa1\xff\xd7\xff" "\x4f\xd1\xff\xeb\xff\x97\xfc\xfd\xfa\x7f\xfd\x3f\xeb\xcd\xad\xff\xcf\xdd" "\x7f\x6d\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x1f\x1d\xb7\xd8\xff" "\x00\x00\x00\x30\x8c\xdc\xfd\x8f\x89\x5b\xec\x7f\x00\x00\x00\x18\x46\xee" "\xfe\xc7\xc6\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\x5f\x60\xff\xef\xfd\x7f" "\xfd\xff\x82\xe8\xff\xf5\xff\x53\xf4\xff\xfa\xff\x25\x7f\xbf\xfe\x5f\xff" "\xcf\x7a\xeb\xfa\xff\x2b\xf2\xd7\x71\xb7\xdd\xff\xe7\xee\x7f\x5c\xdc\xd2" "\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x1f\x1f\xb7\xd8\xff\x00\x00\x00\x30" "\x8c\xdc\xfd\x4f\x88\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xeb\xe2\x96" "\x26\xfb\x7f\xa8\xfe\x3f\x1a\xc1\x95\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff" "\x67\x43\xff\xaf\xff\x9f\xa2\xff\xd7\xff\x2f\xf9\xfb\xf5\xff\xfa\x7f\xd6" "\xdb\xfa\xfb\xff\xf7\xbc\xfe\xe2\x3d\x6e\xff\x9f\xbb\xff\xfa\xb8\xa5\xc9" "\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x31\x6e\xb1\xff\x01\x00\x00\x60\x18" "\xb9\xfb\x9f\x14\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x4f\x8e\x5b\x9a" "\xec\xff\xa1\xfa\xff\x95\xf7\xff\x4f\xd6\xff\xff\xf7\x32\xfd\xbf\xfe\x5f" "\xff\x7f\xc7\xcf\xf5\xff\x9b\xa1\xff\xd7\xff\x4f\xd1\xff\xeb\xff\x97\xfc" "\xfd\xfa\x7f\xfd\x3f\xeb\x6d\xbd\xff\x5f\xd3\xfb\x1f\xfc\x75\xee\xfe\xa7" "\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xa9\x71\x8b\xfd\x0f\x00" "\x00\x00\xc3\xc8\xdd\xff\xb4\xb8\xc5\xfe\x07\x00\x00\x80\xd9\x3b\x7f\xcc" "\xdf\x2f\x77\xff\xd3\x0f\xfe\x6f\x35\xd9\xff\xfa\x7f\xfd\xbf\xf7\xff\xf5" "\xff\xfa\x7f\xfd\xff\x36\xe9\xff\x67\xdb\xff\x1f\xfc\x3f\xbd\xfd\xb6\xd7" "\xff\x9f\xbb\xf3\x2f\xf4\xff\xfa\xff\x25\x7f\xff\x54\xff\x7f\x8f\x63\x7c" "\xbf\xfe\x9f\x0e\xe6\xd6\xff\xe7\xee\x7f\x46\xdc\xd2\x64\xff\x03\x00\x00" "\x40\x07\xb9\xfb\x9f\x19\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x37\xc4" "\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xb3\xe2\x96\x26\xfb\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\xf7\xf7\xff\x67\x5a\xf6\xff\xb7\xff\x4c\xff\xbf\x1d" "\xfa\xff\xd9\xf6\xff\xd3\xbc\xff\x7f\x2c\xfa\x7f\xfd\xbf\xf7\xff\xf5\xff" "\x4c\x9b\x5b\xff\x9f\xbb\xff\xd9\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4" "\xee\x7f\x4e\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f\x37\x6e\xb1\xff" "\x01\x00\x00\x60\x18\xb9\xfb\x9f\x17\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\x7f\xa2\xf7\xff\x2f\x1f\xa3\xff\xf7\xfe\xff\xf6\xe8\xff\xf5\xff" "\x53\xf4\xff\xfa\xff\x25\x7f\xbf\xfe\x5f\xff\xcf\x7a\x73\xeb\xff\x73\xf7" "\x3f\x3f\x6e\x69\xb2\xff\x01\x00\x00\x60\x78\x67\x56\xb5\xfb\x5f\x10\xb7" "\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x2f\x8c\x5b\xec\x7f\x00\x00\x00\x18" "\x46\xee\xfe\x17\xc5\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x9f\xa8" "\xff\x1f\xe4\xfd\x7f\xfd\xff\xf6\xe8\xff\xf5\xff\x53\x8e\xdb\xff\xaf\xf4" "\xff\xf5\xe7\xb2\xdb\xfe\xff\xec\xbe\x5f\x9d\xa4\x9f\xbf\xd7\xb9\x5d\x7c" "\xff\x6a\x63\xdf\xbf\xd2\xff\xeb\xff\x39\x96\xb9\xf5\xff\xb9\xfb\x5f\x1c" "\xb7\x34\xd9\xff\x00\x00\x00\x30\x9e\xeb\xee\xf2\x93\xdc\xfd\x2f\x89\x5b" "\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x97\xc6\x2d\xf6\x3f\x00\x00\x00\x0c" "\x23\x77\xff\xcb\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xdf\x50\xff\x9f\x3f\xd2" "\xff\xeb\xff\x8b\xfe\x5f\xff\xbf\xd2\xff\xeb\xff\xd7\xf0\xfe\xff\xd2\xfa" "\xff\xfd\xbc\xff\xaf\xff\xd7\xff\xb3\xce\xdc\xfa\xff\xdc\xfd\x2f\x8f\x5b" "\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x2b\xe2\x16\xfb\x1f\x00\x00\x00" "\x86\x91\xbb\xff\x95\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xaa\xb8" "\xe5\xe0\xfe\x3f\x73\x9a\x5f\x75\x7a\x76\xda\xff\x67\xbb\xa1\xff\x1f\xa1" "\xff\x3f\xf4\xfb\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x9f\xa2\xff" "\x3f\xbc\xff\x3f\x7f\xc4\x1f\x4f\xff\x3f\xaf\xef\xd7\xff\xeb\xff\x59\x6f" "\x6e\xfd\x7f\xee\xfe\x1b\xe3\x16\xff\xfe\x1f\x00\x00\x00\x86\x91\xbb\xff" "\xd5\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x9a\xb8\xc5\xfe\x07\x00" "\x00\x80\x61\xe4\xee\x7f\x6d\xdc\x72\xd4\xfe\xbf\xea\x34\xbe\xea\xf4\x1c" "\xd5\xff\xdf\x7a\x61\xef\xb7\x7b\xff\xff\x78\xf4\xff\x87\x7f\xbf\xfe\x5f" "\xff\xaf\xff\xd7\xff\xeb\xff\x37\xd7\xff\x1f\xf6\xff\xde\xf4\xff\x7b\x46" "\xeb\xff\xbd\xff\xbf\x8c\xef\xd7\xff\xeb\xff\x59\x6f\x6e\xfd\x7f\xee\xfe" "\xd7\xc5\x2d\xfe\xfd\x3f\x00\x00\x00\x0c\x23\x77\xff\xeb\xe3\x16\xfb\x1f" "\x00\x00\x00\x86\x91\xbb\xff\x0d\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd" "\xff\xc6\xb8\xa5\xc9\xfe\xdf\xfc\xfb\xff\x57\xef\xa2\xff\xbf\x23\xae\xd3" "\xff\xeb\xff\xf5\xff\xfa\xff\xf8\xf9\x51\xfd\xff\x41\xfa\xff\xed\xd2\xff" "\x7b\xff\x7f\x8a\xfe\x5f\xff\xbf\xe4\xef\xd7\xff\xeb\xff\x59\x6f\x6e\xfd" "\x7f\xee\xfe\x37\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xcd\x71" "\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x96\xb8\xc5\xfe\x07\x00\x00\x80" "\x61\xe4\xee\x7f\x6b\xdc\xd2\x64\xff\x6f\xbe\xff\xf7\xfe\xbf\xfe\xff\x6e" "\xf6\xff\x67\xf4\xff\x49\xff\x1f\x7f\x5f\xbd\xff\xaf\xff\xbf\x1b\xf4\xff" "\xfa\xff\x95\xfe\xff\x92\xed\xba\x9f\x5f\xfa\xf7\xeb\xff\xf5\xff\xac\x37" "\xb7\xfe\x3f\x77\xff\x4d\x17\xa7\x5e\xbf\xfd\x0f\x00\x00\x00\x1d\xdc\x74" "\xf1\x3f\xcf\xaf\xde\x16\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x6f\x8f" "\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x77\xc4\x2d\x4d\xf6\xbf\xfe\x5f" "\xff\xbf\xf3\xfe\xdf\xfb\xff\x45\xff\x1f\x7f\x5f\x77\xd3\xff\x1f\xfc\xb1" "\xfe\x7f\x43\xf4\xff\xfa\xff\x29\xfa\x7f\xfd\xff\x92\xbf\x5f\xff\xaf\xff" "\x67\xbd\xb9\xf5\xff\xb9\xfb\xdf\x19\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41" "\xee\xfe\x77\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x76\xff\xde\x7f\xf9\xdd" "\xfe\x07\x00\x00\x80\x91\x54\x5f\xf7\xee\x8b\xff\x79\x7e\xf5\x9e\xb8\xa5" "\xc9\xfe\x6f\xdc\xff\x5f\x7d\xd2\xfe\xff\xca\x3b\xfd\xcf\xfa\xff\xc3\xbf" "\x5f\xff\xbf\x91\xfe\xff\xa6\x83\xff\xec\xe9\xff\xbd\xff\xbf\x24\xfa\x7f" "\xfd\xff\x14\xfd\xbf\xfe\x7f\xc9\xdf\x3f\x9f\xfe\x3f\x7e\x70\x8d\xfe\x9f" "\xf9\x99\x5b\xff\x9f\xbb\xff\xbd\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4" "\xee\x7f\x5f\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xdf\x1c\xb7\xd8\xff" "\x00\x00\x00\x30\x8c\xdc\xfd\xef\x8f\x5b\x9a\xec\xff\xc6\xfd\xff\x20\xef" "\xff\xdf\xe7\x96\xf8\x02\xfd\xff\xb8\xfd\xbf\xf7\xff\xe3\xea\xff\xf5\xff" "\x87\xd1\xff\xeb\xff\x57\xfa\xff\x4b\xb6\xeb\x7e\x7e\xe9\xdf\x3f\x9f\xfe" "\xdf\xfb\xff\xcc\xd7\xdc\xfa\xff\xdc\xfd\x1f\x88\x5b\x9a\xec\x7f\x00\x00" "\x00\xe8\x20\x77\xff\x07\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x43" "\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xe1\xb8\xa5\xc9\xfe\xd7\xff" "\x2f\xbd\xff\xf7\xfe\xbf\xfe\x5f\xff\xbf\xbf\xff\xbf\x46\xff\x3f\x33\xfa" "\x7f\xfd\xff\x14\xfd\xbf\xfe\x7f\xc9\xdf\xaf\xff\xd7\xff\xb3\xde\xdc\xfa" "\xff\xdc\xfd\x1f\x89\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x47\xe3" "\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x63\x71\x8b\xfd\x0f\x00\x00\x00" "\xc3\xc8\xdd\xff\xf1\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xb7\xd5\xff\xdf\xfe" "\x07\xd1\xff\x37\xe9\xff\xaf\x9d\x53\xff\xef\xfd\xff\xb9\xd1\xff\xeb\xff" "\xa7\xe8\xff\xf5\xff\x4b\xfe\x7e\xfd\xbf\xfe\x9f\xf5\xe6\xd6\xff\xe7\xee" "\xff\x44\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x3f\x19\xb7\xd8\xff" "\x00\x00\x00\x30\x8c\xdc\xfd\x9f\x8a\x5b\xec\x7f\x00\x00\x00\x18\x46\xee" "\xfe\x4f\xc7\x0d\xff\x7f\xd5\xee\x3e\x69\xb3\xce\x1e\xf1\xf3\xe8\xcd\xf5" "\xff\xfa\x7f\xef\xff\xeb\xff\xc7\x7a\xff\x5f\xff\x3f\x37\xfa\x7f\xfd\xff" "\x14\xfd\xbf\xfe\x7f\xc9\xdf\xaf\xff\xd7\xff\xb3\xde\xdc\xfa\xff\xdc\xfd" "\x9f\x89\x5b\xfc\xfb\x7f\x00\x00\x00\x18\x46\xee\xfe\xcf\xc6\x2d\xf6\x3f" "\x00\x00\x00\x0c\x23\x77\xff\xe7\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb" "\xff\xf3\x71\x4b\x93\xfd\xaf\xff\xd7\xff\x6f\xa1\xff\x3f\xab\xff\xdf\xb3" "\xe5\xfe\xff\x4a\xfd\xff\xfe\xef\xd7\xff\xcf\x93\xfe\x5f\xff\x3f\x45\xff" "\xaf\xff\x5f\xf2\xf7\xeb\xff\xf5\xff\xac\x37\xb7\xfe\x3f\x77\xff\x17\xe2" "\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xc5\xb8\xc5\xfe\x07\x00\x00" "\x80\x61\xe4\xee\xff\x52\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x7f\x39" "\x6e\x69\xb2\xff\x2f\xa9\xff\xbf\x4c\xff\x7f\x90\xfe\xff\xf0\xef\xd7\xff" "\x7b\xff\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xa7\xe8\xff\xf5\xff\x4b\xfe\x7e" "\xfd\xbf\xfe\x9f\xf5\xe6\xd6\xff\xe7\xee\xff\x4a\xdc\xd2\x64\xff\x03\x00" "\x00\x40\x07\xb9\xfb\xbf\x1a\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x5f" "\x8b\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xaf\xc7\x2d\x4d\xf6\xbf\xf7" "\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\x4d\xa7\xde\xff\x9f\xd9\xfc" "\x1f\x63\xa5\xff\xd7\xff\x1f\x41\xff\xaf\xff\xd7\xff\xeb\xff\x99\x36\xb7" "\xfe\x3f\x77\xff\x37\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xcd" "\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x56\xdc\x62\xff\x03\x00\x00" "\xc0\x30\x72\xf7\x7f\x3b\x6e\x69\xb2\xff\x47\xee\xff\xa7\x7e\x37\xfd\xff" "\x1e\xfd\xbf\xfe\x7f\xa5\xff\x3f\xd8\xff\x9f\xcb\x9f\xeb\xff\x37\xc3\xfb" "\xff\xfa\xff\x29\xfa\xff\x81\xfb\xff\x73\x1b\xf9\xc4\xdd\x7d\xbf\xfe\x5f" "\xff\xcf\x46\xcc\xad\xff\xcf\xdd\xff\x9d\xb8\xa5\xc9\xfe\x07\x00\x00\x80" "\x0e\x72\xf7\x7f\x37\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xbf\x17\xb7" "\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xdf\x8f\x5b\x9a\xec\xff\x91\xfb\xff" "\x29\xfa\xff\x3d\xfa\x7f\xfd\xff\x4a\xff\xef\xfd\xff\x2d\xd3\xff\xeb\xff" "\xa7\xe8\xff\x07\xee\xff\xbd\xff\xaf\xff\x87\xdd\xf5\xff\x67\x57\x47\xf4" "\xff\xb9\xfb\x7f\x10\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x1f\xc6" "\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x8f\xe2\x16\xfb\x1f\x00\x00\x00" "\x86\x91\xbb\xff\xc7\x71\xcb\x38\xfb\xff\xbe\x37\x4f\xfc\x46\xfd\xff\xc6" "\xfb\xff\x8b\xff\x10\xe9\xff\xf5\xff\x2b\xfd\xbf\xfe\x5f\xff\x7f\x51\x8b" "\xfe\xff\xc2\x85\xbd\xdf\x49\xff\xaf\xff\x0f\xfa\xff\xe5\xf6\xff\xe7\x56" "\xfa\x7f\xfd\x3f\x9b\x34\xb7\xf7\xff\x73\xf7\xff\x24\x6e\x19\x67\xff\x03" "\x00\x00\x40\x7b\xb9\xfb\x7f\x1a\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd" "\x3f\x8b\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x9f\xc7\x2d\x4d\xf6\xbf" "\xfe\xdf\xfb\xff\xfa\xff\x56\xfd\xff\xe5\xab\x63\xf5\xff\xf9\x57\x58\xff" "\xaf\xff\x3f\xb9\x16\xfd\xbf\xf7\xff\xf5\xff\xfa\xff\x61\xfa\x7f\xef\xff" "\xeb\xff\xd9\xac\xb9\xf5\xff\xb9\xfb\x7f\x11\xb7\x34\xd9\xff\x00\x00\x00" "\xd0\x41\xee\xfe\x5f\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xaf\xe2" "\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xd7\x71\x4b\x93\xfd\xaf\xff\xd7" "\xff\xeb\xff\x5b\xf5\xff\xde\xff\xd7\xff\x9f\x3a\xfd\xbf\xfe\x7f\x8a\xfe" "\x5f\xff\xbf\xe4\xef\xcf\xfe\x3f\xff\xb9\xd3\xff\xeb\xff\xb9\xab\xb9\xf5" "\xff\xb9\xfb\x7f\x13\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xdf\xc6" "\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xef\xe2\x16\xfb\x1f\x00\x00\x00" "\x86\x91\xbb\xff\xf7\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa" "\x7f\xfd\xff\x36\xe9\xff\xf5\xff\x53\xf4\xff\xfa\xff\x25\x7f\xbf\xf7\xff" "\xf5\xff\xac\x37\xb7\xfe\x3f\x77\xff\x2d\x71\x4b\x93\xfd\x0f\x00\x00\x00" "\x1d\xe4\xee\xff\x43\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x31\x6e" "\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x6f\x8d\x5b\x9a\xec\x7f\xfd\xbf\xfe" "\x7f\xc8\xfe\xff\x8a\x71\xfb\xff\xcb\xf5\xff\xfa\xff\x85\xd1\xff\xeb\xff" "\xa7\xe8\xff\xf5\xff\x4b\xfe\x7e\xfd\xff\x5d\xfb\xff\xb3\xf1\xdb\xf4\xff" "\xa4\xb9\xf5\xff\xb9\xfb\xff\x14\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee" "\xfe\x3f\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x5f\xe2\x16\xfb\x1f" "\x00\x00\x00\x86\x91\xbb\xff\xaf\x71\x4b\x93\xfd\xaf\xff\x9f\x71\xff\x7f" "\xef\x0b\x33\xed\xff\xcf\xd6\x9f\xf7\x6c\xfb\x7f\xef\xff\xeb\xff\xf5\xff" "\xb3\x31\x6e\xff\x7f\x4e\xff\xaf\xff\x3f\x71\xff\x7f\xc3\x8d\x7b\x3f\xd6" "\xff\x2f\xf3\xfb\xf5\xff\xde\xff\x67\xbd\xb9\xf5\xff\xb9\xfb\xff\x16\xb7" "\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xbf\xc7\x2d\xf6\x3f\x00\x00\x00" "\x0c\x23\x77\xff\x6d\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x8f\xb8" "\xa5\xc9\xfe\xd7\xff\xcf\xb8\xff\xf7\xfe\xbf\xfe\x5f\xff\xbf\xef\xaf\xa7" "\xfe\x5f\xff\x7f\x18\xef\xff\xeb\xff\x57\x0b\xee\xff\xbd\xff\xbf\xec\xef" "\xd7\xff\xeb\xff\x59\x6f\x6e\xfd\x7f\xee\xfe\x7f\xc6\x2d\x4d\xf6\x3f\x00" "\x00\x00\x74\x90\xbb\xff\x5f\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff" "\xef\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x4f\xdc\xd2\x64\xff\xeb" "\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\x4d\xfa\x7f\xfd\xff\x14\xfd" "\xbf\xfe\x7f\xc9\xdf\xaf\xff\xd7\xff\xb3\xde\xdc\xfa\xff\xdc\xfd\xff\x0b" "\x00\x00\xff\xff\x1e\x48\x1e\x1a", 24668); syz_mount_image( /*fs=*/0x200000000400, /*dir=*/0x200000000680, /*flags=MS_LAZYTIME|MS_POSIXACL|MS_REC|MS_STRICTATIME|MS_SILENT|MS_NOSUID|0x800*/ 0x301c802, /*opts=*/0x200000000f80, /*chdir=*/0x11, /*size=*/0x605c, /*img=*/0x20000000a140); // openat$cgroup_ro arguments: [ // fd: fd_cgroup (resource) // file: ptr[in, buffer] { // buffer: {6d 65 6d 6f 72 79 2e 73 77 61 70 2e 63 75 72 72 65 6e 74 00} // (length 0x14) // } // flags: const = 0x275a (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd memcpy((void*)0x200000000000, "memory.swap.current\000", 20); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000000ul, /*flags=*/0x275a, /*mode=*/0); if (res != -1) r[0] = res; // write$cgroup_int arguments: [ // fd: fd_cgroup_int (resource) // buf: ptr[in, int64] { // int64 = 0x9 (18 bytes) // } // len: bytesize = 0x12 (8 bytes) // ] sprintf((char*)0x200000000080, "0x%016llx", (long long)9); syscall(__NR_write, /*fd=*/r[0], /*buf=*/0x200000000080ul, /*len=*/0x12ul); // mkdirat arguments: [ // fd: fd_dir (resource) // path: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // mode: open_mode = 0x0 (8 bytes) // ] memcpy((void*)0x200000000040, "./file0\000", 8); syscall(__NR_mkdirat, /*fd=*/0xffffff9c, /*path=*/0x200000000040ul, /*mode=*/0ul); } 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; use_temporary_dir(); loop(); return 0; }