// https://syzkaller.appspot.com/bug?id=10e18cd932783d4c9d528c156acd48541e38318f // 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_getpid #define __NR_getpid 172 #endif #ifndef __NR_memfd_create #define __NR_memfd_create 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif #ifndef __NR_openat #define __NR_openat 56 #endif #ifndef __NR_prlimit64 #define __NR_prlimit64 261 #endif #ifndef __NR_pwritev2 #define __NR_pwritev2 287 #endif #ifndef __NR_sched_setscheduler #define __NR_sched_setscheduler 119 #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, 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 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, loopfd = -1, 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) { memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; 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) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } 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; retry: while (umount2(dir, MNT_DETACH | UMOUNT_NOFOLLOW) == 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, MNT_DETACH | UMOUNT_NOFOLLOW) == 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, MNT_DETACH | UMOUNT_NOFOLLOW)) 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, MNT_DETACH | UMOUNT_NOFOLLOW)) 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 (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[2] = {0x0, 0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; memcpy((void*)0x20000040, "jfs\000", 4); memcpy((void*)0x20000180, "./file0\000", 8); memcpy((void*)0x200001c0, "\x00\x8f\x32\x06\x95\x65\xa8\x69\x99\x68\x89\x80\x92\x84\x6b\xc2\x73" "\xc0\x19\xd2\x72\x7a\x76\xca\xac\x02\x84\x53\x7f\x8d\x7f\x08\x59\x3a" "\x44\x45\x1a\xa7\x3b\xac\x0d\x00\x00\x72\xbf\xf8\x99\x17\xdc\x7a\x49" "\xac\xb3\x09\xc8\xfc\x27\xd4\x73\x6f\x23\x6a\x7c\xd2\x10\x25\xab", 67); memcpy( (void*)0x20006600, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xec\x9b\x5f\x42\xd3\xa8" "\x87\xaa\x44\x08\xb9\x6d\x78\x29\xa5\x79\x2d\x21\x50\xa0\xe9\x01\x0e\x5c" "\x38\xa0\x5c\x51\x22\xd7\xad\x22\x52\x40\x49\x40\x69\x15\x11\x57\xbe\x70" "\xe0\x8f\x00\x21\x71\x44\x88\x23\x27\xfe\x80\x1e\xb8\x72\xe3\x0f\x20\x52" "\x82\x04\xea\xa9\x53\x8d\xfd\x3c\xce\x78\xbb\xce\x3a\x71\xbd\xb3\xf6\xf3" "\xf9\x48\xce\xcc\x6f\x9f\x19\xef\x33\xf9\xee\xec\x8b\x67\x66\x9f\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe2\xc7\x3f\xfa\xe9\xb9" "\x2a\x22\xae\xfe\x26\xdd\x70\x22\xe2\x0b\xd1\x8f\xe8\x45\x2c\x35\xf5\x4a" "\x44\x2c\xad\x9c\xc8\xcb\x0f\x22\xe2\x85\xad\xc5\xe2\xf9\x88\x18\x2e\x44" "\x34\xeb\x6f\xfe\xf3\x6c\xc4\xeb\x11\xf1\xd1\xf1\x88\x07\x0f\xef\xae\x36" "\x37\x9f\xdf\x63\x3f\x7e\xf8\xd7\x7f\xfd\xe9\x67\xc7\x7e\xf2\xcf\xbf\x0c" "\xcf\xfc\xff\x6f\xb7\xfb\x6f\xec\xb6\xdc\x9d\x3b\xbf\xff\xdf\xdf\xef\xed" "\x6f\x9b\x01\x00\x00\xa0\x34\x75\x5d\xd7\x55\xfa\x98\x7f\x32\x7d\xbe\xef" "\x75\xdd\x29\x00\x60\x26\xf2\xeb\x7f\x9d\xe4\xdb\xd5\x6a\xb5\x5a\xad\x56" "\x1f\xbd\xba\xad\x9e\xec\x5e\xbb\x88\x88\xf5\xf6\x3a\xcd\x7b\x06\x87\xe3" "\x01\xe0\x90\x59\x8f\x8f\xbb\xee\x02\x1d\x92\x7f\xd1\x06\x11\x71\xac\xeb" "\x4e\x00\x73\xad\xea\xba\x03\x1c\x88\x07\x0f\xef\xae\x56\x29\xdf\xaa\xfd" "\x7a\xb0\xb2\xd5\x9e\xcf\x05\xd9\x91\xff\x7a\xb5\x7d\x7d\xc7\x6e\xd3\x69" "\xc6\xcf\x31\x99\xd5\xe3\x6b\x23\xfa\xf1\xdc\x2e\xfd\x59\x9a\x51\x1f\xe6" "\x49\xce\xbf\x37\x9e\xff\xd5\xad\xf6\x51\x5a\xee\xa0\xf3\x9f\x95\xdd\xf2" "\x1f\xa5\x6b\x9a\x4a\x93\xf3\xef\x8f\xe7\x3f\xe6\xe8\xe4\xdf\x9b\x98\x7f" "\xa9\x72\xfe\x83\x27\xca\xbf\x2f\x7f\x00\x00\x00\x00\x00\x98\x63\xf9\xef" "\xff\x27\x3a\x3e\xfe\xbb\xb0\xff\x4d\xd9\x93\xc7\x1d\xff\x5d\x99\x51\x1f" "\x00\x00\x00\x00\x00\x00\x00\xe0\xf3\xf6\xb4\xe3\xff\xf5\xd2\xf8\x7f\xdb" "\x8c\xff\x07\x00\x00\x00\x73\xab\xf9\xac\xde\xf8\xc3\xf1\x47\xb7\xed\xf6" "\x5d\x6c\xcd\xed\x57\xaa\x88\x67\xc6\x96\x07\x0a\x93\x2e\x96\x59\xee\xba" "\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x50\x92\xc1\xd6\x39\xbc\x57" "\xaa\x88\x61\x44\x3c\xb3\xbc\x5c\xd7\x75\xf3\xd3\x36\x5e\x3f\xa9\xfd\xae" "\x7f\xd8\x95\xbe\xfd\x50\xb2\xae\x9f\xe4\x01\x00\x60\xcb\x47\xc7\xc7\xae" "\xe5\xaf\x22\x16\x23\xe2\x4a\xfa\xae\xbf\xe1\xf2\xf2\x72\x5d\x2f\x2e\x2d" "\xd7\xcb\xf5\xd2\x42\x7e\x3f\x3b\x5a\x58\xac\x97\x5a\x9f\x6b\xf3\xb4\xb9" "\x6d\x61\xb4\x87\x37\xc4\x83\x51\xdd\xfc\xb2\xc5\xd6\x7a\x6d\xd3\x3e\x2f" "\x4f\x6b\x1f\xff\x7d\xcd\x7d\x8d\xea\xfe\x1e\x3a\x36\x1b\x1d\x06\x0e\x00" "\x11\xb1\xf5\x6a\xf4\xc0\x2b\xd2\x11\x53\xd7\xcf\x46\xd7\xef\x72\x38\x1c" "\xec\xff\x47\x8f\xfd\x9f\xbd\xe8\xfa\x71\x0a\x00\x00\x00\x1c\xbc\xba\xae" "\xeb\x2a\x7d\x9d\xf7\xc9\x74\xcc\xbf\xd7\x75\xa7\x00\x80\x99\xc8\xaf\xff" "\xe3\xc7\x05\xd4\x6a\xb5\x5a\xad\x56\x1f\xbd\xba\xad\x9e\xec\x5e\xbb\x88" "\x88\xf5\xf6\x3a\xcd\x7b\x06\xc3\xf1\x03\xc0\x21\xb3\x1e\x1f\x77\xdd\x05" "\x3a\x24\xff\xa2\x0d\x22\xe2\x85\xae\x3b\x01\xcc\xb5\xaa\xeb\x0e\x70\x20" "\x1e\x3c\xbc\xbb\x5a\xa5\x7c\xab\xf6\xeb\x41\x1a\xdf\x3d\x9f\x0b\xb2\x23" "\xff\xf5\x6a\x73\xbd\xbc\xfe\xa4\xe9\x34\xe3\xe7\x98\xcc\xea\xf1\xb5\x11" "\xfd\x78\x6e\x97\xfe\x3c\x3f\xa3\x3e\xcc\x93\x9c\x7f\x6f\x3c\xff\xab\x5b" "\xed\xa3\xb4\xdc\x41\xe7\x3f\x2b\xbb\xe5\xdf\x6c\xe7\x89\x0e\xfa\xd3\xb5" "\x9c\x7f\x7f\x3c\xff\x31\x47\x27\xff\xde\xc4\xfc\x4b\x95\xf3\x1f\x3c\x51" "\xfe\x7d\xf9\x03\x00\x00\x00\x00\xc0\x1c\xcb\x7f\xff\x3f\x31\x57\xc7\x7f" "\x47\x4f\xbb\x39\x53\x3d\xee\xf8\xef\xca\x81\xdd\x2b\x00\x00\x00\x00\x00" "\x00\x00\x1c\xac\x07\x0f\xef\xae\xe6\xeb\x5e\xf3\xf1\xff\x2f\x4d\x58\xce" "\xf5\x9f\x47\x53\xce\xbf\x92\x7f\x91\x72\xfe\xbd\xb1\xfc\xbf\x3e\xb6\x5c" "\xbf\x35\x7f\xff\xad\x47\xf9\xff\xf7\xe1\xdd\xd5\x3f\xdf\xfe\xcf\x17\xf3" "\x74\xaf\xf9\x2f\xe4\x99\x2a\x3d\xb2\xaa\xf4\x88\xa8\xd2\x3d\x55\x83\x34" "\xdd\xcf\xd6\x7d\xd6\xc6\xb0\x3f\x6a\xee\x69\x58\xf5\xfa\x83\x74\xce\x4f" "\x7d\xf9\x9d\xb8\x1e\x37\x62\x2d\xce\xee\x58\xb6\x97\xfe\x3f\xea\x61\x6e" "\x3f\xb7\xa3\xbd\xe9\xe9\x70\xb3\xbd\xee\x6f\xb5\x9f\xdf\xd1\x3e\xd8\x6e" "\xcf\xeb\x5f\xd8\xd1\x3e\x4c\x67\x3a\xd5\x4b\xb9\xfd\x74\xac\xc6\x2f\xe3" "\x46\xbc\xbd\xd9\xde\xb4\x2d\x4c\xd9\xfe\xc5\x29\xed\xf5\x94\xf6\x9c\x7f" "\xdf\xfe\x5f\xa4\x9c\xff\xa0\xf5\xd3\xe4\xbf\x9c\xda\xab\xb1\x69\xe3\xfe" "\x87\xbd\xcf\xec\xf7\xed\xe9\xa4\xfb\xb9\x7c\xfd\xcb\xbf\x3b\x7b\xf0\x9b" "\x33\xd5\x46\xf4\xb7\xb7\xad\xad\xd9\xbe\x97\x3a\xe8\xcf\xe6\xff\xc9\xb1" "\x51\xfc\xfa\xd6\xda\xcd\xd3\x77\xae\xdd\xbe\x7d\xf3\x5c\xa4\xc9\x8e\x5b" "\xcf\x47\x9a\x7c\xce\x72\xfe\xc3\xf4\xb3\xfd\xfc\xff\xf2\x56\x7b\x7e\xde" "\x6f\xef\xaf\xf7\x3f\x1c\x3d\x71\xfe\xf3\x62\x23\x06\xbb\xe6\xff\x72\x6b" "\xbe\xd9\xde\x57\x66\xdc\xb7\x2e\xe4\xfc\x47\xe9\x27\xe7\xff\x76\x6a\x9f" "\xbc\xff\x1f\xe6\xfc\x77\xdf\xff\x5f\xed\xa0\x3f\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xf0\x38\x75\x5d\x6f\x5e\x22\x7a\x39\x22\x2e\xa6" "\xeb\x7f\xba\xba\x36\x13\x00\x98\xad\xfc\xfa\x5f\x27\xf9\xf6\x59\xd5\xfd" "\x19\xdf\x9f\x5a\x7d\xc8\xeb\x6a\xce\xfa\x33\xd3\xfa\x93\x7a\xbe\xfa\xa3" "\x56\x1f\xc6\xba\xad\x9e\xec\xcd\x76\x11\x11\xff\x68\xaf\xd3\xbc\x67\xf8" "\xed\xa4\x5f\x06\x00\xcc\xb3\x4f\x22\xe2\xdf\x5d\x77\x82\xce\xc8\xbf\x60" "\xf9\xfb\xfe\x9a\xe9\xa9\xae\x3b\x03\xcc\xd4\xad\xf7\x3f\xf8\xf9\xb5\x1b" "\x37\xd6\x6e\xde\xea\xba\x27\x00\x00\x00\x00\x00\x00\x00\xc0\xd3\xca\xe3" "\x7f\xae\xb4\xc6\x7f\x3e\x55\xd7\xf5\xbd\xb1\xe5\x76\x8c\xff\xfa\x56\xac" "\xec\x77\xfc\xcf\x41\x9e\xd9\x1e\x60\x74\x97\x81\xaa\xfb\x4f\xbe\x4d\x8f" "\xb3\xd1\x1b\xf5\x7b\xad\xe1\xc6\x5f\x8c\xf6\xf8\xdc\xed\x11\x8a\x87\xdb" "\x73\x8f\x1b\xff\x7b\x30\xe5\xfe\x86\x53\xda\x47\x53\xda\x17\xa6\xb4\x2f" "\x4e\x69\x9f\x78\xa1\x47\x4b\xce\xff\xc5\xd6\x78\xe7\xa7\x22\xe2\xe4\xd8" "\xf0\xeb\x25\x8c\xff\x3a\x3e\xe6\x7d\x09\x72\xfe\x2f\xb5\x1e\xcf\x4d\xfe" "\x5f\x1b\x5b\xae\x9d\x7f\xfd\xc7\xc3\x9c\x7f\x6f\x47\xfe\x67\x6e\xbf\xf7" "\xab\x33\xb7\xde\xff\xe0\xb5\xeb\xef\x5d\x7b\x77\xed\xdd\xb5\x5f\x5c\x38" "\x77\xee\xec\x85\x8b\x17\x2f\x5d\xba\x74\xe6\x9d\xeb\x37\xd6\xce\x6e\xfd" "\xdb\x61\x8f\x0f\x56\xce\x3f\x8f\x7d\xed\x3c\xd0\xb2\xe4\xfc\x73\xe6\xf2" "\x2f\x4b\xce\xff\x2b\xa9\x96\x7f\x59\x72\xfe\x5f\x4d\xb5\xfc\xcb\x92\xf3" "\xcf\xef\xf7\xe4\x5f\x96\x9c\x7f\xfe\xec\x23\xff\xb2\xe4\xfc\x5f\x49\xb5" "\xfc\xcb\x92\xf3\xff\x46\xaa\xe5\x5f\x96\x9c\xff\xab\xa9\x96\x7f\x59\x72" "\xfe\xdf\x4c\xb5\xfc\xcb\x92\xf3\x7f\x2d\xd5\xf2\x2f\x4b\xce\xff\x74\xaa" "\xe5\x5f\x96\x9c\xff\x99\x54\xef\x31\xff\xa5\x83\xee\x17\xb3\x91\xf3\xcf" "\x47\xb8\xec\xff\x65\xc9\xf9\xe7\x33\x1b\xe4\x5f\x96\x9c\xff\xf9\x54\xcb" "\xbf\x2c\x39\xff\x0b\xa9\x96\x7f\x59\x72\xfe\xaf\xa7\x5a\xfe\x65\xc9\xf9" "\x7f\x2b\xd5\xf2\x2f\x4b\xce\xff\x62\xaa\xe5\x5f\x96\x9c\xff\xb7\x53\x2d" "\xff\xb2\xe4\xfc\x2f\xa5\x5a\xfe\x65\xc9\xf9\x7f\x27\xd5\xf2\x2f\x4b\xce" "\xff\xbb\xa9\x96\x7f\x59\x72\xfe\x6f\xa4\x5a\xfe\x65\xc9\xf9\x7f\x2f\xd5" "\xf2\x2f\x4b\xce\xff\xfb\xa9\x96\x7f\x59\x72\xfe\x3f\x48\xb5\xfc\xcb\x92" "\xf3\x7f\x33\xd5\xf2\x2f\xcb\xa3\xef\xff\x37\x63\xc6\x8c\x99\x3c\xd3\xf5" "\x33\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x30\x6e\x16\xa7\x13\x77" "\xbd\x8d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x29\x3b\x70" "\x20\x00\x00\x00\x00\x00\xe4\xff\xda\x08\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\xd8\x81\x03\x01\x00\x00\x00\x00\x20\xff\xd7\x46\xa8\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xc2\xde\xdd\xc5\xc8\x75\xd6\xf7\x03\x3f\xfb\xea" "\xb5\x03\x89\x81\x90\xbf\x93\xbf\x81\xb5\x63\x8c\x71\x36\xd9\xf5\x4b\xfc" "\x42\xeb\x62\xc2\x6b\xc3\x5b\x09\x24\x25\x7d\x89\xed\x7a\xd7\xce\x82\xdf" "\xe2\xb5\x4b\x92\x46\xb2\xa3\x40\x89\x84\x51\x51\x45\xdb\x70\xd1\x16\x50" "\xd4\xe6\xa6\xc2\xaa\x72\x41\xab\x80\x72\x81\x5a\x55\xaa\x44\xda\x0b\x7a" "\x83\xa8\x2a\x71\x11\x55\x01\x05\xa4\x4a\x6d\x05\xd9\x6a\xce\x79\x9e\x67" "\x67\x66\x67\x67\x76\xed\xf1\x7a\xe6\x9c\xcf\x47\x8a\x7f\xde\x99\x33\x73" "\xce\x9c\x79\x66\x76\xbf\xeb\x7c\x77\x01\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xa0\xde\xa6\xf7\xce\x7c\x71\x20\xcb\xb2\xda\x7f\xf9\x1f\xeb\xb3" "\xec\x75\xb5\xbf\xaf\x1d\x5f\x9f\x5f\xf6\xae\xeb\x7d\x84\x00\x00\x00\xc0" "\xd5\xfa\x65\xfe\xe7\xab\x37\xa5\x0b\x0e\x2e\xe3\x46\x75\xdb\xfc\xe3\x5b" "\xbf\xff\xfc\xfc\xfc\xfc\x7c\xf6\xe9\xa1\x3f\x19\xf9\xea\xfc\x7c\xba\x62" "\x3c\xcb\x46\xd6\x64\x59\x7e\x5d\x74\xf9\x3f\x1e\x1c\xa8\xdf\x26\x78\x2a" "\x1b\x1b\x18\xac\xfb\x78\xb0\xc3\xee\x87\x3a\x5c\x3f\xdc\xe1\xfa\x91\x0e" "\xd7\x8f\x76\xb8\x7e\x4d\x87\xeb\xc7\x3a\x5c\xbf\xe8\x04\x2c\xb2\xb6\xf8" "\x7e\x4c\x7e\x67\x5b\xf2\xbf\xae\x2f\x4e\x69\x76\x73\x36\x92\x5f\xb7\xa5" "\xc5\xad\x9e\x1a\x58\x33\x38\x18\xbf\x97\x93\x1b\xc8\x6f\x33\x3f\x72\x2c" "\x9b\xcd\x4e\x64\x33\xd9\x54\xc3\xf6\xc5\xb6\x03\xf9\xf6\x2f\x6c\xaa\xed" "\xeb\x43\x59\xdc\xd7\x60\xdd\xbe\x36\xd6\x56\xc8\xcf\x9e\x38\x1a\x8f\x61" "\x20\x9c\xe3\x2d\x0d\xfb\x5a\xb8\xcf\xe8\x27\xef\xc9\xc6\x7f\xfe\xb3\x27" "\x8e\xfe\xd5\xb9\x57\x6e\x6d\x35\x3b\x9e\x86\x86\xfb\x2b\x8e\x73\xdb\xe6" "\xda\x71\x7e\x3e\x5c\x52\x1c\xeb\x40\xb6\x26\x9d\x93\x78\x9c\x83\x75\xc7" "\xb9\xb1\xc5\x73\x32\xd4\x70\x9c\x03\xf9\xed\x6a\x7f\x6f\x3e\xce\x57\x97" "\x79\x9c\x43\x0b\x87\xb9\xaa\x9a\x9f\xf3\xb1\x6c\x30\xff\xfb\x4b\xf9\x79" "\x1a\xae\xff\xb6\x5e\x3a\x4f\x1b\xc3\x65\xff\x7d\x7b\x96\x65\x17\x17\x0e" "\xbb\x79\x9b\x45\xfb\xca\x06\xb3\x75\x0d\x97\x0c\x2e\x3c\x3f\x63\xc5\x8a" "\xac\xdd\x47\x6d\x29\xbd\x31\x1b\x5e\xd1\x3a\xdd\xb4\x8c\x75\x5a\x9b\xd3" "\x5b\x1a\xd7\x69\xf3\x6b\x22\x3e\xff\x9b\xc2\xed\x86\x97\x38\x86\xfa\xa7" "\xe9\x27\x4f\x8e\xd6\x3d\xef\xbf\x98\xbf\x92\x75\x1a\xd5\x1e\xf5\x52\xaf" "\x95\xe6\x35\xd8\xed\xd7\x4a\xaf\xac\xc1\xb8\x2e\x5e\xca\x1f\xf4\xd3\x2d" "\xd7\xe0\x96\xf0\xf8\x9f\xd8\xba\xf4\x1a\x6c\xb9\x76\x5a\xac\xc1\xf4\xb8" "\xeb\xd6\xe0\xe6\x4e\x6b\x70\x70\x74\x28\x3f\xe6\xf4\x24\x0c\xe4\xb7\x59" "\x58\x83\x3b\x1a\xb6\x1f\xca\xf7\x34\x90\xcf\x97\xb7\xb6\x5f\x83\x93\xe7" "\x4e\x9e\x99\x9c\x7b\xec\xf1\x3b\x67\x4f\x1e\x39\x3e\x73\x7c\xe6\xd4\xae" "\x1d\x3b\xa6\x76\xed\xd9\xb3\x6f\xdf\xbe\xc9\x63\xb3\x27\x66\xa6\x8a\x3f" "\xaf\xf0\x6c\xf7\xbe\x75\xd9\x60\x7a\x0d\x6c\x0e\xe7\x2e\xbe\x06\xde\xd1" "\xb4\x6d\xfd\x52\x9d\xff\xc6\xe8\xa2\xf7\xdf\x2b\x7d\x1d\x8e\xb5\x79\x1d" "\xae\x6f\xda\xb6\xdb\xaf\xc3\xe1\xe6\x07\x37\xb0\x3a\x2f\xc8\xc5\x6b\xba" "\x78\x6d\x7c\xaa\x76\xd2\xc7\x2e\x0d\x66\x4b\xbc\xc6\xf2\xe7\x67\xfb\xd5" "\xbf\x0e\xd3\xe3\xae\x7b\x1d\x0e\xd7\xbd\x0e\x5b\x7e\x4e\x69\xf1\x3a\x1c" "\x5e\xc6\xeb\xb0\xb6\xcd\x99\xed\xcb\xfb\x9a\x65\xb8\xee\xbf\x56\xc7\xb0" "\xf4\xe7\x82\xab\x5b\x83\xeb\xeb\xd6\x60\xf3\xd7\x23\xcd\x6b\xb0\xdb\x5f" "\x8f\xf4\xca\x1a\x1c\x0b\xeb\xe2\x87\xdb\x97\xfe\x5c\xb0\x31\x1c\xef\xd3" "\x13\x2b\xfd\x7a\x64\x68\xd1\x1a\x4c\x0f\x37\xbc\xf7\xd4\x2e\x49\x5f\xef" "\x8f\xed\xcb\x47\xab\x75\x79\x5b\xed\x8a\x1b\x46\xb3\xf3\x73\x33\x67\xef" "\x7a\xf4\xc8\xb9\x73\x67\x77\x64\x61\xac\x8a\x37\xd5\xad\x95\xe6\xf5\xba" "\xae\xee\x31\x65\x8b\xd6\xeb\xe0\x8a\xd7\xeb\xc1\xd9\xb7\x3e\x7d\x5b\x8b" "\xcb\xd7\x87\x73\x35\x76\x67\xed\x8f\xb1\x25\x9f\xab\xda\x36\xbb\xef\x6a" "\xff\x5c\xe5\x9f\xdd\x5a\x9f\xcf\x86\x4b\x77\x66\x61\x74\xd9\x6a\x9f\xcf" "\x56\x9f\xcd\x6b\xe7\x73\x34\xcb\xbe\xf6\xbd\x27\xef\xfb\xce\x13\x5f\x7b" "\xef\x92\xe7\xb3\x96\x37\x3f\x3f\x79\xf5\x5f\x8b\xa7\x5c\x5a\xf7\xfe\x3b" "\xb2\xc4\xfb\x6f\xcc\xfd\xaf\x15\xfb\x4b\x77\xf5\xd4\xd0\xc8\x70\xf1\xfa" "\x1d\x4a\x67\x67\xa4\xe1\xfd\xb8\xf1\xa9\x1a\xce\xdf\xbb\x06\xf2\x7d\xbf" "\x3a\xb9\xbc\xf7\xe3\x91\xf0\xdf\x6a\xbf\x1f\xdf\xdc\xe6\xfd\x78\x43\xd3" "\xb6\xdd\x7e\x3f\x1e\x69\x7e\x70\xf1\xfd\x78\xa0\xd3\x77\x3b\xae\x4e\xf3" "\xf3\x39\x16\xd6\xc9\x89\xa9\xf6\xef\xc7\xb5\x6d\x36\xec\x5c\xe9\x9a\x1c" "\x6e\xfb\x7e\x7c\x7b\x98\x03\xe1\xfc\xbf\x33\x24\x85\x94\x8b\xea\xd6\xce" "\x52\xeb\x36\xed\x6b\x78\x78\x24\x3c\xae\xe1\xb8\x87\xc6\x75\xba\xab\x61" "\xfb\x91\x90\xcd\x6a\xfb\x7a\x6e\xe7\x95\xad\xd3\x6d\xb7\x17\xf7\x35\x94" "\x1e\xdd\x82\xd5\x5a\xa7\xe3\x4d\xdb\x76\x7b\x9d\xa6\xef\x7d\x2d\xb5\x4e" "\x07\x3a\x7d\xf7\xed\xca\x34\x3f\x9f\x63\x61\x5d\xdc\xbc\xab\xfd\x3a\xad" "\x6d\xf3\xe2\xee\xab\x7f\xef\x5c\x1b\xff\x5a\xf7\xde\x39\xda\x69\x0d\x8e" "\x0c\x8d\xd6\x8e\x79\x24\x2d\xc2\xfc\xfd\x3e\x9b\x5f\x1b\xd7\xe0\x5d\xd9" "\xd1\xec\x74\x76\x22\x9b\xce\xaf\x1d\xcd\xd7\xd3\x40\xbe\xaf\x89\xbb\x97" "\xb7\x06\x47\xc3\x7f\xab\xfd\x5e\xb9\xa1\xcd\x1a\xdc\xd6\xb4\x6d\xb7\xd7" "\x60\xfa\x3c\xb6\xd4\xda\x1b\x18\x5e\xfc\xe0\xbb\xa0\xf9\xf9\x1c\x0b\xeb" "\xe2\x99\xbb\xdb\xaf\xc1\xda\x36\xef\xdb\xdb\xdd\xaf\x5d\xb7\x85\x4b\xd2" "\x36\x75\x5f\xbb\x36\x7f\x7f\x6d\xa9\xef\x79\xdd\xd6\x74\x9a\xae\xd5\x5a" "\x19\x0e\xc7\xf9\xbd\xbd\xed\xbf\x37\x5b\xdb\xe6\xc4\xbe\x95\xe6\xcc\xf6" "\xe7\xe9\x8e\x70\xc9\x0d\x2d\xce\x53\xf3\xeb\x77\xa9\xd7\xd4\x74\xb6\x3a" "\xe7\x69\x43\x38\xce\x57\xf6\x2d\x7d\x9e\x6a\xc7\x53\xdb\xe6\xab\xfb\x97" "\xb9\x9e\x0e\x66\x59\x76\xe1\x91\x7b\xf2\xef\xf7\x86\x7f\x5f\xf9\xdb\xf3" "\x3f\x78\xbe\xe1\xdf\x5d\x5a\xfd\x9b\xce\x85\x47\xee\xf9\xe9\xeb\x8f\xfd" "\xc3\x4a\x8e\x1f\x80\xfe\xf7\x5a\x31\xd6\x15\x9f\xeb\xea\xfe\x65\x6a\x39" "\xff\xfe\x0f\x00\x00\x00\xf4\x85\x98\xfb\x07\xc3\x4c\xe4\x7f\x00\x00\x00" "\x28\x8d\x98\xfb\xe3\xff\x15\x9e\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x0f" "\x87\x99\x54\x24\xff\x6f\x78\xdf\x2b\xb3\xaf\x5d\xc8\x52\x33\x7f\x3e\x88" "\xd7\xa7\xd3\x70\x6f\xb1\x5d\xec\xb8\x4e\x85\x8f\xc7\xe7\x17\xd4\x2e\xbf" "\xe7\xd9\x99\xff\xfa\xfb\x0b\xcb\xdb\xf7\x60\x96\x65\xbf\xb8\xf7\x0f\x5a" "\x6e\xbf\xe1\xde\x78\x5c\x85\xf1\x70\x9c\x97\xdf\xdf\x78\xf9\x22\xcf\xdf" "\xb9\xac\x7d\x1f\xbe\xff\x42\xda\x6f\x7d\x7f\xfd\xeb\xe1\xfe\xe3\xe3\x59" "\xee\x32\x68\x55\xc1\x9d\xca\xb2\xec\x85\x9b\xbe\x9c\xef\x67\xfc\xc1\x4b" "\xf9\x7c\xf1\xde\xc3\xf9\xbc\xef\xe2\xd3\x4f\xd5\xb6\x79\x75\x7f\xf1\x71" "\xbc\xfd\xcb\x6f\x2a\xb6\xff\xf3\x50\xfe\x3d\x78\xec\x48\xc3\xed\x5f\x0e" "\xe7\xe1\xc7\x61\x4e\x7d\xb8\xf5\xf9\x88\xb7\xfb\xd6\xa5\x77\x6e\xdc\xfb" "\xc0\xc2\xfe\xe2\xed\x06\x36\xdf\x98\x3f\xec\x67\x1e\x2a\xee\x37\xfe\x9c" "\x9c\xaf\x3c\x55\x6c\x1f\xcf\xf3\x52\xc7\xff\x9d\x2f\x3d\xf7\xad\xda\xf6" "\x8f\xbe\xbd\xf5\xf1\x5f\x18\x6c\x7d\xfc\xcf\x85\xfb\x7d\x36\xcc\xff\x79" "\x4b\xb1\x7d\xfd\x73\x50\xfb\x38\xde\xee\x0b\xe1\xf8\xe3\xfe\xe2\xed\xee" "\xfa\xe6\x77\x5b\x1e\xff\xe5\x2f\x16\xdb\x9f\xf9\x40\xb1\xdd\xe1\x30\xe3" "\xfe\xb7\x85\x8f\xb7\x7c\xe0\x95\xd9\xfa\xf3\xf5\xe8\xc0\x91\x86\xc7\x95" "\x7d\xb0\xd8\x2e\xee\x7f\xea\x07\x7f\x94\x5f\x1f\xef\x2f\xde\x7f\xf3\xf1" "\x8f\x1d\xba\xd4\x70\x3e\x9a\xd7\xc7\x8b\xff\x5a\xdc\xcf\x64\xd3\xf6\xf1" "\xf2\xb8\x9f\xe8\xef\x9a\xf6\x5f\xbb\x9f\xfa\xf5\x19\xf7\xff\xdc\x1f\x1e" "\x6e\x38\xcf\x9d\xf6\x7f\xf9\xbe\x97\xdf\x52\xbb\xdf\xe6\xfd\xdf\xd1\xb4" "\xdd\x99\x47\xb6\xe7\xfb\x5f\xb8\xbf\xc6\x9f\xd8\xf4\x17\x5f\xf8\x72\xcb" "\xfd\xc5\xe3\x39\xf8\x37\x67\x1a\x1e\xcf\xc1\x4f\x84\xd7\x71\xd8\xff\x33" "\x0f\x85\xf5\x18\xae\xff\xdf\xcb\xc5\xfd\x35\xff\x74\x85\xc3\x9f\x68\x7c" "\xff\x89\xdb\x7f\x7d\xfd\x85\x86\xc7\x13\x7d\xe8\xe7\xc5\xfe\x2f\xbf\xfb" "\x78\x3e\xd7\x8c\xad\x5d\x77\xc3\xeb\x5e\x7f\xe3\xc5\xb7\xd5\xce\x5d\x96" "\xbd\xb4\xa6\xb8\xbf\x4e\xfb\x3f\xfe\x97\xa7\x1b\x8e\xff\x1b\xb7\x14\xe7" "\x23\x5e\x1f\x3b\xfa\xcd\xfb\x5f\x4a\xdc\xff\xd9\xcf\x4d\x9c\x3a\x3d\x77" "\x7e\x76\x3a\x9d\xd5\x27\x6e\xca\x7f\x76\xce\x47\x8a\xe3\x89\xc7\x7b\x53" "\x78\x6f\x6d\xfe\xf8\xd0\xe9\x73\x0f\xcf\x9c\x1d\x9f\x1a\x9f\xca\xb2\xf1" "\xf2\xfe\x08\xbd\x2b\xf6\xcd\x30\x7f\x5a\x8c\x8b\x2b\xbd\xfd\xf6\xfb\xc3" "\xf3\x79\xdb\x9f\xbd\xb0\x6e\xeb\xbf\x7c\x29\x5e\xfe\x6f\x9f\x2a\x2e\xbf" "\xf4\xe1\xe2\xf3\xd6\x3b\xc2\x76\x5f\x09\x97\xaf\x0f\xcf\xdf\xd5\xee\xff" "\x99\x4d\xb7\xe4\xaf\xef\x81\x17\x8b\x8f\x1b\x7a\xec\x5d\xb0\x71\xcb\x7f" "\xee\x5b\xd6\x86\xe1\xf1\x37\x7f\x5d\x10\xd7\xfb\x99\x37\x3f\x9c\x9f\x87" "\xda\x75\xf9\xe7\x8d\xf8\xba\xbe\xca\xe3\xff\xd1\x74\x71\x3f\xdf\x0e\xe7" "\x75\x3e\xfc\x64\xe6\xcd\xb7\x2c\xec\xaf\x7e\xfb\xf8\xb3\x11\x2e\x7d\xb2" "\x78\xbd\x5f\xf5\xf9\x0b\x6f\x73\xf1\x79\xfd\xeb\xf0\x7c\x7f\xf4\xc7\xc5" "\xfd\xc7\xe3\x8a\x8f\xf7\x47\xe1\xeb\x98\xef\x6e\x68\x7c\xbf\x8b\xeb\xe3" "\xdb\x17\x06\x9b\xef\x3f\xff\x29\x1e\x17\xc3\xfb\x49\x76\xb1\xb8\x3e\x6e" "\x15\xcf\xf7\xa5\x57\x6f\x69\x79\x78\xf1\xe7\x90\x64\x17\x6f\xcd\x3f\xfe" "\xe3\x74\x3f\xb7\xae\xe8\x61\x2e\x65\xee\xb1\xb9\xc9\x13\xb3\xa7\xce\x3f" "\x3a\x79\x6e\x66\xee\xdc\xe4\xdc\x63\x8f\x1f\x3a\x79\xfa\xfc\xa9\x73\x87" "\xf2\x9f\xe5\x79\xe8\x33\x9d\x6e\xbf\xf0\xfe\xb4\x2e\x7f\x7f\x9a\x9e\xd9" "\xb3\x3b\xcb\xdf\xad\x4e\x17\xe3\x1a\xbb\xde\xc7\x7f\xe6\xfe\xa3\xd3\x7b" "\xa7\xb6\x4e\xcf\x1c\x3b\x72\xfe\xd8\xb9\xfb\xcf\xcc\x9c\x3d\x7e\x74\x6e" "\xee\xe8\xcc\xf4\xdc\xd6\x23\xc7\x8e\xcd\x7c\xae\xd3\xed\x67\xa7\x0f\xec" "\xd8\xb9\x7f\xd7\xde\x9d\x13\xc7\x67\xa7\x0f\xec\xdb\xbf\x7f\xd7\xfe\x89" "\xd9\x53\xa7\x6b\x87\x51\x1c\x54\x07\x7b\xa6\x3e\x3b\x71\xea\xec\xa1\xfc" "\x26\x73\x07\x76\xef\xdf\x71\xf7\xdd\xbb\xa7\x26\x4e\x9e\x9e\x9e\x39\xb0" "\x77\x6a\x6a\xe2\x7c\xa7\xdb\xe7\x9f\x9b\x26\x6a\xb7\xfe\xfd\x89\xb3\x33" "\x27\x8e\x9c\x9b\x3d\x39\x33\x31\x37\xfb\xf8\xcc\x81\x1d\xfb\xf7\xec\xd9" "\xd9\xf1\xa7\x01\x9e\x3c\x73\x6c\x6e\x7c\xf2\xec\xf9\x53\x93\xe7\xe7\x66" "\xce\x4e\x16\x8f\x65\xfc\x5c\x7e\x71\xed\x73\x5f\xa7\xdb\x53\x4e\x73\xff" "\x5e\x7c\x3d\xdb\x6c\xa0\xf8\x41\x7c\xd9\xc7\xef\xd8\x93\x7e\x3e\x6b\xcd" "\xb3\x4f\x2e\x79\x57\xc5\x26\x4d\x3f\x40\xf4\x95\xf0\xb3\x68\xfe\xe9\x0d" "\x67\xf6\x2d\xe7\xe3\x98\xfb\x47\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a" "\x62\xee\x1f\x0d\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\x5f\x13\x66\x22" "\xff\x03\x00\x00\x40\x69\xc4\xdc\x3f\x16\x66\x52\x91\xfc\x5f\xba\xfe\xff" "\x86\x0b\xcb\xda\xbf\xfe\xbf\xfe\x7f\xfd\xf9\xd2\xff\xef\xcb\xfe\xff\xfc" "\xfc\x7c\x71\xe7\x2b\xee\xff\x7f\xb2\xd7\xfa\xff\xc5\xfb\x85\xfe\x7f\x77" "\xe8\xff\xb7\xa7\xff\xdf\x81\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x5d\xd5\x6b" "\xfd\xff\x98\xfb\xd7\x66\x59\x25\xf3\x3f\x00\x00\x00\x54\x41\xcc\xfd\xeb" "\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x6f\x08\x33\x91\xff\x01\x00" "\x00\xa0\x34\x62\xee\x7f\x5d\x98\x49\x45\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf" "\xfe\x7f\x9f\xf6\xff\xaf\xfc\xf7\xff\xeb\xff\x97\x9a\xfe\x7f\x7b\xfa\xff" "\x1d\xe8\xff\x4f\x66\xd5\xea\xff\x5f\xec\xe6\xf1\xeb\xff\xeb\xff\xb3\x58" "\xaf\xf5\xff\x63\xee\x7f\x7d\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc" "\xfd\x37\x86\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xdf\x14\x66\x22\xff" "\x03\x00\x00\x40\x69\xc4\xdc\xbf\x3e\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f" "\xff\x5f\xff\x5f\xff\xbf\xf5\xfe\xf5\xff\xfb\x93\xfe\x7f\x7b\xfa\xff\x1d" "\xe8\xff\xfb\xfd\xff\xfa\xff\xfa\xff\x74\x55\xaf\xf5\xff\x63\xee\x7f\x43" "\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\x6f\x0c\x33\x91\xff\x01" "\x00\x00\xa0\xf7\x0c\x5f\xd9\xcd\x62\xee\x7f\x53\x98\xc9\xa2\xfc\x7f\x85" "\x3b\x00\x00\x00\x00\xae\xbb\x98\xfb\x6f\xce\x9a\x8a\xe0\x15\xf9\xf7\x7f" "\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xd6\xfb\x5f\x7e\xff\x7f\x28\xd3" "\xff\xef\x1d\xfa\xff\xed\xe9\xff\x77\xa0\xff\xaf\xff\xaf\xff\xaf\xff\x4f" "\x57\xf5\x5a\xff\x3f\xcf\xfd\xd9\x58\xf6\xe6\x30\x93\x8a\xe4\x7f\x00\x00" "\x00\xa8\x82\x98\xfb\x6f\x09\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xff" "\x7f\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x1b\xc2\x4c\x2a\x92\xff" "\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x5b\xef\xdf\xef\xff\xef\x4f\xfa" "\xff\xed\xe9\xff\x77\xa0\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x57\xf5\x5a\xff" "\x3f\xe6\xfe\x5b\xc3\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xbf\x2d" "\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\xff\x87\x99\xc8\xff\x00\x00" "\x00\x50\x1a\x31\xf7\x6f\x0c\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7" "\xff\xd7\xff\x6f\xbd\x7f\xfd\xff\xfe\xa4\xff\xdf\x9e\xfe\x7f\x07\xfa\xff" "\xfa\xff\xfa\xff\xfa\xff\x74\x55\xaf\xf5\xff\x63\xee\x7f\x4b\x98\x49\x45" "\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\x6f\x0d\x33\x91\xff\x01\x00\x00\xa0" "\x34\x62\xee\x7f\x5b\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x78\x98" "\x49\x45\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xeb\xfd\xeb\xff" "\xf7\x27\xfd\xff\xf6\xf4\xff\x3b\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xab" "\x7a\xad\xff\x1f\x73\xff\xa6\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98" "\xfb\x37\x87\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xdf\x1e\x66\x22\xff" "\x03\x00\x00\x40\x69\xc4\xdc\xbf\x25\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f" "\xff\x5f\xff\x5f\xff\xbf\xf5\xfe\xf5\xff\xfb\x93\xfe\x7f\x7b\xfa\xff\x1d" "\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x55\xbd\xd6\xff\x8f\xb9\xff\xed\x61" "\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\x6f\x0d\x33\x91\xff\x01\x00" "\x00\xa0\x34\x62\xee\x7f\x47\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff" "\xb6\x30\x93\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xd6\xfb" "\xd7\xff\xef\x4f\xfa\xff\xed\xe9\xff\x77\xa0\xff\xaf\xff\xaf\xff\xaf\xff" "\x4f\x57\xf5\x5a\xff\x3f\xe6\xfe\x77\x86\x99\x54\x24\xff\x03\x00\x00\x40" "\x15\xc4\xdc\xbf\x3d\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x8e\x30" "\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x89\x30\x93\x8a\xe4\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xd6\xfb\xd7\xff\xef\x4f\xfa\xff\xed\xe9" "\xff\x77\xa0\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x57\xf5\x5a\xff\x3f\xe6\xfe" "\x3b\xc3\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xbf\x2b\xcc\x44\xfe" "\x07\x00\x00\x80\xd2\x88\xb9\x7f\x32\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88" "\xb9\x7f\x2a\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x7f\x45\xfd" "\xff\xb7\x2d\xdc\xaf\xfe\x7f\x41\xff\xbf\xb7\xe8\xff\xb7\xa7\xff\xdf\x81" "\xfe\xbf\xfe\xff\x75\xef\xff\x8f\xe8\xff\x53\x2a\xbd\xd6\xff\x8f\xb9\x7f" "\x47\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\x3b\xc3\x4c\xe4\x7f" "\x00\x00\x00\x28\x8d\x98\xfb\x77\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31" "\xf7\xef\x0e\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xf7\xfb\xff" "\x5b\xef\x5f\xff\xbf\x3f\xe9\xff\xb7\xd7\xfd\xfe\x7f\x7c\x88\xfa\xff\xfa" "\xff\xfa\xff\x7e\xff\xbf\xfe\x3f\x8b\xf5\x5a\xff\x3f\xe6\xfe\xbb\xc3\x4c" "\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xdf\x13\x66\x22\xff\x03\x00\x00" "\x40\x69\xc4\xdc\xbf\x37\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\x7f\x5f" "\x98\x49\x45\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xeb\xfd\xeb" "\xff\xf7\x27\xfd\xff\xf6\xfc\xfe\xff\x0e\xf4\xff\xf5\xff\xdb\x1d\xff\x40" "\xfb\x97\xb4\xfe\xbf\xfe\x3f\x8b\xf5\x5a\xff\x3f\xe6\xfe\xfd\x61\x26\x15" "\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\xbf\x2b\xcc\x44\xfe\x07\x00\x00\x80" "\xd2\x88\xb9\xff\x57\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x7f\x35" "\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\xf5\xfe\xf5" "\xff\xfb\x93\xfe\x7f\x7b\xfa\xff\x1d\xe8\xff\xeb\xff\xfb\xfd\xff\xfa\xff" "\x74\x55\xaf\xf5\xff\x63\xee\x3f\x10\x66\x52\x91\xfc\x0f\x00\x00\x00\x55" "\x10\x73\xff\xaf\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xbf\x3b\xcc" "\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x60\x98\x49\x45\xf2\xbf\xfe\xbf" "\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xeb\xfd\xeb\xff\xf7\x27\xfd\xff\xf6\xf4" "\xff\x3b\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xab\x7a\xad\xff\x1f\x73\xff" "\x7b\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xbf\x27\xcc\x44\xfe" "\x07\x00\x00\x80\xd2\x88\xb9\xff\xbd\x61\x26\xf2\x3f\x00\x00\x00\x94\x46" "\xcc\xfd\xef\x0b\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff" "\x6f\xbd\x7f\xfd\xff\xfe\xa4\xff\xdf\x9e\xfe\x7f\x07\xfa\xff\xfa\xff\xfa" "\xff\xfa\xff\x74\x55\xaf\xf5\xff\x63\xee\x7f\x7f\x98\x49\x45\xf2\x3f\x00" "\x00\x00\x54\x41\xcc\xfd\x1f\x08\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee" "\xff\x60\x98\x89\xfc\x0f\x00\x00\x00\x7d\xa2\x73\xed\x2e\xe6\xfe\x0f\x85" "\x99\x54\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xb7\xde\xbf\xfe" "\x7f\x7f\xd2\xff\x6f\x4f\xff\xbf\x03\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xba" "\xaa\xd7\xfa\xff\x31\xf7\xff\x7a\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41" "\xcc\xfd\xf7\x86\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x7f\x38\xcc\x44" "\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x23\x61\x26\x15\xc9\xff\xfa\xff\xfa" "\xff\xfa\xff\xfa\xff\xfa\xff\xad\xf7\xaf\xff\xdf\x9f\xf4\xff\xdb\xeb\xb3" "\xfe\xff\x2f\x6f\x0c\x97\xeb\xff\x17\xf4\xff\x7b\xfb\xf8\xfb\xab\xff\x3f" "\xbf\xa6\xf9\xf6\xfa\xff\x5c\x0b\xbd\xd6\xff\x8f\xb9\xff\xa3\x61\x26\x15" "\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\x7f\x2c\xcc\x44\xfe\x07\x00\x00\x80" "\xd2\x88\xb9\xff\xe3\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xbf\x11" "\x66\x52\x91\xfc\xaf\xff\x5f\x3b\x8e\x85\xf6\xb2\xfe\xbf\xfe\x7f\x7e\x81" "\xfe\xbf\xfe\xbf\xfe\x7f\xdf\xd2\xff\x6f\xaf\xcf\xfa\xff\x7e\xff\x7f\x13" "\xfd\xff\xde\x3e\xfe\xfe\xea\xff\x2f\xa6\xff\xcf\xb5\x70\x8d\xfb\xff\xa3" "\x2b\xed\xff\xc7\xdc\xff\x89\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98" "\xfb\xef\x0b\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xff\x64\x98\x89\xfc" "\x0f\x00\x00\x00\xa5\x11\x73\xff\xa7\xc2\x4c\x2a\x92\xff\xf5\xff\xfd\xfe" "\x7f\xfd\x7f\xfd\x7f\xfd\xff\xd6\xfb\xd7\xff\xef\x4f\xfa\xff\xed\xe9\xff" "\x77\xa0\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x57\x5d\xe3\xfe\x7f\xc7\xbe\x7f" "\xf3\xc7\x31\xf7\xdf\x1f\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff" "\x03\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xbf\x19\x66\x22\xff\x03" "\x00\x00\x40\x69\xc4\xdc\xff\xe9\x30\x93\x8a\xe4\x7f\xfd\xff\x7e\xe9\xff" "\x8f\xeb\xff\xeb\xff\xeb\xff\x37\x3d\x1e\xfd\x7f\xfd\xff\x56\xf4\xff\xdb" "\xd3\xff\xef\x40\xff\x5f\xff\x5f\xff\x5f\xff\x9f\xae\xea\xb5\xfe\x7f\xcc" "\xfd\x0f\x86\x99\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\xff\x5b\x61\x26" "\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xbf\x1d\x66\x22\xff\x03\x00\x00\x40" "\x69\xc4\xdc\xff\x3b\x61\x26\x15\xc9\xff\xfa\xff\xfd\xd2\xff\xf7\xfb\xff" "\x33\xfd\x7f\xfd\xff\xa6\xc7\xa3\xff\xaf\xff\xdf\xca\xea\xf5\xff\xe3\x3b" "\x8f\xfe\xbf\xfe\xbf\xfe\x7f\xa4\xff\xaf\xff\xaf\xff\x4f\xb3\x5e\xeb\xff" "\xc7\xdc\xff\xbb\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\x3f\x14" "\x66\x22\xff\x03\x00\x00\x40\x5f\x68\xf5\xff\x64\x37\x8b\xb9\xff\x50\x98" "\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xe1\x30\x93\x8a\xe4\x7f\xfd\x7f" "\xfd\x7f\xfd\xff\x1e\xed\xff\xff\xe9\xe6\x7f\xfe\xe1\xf7\x3f\x76\x78\x87" "\xfe\xbf\xfe\xbf\xfe\xff\x8a\xac\xea\xef\xff\xaf\xbd\xf8\xfd\xfe\x7f\xfd" "\x7f\xfd\xff\x44\xff\x5f\xff\x5f\xff\x9f\x66\xbd\xd6\xff\x8f\xb9\xff\x48" "\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\xbf\x17\x66\x22\xff\x03" "\x00\x00\x40\x69\xc4\xdc\x7f\x34\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9" "\x7f\x3a\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\xbf\x47\xfb\xff\x7d\xfc" "\xfb\xff\xe3\xf9\xd0\xff\x6f\xd4\xb5\xfe\x7f\x7c\xd3\xd5\xff\x6f\x69\x55" "\xfb\xff\x0f\x2c\xf4\xc4\xf5\xff\x57\xda\xff\x1f\x6d\x79\xa9\xfe\xbf\xfe" "\x7f\x3f\x1f\xbf\xfe\xbf\xfe\x3f\x8b\xf5\x5a\xff\x3f\xe6\xfe\x99\x30\x93" "\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x90\xfb\x07\x8f\x15\x73\xe1\x0a\xf9\x1f" "\x00\x00\x00\x4a\x23\xe6\xfe\xe3\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc" "\xfd\x0f\x87\x99\x54\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xfb\xfd\xff" "\xad\xf7\xdf\xb3\xfd\x7f\xbf\xff\xbf\x2d\xfd\xff\xf6\x7a\xa7\xff\xdf\x9a" "\xfe\xff\x6a\xf7\xff\x1b\xdf\xc1\xaf\x77\x7f\xfe\x6a\x5d\xef\xe3\xd7\xff" "\xd7\xff\x67\xb1\x5e\xeb\xff\xc7\xdc\x3f\x1b\x66\x52\x91\xfc\x0f\x00\x00" "\x00\x55\x10\x73\xff\x67\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x3f" "\x1b\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x7f\x22\xcc\xa4\x22\xf9\x5f" "\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\xf5\xfe\xf5\xff\xfb\x93\xfe\x7f" "\x7b\xfa\xff\x1d\x54\xae\xff\xdf\xe8\x7a\xf7\xe7\xfb\xfd\xf8\xf5\xff\xf5" "\xff\x59\xac\xd7\xfa\xff\x31\xf7\x9f\x0c\x33\xa9\x48\xfe\x07\x00\x00\x80" "\x2a\x88\xb9\xff\x54\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xe9\x30" "\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x33\x61\x26\x15\xc9\xff\xfa\xff" "\xfa\xff\xa5\xed\xff\xff\x1f\x7b\xf7\xd5\xac\x57\x5d\xf6\x71\xfc\xce\xf3" "\x84\x81\x0c\x2f\xe0\x39\x78\x4e\x3c\xf7\x25\x70\xa0\xc7\xfa\x02\x3c\xf0" "\xc4\x13\x67\x1c\x0f\x9c\x51\xec\x0d\xb0\x57\xec\xbd\x60\xef\x58\x40\x11" "\x1b\xf6\x06\x36\x14\xbb\xd8\x7b\x17\x3b\x3a\x13\xc7\xc9\x75\x5d\xc9\xde" "\x59\x7b\xdd\x3b\x61\x25\x59\xf7\xff\xfa\x7c\x4e\x2e\xdd\x61\xb3\x36\x90" "\x49\xf8\x91\x7c\x67\xdd\x43\xff\x7f\xd0\xf3\xf5\xff\xfa\xff\x91\xe9\xff" "\xe7\xe9\xff\xb7\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x16\xb5\xb6\xfe\x3f\x77" "\xff\x83\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x90\xb8\xc5\xfe" "\x07\x00\x00\x80\x61\xe4\xee\xbf\x3c\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9" "\xfb\x1f\x1a\xb7\x34\xd9\xff\xfb\xfa\xff\x23\x9b\x9e\xfd\x7f\x66\xbc\xfa" "\xff\x91\xfa\x7f\xef\xff\x3f\xf0\xf9\xfa\x7f\xfd\xff\xc8\xce\x6f\xff\x7f" "\xd5\x7f\x7f\xe4\xd3\xff\xeb\xff\xf5\xff\x41\xff\xaf\xff\xd7\xff\xb3\xdf" "\xda\xfa\xff\xdc\xfd\x0f\x8b\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff" "\xc3\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x11\x71\x8b\xfd\x0f\x00" "\x00\x00\xc3\xc8\xdd\xff\xc8\xb8\xa5\xc9\xfe\xf7\xfe\x7f\xef\xff\xd7\xff" "\xeb\xff\xf5\xff\xd3\xcf\xd7\xff\xef\x26\xef\xff\x9f\xd7\xa9\xff\xbf\xfc" "\xb6\x4b\x1f\x74\xc7\x0d\xff\x7f\xe3\x99\x3c\x5f\xff\xaf\xff\xd7\xff\xeb" "\xff\x59\xd6\xda\xfa\xff\xdc\xfd\x8f\x8a\x5b\x9a\xec\x7f\x00\x00\x00\xe8" "\x20\x77\xff\xa3\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x31\x71\x8b" "\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xd8\xb8\xa5\xc9\xfe\xd7\xff\x77\xe9" "\xff\x4f\xfc\x93\xd3\xff\xeb\xff\xf5\xff\xfa\xff\xd1\xe9\xff\xe7\x75\xea" "\xff\xcf\xe6\xf9\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xb2\xd6\xd6\xff\xe7\xee" "\x7f\x5c\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x1f\x1f\xb7\xd8\xff" "\x00\x00\x00\x30\x8c\xdc\xfd\x57\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77" "\xff\x95\x71\x4b\x93\xfd\xaf\xff\xef\xd2\xff\x7b\xff\xbf\xfe\x5f\xff\xaf" "\xff\xef\x41\xff\x3f\x4f\xff\xbf\x85\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\xa8" "\xb5\xf5\xff\xb9\xfb\xaf\x8a\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff" "\x13\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x89\x71\x8b\xfd\x0f\x00" "\x00\x00\xc3\xc8\xdd\xff\xa4\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa" "\x7f\xfd\xff\xf4\xf3\xf5\xff\xbb\x49\xff\x3f\x4f\xff\xbf\x85\xfe\xff\xae" "\xf6\xf3\x17\xe9\xff\xf5\xff\xfa\x7f\x4e\x75\x86\xfd\xff\x9d\x33\x3f\x6c" "\x2f\xd2\xff\xe7\xee\x7f\x72\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb" "\x9f\x12\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x4f\x8d\x5b\xec\x7f\x00" "\x00\x00\x18\x46\xee\xfe\xa7\xc5\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7" "\xff\xeb\xff\xa7\x9f\xaf\xff\xdf\x4d\xfa\xff\x79\xab\xe9\xff\x8f\x1c\x9d" "\xfc\xb0\xfe\x7f\x91\xfe\x7f\xfa\x6f\xee\x21\x5c\xe8\x7e\xfe\xae\xba\xd0" "\x5f\xbf\xfe\x5f\xff\xcf\xe9\xd6\xf6\xfe\xff\xdc\xfd\x4f\x8f\x5b\x9a\xec" "\x7f\x00\x00\x00\xe8\x20\x77\xff\x33\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91" "\xbb\xff\x99\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xac\xb8\xa5\xc9" "\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf4\xf3\xe7\xfa\xff\x1b\x4f" "\xf9\xfa\xf4\xff\xeb\xa2\xff\x9f\xb7\x9a\xfe\xff\x00\xfa\xff\x9d\x7f\xff" "\xbf\xfe\x5f\xff\xaf\xff\x67\x8f\xb5\xf5\xff\xb9\xfb\x9f\x1d\xb7\x34\xd9" "\xff\x00\x00\x00\xd0\x41\xee\xfe\xab\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91" "\xbb\xff\x39\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xdc\xb8\xa5\xc9" "\xfe\x9f\xee\xff\x4f\x7e\xbb\xfe\xff\x70\xf4\xff\x7b\xbf\x7e\xfd\xff\xf4" "\xf7\x8f\xa5\xfa\xff\xfc\x33\xea\xff\x67\xfb\xff\x7b\x7a\xff\x7f\x4f\xfa" "\xff\x79\xfa\xff\x2d\xf4\xff\xfa\x7f\xfd\xff\x41\xfd\xff\xb1\x6d\x9f\xaf" "\xff\x67\xca\xda\xfa\xff\xdc\xfd\xcf\x8b\x5b\x9a\xec\x7f\x00\x00\x00\xe8" "\x20\x77\xff\xf3\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x05\x71\x8b" "\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xc2\xb8\xa5\xc9\xfe\xf7\xfe\x7f\xfd" "\xbf\xfe\x7f\xf7\xfa\x7f\xef\xff\x3f\xe1\x42\xbe\xff\x7f\x73\xde\xfb\xff" "\xa3\xfa\xff\x43\xd2\xff\xcf\xd3\xff\x6f\xa1\xff\xd7\xff\xeb\xff\xbd\xff" "\x9f\x45\xad\xad\xff\xcf\xdd\xff\xa2\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e" "\x72\xf7\xbf\x38\x6e\xb1\xff\x01\x00\x00\x60\x37\x9c\xfa\x7b\x07\xf6\xff" "\x86\xd2\x90\xbb\xff\x25\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xd2" "\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf4\xf3\xd7\xd5" "\xff\x7b\xff\xff\x61\xe9\xff\xe7\xe9\xff\xb7\xd0\xff\x9f\x8b\x7e\xfe\xe8" "\x60\xfd\xff\x35\x07\x7d\xfe\x1a\xfa\xff\x2b\xf4\xff\xac\xcc\x9e\xfe\xff" "\xa6\x93\x1f\xbf\x50\xfd\x7f\xee\xfe\x97\xc5\x2d\x4d\xf6\x3f\x00\x00\x00" "\x74\x90\xbb\xff\xe5\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x8a\xb8" "\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x65\xdc\xd2\x64\xff\x9f\xf3\xfe" "\xff\xd8\xc1\xcf\xd6\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\x69\xfa" "\xff\x79\xfa\xff\x2d\xf4\xff\xde\xff\xef\xfd\xff\xfa\x7f\x16\xb5\xa7\xff" "\x3f\xc5\x85\xea\xff\x73\xf7\xbf\x2a\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83" "\xdc\xfd\xaf\x8e\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x6b\xe2\x16\xfb" "\x1f\x00\x00\x00\x86\x91\xbb\xff\x35\x71\x4b\x93\xfd\xef\xfd\xff\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\x3f\xfd\x7c\xfd\xff\x6e\xd2\xff\xcf\xd3\xff\x6f\xa1" "\xff\xd7\xff\xeb\xff\xf5\xff\x2c\x6a\x6d\xfd\x7f\xee\xfe\xd7\xc6\x2d\x4d" "\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x75\x71\x8b\xfd\x0f\x00\x00\x00\xc3" "\xc8\xdd\xff\xfa\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x43\xdc\xd2" "\x64\xff\xeb\xff\xcf\x6d\xff\x9f\x1f\xd7\xff\xeb\xff\x37\xfa\x7f\xfd\xbf" "\xfe\xff\xbc\x68\xdb\xff\x1f\x99\xfa\x99\xe8\x74\x07\xf4\xff\xb7\x3c\xe0" "\xca\x7b\xef\xfd\x88\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x59\xc0\x2a\xfa" "\xff\xe3\x27\xff\xed\x32\x77\xff\x1b\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a" "\xc8\xdd\xff\xa6\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x73\xdc\x62" "\xff\x03\x00\x00\xc0\x30\x72\xf7\xbf\x25\x6e\x69\xb2\xff\xf5\xff\xde\xff" "\xaf\xff\xd7\xff\xeb\xff\xa7\x9f\xaf\xff\xdf\x4d\x6d\xfb\xff\x43\xf2\xfe" "\xff\x2d\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x45\xad\xa2\xff\x3f\xe5\xff\xe7" "\xee\x7f\x6b\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xdf\x16\xb7\xd8" "\xff\x00\x00\x00\x30\x8c\xdc\xfd\x6f\x8f\x5b\xec\x7f\x00\x00\x00\x18\x46" "\xee\xfe\x77\xc4\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xa7" "\x9f\xaf\xff\xdf\x4d\xfa\xff\x79\xfa\xff\x2d\xf4\xff\xfa\x7f\xfd\xbf\xfe" "\x9f\x45\xad\xad\xff\xcf\xdd\x7f\x6d\xdc\xd2\x64\xff\x03\x00\x00\x40\x07" "\xb9\xfb\xdf\x19\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xef\x8a\x5b\xec" "\x7f\x00\x00\x00\x18\x46\xee\xfe\x77\xc7\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\xa7\x9f\xaf\xff\xdf\x4d\xfa\xff\x79\xfa\xff\xcd\x66" "\x73\xdd\xcc\x17\x30\xd5\xff\x1f\xbf\x58\xff\xaf\xff\xd7\xff\xeb\xff\x39" "\x4b\x6b\xeb\xff\x73\xf7\xbf\x27\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc" "\xfd\xd7\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xf5\x71\x8b\xfd\x0f" "\x00\x00\x00\xc3\xc8\xdd\xff\xde\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\xff\xf4\xf3\xf5\xff\xbb\x49\xff\x3f\x4f\xff\xbf\x85\xf7\xff" "\xeb\xff\xf5\xff\xfa\x7f\x16\xb5\xb6\xfe\x3f\x77\xff\xfb\xe2\x96\x26\xfb" "\x1f\x00\x00\x00\x3a\xc8\xdd\x7f\x43\xdc\x62\xff\x03\x00\x00\xc0\x30\x72" "\xf7\xbf\x3f\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x6f\x8c\x5b\x9a\xec" "\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x4f\x3f\x5f\xff\xbf\x9b\xce\x5d" "\xff\xbf\xd1\xff\xeb\xff\xf5\xff\x5b\xe8\xff\xf5\xff\xfa\x7f\xf6\x5b\x5b" "\xff\x9f\xbb\xff\x03\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x60" "\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x7f\x28\x6e\xb1\xff\x01\x00\x00" "\x60\x18\xb9\xfb\x3f\x1c\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf" "\xff\x9f\x7e\xbe\xfe\x7f\x37\x79\xff\xff\x3c\xfd\xff\x16\xfa\x7f\xfd\xbf" "\xfe\x5f\xff\xcf\xa2\xd6\xd6\xff\xe7\xee\xff\x48\xdc\xd2\x64\xff\x03\x00" "\x00\x40\x07\xb9\xfb\x6f\x8a\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x8f" "\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xc7\xe2\x96\x26\xfb\x5f\xff" "\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xd3\xcf\x3f\x0f\xfd\xff\x25\x1b\xfd\xff" "\xe2\xf4\xff\xf3\xf4\xff\x5b\xe8\xff\xc7\xec\xff\xff\x67\x33\x50\xff\x7f" "\xec\xc0\xcf\xd7\xff\xb3\x46\x6b\xeb\xff\x73\xf7\x7f\x3c\x6e\x69\xb2\xff" "\x01\x00\x00\xa0\x83\xdc\xfd\x9f\x88\x5b\xec\x7f\x00\x00\x00\x18\x46\xee" "\xfe\x4f\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xa7\xe2\x96\x26\xfb" "\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xd3\xcf\xf7\xfe\xff\xdd\xa4\xff" "\x9f\xa7\xff\xdf\x42\xff\x3f\x66\xff\xef\xfd\xff\xfa\x7f\x2e\x98\xb5\xf5" "\xff\xb9\xfb\x3f\x1d\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xcf\xc4" "\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x67\xe3\x16\xfb\x1f\x00\x00\x00" "\x86\x91\xbb\xff\x73\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa" "\xff\xe9\xe7\xeb\xff\x77\x93\xfe\x7f\x9e\xfe\x7f\x0b\xfd\xbf\xfe\x5f\xff" "\xaf\xff\x67\x51\x6b\xeb\xff\x73\xf7\x7f\x3e\x6e\x69\xb2\xff\x01\x00\x00" "\xa0\x83\xdc\xfd\x37\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x2d\x27" "\xee\xb1\xfa\x06\xfb\x1f\x00\x00\x00\x86\x11\xbb\x7f\xf3\x85\xb8\xa5\xc9" "\xfe\xd7\xff\xeb\xff\xf5\xff\xbb\xd9\xff\x5f\xa2\xff\xd7\xff\xeb\xff\x27" "\xad\xa5\xff\xbf\xec\xb2\x7b\xdd\xaa\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f" "\xfd\x7f\x77\x6b\xeb\xff\x73\xf7\x7f\x31\x6e\x69\xb2\xff\x01\x00\x00\xa0" "\x83\xdc\xfd\x5f\x8a\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x2f\xc7\x2d" "\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x57\xe2\x96\x26\xfb\xff\xf4\xfe\xff" "\xa2\xcd\x89\x42\xf5\x84\xa9\xfe\x3f\x1a\x35\xfd\xff\x29\xf4\xff\x7b\xbf" "\x7e\xfd\xff\xf4\xf7\x0f\xef\xff\xd7\xff\xeb\xff\xcf\xbd\xb5\xf4\xff\xde" "\xff\x7f\x76\x5f\xbf\xfe\x5f\xff\xbf\xcb\x5f\xff\x19\xf5\xff\x77\x3b\xfd" "\xf3\xf5\xff\x8c\x68\x6d\xfd\x7f\xee\xfe\x5b\xe3\x96\x26\xfb\x1f\x00\x00" "\x00\x3a\xc8\xdd\xff\xd5\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x5a" "\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xdf\x16\xb7\x34\xd9\xff\xde\xff" "\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xd3\xcf\xd7\xff\xef\xa6\x73\xdd\xff\x5f" "\xbc\xd1\xff\xeb\xff\xf5\xff\x07\xd1\xff\x0f\xf2\xfe\xff\xff\xd5\xff\xb3" "\x9c\xb5\xf5\xff\xb9\xfb\xbf\x1e\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee" "\xfe\x6f\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x37\xe3\x16\xfb\x1f" "\x00\x00\x00\x86\x91\xbb\xff\x5b\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff" "\xf5\xff\xfa\xff\xe9\xe7\xeb\xff\x77\x93\xf7\xff\xcf\xd3\xff\x6f\xa1\xff" "\xd7\xff\xeb\xff\xbd\xff\x9f\x45\xad\xad\xff\xcf\xdd\xff\xed\xb8\xa5\xc9" "\xfe\x07\x00\x00\x80\x0e\x72\xf7\x7f\x27\x6e\xb1\xff\x01\x00\x00\x60\x18" "\xb9\xfb\xbf\x1b\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xdf\x8b\x5b\x9a" "\xec\x7f\xfd\xbf\xfe\x7f\xfc\xfe\xff\x7e\xfa\xff\x7d\xcf\xd7\xff\xeb\xff" "\x47\xa6\xff\xcf\x9f\xd1\xa7\xe9\xff\xb7\xd0\xff\xeb\xff\xf5\xff\xfa\x7f" "\x16\xb5\xb6\xfe\x3f\x77\xff\xed\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4" "\xee\xff\x7e\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x20\x6e\xb1\xff" "\x01\x00\x00\x60\x18\xb9\xfb\x7f\x18\xb7\x34\xd9\xff\xfa\xff\x5e\xfd\xff" "\x91\x4d\xc7\xfe\xdf\xfb\xff\xf5\xff\xfa\xff\x4e\xf4\xff\xf3\xf4\xff\x5b" "\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x8b\x5a\x5b\xff\x9f\xbb\xff\x47\x71\x4b" "\x93\xfd\x0f\x00\x00\x00\xbb\xea\x3e\x77\x7f\xe0\xed\x87\xfd\x63\x73\xf7" "\xff\x38\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x7f\x12\xb7\xd8\xff\x00" "\x00\x00\x30\x8c\xdc\xfd\x3f\x8d\x5b\x9a\xec\x7f\xfd\x7f\xaf\xfe\xbf\xe7" "\xfb\xff\xf5\xff\xfa\x7f\xfd\x7f\x27\xfa\xff\x79\xfa\xff\x2d\xf4\xff\xfa" "\x7f\xfd\xbf\xfe\x9f\x45\xad\xad\xff\xcf\xdd\xff\xb3\xb8\xe5\x94\xe1\x77" "\xf4\x8c\xff\x2a\x01\x00\x00\x80\x35\xc9\xdd\xff\xf3\xb8\xa5\xc9\xaf\xff" "\x03\x00\x00\x40\x07\xb9\xfb\x7f\x11\xb7\x9c\xb6\xff\x8f\x1f\xf2\x77\xb5" "\x03\x00\x00\x00\x6b\x93\xbb\xff\x97\x71\x4b\x93\x5f\xff\xd7\xff\xaf\xbc" "\xff\xdf\xe8\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff\x4c\xe8\xff\xe7\xdd\xc5" "\xfe\xff\xf8\x11\xfd\xbf\xfe\x7f\x86\xfe\x5f\xff\xaf\xff\x67\xbf\xb5\xf5" "\xff\xb9\xfb\x7f\x15\xb7\x34\xd9\xff\x00\x00\x00\x30\xa8\x3d\xff\x45\x21" "\x77\xff\xaf\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x37\x71\x8b\xfd" "\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xdb\xb8\xa5\xc9\xfe\xd7\xff\xaf\xbc\xff" "\x3f\xab\xf7\xff\x1f\xab\xff\xa5\xff\x6f\xde\xff\x5f\x7d\xc9\xe4\xf3\xf5" "\xff\xfa\xff\x91\xe9\xff\xe7\x79\xff\xff\x16\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\xcf\xa2\xd6\xd6\xff\xe7\xee\xff\x5d\xdc\xd2\x64\xff\x03\x00\x00\x40\x07" "\xb9\xfb\x7f\x1f\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x7f\x88\x5b\xec" "\x7f\x00\x00\x00\x18\x46\xee\xfe\x3f\xc6\x2d\x4d\xf6\xbf\xfe\x7f\xc4\xfe" "\xdf\xfb\xff\xf5\xff\xf3\xcf\x1f\xa7\xff\xff\xbf\x4b\xaf\xbc\xf9\xbe\xf7" "\xbf\xfe\x5a\xfd\x3f\x27\x9d\xcf\xfe\x3f\xbf\x2f\xe8\xff\xf5\xff\xfa\xff" "\x13\xf4\xff\xfa\x7f\xfd\x3f\xfb\xad\xad\xff\xcf\xdd\xff\xa7\xb8\xa5\xc9" "\xfe\x07\x00\x00\x80\x0e\x72\xf7\xdf\x11\xb7\xd8\xff\x00\x00\x00\x30\x8c" "\xdc\xfd\x7f\x8e\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xbf\xc4\x2d\x4d" "\xf6\xbf\xfe\x5f\xff\xaf\xff\xdf\xc5\xfe\x3f\x9b\xe2\xee\xfd\xbf\xf7\xff" "\xeb\xff\x4f\xe7\xfd\xff\xf3\xf4\xff\x5b\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f" "\x8b\x5a\x5b\xff\x9f\xbb\xff\xaf\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4" "\xee\xff\x5b\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x3d\x6e\xb1\xff" "\x01\x00\x00\x60\x18\xb9\xfb\xff\x11\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe" "\x7f\x17\xfb\x7f\xef\xff\xdf\xe8\xff\xf5\xff\x07\xd0\xff\xcf\xd3\xff\x6f" "\xa1\xff\xd7\xff\xeb\xff\xf5\xff\x2c\x6a\x6d\xfd\x7f\xee\xfe\x7f\xc6\x2d" "\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xce\xb8\xc5\xfe\x07\x00\x00\x80" "\x61\xe4\xee\xff\x57\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x3b\x6e" "\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x3f\xfd\x7c\xfd\xff\x6e" "\xd2\xff\xcf\xd3\xff\x6f\xa1\xff\xd7\xff\xeb\xff\xf5\xff\x2c\x6a\x6d\xfd" "\x7f\xee\xfe\xff\x04\x00\x00\xff\xff\xca\x11\x75\xb0", 24727); syz_mount_image(0x20000040, 0x20000180, 0, 0x200001c0, 1, 0x6097, 0x20006600); *(uint64_t*)0x20000140 = 8; *(uint64_t*)0x20000148 = 0x8b; syscall(__NR_prlimit64, 0, 0xeul, 0x20000140ul, 0ul); *(uint32_t*)0x20000080 = 7; syscall(__NR_sched_setscheduler, 0, 1ul, 0x20000080ul); res = syscall(__NR_getpid); if (res != -1) r[0] = res; *(uint32_t*)0x20000200 = 4; syscall(__NR_sched_setscheduler, r[0], 2ul, 0x20000200ul); syscall(__NR_mmap, 0x20000000ul, 0xb36000ul, 0xb635773f06ebbeeeul, 0x8031ul, -1, 0ul); memcpy((void*)0x20000040, "./file2\000", 8); res = syscall(__NR_openat, 0xffffff9c, 0x20000040ul, 0x14b042ul, 0ul); if (res != -1) r[1] = res; *(uint64_t*)0x20000100 = 0x20000080; memset((void*)0x20000080, 255, 1); *(uint64_t*)0x20000108 = 0xabfb; syscall(__NR_pwritev2, r[1], 0x20000100ul, 1ul, 0x5405, 0, 0ul); } int main(void) { syscall(__NR_mmap, 0x1ffff000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 7ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x21000000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); for (procid = 0; procid < 6; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }