// https://syzkaller.appspot.com/bug?id=84e62160952c0676537ef97539f5e90de96eafaf // 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"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x20000000, "jfs\000", 4); memcpy((void*)0x200002c0, "./bus\000", 6); memcpy((void*)0x20000300, "\x64\x69\x73\x63\x61\x72\x64\x3d\x30\x78\x30\x30\x30\x30\x30\x30\x30" "\x30\x30\x30\x30\x30\x30\x30\x30\x34\x2c\x71\x75\x6f\x74\x61\x2c\x65" "\x72\x72\x6f\x72\x73\x3d\x63\x6f\x6e\x74\x69\x6e\x75\x65\x2c\x64\x69" "\x73\x63\x61\x72\x64\x3d\x30\x78\x30\x30\x30\x30\x30\x30\x30\x30\x30" "\x30\x30\x30\x30\x30\x30\x34\x2c\x75\x6d\x61\x73\x6b\x3d\x30\x30\x30" "\x37\x2c\x75\x73\x72\x71\x75\x6f\x74\x61\x2c\x65\x72\x72\x6f\x72\x73" "\x3d\x72\x65\x6d\x6f\x75\x6e\x74\x2d\x72\x6f\x00\x6e\x6f\x64\x69\x73" "\x63\x61\x72\x64\x2c\x72\x65\x73\x69\x7a\x65\x3d\x30\x78\x30\x30\x30" "\x30\x30\x30\x30\x30\x30\x30\x30\x31\x30\x30\x30\x30\x2c\x75\x6d\x61" "\x73\x6b\x3d\x30\x78\x30\x10\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30" "\x30\x30\x30\x32\x2c\x71\x75\x6f\x74\x61\x2c\x67\x69\x5b\x3d\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 199); *(uint8_t*)0x200003c7 = 0; memcpy((void*)0x200003c8, ",resize=0x0000000000008045,resize,uid>", 38); sprintf((char*)0x200003ee, "%020llu", (long long)-1); *(uint8_t*)0x20000402 = 0; memcpy( (void*)0x20000440, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xbe\xfa\xa5\x34\xb5\x7a" "\xa8\x4a\x84\x90\x9b\x16\x68\x29\x4d\xe2\xa4\x84\x40\x81\x36\x07\x38\x70" "\xe9\x01\xe5\x8a\x12\xb9\x6e\x15\x91\x02\x4a\x02\x4a\x2b\x4b\x71\xe5\x0b" "\x07\x4e\xfc\x05\x20\x24\xb8\x21\xc4\x11\x71\xe0\x8a\xd4\x03\x57\x6e\x9c" "\x38\x11\xc9\x46\x02\xf5\xc4\xa0\xb1\x9f\x27\x9e\xdd\xec\x66\xed\xda\xde" "\x59\x7b\x3e\x1f\xc9\x99\xf9\xcd\x33\xeb\x7d\xc6\xdf\x9d\x7d\xc9\xcc\xec" "\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x7c\xef\xbb" "\xdf\x5f\x69\x45\xc4\x8d\x9f\xa5\x05\x4b\x11\x9f\x89\x4e\x44\x3b\x62\xa1" "\xac\x97\x23\x62\x61\x79\x29\xaf\xdf\x8d\x88\xe7\x63\xa7\x39\x9e\x8b\x88" "\xde\x5c\x44\x79\xfb\x9d\x7f\x9e\x89\x78\x3d\x22\x3e\x3e\x13\xb1\xb5\xbd" "\xbe\x5a\x2e\xbe\xb4\xcf\x7e\x7c\xe7\x0f\x7f\xff\xcd\x0f\x9e\x7a\xfb\x6f" "\xbf\xef\x5d\xf8\xef\x1f\xef\x75\xde\x18\xb7\xde\xfd\xfb\xbf\xf8\xcf\x9f" "\x1e\x1c\x6e\x9b\x01\x00\x00\xa0\x69\x8a\xa2\x28\x5a\xe9\x63\xfe\xd9\xf4" "\xf9\xbe\x5d\x77\xa7\x00\x80\xa9\xc8\xaf\xff\x45\x92\x97\x9f\xfa\xfa\x97" "\xff\x7c\xfb\xcf\xb3\xd4\x1f\xb5\x5a\xad\x56\xab\xa7\x50\x57\x15\xa3\x3d" "\xa8\x16\x11\xb1\x51\xbd\x4d\xf9\x9e\xc1\xe1\x78\x00\x38\x61\x36\xe2\x93" "\xba\xbb\x40\x8d\xe4\xdf\x68\xdd\x88\x78\xaa\xee\x4e\x00\x33\xad\x55\x77" "\x07\x38\x16\x5b\xdb\xeb\xab\xad\x94\x6f\xab\xfa\x7a\xb0\xbc\xdb\x9e\xcf" "\x05\x19\xc8\x7f\xa3\xf5\xe8\xfa\x8e\x71\xd3\x49\x86\xcf\x31\x99\xd6\xe3" "\x6b\x33\x3a\xf1\xec\x98\xfe\x2c\x4c\xa9\x0f\xb3\x24\xe7\xdf\x1e\xce\xff" "\xc6\x6e\x7b\x3f\xad\x77\xdc\xf9\x4f\xcb\xb8\xfc\xfb\xbb\x97\x3e\x35\x4e" "\xce\xbf\x33\x9c\xff\x90\xd3\x93\x7f\x7b\x64\xfe\x4d\x95\xf3\xef\x1e\x28" "\xff\x8e\xfc\x01\x00\x00\x00\x00\x60\x86\xe5\xff\xff\x5f\xaa\xf9\xf8\xef" "\xdc\xe1\x37\x65\x5f\x9e\x74\xfc\x77\x79\x4a\x7d\x00\x00\x00\x00\x00\x00" "\x00\x80\xa3\x76\xd8\xf1\xff\x1e\x31\xfe\x1f\x00\x00\x00\xcc\xac\xf2\xb3" "\x7a\xe9\x57\x67\xf6\x96\x8d\xfb\x2e\xb6\x72\xf9\xf5\x56\xc4\xd3\x43\xeb" "\x03\x0d\x93\x2e\x96\x59\xac\xbb\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xd0\x24\xdd\xdd\x73\x78\xaf\xb7\x22\x7a\x11\xf1\xf4\xe2\x62\x51\x14" "\xe5\x4f\xd5\x70\x7d\x50\x87\xbd\xfd\x49\xd7\xf4\xed\x87\x26\xab\xfb\x49" "\x1e\x00\x00\x76\x7d\x7c\x66\xe8\x5a\xfe\x56\xc4\x7c\x44\x5c\x4f\xdf\xf5" "\xd7\x5b\x5c\x5c\x2c\x8a\xf9\x85\xc5\x62\xb1\x58\x98\xcb\xef\x67\xfb\x73" "\xf3\xc5\x42\xe5\x73\x6d\x9e\x96\xcb\xe6\xfa\xfb\x78\x43\xdc\xed\x17\xe5" "\x2f\x9b\xaf\xdc\xae\x6a\xd2\xe7\xe5\x49\xed\xc3\xbf\xaf\xbc\xaf\x7e\xd1" "\xd9\x47\xc7\x8e\x48\x2f\xfd\x35\xc7\x34\xd7\x14\x36\x00\x24\xbb\xaf\x46" "\x5b\x5e\x91\x4e\x99\xa2\x78\x66\xdc\x9b\x0f\x18\x60\xff\x3f\x85\x96\x62" "\xa9\xee\xc7\x15\xb3\xaf\xee\x87\x29\x00\x00\x00\x70\xfc\x8a\xa2\x28\x5a" "\xe9\xeb\xbc\xcf\xa6\x63\xfe\xed\xba\x3b\x05\x00\x4c\x45\x7e\xfd\x1f\x3e" "\x2e\x70\xa8\xba\x3d\xa6\x3d\xe2\x68\x7e\xbf\x5a\xad\x56\xab\xd5\xea\x4f" "\x55\x57\x15\xa3\x3d\xa8\x16\x11\xb1\x51\xbd\x4d\xf9\x9e\xc1\x70\xfc\x00" "\x70\xc2\x6c\xc4\x27\x75\x77\x81\x1a\xc9\xbf\xd1\xba\x11\xf1\x7c\xdd\x9d" "\x00\x66\x5a\xab\xee\x0e\x70\x2c\xb6\xb6\xd7\x57\x5b\x29\xdf\x56\xf5\xf5" "\x20\x8d\xef\x9e\xcf\x05\x19\xc8\x7f\xa3\xb5\x73\xbb\x7c\xfb\x51\xd3\x49" "\x86\xcf\x31\x99\xd6\xe3\x6b\x33\x3a\xf1\xec\x98\xfe\x3c\x37\xa5\x3e\xcc" "\x92\x9c\x7f\x7b\x38\xff\x1b\xbb\xed\xfd\xb4\xde\x71\xe7\x3f\x2d\xe3\xf2" "\xef\xef\x5c\x32\xd7\x3c\x39\xff\xce\x70\xfe\x43\x4e\x4f\xfe\xed\x91\xf9" "\x37\x55\xce\xbf\x7b\xa0\xfc\x3b\xf2\x07\x00\x00\x00\x00\x80\x19\x96\xff" "\xff\x7f\xc9\xf1\xdf\xbc\xc9\x00\x00\x00\x00\x00\x00\x00\x70\xe2\x6c\x6d" "\xaf\xaf\xe6\xeb\x5e\xf3\xf1\xff\xcf\x8d\x58\xcf\xf5\x9f\xa7\x53\xce\xbf" "\x75\xd0\xfc\x17\xd2\xbc\xfc\x4f\xb4\x9c\x7f\x7b\x28\xff\x97\x87\xd6\xeb" "\x54\xe6\x1f\x5e\xdb\xdb\xff\xff\xbd\xbd\xbe\xfa\xdb\x7b\xff\xfa\x6c\x9e" "\xee\x37\xff\xb9\x3c\xd3\x4a\x8f\xac\x56\x7a\x44\xb4\xd2\x3d\xb5\xba\x69" "\x7a\x98\xad\x7b\xdc\x66\xaf\xd3\x2f\xef\xa9\xd7\x6a\x77\xba\xe9\x9c\x9f" "\xa2\xf7\x6e\xdc\x8a\xdb\xb1\x16\x17\x07\xd6\x6d\xa7\xbf\xc7\x5e\xfb\xca" "\x40\x7b\xd9\xd3\xde\x40\xfb\xa5\x81\xf6\xee\x63\xed\x97\x07\xda\x7b\xe9" "\x7b\x07\x8a\x85\xdc\x7e\x3e\x56\xe3\xc7\x71\x3b\xde\xd9\x69\x2f\xdb\xe6" "\x26\x6c\xff\xfc\x84\xf6\x62\x42\x7b\xce\xbf\xe3\xf9\xbf\x91\x72\xfe\xdd" "\xca\x4f\x99\xff\x62\x6a\x6f\x0d\x4d\x4b\x0f\x3f\x6a\x3f\xb6\xdf\x57\xa7" "\xa3\xee\xe7\xad\x5b\x9f\xff\xf9\xc5\xe3\xdf\x9c\x89\x36\xa3\xf3\x68\xdb" "\xaa\xca\xed\x3b\x57\x43\x7f\x76\xfe\x26\x4f\xf5\xe3\xa7\x77\xd7\xee\x9c" "\xbf\x7f\xf3\xde\xbd\x3b\x2b\x91\x26\x03\x4b\x2f\x45\x9a\x1c\xb1\x9c\x7f" "\x6f\xe7\x67\x6e\xef\xf9\xff\xc5\xdd\xf6\xfc\xbc\x5f\xdd\x5f\x1f\x7e\xd4" "\x3f\x70\xfe\xb3\x62\x33\xba\x63\xf3\x7f\xb1\x32\x5f\x6e\xef\x2b\x53\xee" "\x5b\x1d\x72\xfe\xfd\xf4\x93\xf3\x7f\x27\xb5\x8f\xde\xff\x0f\x94\xff\xef" "\xfe\xfa\xf2\xb5\x29\x6d\xcd\x64\x4f\xda\xff\x5f\xad\xa1\x3f\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x24\x45\x51\xec\x5c\x22\xfa\x56" "\x44\x5c\x49\xd7\xff\xd4\x75\x6d\x26\x00\x30\x5d\xf9\xf5\xbf\x48\xf2\x72" "\xb5\x5a\xad\x56\xab\xd5\xa7\xaf\xae\x2a\x46\x7b\xb3\x5a\x44\xc4\x5f\x1e" "\xdd\x60\x6e\xd4\x6f\x01\x00\x4e\x80\xff\x45\xc4\x3f\xea\xee\x04\xb5\x91" "\x7f\x83\xe5\xef\xfb\x2b\xa7\x2f\xd5\xdd\x19\x60\xaa\xee\x7e\xf0\xe1\x0f" "\x6f\xde\xbe\xbd\x76\xe7\x6e\xdd\x3d\x01\x00\x00\x00\x00\x00\x00\x00\x3e" "\xad\x3c\xfe\xe7\x72\x65\xfc\xe7\x97\x22\x62\x69\x68\xbd\x81\xf1\x5f\xaf" "\xc5\xf2\x61\xc7\x7f\xed\xe6\x99\x47\x03\x8c\x1e\xf1\x40\xdf\x63\x6c\xb6" "\xfb\x9d\x76\x65\xb8\xf1\x17\x62\x67\x7c\xee\xf3\xe3\xc6\xff\x3e\x17\x8f" "\x8f\xff\x9d\xc7\xc4\xed\x54\xb7\x63\x8c\xde\x84\xf6\xfe\x84\xf6\x49\x97" "\x58\xcc\x8f\x5c\xba\x97\xd6\xc8\x0b\x3d\x2a\x72\xfe\x2f\x54\xc6\x3b\x2f" "\xf3\x3f\x3b\x34\xfc\xfa\x21\xc6\x7f\x9d\x29\x4f\x1a\xff\x75\x78\xcc\xfb" "\x26\xc8\xf9\x9f\xab\x3c\x9e\xcb\xfc\xbf\x34\xb4\x5e\x35\xff\xe2\xd7\x33" "\x97\xff\xc6\x7e\x57\xdc\x8c\xf6\x40\xfe\x17\xee\xbd\xff\x93\x0b\x77\x3f" "\xf8\xf0\xb5\x5b\xef\xdf\x7c\x6f\xed\xbd\xb5\x1f\x5d\x5e\x59\xb9\x78\xf9" "\xca\x95\xab\x57\xaf\x5e\x78\xf7\xd6\xed\xb5\x8b\xbb\xff\x1e\x4f\xaf\x67" "\x40\xce\x3f\x8f\x7d\xed\x3c\xd0\x66\xc9\xf9\xe7\xcc\xe5\xdf\x2c\x39\xff" "\x2f\xa4\x5a\xfe\xcd\x92\xf3\xff\x62\xaa\xe5\xdf\x2c\x39\xff\xfc\x7e\x4f" "\xfe\xcd\x92\xf3\xcf\x9f\x7d\xe4\xdf\x2c\x39\xff\x57\x52\x2d\xff\x66\xc9" "\xf9\x7f\x39\xd5\xf2\x6f\x96\xad\xed\xf5\xb9\x32\xff\x57\x53\x2d\xff\x66" "\xc9\xfb\xff\x57\x52\x2d\xff\x66\xc9\xf9\xbf\x96\x6a\xf9\x37\x4b\xce\xff" "\x7c\xaa\xe5\xdf\x2c\x39\xff\x0b\xa9\xde\x47\xfe\xbe\x1e\xfe\x14\xc9\xf9" "\xe7\x23\x5c\xf6\xff\x66\xc9\xf9\xaf\xa4\x5a\xfe\xcd\x92\xf3\xbf\x94\x6a" "\xf9\x37\x4b\xce\xff\x72\xaa\xe5\xdf\x2c\x39\xff\xd7\x53\x2d\xff\x66\xc9" "\xf9\x7f\x35\xd5\xf2\x6f\x96\x9c\xff\x95\x54\xcb\xbf\x59\x72\xfe\x5f\x4b" "\xf5\x3e\xf3\x9f\x74\xda\x33\x27\x44\xce\xff\x6a\xaa\xed\xff\xcd\x92\xf3" "\xff\x7a\xaa\xe5\xdf\x2c\x39\xff\x6f\xa4\x5a\xfe\xcd\x92\xf3\x7f\x23\xd5" "\xf2\x6f\x96\x9c\xff\x37\x53\x2d\xff\x66\xc9\xf9\x7f\x2b\xd5\xf2\x6f\x96" "\x9c\xff\xb7\x53\x2d\xff\x66\xc9\xf9\xbf\x99\x6a\xf9\x37\xcb\xde\xf7\xff" "\x9b\x31\x63\xc6\x4c\x9e\xa9\xfb\x99\x09\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x18\x36\x8d\xd3\x89\xeb\xde\x46\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xfe\xcf\x0e\x1c\x08\x00\x00\x00\x00\x00\xf9\xbf\x36\x42\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x15\x76\xe0\x40\x00\x00\x00\x00\x00\xc8\xff\xb5" "\x11\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xb0\x77\x6f\x31\x72\xdd\x77" "\x1d\xc0\xcf\xec\xcd\x6b\xa7\x69\xdc\x36\x4d\x9d\xe0\x36\x6b\xc7\x75\x5d" "\x67\x93\x5d\x5f\xe2\x4b\xc1\xc4\x4d\x93\x34\x24\x2d\x25\xd7\x36\x5c\x62" "\x1b\xef\xda\xd9\xd6\xb7\x78\x6d\x9a\x84\x48\x76\x49\x4b\x23\xd5\x81\x0a" "\x15\x35\x3c\x00\x6d\x15\x41\x24\x84\x6a\x50\x1f\x0a\x0a\x25\x0f\x88\xcb" "\x13\x81\x87\xf2\x82\x8a\x90\x2a\x11\x21\x37\x4a\x2b\x2a\x01\x2a\x59\x34" "\x73\xfe\xff\xff\xce\xcc\xce\xce\xec\x7a\x27\xeb\xd9\x73\x3e\x1f\xc9\xfe" "\xed\xce\x9c\x99\x73\xe6\xcc\x99\xd9\xfd\xae\xfd\xdd\x03\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd4\xdb\xf0\x91\xc9\x2f\x56\xb2" "\x2c\xab\xfe\xa9\xfd\xb5\x36\xcb\xde\x56\xfd\x78\xf5\xc8\xda\xda\x65\x1f" "\xba\xd2\x5b\x08\x00\x00\x00\x2c\xd5\xff\xd5\xfe\x7e\xe3\x9a\x74\xc1\xfe" "\x05\xdc\xa8\x6e\x99\xbf\x7b\xdf\x3f\x7e\x6b\x66\x66\x66\x26\xfb\x54\xff" "\xef\x0e\x7e\x65\x66\x26\x5d\x31\x92\x65\x83\xab\xb2\xac\x76\x5d\x74\xf1" "\xdf\x1f\xad\xd4\x2f\x13\x3c\x9b\x0d\x57\xfa\xea\x3e\xef\xeb\xb0\xfa\xfe" "\x0e\xd7\x0f\x74\xb8\x7e\xb0\xc3\xf5\x43\x1d\xae\x5f\xd5\xe1\xfa\xe1\x0e" "\xd7\xcf\xd9\x01\x73\xac\xce\x7f\x1e\x53\xbb\xb3\x4d\xb5\x0f\xd7\xe6\xbb" "\x34\xbb\x36\x1b\xac\x5d\xb7\xa9\xc5\xad\x9e\xad\xac\xea\xeb\x8b\x3f\xcb" "\xa9\xa9\xd4\x6e\x33\x33\x78\x24\x9b\xca\x8e\x65\x93\xd9\x78\xc3\xf2\xf9" "\xb2\x95\xda\xf2\x2f\x6f\xa8\xae\xeb\x9e\x2c\xae\xab\x6f\xf5\xec\xba\xd6" "\x57\x8f\x90\x1f\x3e\x73\x38\x6e\x43\x25\xec\xe3\x4d\x0d\xeb\x9a\xbd\xcf" "\xe8\x07\x1f\xce\x46\x7e\xf4\xc3\x67\x0e\xff\xd1\x99\x4b\xd7\xb7\x9a\x1d" "\x77\x43\xc3\xfd\xe5\xdb\xb9\x65\x63\x75\x3b\x3f\x1f\x2e\xc9\xb7\xb5\x92" "\xad\x4a\xfb\x24\x6e\x67\x5f\xdd\x76\xae\x6f\xf1\x9c\xf4\x37\x6c\x67\xa5" "\x76\xbb\xea\xc7\xcd\xdb\xf9\xc6\x02\xb7\xb3\x7f\x76\x33\x97\x55\xf3\x73" "\x3e\x9c\xf5\xd5\x3e\x7e\xb5\xb6\x9f\x06\xea\x7f\xac\x97\xf6\xd3\xfa\x70" "\xd9\x7f\xdf\x94\x65\xd9\xf9\xd9\xcd\x6e\x5e\x66\xce\xba\xb2\xbe\x6c\x4d" "\xc3\x25\x7d\xb3\xcf\xcf\x70\x7e\x44\x56\xef\xa3\x7a\x28\xbd\x33\x1b\x58" "\xd4\x71\xba\x61\x01\xc7\x69\x75\x4e\x6c\x6a\x3c\x4e\x9b\x5f\x13\xf1\xf9" "\xdf\x10\x6e\x37\x30\xcf\x36\xd4\x3f\x4d\x3f\xf8\xdc\xd0\x9c\xe7\x7d\xb1" "\xc7\x69\x54\x7d\xd4\xf3\xbd\x56\x9a\x8f\xc1\x6e\xbf\x56\x7a\xe5\x18\x8c" "\xc7\xc5\xab\xb5\x07\xfd\x5c\xcb\x63\x70\x53\x78\xfc\xcf\x6c\x9e\xff\x18" "\x6c\x79\xec\xb4\x38\x06\xd3\xe3\xae\x3b\x06\x37\x76\x3a\x06\xfb\x86\xfa" "\x6b\xdb\x9c\x9e\x84\x4a\xed\x36\xb3\xc7\xe0\xb6\x86\xe5\xfb\x6b\x6b\xaa" "\xd4\xe6\x6b\x9b\xdb\x1f\x83\x63\x67\x8e\x9f\x1a\x9b\x7e\xea\xe9\x5b\xa6" "\x8e\x1f\x3a\x3a\x79\x74\xf2\xc4\x8e\x6d\xdb\xc6\x77\xec\xda\xb5\x67\xcf" "\x9e\xb1\x23\x53\xc7\x26\xc7\xf3\xbf\x2f\x73\x6f\xf7\xbe\x35\x59\x5f\x7a" "\x0d\x6c\x0c\xfb\x2e\xbe\x06\x3e\xd0\xb4\x6c\xfd\xa1\x3a\xf3\xf5\xee\xbd" "\x0e\x87\xdb\xbc\x0e\xd7\x36\x2d\xdb\xed\xd7\xe1\x40\xf3\x83\xab\x2c\xcf" "\x0b\x72\xee\x31\x9d\xbf\x36\x1e\xaa\xee\xf4\xe1\x0b\x7d\xd9\x3c\xaf\xb1" "\xda\xf3\xb3\x75\xe9\xaf\xc3\xf4\xb8\xeb\x5e\x87\x03\x75\xaf\xc3\x96\x5f" "\x53\x5a\xbc\x0e\x07\x16\xf0\x3a\xac\x2e\x73\x6a\x6b\xd3\xf7\x2c\x59\xeb" "\xef\x59\x06\xea\xfe\xb4\xda\x86\xb7\xea\x6b\xc1\xda\xba\x63\xb0\xf9\xfb" "\x91\xe6\x63\xb0\xdb\xdf\x8f\xf4\xca\x31\x38\x1c\x8e\x8b\x7f\xdd\x3a\xff" "\xd7\x82\xf5\x61\x7b\x9f\x1b\x5d\xec\xf7\x23\xfd\x73\x8e\xc1\xf4\x70\xc3" "\x7b\x4f\xf5\x92\xf4\xfd\xfe\xf0\x9e\xda\x68\x75\x5c\xde\x50\xbd\xe2\xaa" "\xa1\xec\xec\xf4\xe4\xe9\x5b\x9f\x3c\x74\xe6\xcc\xe9\x6d\x59\x18\xcb\xe2" "\x5d\x75\xc7\x4a\xf3\xf1\xba\xa6\xee\x31\x65\x73\x8e\xd7\xbe\x45\x1f\xaf" "\xfb\xa7\xde\xf7\xdc\x0d\x2d\x2e\x5f\x1b\xf6\xd5\xf0\x2d\xd5\xbf\x86\xe7" "\x7d\xae\xaa\xcb\xec\xbc\xb5\xfd\x73\x55\xfb\xea\xd6\x7a\x7f\x36\x5c\xba" "\x3d\x0b\xa3\xcb\x96\x7b\x7f\xb6\xfa\x6a\x5e\xdd\x9f\x29\x4b\xb6\xd9\x9f" "\xd5\x65\x3e\x3f\xb6\xf4\xef\xc5\x53\x2e\xad\x7b\xff\x1d\x9c\xe7\xfd\x37" "\xe6\xfe\x37\xf3\xf5\xa5\xbb\x7a\xb6\x7f\x70\x20\x7f\xfd\xf6\xa7\xbd\x33" "\xd8\xf0\x7e\xdc\xf8\x54\x0d\xd4\xde\xbb\x2a\xb5\x75\xbf\x31\xb6\xb0\xf7" "\xe3\xc1\xf0\x67\xb9\xdf\x8f\xaf\x6d\xf3\x7e\xbc\xae\x69\xd9\x6e\xbf\x1f" "\x0f\x36\x3f\xb8\xf8\x7e\x5c\xe9\xf4\xd3\x8e\xa5\x69\x7e\x3e\x87\xc3\x71" "\x72\x6c\xbc\xfd\xfb\x71\x75\x99\x75\xdb\x17\x7b\x4c\x0e\xb4\x7d\x3f\xbe" "\x29\xcc\x4a\xd8\xff\x1f\x0c\x49\x21\xe5\xa2\xba\x63\x67\xbe\xe3\x36\xad" "\x6b\x60\x60\x30\x3c\xae\x81\xb8\x86\xc6\xe3\x74\x47\xc3\xf2\x83\x21\x9b" "\x55\xd7\xf5\xd2\xf6\xcb\x3b\x4e\xb7\xdc\x94\xdf\x57\x7f\x7a\x74\xb3\x96" "\xeb\x38\x1d\x69\x5a\xb6\xdb\xc7\x69\x7a\xbf\x9a\xef\x38\xad\x74\xfa\xe9" "\xdb\xe5\x69\x7e\x3e\x87\xc3\x71\x71\xed\x8e\xf6\xc7\x69\x75\x99\x57\x76" "\x2e\xfd\xbd\x73\x75\xfc\xb0\xee\xbd\x73\xa8\xd3\x31\x38\xd8\x3f\x54\xdd" "\xe6\xc1\x74\x10\xe6\xef\xf7\x33\xab\xe3\x31\x78\x6b\x76\x38\x3b\x99\x1d" "\xcb\x26\x6a\xd7\x0e\xd5\x8e\xa7\x4a\x6d\x5d\xa3\xb7\x2d\xec\x18\x1c\x0a" "\x7f\x96\xfb\xbd\x72\x5d\x9b\x63\x70\x4b\xd3\xb2\xdd\x3e\x06\xd3\xd7\xb1" "\xf9\x8e\xbd\xca\xc0\xdc\x07\xdf\x05\xcd\xcf\xe7\x70\x38\x2e\x5e\xb8\xad" "\xfd\x31\x58\x5d\xe6\xce\xdd\xdd\xfd\xde\x75\x4b\xb8\x24\x2d\x53\xf7\xbd" "\x6b\xf3\xcf\xd7\xe6\xfb\x99\xd7\x0d\x4d\xbb\xe9\xad\xfc\x99\x57\x75\x3b" "\xff\x66\x77\xfb\x9f\xcd\x56\x97\x39\xb6\x67\xb1\x39\xb3\xfd\x7e\xba\x39" "\x5c\x72\x55\x8b\xfd\xd4\xfc\xfa\x9d\xef\x35\x35\x91\x2d\xcf\x7e\x5a\x17" "\xb6\xf3\xd2\x9e\xf9\xf7\x53\x75\x7b\xaa\xcb\x7c\x65\xef\x02\x8f\xa7\xfd" "\x59\x96\x9d\x7b\xe2\x8e\xda\xcf\x7b\xc3\xbf\xaf\xfc\xf9\xd9\xef\x7e\xab" "\xe1\xdf\x5d\x5a\xfd\x9b\xce\xb9\x27\xee\x78\xfd\xea\x23\x7f\xbb\x98\xed" "\x07\x60\xe5\x7b\x33\x1f\x6b\xf2\xaf\x75\x75\xff\x32\xb5\x90\x7f\xff\x07" "\x00\x00\x00\x56\x84\x98\xfb\xfb\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8c\x98" "\xfb\xe3\xff\x0a\x4f\xe4\x7f\x00\x00\x00\x28\x8c\x98\xfb\x07\xc2\x4c\x4a" "\x92\xff\xd7\xdd\x79\x69\xea\xcd\x73\x59\x6a\xe6\xcf\x04\xf1\xfa\xb4\x1b" "\xee\xcd\x97\x8b\x1d\xd7\xf1\xf0\xf9\xc8\xcc\xac\xea\xe5\x77\xbc\x38\xf9" "\xe3\xbf\x3c\xb7\xb0\x75\xf7\x65\x59\xf6\x93\x7b\x7f\xbd\xe5\xf2\xeb\xee" "\x8d\xdb\x95\x1b\x09\xdb\x79\xf1\xae\xc6\xcb\xe7\xde\xf0\xdc\x82\xd6\x7f" "\xf0\xe1\xd9\xe5\xea\xfb\xeb\x5f\x0b\xf7\x1f\x1f\xcf\x42\x0f\x83\x56\x15" "\xdc\xf1\x2c\xcb\x5e\xbe\xe6\xf9\xda\x7a\x46\x1e\xbd\x50\x9b\xaf\xdc\x7b" "\xb0\x36\x1f\x38\xff\xdc\xb3\xd5\x65\xde\xd8\x9b\x7f\x1e\x6f\xff\xda\xbb" "\xf2\xe5\x7f\x3f\x94\x7f\xf7\x1f\x39\xd4\x70\xfb\xd7\xc2\x7e\xf8\x7e\x98" "\xe3\xf7\xb5\xde\x1f\xf1\x76\xdf\xbc\xf0\xc1\xf5\xbb\x1f\x99\x5d\x5f\xbc" "\x5d\x65\xe3\xdb\x6b\x0f\xfb\x85\xc7\xf2\xfb\x8d\xbf\x27\xe7\xcb\xcf\xe6" "\xcb\xc7\xfd\x3c\xdf\xf6\xff\xd5\x97\x5e\xfa\x66\x75\xf9\x27\xdf\xdf\x7a" "\xfb\xcf\xf5\xb5\xde\xfe\x97\xc2\xfd\xbe\x18\xe6\xff\xbc\x37\x5f\xbe\xfe" "\x39\xa8\x7e\x1e\x6f\xf7\x85\xb0\xfd\x71\x7d\xf1\x76\xb7\x7e\xe3\x3b\x2d" "\xb7\xff\xe2\x17\xf3\xe5\x4f\xdd\x9d\x2f\x77\x30\xcc\xb8\xfe\x2d\xe1\xf3" "\x4d\x77\x5f\x9a\xaa\xdf\x5f\x4f\x56\x0e\x35\x3c\xae\xec\xa3\xf9\x72\x71" "\xfd\xe3\xdf\xfd\xed\xda\xf5\xf1\xfe\xe2\xfd\x37\x6f\xff\xf0\x81\x0b\x0d" "\xfb\xa3\xf9\xf8\x78\xe5\x9f\xf3\xfb\x19\x6b\x5a\x3e\x5e\x1e\xd7\x13\xfd" "\x45\xd3\xfa\xab\xf7\x53\x7f\x7c\xc6\xf5\xbf\xf4\x9b\x07\x1b\xf6\x73\xa7" "\xf5\x5f\x7c\xe0\xb5\xf7\x56\xef\xb7\x79\xfd\x37\x37\x2d\xd7\xdf\x74\xfb" "\xe6\xdf\xd8\xf4\x07\x5f\x78\xbe\xe5\xfa\xe2\xf6\xec\xff\xd3\x53\x0d\x8f" "\x67\xff\xfd\xe1\x75\x1c\xd6\xff\xc2\x63\xe1\x78\x0c\xd7\xff\xef\xc5\xe7" "\x1b\xd6\x1b\x1d\xbc\xbf\xf1\xfd\x27\x2e\xff\xb5\xb5\xe7\x1a\x1e\x4f\x74" "\xcf\x8f\xf2\xf5\x5f\xbc\xfd\x68\x6d\xfe\xc7\xc8\x8f\x7f\xef\xaa\xb7\x5d" "\xfd\xf6\xf3\x37\x56\xf7\x5d\x96\xbd\xfa\x60\x7e\x7f\x9d\xd6\x7f\xf4\x0f" "\x4f\x36\x6c\xff\xd7\xaf\xdb\x5a\x7b\x3e\xe2\xf5\xb1\xa3\xdf\xbc\xfe\xf9" "\xc4\xf5\x9f\xfe\xec\xe8\x89\x93\xd3\x67\xa7\x26\xea\xf6\x6a\xed\x77\xe7" "\x7c\x2c\xdf\x9e\x55\xc3\xab\xd7\x54\xb7\xf7\x9a\xf0\xde\xda\xfc\xf9\x81" "\x93\x67\x1e\x9f\x3c\x3d\x32\x3e\x32\x9e\x65\x23\xc5\xfd\x15\x7a\x97\xed" "\x1b\x61\xbe\x9e\x8f\xf3\x8b\xbd\xfd\xd6\x87\xc3\xf3\x79\xc3\x57\x5f\x5e" "\xb3\xf9\x9f\xbe\x14\x2f\xff\x97\x87\xf2\xcb\x2f\xdc\x97\x7f\xdd\xfa\x40" "\x58\xee\xcb\xe1\xf2\xb5\xf9\xf3\x37\x53\x59\xe2\xfa\x5f\xd8\x70\x5d\xed" "\xf5\x5d\x79\x25\xff\xbc\xa1\xc7\xde\x05\xeb\x37\xfd\xe7\x9e\x05\x2d\x18" "\x1e\x7f\xf3\xf7\x05\xf1\x78\x3f\xf5\xee\xc7\x6b\xfb\xa1\x7a\x5d\xed\xeb" "\x46\x7c\x5d\x2f\x71\xfb\xbf\x37\x91\xdf\xcf\xb7\xc3\x7e\x9d\x09\xbf\x99" "\x79\xe3\x75\xb3\xeb\xab\x5f\x3e\xfe\x6e\x84\x0b\x0f\xe6\xaf\xf7\x25\xef" "\xbf\xf0\x36\x17\x9f\xd7\x3f\x0e\xcf\xf7\xc7\xbf\x9f\xdf\x7f\xdc\xae\xf8" "\x78\xbf\x17\xbe\x8f\xf9\xce\xba\xc6\xf7\xbb\x78\x7c\x7c\xfb\x5c\x5f\xf3" "\xfd\xd7\x7e\x8b\xc7\xf9\xf0\x7e\x92\x9d\xcf\xaf\x8f\x4b\xc5\xfd\x7d\xe1" "\x8d\xeb\x5a\x6e\x5e\xfc\x3d\x24\xd9\xf9\xeb\x6b\x9f\xff\x4e\xba\x9f\xeb" "\x17\xf5\x30\xe7\x33\xfd\xd4\xf4\xd8\xb1\xa9\x13\x67\x9f\x1c\x3b\x33\x39" "\x7d\x66\x6c\xfa\xa9\xa7\x0f\x1c\x3f\x79\xf6\xc4\x99\x03\xb5\xdf\xe5\x79" "\xe0\xd3\x9d\x6e\x3f\xfb\xfe\xb4\xa6\xf6\xfe\x34\x31\xb9\x6b\x67\x36\xbe" "\x3a\xcb\xb2\x93\xd9\xf8\x32\xbc\x61\xbd\x35\xdb\x5f\xfd\x68\x61\xdb\x7f" "\xea\xe1\xc3\x13\xbb\xc7\x37\x4f\x4c\x1e\x39\x74\xf6\xc8\x99\x87\x4f\x4d" "\x9e\x3e\x7a\x78\x7a\xfa\xf0\xe4\xc4\xf4\xe6\x43\x47\x8e\x4c\x7e\xb6\xd3" "\xed\xa7\x26\xf6\x6d\xdb\xbe\x77\xc7\xee\xed\xa3\x47\xa7\x26\xf6\xed\xd9" "\xbb\x77\xc7\xde\xd1\xa9\x13\x27\xab\x9b\x91\x6f\x54\x07\xbb\xc6\x3f\x33" "\x7a\xe2\xf4\x81\xda\x4d\xa6\xf7\xed\xdc\xbb\xed\xb6\xdb\x76\x8e\x8f\x1e" "\x3f\x39\x31\xb9\x6f\xf7\xf8\xf8\xe8\xd9\x4e\xb7\xaf\x7d\x6d\x1a\xad\xde" "\xfa\xd7\x46\x4f\x4f\x1e\x3b\x74\x66\xea\xf8\xe4\xe8\xf4\xd4\xd3\x93\xfb" "\xb6\xed\xdd\xb5\x6b\x7b\xc7\xdf\x06\x78\xfc\xd4\x91\xe9\x91\xb1\xd3\x67" "\x4f\x8c\x9d\x9d\x9e\x3c\x3d\x96\x3f\x96\x91\x33\xb5\x8b\xab\x5f\xfb\x3a" "\xdd\x9e\x62\x9a\xfe\xb7\xfc\xfb\xd9\x66\x95\xfc\x17\xf1\x65\x9f\xb8\x79" "\x57\xfa\xfd\xac\x55\x2f\x7e\x6e\xde\xbb\xca\x17\x69\xfa\x05\xa2\x97\xc2" "\xef\xa2\xf9\x87\x77\x9c\xda\xb3\x90\xcf\x63\xee\x1f\x0c\x33\x29\x49\xfe" "\x07\x00\x00\x80\x32\x88\xb9\x7f\x28\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88" "\xb9\x7f\x55\x98\x89\xfc\x0f\x00\x00\x00\x85\x11\x73\xff\x70\x98\x49\x49" "\xf2\xbf\xfe\xbf\xfe\xff\xc2\xfa\xff\xf9\xf5\xfa\xff\xe5\xea\xff\x9f\x7a" "\x22\xef\x95\xae\xf4\xfe\x7f\xec\xcf\xeb\xff\x97\xc3\x15\xee\xff\x2f\x79" "\xfd\x5d\xe8\xff\xdf\xd8\xee\xca\x45\xf6\xff\x7f\xeb\xcf\xf4\xff\xf5\xff" "\x97\xb1\x3f\xbf\x24\x7d\x57\x7e\xfb\xf5\xff\xf5\xff\x99\xab\xd7\xfa\xff" "\x31\xf7\xaf\xce\xb2\x52\xe6\x7f\x00\x00\x00\x28\x83\x98\xfb\xd7\x84\x99" "\xc8\xff\x00\x00\x00\x50\x18\x31\xf7\x5f\x15\x66\x22\xff\x03\x00\x00\x40" "\x61\xc4\xdc\xff\xb6\x30\x93\x92\xe4\x7f\xfd\xff\x05\xf5\xff\xb7\x77\x2a" "\x5c\x15\xbf\xff\xef\xfc\xff\xfa\xff\xd9\xca\xec\xff\xc7\x27\x47\xff\xbf" "\x34\x16\xdd\xbf\x7f\xe4\xa1\x86\x4f\x0b\xd0\xff\x6f\xcb\xf9\xff\x3b\xd0" "\xff\x5f\xb9\xfd\xff\x1e\xd8\x7e\xfd\x7f\xfd\x7f\x9a\x0d\xce\x7b\xcd\x95" "\xea\xff\xc7\xdc\x7f\x75\x98\x49\x49\xf2\x3f\x00\x00\x00\x94\x41\xcc\xfd" "\x6f\x0f\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee\xbf\x26\xcc\x44\xfe\x07" "\x00\x00\x80\xc2\x88\xb9\x7f\x6d\x98\x49\x49\xf2\xbf\xfe\xbf\xf3\xff\xeb" "\xff\xeb\xff\x17\xba\xff\xbf\xd4\xf3\xff\xd7\x6d\x8c\xfe\xff\xca\xe0\xfc" "\xff\xed\xe9\xff\x77\x70\xd9\xfd\xff\x61\xfd\xff\x95\xd8\xff\x1f\xec\xee" "\xf6\xf7\x76\xff\xbf\xe3\xe6\x77\xb3\xff\x3f\x94\xe9\xff\x13\xf4\xda\xf9" "\xff\x63\xee\x7f\x47\x98\x49\x49\xf2\x3f\x00\x00\x00\x94\x41\xcc\xfd\xef" "\x0c\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee\x7f\x57\x98\x89\xfc\x0f\x00" "\x00\x00\x85\x11\x73\xff\xb5\x61\x26\x25\xc9\xff\xfa\xff\xfa\xff\xfa\xff" "\xfa\xff\xfa\xff\xad\xd7\xdf\xf9\xfc\xff\xf9\x47\xfa\xff\xbd\x45\xff\xbf" "\x3d\xfd\xff\x0e\x9c\xff\xbf\x5c\xfd\xff\x2e\x6f\x7f\x6f\xf7\xff\xbb\x7d" "\xfe\xff\xc1\xbb\x9a\x6f\xef\xfc\xff\xb4\xd2\x6b\xfd\xff\x98\xfb\xdf\x1d" "\x66\x52\x92\xfc\x0f\x00\x00\x00\x65\x10\x73\xff\x75\x61\x26\xf2\x3f\x00" "\x00\x00\x14\x46\xcc\xfd\xef\x09\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee" "\x5f\x17\x66\x52\x92\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x7a" "\xfd\x9d\xfb\xff\x39\xfd\xff\xde\xa2\xff\xdf\x9e\xfe\x7f\x07\xfa\xff\xfa" "\xff\xfa\xff\x0b\xeb\xff\xb7\xf8\xe6\x57\xff\x9f\x56\x7a\xad\xff\x1f\x73" "\xff\xf5\x61\x26\x25\xc9\xff\x00\x00\x00\x50\x06\x31\xf7\xdf\x10\x66\x22" "\xff\x03\x00\x00\x40\x61\xc4\xdc\xff\x53\x61\x26\xf2\x3f\x00\x00\x00\x14" "\x46\xcc\xfd\xeb\xc3\x4c\x4a\x92\xff\xd7\xdd\x79\xe9\x91\xaf\xd6\x3e\xd2" "\xff\xcf\xf4\xff\xf5\xff\x4b\xd0\xff\xbf\x79\x48\xff\x5f\xff\xbf\xd8\xf4" "\xff\xdb\xd3\xff\xef\x40\xff\x5f\xff\x5f\xff\x7f\x81\xe7\xff\x9f\x6b\x31" "\xfd\xff\x55\x9d\xee\x8c\xc2\xe8\xb5\xfe\x7f\xcc\xfd\xef\x0d\x33\x29\x49" "\xfe\x07\x00\x00\x80\x32\x88\xb9\xff\x7d\x61\x26\xf2\x3f\x00\x00\x00\x14" "\x46\xcc\xfd\x37\x86\x99\xc8\xff\x00\x00\x00\x50\x18\x31\xf7\x8f\x84\x99" "\xac\xbc\xfc\xff\xc9\xbe\xcb\xb8\x91\xf3\xff\x17\xab\xff\xff\x27\x7f\xfd" "\xc2\x8d\x99\xfe\xbf\xfe\x7f\x87\xf5\x17\xb4\xff\x1f\x0f\x03\xfd\xff\x92" "\xd3\xff\x6f\x4f\xff\xbf\x03\xfd\x7f\xfd\x7f\xfd\xff\x65\xe9\xff\x53\x1e" "\xbd\xd6\xff\x8f\xb9\x7f\x43\x98\xc9\xca\xcb\xff\x00\x00\x00\xc0\x3c\x62" "\xee\xdf\x18\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\x7f\x53\x98\x89\xfc" "\x0f\x00\x00\x00\x85\x11\x73\xff\xa6\x30\x93\x92\xe4\x7f\xfd\xff\x62\xf5" "\xff\x23\xfd\x7f\xfd\xff\x76\xeb\x2f\x68\xff\x3f\xd1\xff\x2f\x37\xfd\xff" "\x16\xea\x5e\xa4\x2b\xa4\xff\x3f\xa2\xff\xaf\xff\xbf\x12\xb7\xbf\x18\xfd" "\xff\xf8\xdd\xaf\xfe\x3f\xdd\xd1\x6b\xfd\xff\x98\xfb\xdf\x1f\x66\x52\x92" "\xfc\x0f\x00\x00\x00\x65\x10\x73\xff\xe6\x30\x13\xf9\x1f\x00\x00\x00\x0a" "\x23\xe6\xfe\x0f\x84\x99\xc8\xff\x00\x00\x00\x50\x18\x31\xf7\x6f\x09\x33" "\x29\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xbf\x52\xfd\xff\x21\xfd\xff" "\xb4\x57\xf5\xff\xbb\x47\xff\xbf\xbd\xc5\xf6\xff\x87\x9c\xff\x5f\xff\x5f" "\xff\xbf\x64\xfd\x7f\xe7\xff\xa7\xbb\x7a\xad\xff\x1f\x73\xff\x07\xc3\x4c" "\x4a\x92\xff\x01\x00\x00\xa0\x0c\x62\xee\xdf\x1a\x66\x22\xff\x03\x00\x00" "\x40\x61\xc4\xff\xbf\x99\xff\xbf\x57\xf9\x1f\x00\x00\x00\x8a\x28\xe6\xfe" "\xd1\x30\x93\x92\xe4\xff\x25\xf4\xff\x67\xfa\xf5\xff\x13\xfd\xff\xc6\xed" "\xef\xd5\xfe\x7f\x45\xff\xbf\xa7\xfa\xff\xce\xff\x3f\xbb\x57\xf5\xff\xbb" "\x47\xff\xbf\xbd\x15\x72\xfe\x7f\xfd\xff\x1e\xea\xff\x57\x2f\xd7\xff\xd7" "\xff\xd7\xff\xe7\x72\xf5\x5a\xff\x3f\xe6\xfe\x5b\xc2\x4c\x4a\x92\xff\x01" "\x00\x00\xa0\x0c\x62\xee\xbf\x35\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9" "\x7f\x2c\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9\x7f\x3c\xcc\xa4\x24\xf9" "\xdf\xf9\xff\x4b\xd7\xff\x5f\x55\xe6\xfe\xbf\xf3\xff\xeb\xff\xeb\xff\x17" "\x9f\xfe\x7f\x7b\xfa\xff\x1d\xe8\xff\x3b\xff\x7f\xd1\xfa\xff\x59\xa6\xff" "\xcf\x15\xd5\x6b\xfd\xff\x98\xfb\xb7\x85\x99\x94\x24\xff\x03\x00\x00\x40" "\x19\xc4\xdc\xbf\x3d\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9\x7f\x47\x98" "\x89\xfc\x0f\x00\x00\x00\x85\x11\x73\xff\xce\x30\x93\x92\xe4\x7f\xfd\xff" "\xd2\xf5\xff\x4b\x7d\xfe\x7f\xfd\x7f\xfd\x7f\xfd\xff\xe2\xd3\xff\x6f\x4f" "\xff\xbf\x03\xfd\x7f\xfd\xff\xa2\xf5\xff\x9d\xff\x9f\x2b\xac\xd7\xfa\xff" "\x31\xf7\xdf\x16\x66\x52\x92\xfc\x0f\x00\x00\x00\x65\x10\x73\xff\xae\x30" "\x13\xf9\x1f\x00\x00\x00\x0a\x23\xe6\xfe\xdd\x61\x26\x21\xff\xb7\xfa\x7f" "\xdd\x00\x00\x00\xc0\xca\x12\x73\xff\x9e\x30\x93\x92\xfc\xfb\xbf\xfe\x7f" "\x41\xfa\xff\xbf\xf1\xf7\x0d\xeb\xd6\xff\xd7\xff\x6f\xb7\xfe\xee\xf4\xff" "\x57\xeb\xff\x87\xa9\xff\xdf\x5b\x0a\xda\xff\x6f\x7e\x59\x5c\x36\xfd\xff" "\x0e\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xaa\x5e\xeb\xff\xc7\xdc\xbf\x37" "\xcc\xa4\x24\xf9\x1f\x00\x00\x00\xca\x20\xe6\xfe\x0f\x85\x99\xc8\xff\x00" "\x00\x00\x50\x18\x31\xf7\xff\x74\x98\x89\xfc\x0f\x00\x00\x00\x85\x11\x73" "\xff\xcf\x84\x99\x94\x24\xff\xeb\xff\x17\xa4\xff\xdf\x44\xff\x5f\xff\xbf" "\xdd\xfa\x9d\xff\x5f\xff\xbf\xc8\x0a\xda\xff\xef\x9a\x42\xf5\xff\xfb\xf4" "\xff\xf5\xff\x7b\x6b\xfb\xf5\xff\xf5\xff\x99\xeb\xad\xef\xff\xc7\x8f\x16" "\xd6\xff\x8f\xb9\x7f\x5f\x98\x49\x49\xf2\x3f\x00\x00\x00\x94\x41\xcc\xfd" "\x3f\x1b\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\x7f\x7b\x98\x89\xfc\x0f" "\x00\x00\x00\x85\x11\x73\xff\xfe\x30\x93\x92\xe4\x7f\xfd\x7f\xfd\x7f\xfd" "\x7f\xfd\xff\xb7\xa6\xff\x7f\x7b\xd6\xac\x17\xfb\xff\xd5\x83\x67\xd9\xfa" "\xff\x83\xfa\xff\xcb\x41\xff\xbf\xbd\x42\xf5\xff\x9d\xff\x5f\xff\xbf\xc7" "\xb6\x5f\xff\x5f\xff\x9f\xb9\x7a\xed\xfc\xff\x31\xf7\x7f\x38\xcc\xa4\x24" "\xf9\x1f\x00\x00\x00\xca\x20\xe6\xfe\x3b\xc2\x4c\xe4\x7f\x00\x00\x00\x28" "\x8c\x98\xfb\x3f\x12\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\x7f\x67\x98" "\x49\x49\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xf3\xff\xb7\x5e\xbf\xf3" "\xff\xaf\x4c\xfa\xff\xed\xe9\xff\x77\xa0\xff\xaf\xff\xaf\xff\xaf\xff\x4f" "\x57\xf5\x5a\xff\x3f\xe6\xfe\xbb\xc2\x4c\x4a\x92\xff\x01\x00\x00\xa0\x0c" "\x62\xee\xbf\x3b\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9\xff\xa3\x61\x26" "\xf2\x3f\x00\x00\x00\x14\x46\xcc\xfd\xf7\x84\x99\x94\x24\xff\xeb\xff\xeb" "\xff\xeb\xff\xeb\xff\xeb\xff\xb7\x5e\xbf\xfe\xff\xca\xa4\xff\xdf\x9e\xfe" "\x7f\x07\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x74\x55\xaf\xf5\xff\x63\xee\xff" "\xb9\x30\x93\x92\xe4\x7f\x00\x00\x00\x28\x83\x98\xfb\xef\x0d\x33\x91\xff" "\x01\x00\x00\xa0\x30\x62\xee\xbf\x2f\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88" "\xb9\xff\x63\x61\x26\x25\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff" "\xad\xd7\xaf\xff\xbf\x32\xe9\xff\xb7\xa7\xff\xdf\x81\xfe\xbf\xfe\xbf\xfe" "\xbf\xfe\x3f\x5d\xd5\x6b\xfd\xff\x98\xfb\x3f\x1e\x66\x52\x92\xfc\x0f\x00" "\x00\x00\x65\x10\x73\xff\xcf\x87\x99\xc8\xff\x00\x00\x00\x50\x18\x31\xf7" "\x7f\x22\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9\xff\x17\xc2\x4c\x4a\x92" "\xff\xf5\xff\xf5\xff\x7b\xab\xff\x3f\x73\xae\xfe\x76\xfa\xff\xfa\xff\x59" "\xb7\xfa\xff\xd5\x1b\xe9\xff\x97\x82\xfe\x7f\x7b\xfa\xff\x1d\xb4\xe8\xff" "\xaf\xd2\xff\xd7\xff\xd7\xff\xd7\xff\xe7\xb2\xf5\x5a\xff\x3f\xe6\xfe\xfb" "\xc3\x4c\x4a\x92\xff\x01\x00\x00\xa0\x0c\x62\xee\x7f\x20\xcc\x44\xfe\x07" "\x00\x00\x80\xc2\x88\xb9\xff\xc1\x30\x13\xf9\x1f\x00\x00\x00\x0a\x23\xe6" "\xfe\x87\xc2\x4c\x4a\x92\xff\xf5\xff\x4b\xd9\xff\x4f\x0f\xb9\xf7\xfa\xff" "\xce\xff\xaf\xff\xef\xfc\xff\xfa\xff\x4b\xa3\xff\xdf\x9e\xfe\x7f\x07\xce" "\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x57\xf5\x5a\xff\x3f\xe6\xfe\x87\xc3\x4c" "\x4a\x92\xff\x01\x00\x00\xa0\x0c\x62\xee\x7f\x24\xcc\x44\xfe\x07\x00\x00" "\x80\xc2\x88\xb9\xff\x93\x61\x26\xf2\x3f\x00\x00\x00\x14\x46\xcc\xfd\x9f" "\x0a\x33\x29\x49\xfe\xd7\xff\x2f\x65\xff\xbf\x87\xcf\xff\x7f\xe5\xfa\xff" "\xd5\xc7\xd0\xfd\xfe\xff\x40\xc3\xf1\x51\xa6\xfe\xff\x70\xdd\xf3\x99\x8e" "\x4b\xfd\x7f\xfd\xff\x65\xa0\xff\xdf\x9e\xfe\x7f\x07\xfa\xff\xa1\x3f\x9f" "\xf5\xe9\xff\xf7\x60\xff\x3f\x1c\xcd\xab\xe7\xb9\xbd\xfe\x3f\xbd\xa8\xd7" "\xfa\xff\x31\xf7\x3f\x1a\x66\x52\x92\xfc\x0f\x00\x00\x00\x65\x10\x73\xff" "\x2f\x86\x99\xc8\xff\x00\x00\x00\x50\x18\x31\xf7\xff\x52\x98\x89\xfc\x0f" "\x00\x00\x00\x85\x11\x73\xff\x2f\x87\x99\x94\x24\xff\xeb\xff\xeb\xff\xeb" "\xff\x3b\xff\xbf\xf3\xff\xb7\x5e\xbf\xfe\xff\xca\xa4\xff\xdf\x9e\xfe\x7f" "\x07\xfa\xff\xce\xff\xdf\xcb\xfd\xff\x0e\xf4\xff\xe9\x45\xbd\xd6\xff\x8f" "\xb9\xff\x57\xc2\x4c\xe6\x0d\x7e\xaf\xff\xd7\x02\x1e\x26\x00\x00\x00\xd0" "\x43\x62\xee\x7f\x2c\xcc\xa4\x24\xff\xfe\x0f\x00\x00\x00\x65\x10\x73\xff" "\x81\x30\x13\xf9\x1f\x00\x00\x00\x0a\x23\xe6\xfe\x83\x61\x26\x25\xc9\xff" "\xfa\xff\xcd\xfd\xff\x78\x46\x55\xfd\x7f\xfd\xff\x15\xd7\xff\x1f\xd0\xff" "\xcf\xe9\xff\x97\x5b\xf7\xfa\xff\xef\xb9\x3a\xcb\xf4\xff\xf5\xff\xf5\xff" "\xf5\xff\xf5\xff\xf5\xff\x59\x8a\x5e\xeb\xff\xc7\xdc\x7f\x28\xcc\xa4\x24" "\xf9\x1f\x00\x00\x00\xca\x20\xe6\xfe\x5f\x0d\x33\x91\xff\x01\x00\x00\xa0" "\x30\x62\xee\x3f\x1c\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\x3f\x11\x66" "\x52\x92\xfc\xaf\xff\xef\xfc\xff\xdd\xea\xff\xff\x44\xff\xff\x4a\xf7\xff" "\x9d\xff\x3f\xd0\xff\x2f\x37\xe7\xff\x6f\x4f\xff\xbf\x03\xfd\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\xba\xaa\xd7\xfa\xff\x31\xf7\x4f\x86\x99\x94\x24\xff\x03" "\x00\x00\x40\x81\xa5\x1f\x07\xc7\xdc\x7f\x24\xcc\x44\xfe\x07\x00\x00\x80" "\xc2\x88\xb9\xff\x68\x98\x89\xfc\x0f\x00\x00\x00\x85\x11\x73\xff\xe3\x61" "\x26\x25\xc9\xff\xfa\xff\xfa\xff\xce\xff\x7f\x25\xfa\xff\x03\x0d\xcb\xeb" "\xff\xe7\xf4\xff\xf5\xff\xbb\x41\xff\xbf\x3d\xfd\xff\x0e\xf4\xff\xf5\xff" "\xf5\xff\xf5\xff\xe9\xaa\x5e\xeb\xff\xc7\xdc\x3f\x15\x66\x52\x92\xfc\x0f" "\x00\x00\x00\x65\x10\x73\xff\xa7\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8c\x98" "\xfb\x3f\x13\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\x7f\x2c\xcc\xa4\x24" "\xf9\x5f\xff\x5f\xff\xbf\xec\xfd\xff\x4a\x96\x9d\x77\xfe\x7f\xfd\xff\x56" "\xeb\xd7\xff\x5f\x99\xf4\xff\xdb\xd3\xff\xef\x40\xff\x5f\xff\x5f\xff\x5f" "\xff\x9f\xae\xea\xb5\xfe\xff\xff\xb3\x77\x1f\xcf\x75\x9d\xe7\x1d\xc7\xaf" "\x28\x8a\x04\xb2\x48\xf2\x27\x64\x9d\x55\x96\xc9\x4a\xd9\x64\x9f\x6d\x76" "\x99\xf1\x5a\xae\x72\x2f\x94\xdc\xbb\x2d\x57\x59\xee\x72\xef\xbd\xca\x45" "\xee\xbd\x77\xcb\x45\xee\xbd\xca\x55\xf6\x0c\x3d\x02\x9f\xe7\x21\x01\x5c" "\x9c\x03\x12\x87\xb8\xe7\xbc\xef\xe7\xb3\x79\x42\x46\x14\x2e\x4c\x26\x99" "\x5f\x38\xdf\x79\x73\xf7\x5f\x13\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9" "\xfb\xef\x1e\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xf7\x88\x5b\xec\x7f" "\x00\x00\x00\x68\x46\xee\xfe\x7b\xc6\x2d\x9d\xec\x7f\xfd\xbf\xfe\xbf\xf7" "\xfe\x7f\xb5\x91\xf7\xff\x77\xff\xf3\xfa\xff\x73\xf4\xff\xfa\xff\x29\xec" "\xeb\xef\x4f\x5e\xdc\xaf\x3f\xb0\xff\xff\x8f\xff\xbc\xf6\xff\xf5\xff\xfa" "\x7f\xfd\xff\x20\xfd\xbf\xfe\x5f\xff\xcf\x5e\x73\xeb\xff\x73\xf7\xdf\x2b" "\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\xdf\x3b\x6e\xb1\xff\x01\x00" "\x00\xa0\x19\xb9\xfb\xef\x13\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xd7" "\xc6\x2d\x9d\xec\x7f\xfd\xbf\xfe\xbf\x8f\xfe\xff\xe4\x4a\xff\x7f\xc8\xfe" "\xff\x56\xfd\xbf\xfe\x7f\xd9\xbc\xff\x3f\x4c\xff\x3f\x42\xff\xaf\xff\xd7" "\xff\xeb\xff\x99\xd4\xdc\xfa\xff\xdc\xfd\xf7\x8d\x5b\x3a\xd9\xff\x00\x00" "\x00\xd0\x83\xdc\xfd\xf7\x8b\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xfb" "\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x03\xe2\x96\x4e\xf6\xbf\xfe" "\x5f\xff\xdf\x47\xff\xdf\xc2\xfb\xff\xa7\xbc\xff\xbf\xe7\xfb\xd1\xff\xeb" "\xff\xd7\xd1\xff\x0f\xd3\xff\x8f\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x26\x35" "\xb7\xfe\x3f\x77\xff\x03\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff" "\x83\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xc1\x71\x8b\xfd\x0f\x00" "\x00\x00\xcd\xc8\xdd\xff\x90\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xeb\xff\x97" "\xd2\xff\x1f\xd3\xfb\xff\xfa\x7f\xfd\xff\xc2\xdd\xbc\x3a\xff\xbf\x13\xf4" "\xff\xfb\xe9\xff\x47\x8c\xf4\xff\xab\x95\xfe\x7f\xc8\xa1\xfb\xf9\xf5\xdf" "\xde\x72\x3e\xff\x01\xf4\xff\xfa\x7f\xf6\x9b\x5b\xff\x9f\xbb\xff\xa1\x71" "\xcb\x7f\xaf\x56\xa7\x2e\xf5\x9b\x04\x00\x00\x00\x66\x25\x77\xff\xc3\xe2" "\x96\x4e\xfe\xfe\x1f\x00\x00\x00\x7a\x90\xbb\xff\x4c\xdc\x62\xff\x03\x00" "\x00\x40\x33\x72\xf7\x5f\x17\xb7\x74\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\xbf\xfe\xeb\xeb\xff\x97\xe9\x70\xfd\xfd\xe9\x03\x7f\xbd\xfe\x3f" "\x1c\xd8\xff\xff\xfb\xbf\x5e\x73\xb7\x7e\xfb\x7f\xef\xff\x0f\xf3\xfe\xbf" "\xfe\x5f\xff\xcf\x5e\x73\xeb\xff\x73\xf7\x5f\x1f\xb7\x74\xb2\xff\x01\x00" "\x00\xa0\x07\xb9\xfb\x1f\x1e\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x8f" "\x88\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x47\xc6\x2d\x9d\xec\x7f\xfd" "\x7f\x6b\xfd\xff\x95\xbb\x7e\xdd\x05\xfd\xff\x4e\xed\xa2\xff\xd7\xff\x4f" "\xd5\xff\xdf\xb8\x75\xfe\xf7\x4b\xff\xaf\xff\x9f\x93\xa3\xf6\xf7\xfa\xff" "\xd0\xf5\xfb\xff\xdb\xf5\x43\xfd\xbf\xfe\x5f\xff\xaf\xff\xe7\x68\xe6\xd6" "\xff\xe7\xee\x7f\x54\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x74" "\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x26\x6e\xb1\xff\x01\x00\x00" "\xa0\x19\xb9\xfb\x1f\x1b\xb7\x74\xb2\xff\x17\xd5\xff\x9f\xbd\x52\xff\xef" "\xfd\x7f\xfd\xff\x4c\xfa\xff\x95\xf7\xff\xf5\xff\x33\xa5\xff\x1f\xa6\xff" "\x1f\xd1\xca\xfb\xff\x97\xf8\xa7\x66\xd3\xfd\xfc\x51\x6d\xfa\xf3\xeb\xff" "\xf5\xff\xec\x37\xb7\xfe\x3f\x77\xff\xe3\xe2\x96\x4e\xf6\x3f\x00\x00\x00" "\xf4\x20\x77\xff\xe3\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x09\x71" "\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xc4\xb8\xa5\x93\xfd\xbf\xa8\xfe" "\xdf\xfb\xff\x1d\xf7\xff\xf9\x15\xf4\xff\xfa\xff\xcb\xdf\xff\x27\xfd\xff" "\x32\xe9\xff\x87\xe9\xff\x47\xb4\xd2\xff\x5f\xa2\x4d\xf7\xf3\x4b\xff\xfc" "\xfa\x7f\xfd\x3f\xfb\xcd\xad\xff\xcf\xdd\xff\xa4\xb8\xa5\x93\xfd\x0f\x00" "\x00\x00\x3d\xc8\xdd\xff\xe4\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f" "\x4a\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x35\x6e\xe9\x64\xff\xeb" "\xff\xf5\xff\xcb\xe8\xff\xbd\xff\xaf\xff\xf7\xfe\xbf\xfe\xff\x70\xf4\xff" "\xc3\xf4\xff\x23\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x49\xcd\xad\xff\xcf\xdd" "\x7f\x43\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x5a\xdc\x62\xff" "\x03\x00\x00\x40\x33\x72\xf7\x3f\x3d\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9" "\xfb\x9f\x11\xb7\x74\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\xfe" "\xeb\xeb\xff\x97\x49\xff\x3f\x4c\xff\x3f\x42\xff\xaf\xff\xd7\xff\xeb\xff" "\x99\xd4\x8c\xfa\xff\x0b\x7e\xd5\xd6\xea\x99\x71\x4b\x27\xfb\x1f\x00\x00" "\x00\x7a\x90\xbb\xff\x59\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xec" "\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xbf\x31\x6e\xe9\x64\xff\xeb\xff" "\x67\xd3\xff\xef\xe4\x7c\x6d\xf5\xff\xdb\xab\xd5\xea\x92\xfb\xff\xff\xd1" "\xff\x2f\xbb\xff\xdf\xbe\xe0\xf7\xb3\xfe\x5c\xea\xff\xf5\xff\xc7\x40\xff" "\x3f\x4c\xff\x3f\x42\xff\xaf\xff\xd7\xff\xeb\xff\x99\xd4\x8c\xfa\xff\x9d" "\x1f\xe7\xee\x7f\x4e\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xbf\x29" "\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x9f\x1b\xb7\xd8\xff\x00\x00\x00" "\xd0\x8c\xdc\xfd\xcf\x8b\x5b\x3a\xd9\xff\xfa\xff\xd9\xf4\xff\x3b\xda\xea" "\xff\xbd\xff\xbf\xf7\xcf\x47\x4f\xfd\xbf\xf7\xff\xf7\xd3\xff\x1f\x0f\xfd" "\xff\x30\xfd\xff\x08\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\x52\x73\xeb\xff\x73" "\xf7\x3f\x3f\x6e\x3a\x75\xd5\x25\x7f\x8b\x00\x00\x00\xc0\xcc\xe4\xee\x7f" "\x41\xdc\xd2\xc9\xdf\xff\x03\x00\x00\x40\x0f\x72\xf7\xbf\x30\x6e\xb1\xff" "\x01\x00\x00\x60\xa1\x6e\xd8\xf7\x33\xb9\xfb\x5f\x14\xb7\x74\xb2\xff\xf5" "\xff\xd3\xf6\xff\xa7\x2e\xf8\x39\xfd\xbf\xfe\x7f\xef\x9f\x8f\xf9\xf6\xff" "\x57\xec\xaa\x94\xf5\xff\xe7\xe8\xff\x97\x49\xff\x3f\x4c\xff\x3f\x42\xff" "\xaf\xff\xd7\xff\xeb\xff\x99\xd4\xdc\xfa\xff\xdc\xfd\x2f\x8e\x5b\x3a\xd9" "\xff\x00\x00\x00\xd0\x83\xdc\xfd\x37\xc7\x2d\xf6\x3f\x00\x00\x00\x2c\xc4" "\x2d\xff\x3c\xf6\x4f\xe4\xee\x7f\x49\xdc\x62\xff\x03\x00\x00\x40\x33\x72" "\xf7\xbf\x34\x6e\xe9\x64\xff\xeb\xff\xbd\xff\xaf\xff\xd7\xff\x7b\xff\x7f" "\xfd\xd7\xd7\xff\x2f\x93\xfe\x7f\x98\xfe\x7f\x84\xfe\x5f\xff\xbf\xd9\xfe" "\xff\xf4\xf9\xff\x52\xff\x4f\x1b\x2e\xa2\xff\x3f\x7b\xf6\xec\x99\xcb\xde" "\xff\xe7\xee\x7f\x59\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x79" "\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xbf\x22\x6e\xb1\xff\x01\x00\x00" "\xa0\x19\xb9\xfb\x5f\x19\xb7\x74\xb2\xff\xf5\xff\x97\xa3\xff\x3f\x57\x2b" "\xce\xba\xff\xcf\x3f\xea\xcb\xea\xff\xaf\x5b\xad\xe6\xde\xff\x9f\xd1\xff" "\xeb\xff\x0f\xa4\xff\x3f\x1e\xfa\xff\x61\xfa\xff\x11\xfa\x7f\xfd\xbf\xf7" "\xff\xf5\xff\x4c\x6a\x6e\xef\xff\xe7\xee\x7f\x55\xdc\xd2\xc9\xfe\x07\x00" "\x00\x80\x1e\xe4\xee\x7f\x75\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xbf" "\x26\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x5f\x1b\xb7\x74\xb2\xff\xf5" "\xff\xde\xff\x5f\x50\xff\xef\xfd\x7f\xfd\xff\xae\xef\x67\x61\xfd\xff\x9d" "\x2b\xfd\xff\xb1\x58\x44\xff\xbf\x7d\xf0\xd7\x9f\x7b\xff\x7f\xbd\xfe\x5f" "\xff\x3f\xa0\xbb\xfe\xff\x7f\xff\x6b\xd7\x0f\xf5\xff\xfa\x7f\xf6\x9b\x5b" "\xff\x9f\xbb\xff\x75\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xf5" "\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x86\xb8\xc5\xfe\x07\x00\x00" "\x80\x66\xe4\xee\x7f\x63\xdc\x74\xb2\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5" "\xff\xfa\xff\xf5\x5f\xff\x98\xdf\xff\x3f\xb5\x5a\xad\xf4\xff\x13\x58\x44" "\xff\x3f\x60\xee\xfd\xbf\xf7\xff\xf5\xff\x43\xba\xeb\xff\xf7\xd0\xff\xeb" "\xff\xd9\x6f\x6e\xfd\x7f\xee\xfe\x37\xc5\x2d\x9d\xec\x7f\x00\x00\x00\xe8" "\x41\xee\xfe\x37\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x5b\xe2\x16" "\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xad\x71\x4b\x27\xfb\x5f\xff\xaf\xff" "\xd7\xff\xeb\xff\x9b\xef\xff\xaf\x5f\x44\xff\xef\xfd\xff\x89\xe8\xff\x87" "\xe9\xff\x47\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\xc7\x62\x53\xfd\x7f\xee\xfe" "\xb7\xc5\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xb7\xc7\x2d\xf6\x3f" "\x00\x00\x00\x34\x23\x77\xff\x3b\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb" "\xff\x9d\x71\x4b\x27\xfb\x5f\xff\xaf\xff\xbf\x98\xfe\x3f\x3f\xa7\xfe\xbf" "\xad\xfe\xff\xf4\xec\xfa\xff\xad\x5d\xff\xbe\x4e\xde\xff\xd7\xff\x4f\x44" "\xff\x3f\x4c\xff\x3f\x42\xff\xaf\xff\xd7\xff\xdf\xa0\xff\x67\x4a\x73\x7b" "\xff\x3f\x77\xff\xbb\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\xbb" "\xe3\xd6\xff\xeb\xd6\xfe\x07\x00\x00\x80\x66\xe4\xee\xbf\x25\x6e\xb1\xff" "\x01\x00\x00\xa0\x19\xb9\xfb\xdf\x13\xb7\x74\xb2\xff\xf5\xff\xfa\x7f\xef" "\xff\xeb\xff\x9b\x7f\xff\x5f\xff\xdf\x15\xfd\xff\x30\xfd\xff\x08\xfd\xbf" "\xfe\x5f\xff\xef\xfd\x7f\x26\x35\xb7\xfe\x3f\x77\xff\x7b\xe3\x96\x4e\xf6" "\x3f\x00\x00\x00\xf4\x20\x77\xff\xfb\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91" "\xbb\xff\xfd\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\x7f\x6b\xdc\xd2\xc9" "\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xb9\xdf\x43\xfd\x7f\x1b\xf4" "\xff\xc3\x8e\xa7\xff\xdf\xd6\xff\xeb\xff\xab\x9f\xbf\x22\xfe\xa7\x40\xff" "\xaf\xff\x1f\xfb\xf5\xb4\x69\x6e\xfd\x7f\xee\xfe\x0f\xc4\x2d\x9d\xec\x7f" "\x00\x00\x00\xe8\x41\xee\xfe\x0f\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77" "\xff\x87\xe2\x16\xfb\x1f\x00\x00\x00\x16\xe9\xe4\x9a\x9f\xcb\xdd\xff\xe1" "\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xf5\x5f\x5f\xff" "\xbf\x4c\xfa\xff\x61\xde\xff\x3f\xc8\x3f\xdd\x74\xe1\x8f\xf4\xff\x87\xed" "\xe7\xff\x6d\xd7\x8f\x96\xf6\xfe\xff\xde\xff\xfb\xa5\xff\xd7\xff\x33\xbd" "\xb9\xf5\xff\xb9\xfb\x3f\x12\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb" "\x3f\x1a\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x1f\x8b\x5b\xec\x7f\x00" "\x00\x00\x68\x46\xee\xfe\x8f\xc7\x2d\x9d\xec\x7f\xfd\xbf\xfe\xbf\x99\xfe" "\xff\xae\x0f\xa1\xff\xd7\xff\xeb\xff\xbb\xa7\xff\x1f\xa6\xff\x1f\xd1\xdb" "\xfb\xff\xa7\x77\xff\x70\xd3\xef\xe7\x1f\xd5\xa6\x3f\xbf\xfe\x5f\xff\xcf" "\x7e\x73\xeb\xff\x73\xf7\x7f\x22\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72" "\xf7\x7f\x32\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x3f\x15\xb7\xd8\xff" "\x00\x00\x00\xd0\x8c\x9d\xdd\x9f\x71\x59\x87\xfb\x5f\xff\xbf\xb1\xfe\x7f" "\xe7\xdf\xaf\xff\xf7\xfe\xbf\xfe\x5f\xff\xaf\xff\x9f\x96\xfe\x7f\x98\xfe" "\x7f\x44\x6f\xfd\xff\x1e\x9b\xee\xe7\x97\xfe\xf9\xf5\xff\xfa\x7f\xf6\x9b" "\x5b\xff\xff\xe9\x9d\x5f\xb5\xb5\xfa\x4c\xdc\xd2\xc9\xfe\x07\x00\x00\x80" "\x1e\xe4\xee\xff\x6c\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x2e\x6e" "\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x3f\x1f\xb7\x74\xb2\xff\xf5\xff\xde" "\xff\x5f\x46\xff\x7f\xf6\xec\xd9\x33\xfa\x7f\xfd\xff\xee\xef\xe7\x7c\xff" "\x7f\xbb\xfe\x9f\xa2\xff\x1f\xa6\xff\x1f\xa1\xff\xd7\xff\xeb\xff\xf5\xff" "\x4c\x6a\x6e\xfd\x7f\xee\xfe\x2f\xc4\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41" "\xee\xfe\x2f\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x97\xe2\x16\xfb" "\x1f\x00\x00\x00\x9a\x91\xbb\xff\x44\xdc\xd2\xc9\xfe\xd7\xff\xcf\xa0\xff" "\xdf\xd2\xff\x7b\xff\x5f\xff\xbf\xf2\xfe\xbf\xfe\x7f\x22\xfa\xff\xf5\xb6" "\xe3\xea\xff\x47\xb4\xd8\xff\x6f\x1d\xfe\xdb\xdf\x74\x3f\x7f\x54\x9b\xfe" "\xfc\xfa\x7f\xfd\x3f\xfb\xcd\xad\xff\xff\xf2\xce\xaf\xda\x5a\x7d\x25\x6e" "\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x7f\x35\x6e\xd9\xb7\xff\x6f\x3b" "\xc6\x4f\x05\x00\x00\x00\x4c\x29\x77\xff\xd7\xe2\x16\x7f\xff\x0f\x00\x00" "\x00\xcd\xc8\xdd\xff\xf5\xb8\xa5\x93\xfd\xaf\xff\x3f\xbe\xfe\xff\xae\xff" "\xec\x7a\x79\xff\x7f\x7b\xb5\xfe\xf3\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xe5" "\xa6\xff\x1f\xa6\xff\x1f\xd1\x62\xff\x7f\x11\x36\xdd\xcf\x2f\xfd\xf3\xeb" "\xff\xf5\xff\xec\x37\xb7\xfe\x3f\x77\xff\x37\xe2\x96\xdd\xc3\xef\xaa\x8b" "\xfb\x2e\x01\x00\x00\x80\x39\xc9\xdd\xff\xcd\xb8\xa5\x93\xbf\xff\x07\x00" "\x00\x80\x1e\xe4\xee\xbf\x2d\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xbf" "\x15\xb7\x74\xb2\xff\xf5\xff\x33\x78\xff\xbf\xc1\xfe\xff\x78\xde\xff\xdf" "\xd2\xff\xeb\xff\xa7\xec\xff\x4f\xe8\xff\xdb\xa0\xff\x1f\xa6\xff\x1f\xa1" "\xff\xd7\xff\xeb\xff\x27\xea\xff\xf3\x4f\xb3\xfe\xbf\x77\x73\xeb\xff\x73" "\xf7\x7f\x3b\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x7f\x27\x6e\xb1" "\xff\x01\x00\x00\xa0\x19\xb9\xfb\xbf\x1b\xb7\xd8\xff\x00\x00\x00\xd0\x8c" "\xdc\xfd\xb7\xc7\x2d\x17\xec\xff\x75\x6d\x77\x2b\xf4\xff\xfa\xff\xe5\xf6" "\xff\xde\xff\xd7\xff\x7b\xff\x5f\xff\xbf\x5f\xdb\xfd\xff\xd6\x21\xfe\x0d" "\xdb\x83\xff\xdd\xc3\xf6\xff\xa7\x57\x47\xeb\xff\x93\xfe\x5f\xff\xaf\xff" "\xef\xb5\xff\xf7\xfe\x3f\xe7\xcc\xad\xff\xcf\xdd\xff\xbd\xb8\xc5\xdf\xff" "\x03\x00\x00\xc0\xe2\x5c\x75\xc0\xcf\xe7\xee\xff\x7e\xdc\x62\xff\x03\x00" "\x00\x40\x33\x72\xf7\xff\x20\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x7f" "\x18\xb7\xdc\x71\x62\x53\x1f\xe9\x58\xe9\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\x7f\xfd\xd7\xd7\xff\x2f\x53\xdb\xfd\xff\xd1\x79\xff\x7f\x84\xfe\x7f\x8a" "\x7e\xfe\x6a\xfd\x7f\x1b\xfd\xff\x6a\xa5\xff\xe7\xe8\xe6\xd6\xff\xe7\xee" "\xff\x51\xdc\xe2\xef\xff\x01\x00\x00\xa0\x19\xb9\xfb\x7f\x1c\xb7\xd8\xff" "\x00\x00\x00\xd0\x8c\xdc\xfd\x3f\x89\x5b\xec\x7f\x00\x00\x00\x68\x46\xee" "\xfe\x9f\xc6\x2d\x9d\xec\x7f\xfd\xbf\xfe\xff\x88\xfd\xff\x4e\x9a\xd9\x72" "\xff\xbf\xbd\xd2\xff\xeb\xff\xcf\xd1\xff\x2f\x83\xfe\x7f\x98\xfe\x7f\x84" "\xfe\xdf\xfb\xff\xfa\x7f\xef\xff\x33\xa9\xb9\xf5\xff\xb9\xfb\x7f\x16\xb7" "\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x7f\x1e\xb7\xd8\xff\x00\x00\x00" "\xd0\x8c\xdc\xfd\xbf\x88\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x5f\xc6" "\x2d\x9d\xec\xff\x8d\xf5\xff\xf1\x1f\xb5\xfe\x7f\xb3\xfd\xff\x09\xef\xff" "\xef\xf0\xfe\xbf\xfe\x7f\xdd\xd7\xd7\xff\x2f\x93\xfe\x7f\x98\xfe\x7f\x84" "\xfe\x5f\xff\xaf\xff\xd7\xff\x33\xa9\xb9\xf5\xff\xb9\xfb\x7f\x15\xb7\x74" "\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x7f\x1d\xb7\xd8\xff\x00\x00\x00\xd0" "\x8c\xdc\xfd\xbf\x89\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xdf\xc6\x2d" "\x9d\xec\x7f\xef\xff\xf7\xdd\xff\x4f\xf0\xfe\xbf\xfe\x5f\xff\xaf\xff\xd7" "\xff\xcf\x8a\xfe\x7f\x98\xfe\x7f\xbd\xfa\x8d\xd2\xff\xeb\xff\xf5\xff\xfa" "\x7f\x26\x35\xb7\xfe\x3f\x77\xff\xef\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4" "\x20\x77\xff\xef\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x8e\xb8\xc5" "\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x43\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff" "\xf5\xff\xfa\x7f\xfd\xff\xfa\xaf\xaf\xff\x5f\x26\xfd\xff\xb0\x4d\xf6\xff" "\xff\xf7\x2f\xe3\x5f\xd6\xfb\xff\x1b\xef\xff\xf3\x23\xe8\xff\xf5\xff\xfa" "\x7f\x26\x31\xb7\xfe\x3f\x77\xff\x1f\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4" "\x20\x77\xff\x9f\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xcf\x71\x8b" "\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x97\xb8\xa5\x93\xfd\x3f\xd2\xff\x9f" "\xae\x7f\x50\xff\x3f\x48\xff\xbf\xfb\xf3\x6f\xac\xff\xcf\x0f\xa2\xff\x1f" "\xfc\xfa\xfa\x7f\xfd\x7f\xcb\xf4\xff\xc3\xbc\xff\x3f\x42\xff\xef\xfd\x7f" "\xfd\xbf\xfe\x9f\x49\xcd\xad\xff\xcf\xdd\xff\xd7\xb8\xa5\x93\xfd\x0f\x00" "\x00\x00\x3d\xc8\xdd\x7f\x67\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff" "\x2d\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xff\x1e\xb7\x74\xb2\xff\xbd" "\xff\xbf\xa4\xfe\xff\x6a\xfd\xbf\xf7\xff\xf5\xff\xfa\x7f\xfd\xff\x08\xfd" "\xff\x30\xfd\xff\x08\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\x52\x73\xeb\xff\x73" "\xf7\xff\x23\x00\x00\xff\xff\x0e\x45\x4c\xca", 25085); syz_mount_image( /*fs=*/0x20000000, /*dir=*/0x200002c0, /*flags=MS_LAZYTIME|MS_POSIXACL|MS_NODIRATIME|MS_DIRSYNC*/ 0x2010880, /*opts=*/0x20000300, /*chdir=*/1, /*size=*/0x61fd, /*img=*/0x20000440); memcpy((void*)0x200002c0, ".\000", 2); memcpy((void*)0x20000200, "./file0/../file0\000", 17); syscall(__NR_mount, /*src=*/0x200002c0ul, /*dst=*/0x20000200ul, /*type=*/0ul, /*flags=MS_SHARED|MS_SYNCHRONOUS|MS_RDONLY|MS_DIRSYNC|MS_BIND*/ 0x101091ul, /*data=*/0ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); const char* reason; (void)reason; for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }