// https://syzkaller.appspot.com/bug?id=6cc491be132cfdce3fd4c75357d4606bed322b31 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[1] = {0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x200003c0, "jfs\000", 4); memcpy((void*)0x20000080, "./file0\000", 8); memcpy( (void*)0x2000b880, "\x78\x9c\xec\xdd\x4b\x8f\x1c\x57\xd9\x07\xf0\xa7\xfa\x36\x97\xbc\x71\xac" "\x2c\xf2\x06\x0b\xa1\x49\x62\x2e\x21\xc4\xd7\x60\x0c\x01\x62\x2f\x60\xc1" "\x86\x05\xf2\x16\xd9\x72\x26\x91\x85\x03\xc8\x36\xc8\x89\x2c\x3c\xd1\x6c" "\x58\xf0\x21\x40\x48\x2c\x11\x62\xc9\x8a\x0f\x90\x05\x5b\x76\x7c\x80\x58" "\x9a\x41\x02\x65\x95\x42\x35\x73\xce\xb8\xba\x3c\xed\x1e\x7b\x3c\x5d\x3d" "\x53\xbf\x9f\x34\xae\x7a\xfa\x54\x4d\x9f\xf2\xbf\xab\x2f\x53\x55\x7d\x02" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x88\x1f\xfd\xf0\x27" "\x67\x8b\x88\xb8\xfa\xeb\x74\xc3\xf1\x88\xff\x8b\x7e\x44\x2f\x62\xa9\xaa" "\x57\x22\x62\x69\xe5\x78\x5e\x7e\x10\x11\xff\x1f\x5b\xcd\xf1\x52\x44\x0c" "\x17\x22\xaa\xf5\xb7\xfe\x79\x21\xe2\xad\x88\xf8\xe4\x58\xba\x2d\x62\xed" "\xdc\x1e\xfb\xf1\x83\xbf\xfc\xf3\x8f\x3f\x7d\xee\xc7\xff\xf8\xf3\xf0\xf4" "\x7f\xff\x7a\xa7\xff\xf6\xa4\xe5\xee\xde\xfd\xdd\x7f\xfe\x76\x7f\x3f\x5b" "\x0c\x00\x00\x00\xdd\x53\x96\x65\x59\xa4\x8f\xf9\x27\xd2\xe7\xfb\x5e\xdb" "\x9d\x02\x00\x66\x22\xbf\xfe\x97\x49\xbe\x5d\xad\x56\xab\x3b\x5f\x17\x0b" "\xf3\xd5\x1f\xb5\xfa\x19\xd4\x75\xe5\xee\xee\xd7\x8b\x88\x58\xab\xaf\x53" "\xbd\x67\x70\x38\x1e\x00\x0e\x99\xb5\xf8\xac\xed\x2e\xd0\x22\xf9\x77\xda" "\x20\x22\x9e\x6b\xbb\x13\xc0\x5c\x2b\xda\xee\x00\x07\x62\x63\xf3\xde\xf5" "\x22\xe5\x5b\xd4\x5f\x0f\x56\xb6\xdb\xf3\xb9\x20\x63\xf9\xaf\x15\x5b\xeb" "\xe5\xf5\x77\x9b\x4e\xd3\x3c\xc7\x64\x56\x8f\xaf\xf5\xe8\xc7\x8b\x13\xfa" "\xb3\x34\xa3\x3e\xcc\x93\x9c\x7f\xaf\x99\xff\xd5\xed\xf6\x51\x5a\xee\xa0" "\xf3\x9f\x95\x49\xf9\x8f\xb6\x2f\x7d\xea\x9c\x9c\x7f\xbf\x99\x7f\xc3\xd1" "\xc9\xbf\xb7\x6b\xfe\x5d\x95\xf3\x1f\x3c\x51\xfe\x7d\xf9\x03\x00\x00\x00" "\x00\xc0\x1c\xcb\x7f\xff\x3f\xde\xf2\xf1\xdf\x85\xfd\x6f\xca\x9e\x3c\xee" "\xf8\xef\xca\x8c\xfa\x00\x00\x00\x00\x00\x00\x00\x00\xcf\xda\xd3\x8c\xff" "\xf7\x72\x6d\xfc\xbf\x1d\x8d\xf1\xff\xf2\x79\x00\xc6\xff\x03\x00\x00\x80" "\xf6\x55\x9f\xd5\x2b\xbf\x3f\xf6\xf0\xb6\x49\xdf\xc5\x56\xdd\x7e\xa5\x88" "\x78\xbe\xb1\x3c\xd0\x31\xe9\x62\x99\xe5\xb6\xfb\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x5d\x32\xd8\x3e\x87\xf7\x4a\x11\x31\x8c\x88\xe7\x97" "\x97\xcb\xb2\xac\x7e\xea\x9a\xf5\x93\xda\xef\xfa\x87\x5d\xd7\xb7\x1f\xba" "\xac\xed\x27\x79\x00\x00\xd8\xf6\xc9\xb1\xc6\xb5\xfc\x45\xc4\x62\x44\x5c" "\x89\x88\x4b\x11\x31\x5c\x5e\x5e\x2e\xcb\xc5\xa5\xe5\x72\xb9\x5c\x5a\xc8" "\xef\x67\x47\x0b\x8b\xe5\x52\xed\x73\x6d\x9e\x56\xb7\x2d\x8c\xf6\xf0\x86" "\x78\x30\x2a\xab\x5f\xb6\x58\x5b\xaf\x6e\xda\xe7\xe5\x69\xed\xcd\xdf\x57" "\xdd\xd7\xa8\xec\xef\xa1\x63\xb3\xd1\x62\xe0\x00\x10\x11\xdb\xaf\x46\x1b" "\x5e\x91\x8e\x98\xb2\x7c\x21\xda\x7e\x97\xc3\xe1\xf0\xc8\xfe\x5f\x4c\xfa" "\x0a\xb0\x4f\x67\xf3\xe0\x65\xdf\xec\xff\xec\x45\xdb\x8f\x53\x00\x00\x00" "\xe0\xe0\x95\x65\x59\x16\xe9\xeb\xbc\x4f\xa4\xf1\xfd\x7a\x6d\x77\x0a\x00" "\x98\x89\xfc\xfa\xdf\x3c\x2e\xa0\x56\xab\xd5\x6a\xb5\xfa\xe8\xd5\x75\xe5" "\xee\xee\xd7\x8b\x88\x58\xab\xaf\x53\xbd\x67\x30\x1c\x3f\x00\x1c\x32\x6b" "\xf1\x59\xdb\x5d\xa0\x45\xf2\xef\xb4\x41\x44\xbc\xdc\x76\x27\x80\xb9\x36" "\xe1\x82\x20\x0e\xb9\x8d\xcd\x7b\xd7\x8b\x94\x6f\x51\x7f\x3d\x48\xe3\xbb" "\xe7\x73\x41\xc6\xf2\x5f\x2b\xb6\xd6\xcb\xeb\xef\x36\x9d\xa6\x79\x8e\xc9" "\xac\x1e\x5f\xeb\xd1\x8f\x17\x27\xf4\xe7\xa5\x19\xf5\x61\x9e\xe4\xfc\x7b" "\xcd\xfc\xaf\x6e\xb7\x8f\xd2\x72\x07\x9d\xff\xac\x4c\xca\xbf\xda\xce\xe3" "\x2d\xf4\xa7\x6d\x1b\x9b\x97\x07\x55\xb6\xfd\x66\xfe\x0d\x47\x27\xff\xde" "\xae\xf9\x77\x55\xde\xff\x07\x4f\x94\x7f\x7f\xcf\xf9\x5f\x9c\x70\xbf\xf2" "\x07\x00\x00\x00\x00\x80\x83\x93\xff\xfe\x7f\x7c\xae\x8e\xff\x8e\x9e\x76" "\x73\xa6\x7a\xdc\xf1\xdf\x95\x03\xbb\x57\x00\x00\x00\x00\x00\x00\x00\x38" "\x58\x1b\x9b\xf7\xae\xe7\xeb\x5e\xf3\xf1\xff\x2f\xee\xb2\x9c\xeb\x3f\x8f" "\xa6\x9c\x7f\x21\xff\x4e\xca\xf9\xf7\x1a\xf9\x7f\xad\xb1\x5c\xbf\x36\xff" "\xe0\xf2\xc3\xfc\xff\xbd\x79\xef\xfa\x9f\xee\x7c\xfa\x85\x3c\xdd\x6b\xfe" "\x0b\x79\xa6\x48\x8f\xac\x22\x3d\x22\x8a\x74\x4f\xc5\x20\x4d\xf7\xb3\x75" "\x8f\x5a\x1f\xf6\x47\xd5\x3d\x0d\x8b\x5e\x7f\x90\xce\xf9\x29\x87\xef\xc5" "\x8d\xb8\x19\xab\x71\x66\x6c\xd9\x5e\xfa\xff\x78\xd8\x7e\x76\xac\xbd\xea" "\xe9\x70\xab\xbd\xec\x6f\xb7\x9f\x1b\x6b\x1f\xec\xb4\xe7\xf5\xcf\x8f\xb5" "\x0f\xd3\x99\x4e\xe5\x52\x6e\x3f\x15\xd7\xe3\x17\x71\x33\xde\xdd\x6a\xaf" "\xda\x16\xa6\x6c\xff\xe2\x94\xf6\x72\x4a\x7b\xce\xbf\x6f\xff\xef\xa4\x9c" "\xff\xa0\xf6\x53\xe5\xbf\x9c\xda\x8b\xc6\xb4\xf2\xe0\xe3\xde\x23\xfb\x7d" "\x7d\xba\xdb\xfd\x5c\xba\xf1\xa5\xdf\x9e\x39\xf8\xcd\x99\x6a\x3d\xfa\x3b" "\xdb\x56\x57\x6d\xdf\xab\x2d\xf4\x67\xeb\xff\xe4\xb9\x51\xfc\xea\xf6\xea" "\xad\x53\x77\xaf\xdd\xb9\x73\xeb\x6c\xa4\xc9\xd8\xad\xe7\x22\x4d\x9e\xb1" "\x9c\xff\x30\xfd\xec\x3c\xff\xbf\xb6\xdd\x9e\x9f\xf7\xeb\xfb\xeb\x83\x8f" "\x47\x4f\x9c\xff\xbc\x58\x8f\xc1\xc4\xfc\x5f\xab\xcd\x57\xdb\xfb\xfa\x8c" "\xfb\xd6\x86\x9c\xff\x28\xfd\xe4\xfc\xdf\x4d\xed\xbb\xef\xff\x87\x39\xff" "\xc9\xfb\xff\x1b\x2d\xf4\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x1e\xa7\x2c\xcb\xad\x4b\x44\x2f\xf5\x22\x2e\xa4\xeb\x7f\xda\xba\x36" "\x13\x00\x98\xad\x4b\xb1\xfd\xfa\x5f\x26\xf9\xf6\x59\xd5\xfd\x59\xdd\x5f" "\x7f\x7c\xbb\xdb\xda\x5e\xb5\x7a\x9f\x75\x31\x67\xfd\x99\x69\xfd\x79\x39" "\x5f\xfd\x51\xab\x0f\x63\xbd\x63\xf1\x61\x5b\xc3\x3b\xf5\x22\x22\xfe\x5e" "\x5f\xad\x7a\xcf\xf0\x9b\x47\x7e\x19\x00\x30\xe7\x3e\x8f\x88\x7f\xb5\xdd" "\x09\x5a\x23\xff\x0e\xcb\xdf\xf7\x57\x4d\x4f\xb6\xdd\x19\x60\xa6\x6e\x7f" "\xf8\xd1\xcf\xae\xdd\xbc\xb9\x7a\xeb\x76\xdb\x3d\x01\x00\x00\x00\x00\x00" "\x00\x00\x9e\x56\x1e\xff\x73\xa5\x36\xfe\xf3\xc9\xb2\x2c\xef\x37\x96\x1b" "\x1b\xff\xf5\x72\xac\xec\x77\xfc\xcf\x41\x9e\xd9\x19\x60\x74\xc2\x40\xd5" "\xfd\x27\xdf\xa6\xc7\x59\xef\x8d\xfa\xbd\xda\x70\xe3\xaf\xc4\xa4\xf1\xbf" "\x87\x3b\x73\x8f\x1b\xff\x7b\x30\xe5\xfe\x86\x53\xda\x47\x53\xda\x17\xa6" "\xb4\x2f\x4e\x69\x7f\xf4\x42\x8f\x71\x39\xff\x57\x6a\xe3\x9d\x9f\x8c\x88" "\x13\x8d\xe1\xd7\xbb\x30\xfe\x6b\x73\xcc\xfb\x2e\xc8\xf9\xbf\x5a\x7b\x3c" "\x57\xf9\x7f\xb5\xb1\x5c\x3d\xff\xf2\x0f\x87\x39\xff\xde\x58\xfe\xa7\xef" "\x7c\xf0\xcb\xd3\xb7\x3f\xfc\xe8\xcd\x1b\x1f\x5c\x7b\x7f\xf5\xfd\xd5\x9f" "\x9f\x3f\x7b\xf6\xcc\xf9\x0b\x17\x2e\x5e\xbc\x78\xfa\xbd\x1b\x37\x57\xcf" "\x6c\xff\xdb\x62\x8f\x0f\x56\xce\x3f\x8f\x7d\xed\x3c\xd0\x6e\xc9\xf9\xe7" "\xcc\xe5\xdf\x2d\x39\xff\x2f\xa7\x5a\xfe\xdd\x92\xf3\xff\x4a\xaa\xe5\xdf" "\x2d\x39\xff\xfc\x7e\x4f\xfe\xdd\x92\xf3\xcf\x9f\x7d\x6a\xf9\x4f\xfb\xe8" "\xc9\x11\x90\xf3\x7f\x3d\xd5\xf6\xff\x6e\xc9\xf9\x7f\x3d\xd5\xf2\xef\x96" "\x9c\xff\x1b\xa9\x96\x7f\xb7\xe4\xfc\xbf\x91\x6a\xf9\x77\x4b\xce\xff\xcd" "\x54\xcb\xbf\x5b\x72\xfe\xa7\x52\x2d\xff\x6e\xc9\xf9\x9f\x4e\xf5\x1e\xf3" "\x5f\x3a\xe8\x7e\x31\x1b\x1b\x9b\xf7\xb6\x8e\xb0\xe7\x23\x5c\xf6\xff\x6e" "\xc9\xfb\x7f\x3a\xb3\xc1\xd0\x0f\x1d\x93\xf3\x3f\x97\x6a\xfb\x7f\xb7\xe4" "\xfc\xcf\xa7\x5a\xfe\xdd\x92\xf3\x7f\x2b\xd5\xf2\xef\x96\x9c\xff\x37\x53" "\x2d\xff\x6e\xc9\xf9\x5f\x48\xb5\xfc\xbb\x25\xe7\xff\xad\x54\xcb\xbf\x5b" "\x72\xfe\x17\x53\x2d\xff\x6e\xc9\xf9\x7f\x3b\xd5\xf2\xef\x96\x9c\xff\x77" "\x52\x2d\xff\x6e\xc9\xf9\xbf\x9d\x6a\xf9\x77\x4b\xce\xff\xbb\xa9\x96\x7f" "\xb7\xe4\xfc\xbf\x97\x6a\xf9\x77\x4b\xce\xff\xfb\xa9\x96\x7f\xb7\xe4\xfc" "\xdf\x49\xb5\xfc\xbb\xe5\xe1\xf7\xff\x9b\x31\x63\xc6\x4c\x9e\x69\xfb\x99" "\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x68\x9a\xc5\xe9\xc4\x6d\x6f" "\x23\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xff\x63\x07\x0e\x04\x00\x00\x00\x00\x80\xfc\x5f" "\x1b\xa1\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x0a\x3b\x70\x20\x00\x00\x00" "\x00\x00\xe4\xff\xda\x08\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\xd8\xbb" "\xd7\x18\xb9\xce\xfa\x7e\xe0\x67\xaf\x5e\x3b\x37\x03\x21\x7f\x27\xff\x00" "\x6b\xc7\x84\x90\x38\xd9\xb5\x9d\xf8\x42\x9b\x62\xc2\xb5\xe1\x56\x02\xa1" "\xd0\x0b\xb6\xeb\x5d\x9b\x6d\x1d\xdb\x78\xed\x12\x68\x24\x1b\x05\x4a\x24" "\x8c\x8a\x2a\xda\x86\x17\xa5\x80\x50\x9b\x37\x15\x51\x85\x54\x5a\x01\xca" "\x0b\xd4\x0a\xa9\x12\xb4\x95\xe0\x0d\xa2\xaa\xc4\x8b\xa8\x0a\x34\x50\x55" "\x2a\x15\xb0\xd5\x9c\xf3\x3c\xcf\xce\xcc\xce\x65\x2f\xe3\xdd\xb3\xe7\x7c" "\x3e\x52\xfc\xdb\x9d\x39\x73\xce\x33\x67\x9e\x73\x76\x7e\xbb\xf9\xce\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\x00\x00\x00\x00\x00\x00\x00\x00" "\x9a\xed\x7c\xed\xec\xc7\x87\xb2\x2c\x6b\xfc\x97\xff\xb3\x3d\xcb\xae\x6d" "\x7c\xbd\x75\x72\x7b\x7e\xdb\xab\x36\x7a\x84\x00\x00\x00\xc0\x5a\xfd\x3c" "\xff\xf7\xf9\x1b\xd2\x0d\x47\x96\xf1\xa0\xa6\x65\xfe\xf1\xa5\xdf\xfa\xf2" "\xc2\xc2\xc2\x42\xf6\x9e\x91\x3f\x19\xfb\xf4\xc2\x42\xba\x63\x32\xcb\xc6" "\xb6\x64\x59\x7e\x5f\xf4\xf4\xbf\xbf\x77\xa8\x79\x99\xe0\xf1\x6c\x62\x68" "\xb8\xe9\xfb\xe1\x3e\x9b\x1f\xe9\x73\xff\x68\x9f\xfb\xc7\xfa\xdc\x3f\xde" "\xe7\xfe\x2d\x7d\xee\x9f\xe8\x73\xff\x92\x1d\xb0\xc4\xd6\xe2\xf7\x31\xf9" "\xca\x76\xe7\x5f\x6e\x2f\x76\x69\x76\x63\x36\x96\xdf\xb7\xbb\xc3\xa3\x1e" "\x1f\xda\x32\x3c\x1c\x7f\x97\x93\x1b\xca\x1f\xb3\x30\x76\x32\x9b\xcb\x4e" "\x67\xb3\xd9\x74\xcb\xf2\xc5\xb2\x43\xf9\xf2\x5f\xdd\xd9\xd8\xd6\x9b\xb2" "\xb8\xad\xe1\xa6\x6d\xdd\xda\x98\x21\x3f\x7e\xec\x44\x1c\xc3\x50\xd8\xc7" "\xbb\x5b\xb6\xb5\xb8\xce\xe8\x87\xaf\xc9\x26\x7f\xf2\xe3\xc7\x4e\xfc\xe5" "\x85\xe7\x6e\xee\x54\xfb\xee\x86\x96\xf5\x15\xe3\xbc\x63\x57\x63\x9c\x1f" "\x0d\xb7\x14\x63\x1d\xca\xb6\xa4\x7d\x12\xc7\x39\xdc\x34\xce\x5b\x3b\xbc" "\x26\x23\x2d\xe3\x1c\xca\x1f\xd7\xf8\xba\x7d\x9c\xcf\x2f\x73\x9c\x23\x8b" "\xc3\x5c\x57\xed\xaf\xf9\x44\x36\x9c\x7f\xfd\xed\x7c\x3f\x8d\x36\xff\x5a" "\x2f\xed\xa7\x5b\xc3\x6d\xff\x73\x5b\x96\x65\x97\x17\x87\xdd\xbe\xcc\x92" "\x6d\x65\xc3\xd9\xb6\x96\x5b\x86\x17\x5f\x9f\x89\x62\x46\x36\xd6\xd1\x98" "\x4a\x2f\xcc\x46\x57\x34\x4f\x77\x2e\x63\x9e\x36\xea\xcc\xee\xd6\x79\xda" "\x7e\x4c\xc4\xd7\x7f\x67\x78\xdc\x68\x97\x31\x34\xbf\x4c\x3f\xfc\xc8\x78" "\xd3\xeb\xfe\xb3\x85\xd5\xcc\xd3\xa8\xf1\xac\xbb\x1d\x2b\xed\x73\x70\xd0" "\xc7\x4a\x59\xe6\x60\x9c\x17\xdf\xce\x9f\xf4\x13\x1d\xe7\xe0\xee\xf0\xfc" "\x1f\xbb\xbd\xfb\x1c\xec\x38\x77\x3a\xcc\xc1\xf4\xbc\x9b\xe6\xe0\xae\x7e" "\x73\x70\x78\x7c\x24\x1f\x73\x7a\x11\x86\xf2\xc7\x2c\xce\xc1\xbd\x2d\xcb" "\x8f\xe4\x5b\x1a\xca\xeb\xb3\xb7\xf7\x9e\x83\x53\x17\x1e\x39\x37\x35\xff" "\xa1\x0f\xdf\x3d\xf7\xc8\xf1\x53\xb3\xa7\x66\xcf\xec\xdf\xbb\x77\x7a\xff" "\x81\x03\x87\x0e\x1d\x9a\x3a\x39\x77\x7a\x76\xba\xf8\x77\x95\x7b\xbb\xfc" "\xb6\x65\xc3\xe9\x18\xd8\x15\xf6\x5d\x3c\x06\x5e\xd1\xb6\x6c\xf3\x54\x5d" "\xf8\xfc\xf8\x92\xf3\xef\x6a\x8f\xc3\x89\x1e\xc7\xe1\xf6\xb6\x65\x97\x1e" "\x87\x7f\xbb\x35\xcb\x56\x3f\x86\xd1\xf6\x27\x37\xb4\x3e\x07\xe4\xd2\x39" "\x5d\x1c\x1b\xef\x6a\xec\xf4\x89\x2b\xc3\x59\x97\x63\x2c\x7f\x7d\xee\x5c" "\xfb\x71\x98\x9e\x77\xd3\x71\x38\xda\x74\x1c\x76\xfc\x99\xd2\xe1\x38\x1c" "\x5d\xc6\x71\xd8\x58\xe6\xdc\x9d\xcb\x7b\xcf\x32\xda\xf4\x5f\xa7\x31\x74" "\xff\x59\xb0\xb6\x39\xb8\xbd\x69\x0e\xb6\xbf\x1f\x69\x9f\x83\x83\x7e\x3f" "\x52\x96\x39\x38\x11\xe6\xc5\xf7\xee\xec\xfe\xb3\xe0\xd6\x30\xde\x27\xf6" "\xac\xf4\xfd\xc8\xc8\x92\x39\x98\x9e\x6e\x38\xf7\x34\x6e\x49\xef\xf7\x27" "\x0e\xe5\xa5\xd3\xbc\xbc\xa5\x71\xc7\x35\xe3\xd9\xc5\xf9\xd9\xf3\xf7\x3c" "\x7a\xfc\xc2\x85\xf3\x7b\xb3\x50\xd6\xc5\x8b\x9a\xe6\x4a\xfb\x7c\xdd\xd6" "\xf4\x9c\xb2\x25\xf3\x75\x78\xc5\xf3\xf5\xc8\xdc\x4b\x9f\xb8\xa5\xc3\xed" "\xdb\xc3\xbe\x9a\xb8\xbb\xf1\xcf\x44\xd7\xd7\xaa\xb1\xcc\xbd\xf7\xf4\x7e" "\xad\xf2\x9f\x6e\x9d\xf7\x67\xcb\xad\xfb\xb2\x50\x06\x6c\xbd\xf7\x67\xa7" "\x9f\xe6\x8d\xfd\x39\x9e\x65\x9f\xf9\xc6\x47\x1e\xfa\xda\x63\x9f\x79\x6d" "\xd7\xfd\xd9\xe8\x37\x3f\x3a\xb5\xf6\xf7\xe2\xa9\x2f\x6d\x3a\xff\x8e\x75" "\x39\xff\xc6\xbe\xff\x17\xc5\xf6\xd2\xaa\x1e\x1f\x19\x1b\x2d\x8e\xdf\x91" "\xb4\x77\xc6\x5a\xce\xc7\xad\x2f\xd5\x68\x7e\xee\x1a\xca\xb7\xfd\xfc\xd4" "\xf2\xce\xc7\x63\xe1\xbf\xf5\x3e\x1f\xdf\xd8\xe3\x7c\xbc\xa3\x6d\xd9\x41" "\x9f\x8f\xc7\xda\x9f\x5c\x3c\x1f\x0f\xf5\xfb\x6d\xc7\xda\xb4\xbf\x9e\x13" "\x61\x9e\x9c\x9e\xee\x7d\x3e\x6e\x2c\xb3\x63\xdf\x4a\xe7\xe4\x68\xcf\xf3" "\xf1\x6d\xa1\x0e\x85\xfd\xff\xca\xd0\x29\xa4\xbe\xa8\x69\xee\x74\x9b\xb7" "\x69\x5b\xa3\xa3\x63\xe1\x79\x8d\xc6\x2d\xb4\xce\xd3\xfd\x2d\xcb\x8f\x85" "\xde\xac\xb1\xad\xa7\xf6\xad\x6e\x9e\xde\x71\x5b\xb1\xae\x91\xf4\xec\x16" "\xad\xd7\x3c\x9d\x6c\x5b\x76\xd0\xf3\x34\xfd\xee\xab\xdb\x3c\x1d\xea\xf7" "\xdb\xb7\xd5\x69\x7f\x3d\x27\xc2\xbc\xb8\x71\x7f\xef\x79\xda\x58\xe6\x99" "\x7b\xd7\x7e\xee\xdc\x1a\xbf\x6c\x3a\x77\x8e\xf7\x9b\x83\x63\x23\xe3\x8d" "\x31\x8f\xa5\x49\x98\x9f\xef\xb3\x85\xad\x71\x0e\xde\x93\x9d\xc8\xce\x66" "\xa7\xb3\x99\xfc\xde\xf1\x7c\x3e\x0d\xe5\xdb\xda\x73\xdf\xf2\xe6\xe0\x78" "\xf8\x6f\xbd\xcf\x95\x3b\x7a\xcc\xc1\x3b\xda\x96\x1d\xf4\x1c\x4c\x3f\xc7" "\xba\xcd\xbd\xa1\xd1\xa5\x4f\x7e\x00\xda\x5f\xcf\x89\x30\x2f\x9e\xbc\xaf" "\xf7\x1c\x6c\x2c\xf3\xba\x83\x2b\x99\x83\x0b\x7d\xdf\xbb\xde\x11\x6e\x49" "\xcb\x34\xbd\x77\xdd\xd9\xf4\x0b\xec\x5e\xbf\xf3\xba\xa5\x6d\x37\x5d\xad" "\xb9\x32\x1a\xc6\xf9\x8d\x83\xbd\x7f\x37\xdb\x58\xe6\xf4\xa1\x95\xf6\x99" "\xbd\xf7\xd3\x5d\xe1\x96\x6b\x3a\xec\xa7\xf6\xe3\xb7\xdb\x31\x35\x93\x2d" "\x77\x3f\x0d\xad\xf9\x98\x6a\x8c\xf3\xb9\x43\xdd\xf7\x53\x63\x3c\x8d\x65" "\x3e\x7d\xb8\xe3\x7e\x7a\xf0\xb3\xed\x2b\x3d\x92\x65\xd9\xa5\x0f\x3c\x90" "\xff\xbe\x37\xfc\x7d\xe5\x6f\x2e\x7e\xe7\xcb\x2d\x7f\x77\xe9\xf4\x37\x9d" "\x4b\x1f\x78\xe0\x47\xd7\x9d\xfc\x87\x95\x8c\x1f\x80\xcd\xef\x17\x45\xd9" "\x56\xfc\xac\x6b\xfa\xcb\xd4\x72\xfe\xfe\x0f\x00\x00\x00\x6c\x0a\xb1\xef" "\x1f\x0e\x35\xd1\xff\x03\x00\x00\x40\x65\xc4\xbe\x3f\xfe\x5f\xe1\x89\xfe" "\x1f\x00\x00\x00\x2a\x23\xf6\xfd\xa3\xa1\x26\x35\xe9\xff\x77\xbc\xee\xb9" "\xb9\x5f\x5c\xca\x52\x32\x7f\x21\x88\xf7\xa7\xdd\xf0\x60\xb1\x5c\xcc\xb8" "\x4e\x87\xef\x27\x17\x16\x35\x6e\x7f\xe0\x8b\xb3\xff\xfd\xf7\x97\x96\xb7" "\xed\xe1\x2c\xcb\x7e\xf6\xe0\x1f\x74\x5c\x7e\xc7\x83\x71\x5c\x85\xc9\x30" "\xce\xa7\x5f\xdf\x7a\xfb\x12\x5f\xbe\x7b\x59\xdb\x3e\xf6\xf0\xa5\xb4\xdd" "\xe6\xfc\xfa\xe7\xc2\xfa\xe3\xf3\x59\xee\x34\xe8\x14\xc1\x9d\xce\xb2\xec" "\xab\x37\x7c\x32\xdf\xce\xe4\x7b\xaf\xe4\xf5\x99\x07\x8f\xe5\xf5\xa1\xcb" "\x4f\x3c\xde\x58\xe6\xf9\xc3\xc5\xf7\xf1\xf1\xcf\xbe\xa8\x58\xfe\xcf\x43" "\xf8\xf7\xc8\xc9\xe3\x2d\x8f\x7f\x36\xec\x87\x1f\x84\x3a\xfd\xe6\xce\xfb" "\x23\x3e\xee\x4b\x57\x5e\x79\xeb\xc1\x77\x2f\x6e\x2f\x3e\x6e\x68\xd7\xf5" "\xf9\xd3\x7e\xf2\x7d\xc5\x7a\xe3\xe7\xe4\x7c\xea\xf1\x62\xf9\xb8\x9f\xbb" "\x8d\xff\x6b\x9f\x78\xea\x4b\x8d\xe5\x1f\x7d\x79\xe7\xf1\x5f\x1a\xee\x3c" "\xfe\xa7\xc2\x7a\xbf\x18\xea\x4f\x5f\x52\x2c\xdf\xfc\x1a\x34\xbe\x8f\x8f" "\xfb\x58\x18\x7f\xdc\x5e\x7c\xdc\x3d\x5f\xf8\x7a\xc7\xf1\x3f\xfd\xf1\x62" "\xf9\x73\x6f\x28\x96\x3b\x16\x6a\xdc\xfe\x1d\xe1\xfb\xdd\x6f\x78\x6e\xae" "\x79\x7f\x3d\x3a\x74\xbc\xe5\x79\x65\x6f\x2c\x96\x8b\xdb\x9f\xfe\xce\x1f" "\xe5\xf7\xc7\xf5\xc5\xf5\xb7\x8f\x7f\xe2\xe8\x95\x96\xfd\xd1\x3e\x3f\x9e" "\xf9\x97\x62\x3d\x53\x6d\xcb\xc7\xdb\xe3\x76\xa2\xbf\x6b\xdb\x7e\x63\x3d" "\xcd\xf3\x33\x6e\xff\xa9\x3f\x3c\xd6\xb2\x9f\xfb\x6d\xff\xe9\x87\x9e\x7d" "\x49\x63\xbd\xed\xdb\xbf\xab\x6d\xb9\x73\x1f\xb8\x33\xdf\xfe\xe2\xfa\x5a" "\x3f\xb1\xe9\xb3\x1f\xfb\x64\xc7\xed\xc5\xf1\x1c\xf9\xeb\x73\x2d\xcf\xe7" "\xc8\x3b\xc2\x71\x1c\xb6\xff\xe4\xfb\xc2\x7c\x0c\xf7\xff\xef\xd3\xc5\xfa" "\xda\x3f\x5d\xe1\xd8\x3b\x5a\xcf\x3f\x71\xf9\xcf\x6d\xbf\xd4\xf2\x7c\xa2" "\x37\xfd\xa4\xd8\xfe\xd3\xaf\x3e\x95\xd7\x2d\x13\x5b\xb7\x5d\x73\xed\x75" "\xd7\x5f\x7e\x59\x63\xdf\x65\xd9\xb7\xb7\x14\xeb\xeb\xb7\xfd\x53\x7f\x71" "\xb6\x65\xfc\x9f\xbf\xa9\xd8\x1f\xf1\xfe\x98\xd1\x6f\xdf\x7e\x37\x71\xfb" "\xe7\x3f\xb8\xe7\xcc\xd9\xf9\x8b\x73\x33\x69\xaf\x3e\x76\x43\xfe\xd9\x39" "\x6f\x29\xc6\x13\xc7\x7b\x43\x38\xb7\xb6\x7f\x7f\xf4\xec\x85\xf7\xcf\x9e" "\x9f\x9c\x9e\x9c\xce\xb2\xc9\xea\x7e\x84\xde\xaa\x7d\x21\xd4\x1f\x15\xe5" "\xf2\x4a\x1f\x7f\xe7\xc3\xe1\xf5\xbc\xe5\xcf\xbe\xba\xed\xf6\x7f\xfe\x44" "\xbc\xfd\xbb\xef\x2a\x6e\xbf\xf2\xe6\xe2\xe7\xd6\x2b\xc2\x72\x9f\x0a\xb7" "\x6f\x0f\xaf\xdf\x5a\xb7\xff\xe4\xce\x9b\xf2\xe3\x7b\xe8\x99\xe2\xfb\x96" "\x1c\xfb\x00\xdc\xba\xfb\x3f\x0e\x2d\x6b\xc1\xf0\xfc\xdb\xdf\x17\xc4\xf9" "\x7e\xee\xc5\xef\xcf\xf7\x43\xe3\xbe\xfc\xe7\x46\x3c\xae\xd7\x38\xfe\xef" "\xcf\x14\xeb\xf9\x4a\xd8\xaf\x0b\xe1\x93\x99\x77\xdd\xb4\xb8\xbd\xe6\xe5" "\xe3\x67\x23\x5c\x79\x67\x71\xbc\xaf\x79\xff\x85\xd3\x5c\x7c\x5d\xff\x2a" "\xbc\xde\x6f\xfd\x41\xb1\xfe\x38\xae\xf8\x7c\xbf\x1f\xde\xc7\x7c\x7d\x47" "\xeb\xf9\x2e\xce\x8f\xaf\x5c\x1a\x6e\x5f\x7f\xfe\x29\x1e\x97\xc3\xf9\x24" "\xbb\x5c\xdc\x1f\x97\x8a\xfb\xfb\xca\xf3\x37\x75\x1c\x5e\xfc\x1c\x92\xec" "\xf2\xcd\xf9\xf7\x7f\x9c\xd6\x73\xf3\x8a\x9e\x66\xb7\x0f\x71\x9e\xff\xd0" "\xfc\xd4\xe9\xb9\x33\x17\x1f\x9d\xba\x30\x3b\x7f\x61\x6a\xfe\x43\x1f\x3e" "\xfa\xc8\xd9\x8b\x67\x2e\x1c\xcd\x3f\xcb\xf3\xe8\xef\xf6\x5b\xed\xe2\xf9" "\x69\x5b\x7e\x7e\x9a\x99\x3d\x70\x6f\x96\x9f\xad\xce\x16\xe5\x2a\xdb\xe8" "\xf1\x9f\x7b\xf8\xc4\xcc\xc1\xe9\xdb\x67\x66\x4f\x1e\xbf\x78\xf2\xc2\xc3" "\xe7\x66\xcf\x9f\x3a\x31\x3f\x7f\x62\x76\x66\xfe\xf6\xe3\x27\x4f\xce\x7e" "\xb0\xdf\xe3\xe7\x66\xee\xdf\xbb\xef\xf0\xfe\x83\xfb\xf6\x9c\x9a\x9b\xb9" "\xff\xd0\xe1\xc3\xfb\x0f\xef\x99\x3b\x73\xb6\x31\x8c\x62\x50\x7d\x1c\x98" "\xfe\xbd\x3d\x67\xce\x1f\xcd\x1f\x32\x7f\xff\xbd\x87\xf7\xde\x77\xdf\xbd" "\xd3\x7b\x1e\x39\x3b\x33\x7b\xff\xc1\xe9\xe9\x3d\x17\xfb\x3d\x3e\xff\xd9" "\xb4\xa7\xf1\xe8\xdf\xdf\x73\x7e\xf6\xf4\xf1\x0b\x73\x8f\xcc\xee\x99\x9f" "\xfb\xf0\xec\xfd\x7b\x0f\x1f\x38\xb0\xaf\xef\xa7\x01\x3e\x72\xee\xe4\xfc" "\xe4\xd4\xf9\x8b\x67\xa6\x2e\xce\xcf\x9e\x9f\x2a\x9e\xcb\xe4\x85\xfc\xe6" "\xc6\xcf\xbe\x7e\x8f\xa7\x9a\xe6\xff\xad\x78\x3f\xdb\x6e\xa8\xf8\x20\xbe" "\xec\xed\x77\x1d\x48\x9f\xcf\xda\xf0\xc5\x8f\x74\x5d\x55\xb1\x48\xdb\x07" "\x88\x3e\x17\x3e\x8b\xe6\x9b\x2f\x38\x77\x68\x39\xdf\xc7\xbe\x7f\x2c\xd4" "\xa4\x26\xfd\x3f\x00\x00\x00\xd4\x41\xec\xfb\xc7\x43\x4d\xf4\xff\x00\x00" "\x00\x50\x19\xb1\xef\xdf\x12\x6a\xa2\xff\x07\x00\x00\x80\xca\x88\x7d\xff" "\x44\xa8\x49\x4d\xfa\xff\xca\xe5\xff\x77\x5c\x5a\xd6\xf6\xe5\xff\xe5\xff" "\x9b\xf7\x97\xfc\x7f\x25\xf2\xff\x69\x1a\xf5\xcd\xff\xbf\xb3\x6c\xf9\xff" "\xe2\x7c\x21\xff\x3f\x18\x15\xc8\xff\x8f\x35\x7f\x2f\xff\x5f\xdc\x2e\xff" "\x5f\x18\x58\xfe\xbf\x8b\x55\xe6\xe7\xc7\xe3\x17\xf2\xff\xf2\xff\xf2\xff" "\xb4\x2b\x5b\xfe\x3f\xf6\xfd\x5b\xb3\xac\x96\xfd\x3f\x00\x00\x00\xd4\x41" "\xec\xfb\xb7\x85\x9a\xe8\xff\x01\x00\x00\xa0\x32\x62\xdf\x7f\x4d\xa8\xc9" "\x8a\xfa\xff\x85\x6b\x07\x3c\x2c\x00\x00\x00\x60\x80\x62\xdf\x7f\x6d\xa8" "\x49\x4d\xfe\xfe\x5f\x82\xfc\xff\xb8\xfc\xbf\xfc\xbf\xfc\xbf\xfc\x7f\xb6" "\x9e\xd7\xff\x97\xff\xaf\xb4\x0a\xe4\xff\x5d\xff\x5f\xfe\x7f\x43\xf3\xff" "\x59\xbd\xae\xff\x7f\x79\x90\xe3\x5f\xf7\xfc\xff\x58\xeb\xb7\xf2\xff\x94" "\x51\xd9\xf2\xff\xb1\xef\xbf\x2e\xd4\xa4\x26\xfd\x3f\x00\x00\x00\xd4\x41" "\xec\xfb\xaf\x0f\x35\xd1\xff\x03\x00\x00\x40\x65\xc4\xbe\xff\x86\x50\x13" "\xfd\x3f\x00\x00\x00\x54\x46\xec\xfb\xb7\x87\x9a\x6c\xc6\xfe\xbf\x7f\xc4" "\xed\x9b\xed\x37\x94\x20\xff\xef\xfa\xff\xf2\xff\xf2\xff\xf2\xff\x39\xf9" "\x7f\xf9\xff\x41\x90\xff\xef\x4d\xfe\xbf\x0f\xf9\xff\x0d\xbd\x7e\xfe\x66" "\x1f\xbf\xeb\xff\xcb\xff\xb3\x54\xd9\xf2\xff\xb1\xef\x7f\x41\xa8\xc9\x66" "\xec\xff\x01\x00\x00\x80\x8e\x62\xdf\xff\xc2\x50\x13\xfd\x3f\x00\x00\x00" "\x94\xcf\xe8\xea\x1e\x16\xfb\xfe\x17\x85\x9a\x2c\xe9\xff\x57\xb9\x01\x00" "\x00\x00\x60\xc3\xc5\xbe\xff\xc6\xac\x2d\x08\x5e\x93\xbf\xff\xcb\xff\xcb" "\xff\xcb\xff\xcb\xff\xcb\xff\x77\xde\xfe\xf2\xf3\xff\x23\x99\xfc\x7f\x79" "\xc8\xff\xf7\x26\xff\xdf\xc7\x55\xca\xff\x8f\x2f\xae\x7f\xcd\xf9\xff\xe6" "\x73\xae\xfc\x7f\xb9\xc6\x2f\xff\x2f\xff\xcf\x52\x65\xcb\xff\xe7\x7d\x7f" "\x36\x91\xbd\x38\xd4\xa4\x26\xfd\x3f\x00\x00\x00\xd4\x41\xec\xfb\x6f\x0a" "\x35\xd1\xff\x03\x00\x00\x40\x65\xc4\xbe\xff\xff\x85\x9a\xe8\xff\x01\x00" "\x00\xa0\x32\x62\xdf\xbf\x23\xd4\xa4\x26\xfd\xbf\xfc\x7f\xfd\xf2\xff\x5b" "\x9b\x96\x93\xff\x2f\xc8\xff\xcb\xff\x77\xda\xbe\xeb\xff\x6f\x4e\xf2\xff" "\xbd\xc9\xff\xf7\xe1\xfa\xff\xf2\xff\xd5\xcf\xff\xbf\xea\xa1\x2e\x8f\x97" "\xff\xe7\x6a\x28\x5b\xfe\x3f\xf6\xfd\x37\x87\x9a\xd4\xa4\xff\x07\x00\x00" "\x80\x3a\x88\x7d\xff\x2d\xa1\x26\xfa\x7f\x00\x00\x00\xa8\x8c\xd8\xf7\xff" "\xff\x50\x13\xfd\x3f\x00\x00\x00\x54\x46\xec\xfb\x6f\x0d\x35\xa9\x49\xff" "\x2f\xff\x5f\xbf\xfc\xbf\xeb\xff\xcb\xff\xcb\xff\xcb\xff\x57\x99\xfc\x7f" "\x6f\xf2\xff\x7d\xc8\xff\xcb\xff\x57\x3f\xff\xdf\x95\xfc\x3f\x57\x43\xc7" "\xfc\xff\x4f\x17\x16\x16\x36\x28\xff\x1f\xfb\xfe\x97\x84\x9a\xd4\xa4\xff" "\x07\x00\x00\x80\x3a\x88\x7d\xff\x4b\x43\x4d\xf4\xff\x00\x00\x00\x50\x19" "\xb1\xef\x7f\x59\xa8\x89\xfe\x1f\x00\x00\x00\x2a\x23\xf6\xfd\x93\xa1\x26" "\x35\xe9\xff\x4b\x9a\xff\x7f\xa1\xfc\x7f\xf1\xbd\xfc\xbf\xfc\xbf\xfc\x7f" "\x95\xf3\xff\x5b\xd2\x5e\x95\xff\x1f\x1c\xf9\xff\xde\xe4\xff\xfb\x90\xff" "\x97\xff\x1f\x60\xfe\x3f\xb6\x16\xf2\xff\xf2\xff\x75\x56\xb6\xeb\xff\xc7" "\xbe\x7f\x67\xa8\x49\x4d\xfa\x7f\x00\x00\x00\xa8\x83\xd8\xf7\xef\x0a\x35" "\xd1\xff\x03\x00\x00\x40\x49\x6d\x59\x72\xcb\xd6\x3e\x8f\x88\x7d\xff\x6d" "\xa1\x26\xfa\x7f\x00\x00\x00\xa8\x8c\xd8\xf7\xef\x0e\x35\xa9\x49\xff\x5f" "\xd2\xfc\xbf\xeb\xff\xcb\xff\xcb\xff\xcb\xff\x27\xd5\xcd\xff\x2f\xee\x55" "\xf9\xff\xc1\x91\xff\xef\x4d\xfe\xbf\x8f\xea\xe7\xff\x7b\xbe\x4b\xda\xe8" "\xfc\xfc\x5a\x6d\xf4\xf8\x5d\xff\x5f\xfe\x9f\xa5\xca\x96\xff\x8f\x7d\xff" "\xcb\x43\x4d\x6a\xd2\xff\x03\x00\x00\x40\x1d\xc4\xbe\xff\xf6\x50\x13\xfd" "\x3f\x00\x00\x00\x54\x46\xec\xfb\x5f\x11\x6a\xa2\xff\x07\x00\x00\x80\xca" "\x88\x7d\xff\x1d\xa1\x26\x35\xe9\xff\x57\x9e\xff\x2f\x12\x13\xf2\xff\xad" "\xd6\x9c\xff\x0f\x63\x91\xff\x97\xff\x97\xff\x97\xff\x97\xff\x5f\x1b\xf9" "\xff\xde\xe4\xff\xfb\xa8\x7e\xfe\xbf\xa7\x8d\xce\xcf\x97\x70\xfc\x23\xc5" "\x29\x5a\xfe\x5f\xfe\x9f\xd5\x2a\x5b\xfe\x3f\xf6\xfd\xaf\x0c\x35\xa9\x49" "\xff\x0f\x00\x00\x00\x75\x10\xfb\xfe\x3b\x43\x4d\xf4\xff\x00\x00\x00\x50" "\x19\xb1\xef\xbf\x2b\xd4\x44\xff\x0f\x00\x00\x00\x95\x11\xfb\xfe\x3d\xa1" "\x26\x35\xe9\xff\x5d\xff\xbf\x24\xf9\xff\xf0\x18\xf9\x7f\xf9\x7f\xf9\x7f" "\xf9\x7f\xf9\xff\xb5\x91\xff\xef\x4d\xfe\xbf\x0f\xf9\x7f\xf9\x7f\xd7\xff" "\x97\xff\x67\xa0\xca\x96\xff\x8f\x7d\xff\xdd\xa1\x26\x35\xe9\xff\x01\x00" "\x00\xa0\x0e\x62\xdf\x7f\x4f\xa8\x89\xfe\x1f\x00\x00\x00\x2a\x23\xf6\xfd" "\x53\xa1\x26\xfa\x7f\x00\x00\x00\xa8\x8c\xd8\xf7\x4f\x87\x9a\xd4\xa4\xff" "\x5f\xa7\xfc\xff\x68\xa7\x6d\xcb\xff\xcb\xff\xcb\xff\x6f\xc2\xfc\xff\xcb" "\x16\xd7\x2b\xff\x5f\x90\xff\x2f\x17\xf9\xff\xde\xba\xe7\xff\xdb\x86\x2a" "\xff\x3f\xe8\xfc\xff\x68\x58\xbf\xfc\xff\x55\xb4\xd1\xe3\x1f\x4c\xfe\x7f" "\x4c\xfe\x9f\x4a\x29\x5b\xfe\x3f\xf6\xfd\x7b\x43\x4d\x6a\xd2\xff\x03\x00" "\x00\x40\x1d\xc4\xbe\x7f\x5f\xa8\x89\xfe\x1f\x00\x00\x00\x2a\x23\xf6\xfd" "\xfb\x43\x4d\xf4\xff\x00\x00\x00\xb0\xa9\xbc\xba\x47\x5a\x26\xf6\xfd\xf7" "\x86\x9a\xd4\xa4\xff\x77\xfd\xff\x32\xe4\xff\x7f\x2e\xff\xdf\x34\xf6\x75" "\xc9\xff\x7f\x57\xfe\xdf\xf5\xff\xe5\xff\xab\x4a\xfe\xbf\xb7\xc1\x5f\xff" "\x3f\x3e\x45\xf9\x7f\xd7\xff\x97\xff\x77\xfd\x7f\xf9\x7f\x96\x2a\x5b\xfe" "\x3f\xf6\xfd\xf7\x85\x9a\xf4\x6e\xfc\xc6\x7a\x3f\x4b\x00\x00\x00\xa0\x4c" "\x62\xdf\x7f\x20\xd4\xa4\x26\x7f\xff\x07\x00\x00\x80\x3a\x88\x7d\xff\xc1" "\x50\x13\xfd\x3f\x00\x00\x00\x54\x46\xec\xfb\x0f\x85\x9a\xd4\xa4\xff\x97" "\xff\x2f\x43\xfe\xdf\xf5\xff\x5d\xff\x5f\xfe\x3f\x93\xff\x97\xff\x1f\x10" "\xf9\xff\xde\x06\x9f\xff\x77\xfd\x7f\xf9\xff\x45\xf2\xff\xf2\xff\xf2\xff" "\xb4\x2b\x5b\xfe\x3f\xf6\xfd\x87\x43\x4d\x6a\xd2\xff\x03\x00\x00\x40\x1d" "\xc4\xbe\xff\x55\xa1\x26\xfa\x7f\x00\x00\x00\xa8\x8c\xd8\xf7\xff\x52\xa8" "\x89\xfe\x1f\x00\x00\x00\x36\x9f\x2e\x57\xec\x8b\x7d\xff\x2f\x87\x9a\xd4" "\xa4\xff\x97\xff\x97\xff\x97\xff\x97\xff\x97\xff\xef\xbc\x7d\xf9\xff\xcd" "\x49\xfe\xbf\x37\xf9\xff\x3e\x96\x9d\xff\xff\xd7\x4c\xfe\x7f\xa9\xb2\xe6" "\xff\xc7\x33\xf9\x7f\xf9\x7f\x36\x4a\xd9\xf2\xff\xb1\xef\xbf\x3f\xd4\xa4" "\x26\xfd\x3f\x00\x00\x00\xd4\x41\xec\xfb\x7f\x25\xd4\x44\xff\x0f\x00\x00" "\x00\x95\x11\xfb\xfe\x57\x87\x9a\xe8\xff\x01\x00\x00\xa0\x32\x62\xdf\x7f" "\x24\xd4\xa4\x26\xfd\xbf\xfc\xbf\xfc\xbf\xfc\xbf\xfc\xbf\xfc\x7f\xe7\xed" "\x6f\x60\xfe\xff\x48\x26\xff\xbf\x6a\xf2\xff\xbd\xc9\xff\xf7\xe1\xfa\xff" "\x95\xcc\xff\xaf\x75\xfc\xed\x3f\x97\xba\x91\xff\x97\xff\x67\xa9\xb2\xe5" "\xff\x63\xdf\xff\x9a\x50\x93\x9a\xf4\xff\x00\x00\x00\x50\x07\xb1\xef\x7f" "\x20\xd4\x44\xff\x0f\x00\x00\x00\x95\x11\xfb\xfe\xd7\x86\x9a\xe8\xff\x01" "\x00\x00\x60\xf3\x0b\x41\xab\xd8\xf7\xbf\x2e\xd4\xa4\x0e\xfd\x7f\xe3\xe9" "\xca\xff\xcb\xff\xcb\xff\xcb\xff\xcb\xff\x77\xdc\xfe\x55\xcd\xff\x0f\x2d" "\x06\xc3\x5d\xff\x7f\xb0\xe4\xff\x7b\x93\xff\xef\x43\xfe\x5f\xfe\xdf\xf5" "\xff\xe5\xff\x19\xa8\xb2\xe5\xff\x63\xdf\xff\xfa\x50\x93\x3a\xf4\xff\x00" "\x00\x00\xb0\x29\x4d\xae\xf8\x11\xb1\xef\x7f\x43\xa8\x89\xfe\x1f\x00\x00" "\x00\x2a\x23\xf6\xfd\x6f\x0c\x35\xd1\xff\x03\x00\x00\x40\x65\xc4\xbe\xff" "\x4d\xa1\x26\x35\xe9\xff\x5d\xff\x5f\xfe\x5f\xfe\x3f\xcf\xff\xe7\x55\xfe" "\xbf\x75\x39\xf9\xff\x0d\xbb\xfe\xbf\xfc\xff\x1a\xac\x31\x7f\xbf\x30\x94" "\x65\xf2\xff\x99\xfc\xbf\xfc\xbf\xfc\xbf\xfc\xbf\xfc\x3f\x83\x51\xb6\xfc" "\x7f\xec\xfb\x7f\x35\xd4\xa4\x26\xfd\x3f\x00\x00\x00\xd4\x41\xec\xfb\x1f" "\x0c\x35\xd1\xff\x03\x00\x00\x40\x65\xc4\xbe\xff\xcd\xa1\x26\xfa\x7f\x00" "\x00\x00\xa8\x8c\xd8\xf7\xbf\x25\xd4\xa4\x26\xfd\xff\xba\xe5\xff\xdb\x03" "\xbd\xf2\xff\xf2\xff\xe5\xca\xff\xbb\xfe\xbf\xfc\xbf\xfc\x7f\x45\xb8\xfe" "\x7f\x6f\x9b\x2c\xff\xff\xf3\xeb\xc3\xed\xf2\xff\x05\xf9\xff\x1e\x46\x36" "\x7e\xfc\x9b\x2b\xff\xbf\xb0\xa5\xfd\xf1\xf2\xff\x5c\x0d\x65\xcb\xff\xc7" "\xbe\xff\xad\xa1\x26\x35\xe9\xff\x01\x00\x00\xa0\x0e\x62\xdf\xff\xb6\x50" "\x13\xfd\x3f\x00\x00\x00\x54\x46\xec\xfb\xdf\x1e\x6a\xa2\xff\x07\x00\x00" "\x80\xca\x88\x7d\xff\xaf\x85\x9a\xd4\xa4\xff\x77\xfd\xff\xc6\x38\x16\xd3" "\xcb\xf2\xff\xf2\xff\xf9\x0d\xf2\xff\xf2\xff\xf2\xff\x9b\x96\xfc\x7f\x6f" "\x9b\x2c\xff\xef\xfa\xff\x6d\xe4\xff\xcb\x3d\xfe\xcd\x95\xff\x5f\xaa\x5f" "\xfe\x7f\x6b\x9f\xc7\xcb\xff\xd3\x49\xd9\xf2\xff\xb1\xef\x7f\x47\xa8\x49" "\x4d\xfa\x7f\x00\x00\x00\xa8\x83\xd8\xf7\x3f\x14\x6a\xa2\xff\x07\x00\x00" "\x80\xca\x88\x7d\xff\x3b\x43\x4d\xf4\xff\x00\x00\x00\x50\x19\xb1\xef\x7f" "\x57\xa8\x49\x4d\xfa\x7f\xf9\x7f\xd7\xff\x5f\xa7\xfc\xff\x7f\xc9\xff\xcb" "\xff\xcb\xff\xcb\xff\xaf\x07\xf9\xff\xde\xe4\xff\xfb\x90\xff\x97\xff\x97" "\xff\x77\xfd\x7f\x06\xaa\x6c\xf9\xff\xd8\xf7\x3f\x1c\x6a\x52\x93\xfe\x1f" "\x00\x00\x00\xea\x20\xf6\xfd\xef\x0e\x35\xd1\xff\x03\x00\x00\x40\x65\xc4" "\xbe\xff\xd7\x43\x4d\xf4\xff\x00\x00\x00\x50\x19\xb1\xef\x7f\x4f\xa8\x49" "\x4d\xfa\x7f\xf9\xff\xab\x99\xff\x1f\x19\x60\xfe\x7f\x72\xb3\xe7\xff\x5d" "\xff\x7f\x23\xf2\xff\x6d\x41\x7a\xf9\xff\x35\xe4\xff\x47\xe4\xff\x37\x0b" "\xf9\xff\xde\xe4\xff\xfb\x90\xff\x5f\xcf\xfc\x7c\xfb\xe9\x7e\xb3\x8d\x7f" "\x09\xf9\x7f\xf9\x7f\x96\x2a\x5b\xfe\x3f\xf6\xfd\xef\x0d\x35\xa9\x49\xff" "\x0f\x00\x00\x00\x75\x10\xfb\xfe\xdf\x08\x35\xd1\xff\x03\x00\x00\x40\x65" "\xc4\xbe\xff\x37\x43\x4d\xf4\xff\x00\x00\x00\x50\x19\xb1\xef\xff\xad\x50" "\x93\x9a\xf4\xff\xf2\xff\xae\xff\x2f\xff\x5f\xe1\xfc\x7f\x97\xed\xcb\xff" "\xbb\xfe\x7f\x95\xad\x5f\xfe\x3f\x9e\x79\xe4\xff\x4b\x95\xff\x5f\x58\x58" "\xb8\x24\xff\xbf\x6a\x6d\xf9\xf9\xc6\xa6\x5c\xff\xbf\xea\xf9\xff\xb1\xc5" "\x2f\xe5\xff\xb9\x1a\x36\x34\xff\xff\xf9\xa5\xf7\xc7\xbe\xff\xb7\x43\x4d" "\x6a\xd2\xff\x03\x00\x00\x40\x1d\xc4\xbe\xff\x7d\xa1\x26\xfa\x7f\x00\x00" "\x00\xd8\x14\x3a\xfd\x3f\xd9\xed\x62\xdf\x7f\x34\xd4\x44\xff\x0f\x00\x00" "\x00\x95\x11\xfb\xfe\x63\xa1\x26\x35\xe9\xff\x6b\x92\xff\x1f\x6e\xbf\x41" "\xfe\x5f\xfe\xbf\x79\x7f\x95\x32\xff\xff\xa7\xbb\xfe\xe9\x7b\xdf\x7a\xdb" "\xb1\xbd\xf2\xff\xf2\xff\xf2\xff\x2b\xb2\xae\xd7\xff\x6f\x1c\xfc\xab\xbe" "\xfe\xff\xd6\x8e\xb7\xca\xff\xbb\xfe\x7f\x89\xf2\xff\xeb\x9e\x9f\xdf\xec" "\xe3\xdf\x94\xf9\xff\x26\xf2\xff\x5c\x0d\x65\xbb\xfe\x7f\xec\xfb\x8f\x87" "\x9a\xd4\xa4\xff\x07\x00\x00\x80\x3a\x88\x7d\xff\xef\x84\x9a\xe8\xff\x01" "\x00\x00\xa0\x32\x62\xdf\x7f\x22\xd4\x44\xff\x0f\x00\x00\x00\x95\x11\xfb" "\xfe\x99\x50\x93\x9a\xf4\xff\x35\xc9\xff\x2f\x21\xff\x2f\xff\xdf\xbc\xbf" "\x4a\x99\xff\xdf\xc4\xd7\xff\x8f\xfb\xa3\x94\xf9\xff\x38\x59\x8a\xfc\xff" "\xc8\xfa\xe7\xff\x47\xd6\x9e\xff\x8f\x27\x5d\xf9\xff\x8e\xd6\x35\xff\xff" "\xee\xc5\x9c\xb8\xeb\xff\xaf\x34\xff\x3f\xde\xf1\x56\xf9\x7f\xf9\xff\x35" "\xc9\x8f\x38\xf9\x7f\xf9\x7f\xca\xa4\x6c\xf9\xff\xd8\xf7\xcf\x86\x9a\xd4" "\xa4\xff\x07\x00\x00\x80\x3a\x08\x7d\xff\xf0\xc9\xa2\x2e\xde\xa1\xff\x07" "\x00\x00\x80\xca\x88\x7d\xff\xa9\x50\x13\xfd\x3f\x00\x00\x00\x54\x46\xec" "\xfb\xdf\x1f\x6a\xb2\xcc\xfe\xff\xba\xab\x32\xaa\xf5\x23\xff\x2f\xff\x2f" "\xff\x5f\xfa\xfc\xff\x7f\x5e\x9f\xfd\x1f\x7b\x77\xf2\x64\x69\x99\xd5\x71" "\xfc\x26\x24\x54\x55\x10\x86\xee\x5c\xb8\x71\xef\x5f\x60\xb0\x28\xd6\xfa" "\x07\xb8\xc0\x85\x11\x68\x84\xa2\x82\x8a\x38\x6b\x15\xce\x23\xce\xe2\x8c" "\x8a\xb3\x22\x0a\x8a\x88\x8a\xf3\x04\xa2\x62\xd3\x73\xd3\xf3\x3c\xd2\x34" "\x3d\xd1\x1d\x51\x1d\x95\xf7\x9c\x93\x79\xf3\xde\x7c\x6f\x66\xd5\xbd\x99" "\xef\xfb\x3c\x9f\xcf\xe6\xd8\x45\x55\xe7\xa5\x2d\xa0\x7f\x56\x7d\x7d\x66" "\x93\xea\xff\xbd\xff\xbf\x9a\xf7\xff\x4f\x87\xfe\x7f\xd8\x78\xfa\xff\x25" "\x7b\x7f\x49\xe9\xff\xf5\xff\x53\xfe\xfc\xfa\x7f\xfd\x3f\xcb\xc6\xd6\xff" "\xe7\xee\xff\xba\xb8\xc5\xaf\xff\x03\x00\x00\x40\x33\x72\xf7\xdf\x19\xb7" "\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x5f\x1f\xb7\xd8\xff\x00\x00\x00\xd0" "\x8c\xdc\xfd\xdf\x10\xb7\x74\xb2\xff\xf5\xff\xfa\x7f\xfd\xff\xe8\xfb\xff" "\xc9\xbd\xff\xaf\xff\x5f\x4d\xff\x7f\x3a\xf4\xff\xc3\x46\xdc\xff\xef\xd1" "\xff\xeb\xff\xa7\xfc\xf9\xf5\xff\xfa\x7f\x96\x8d\xad\xff\xcf\xdd\xff\x8d" "\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xae\xb8\xc5\xfe\x07\x00" "\x00\x80\x66\xe4\xee\xbf\x3b\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xbf" "\x29\x6e\x69\x6a\xff\x3f\x72\xe4\x1f\xd1\xff\xeb\xff\x4f\xd8\xff\xdf\x7b" "\x6e\x2a\xfd\xff\x45\xfd\xff\x51\x5f\x5f\xff\xaf\xff\x6f\x99\xfe\x7f\x98" "\xfe\x7f\x0d\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xa3\xc6\xd6\xff\xe7\xee\xff" "\xe6\xb8\xa5\xa9\xfd\x0f\x00\x00\x00\x7d\xcb\xdd\xff\x2d\x71\x8b\xfd\x0f" "\x00\x00\x00\xcd\xc8\xdd\x7f\x4f\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7" "\x7f\x6b\xdc\xd2\xc9\xfe\x3f\xd4\xff\xef\xcc\xfa\xec\xff\x33\xe3\xd5\xff" "\x7b\xff\x5f\xff\xaf\xff\xd7\xff\x4f\xdc\xe9\xf6\xff\xf7\x5d\xfd\x3b\xdf" "\x56\xfa\xff\x3b\xe2\xaf\x73\xfd\xff\xfc\xdb\xf5\xff\x73\xfa\xff\x71\x7f" "\x7e\xfd\xbf\xfe\x9f\x65\x63\xeb\xff\x73\xf7\xdf\x1b\xb7\x74\xb2\xff\x01" "\x00\x00\xa0\x41\x5f\x70\xf8\x1b\x72\xf7\x7f\x5b\xdc\x62\xff\x03\x00\x00" "\x40\x33\x72\xf7\x7f\x7b\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x47" "\xdc\xd2\xc9\xfe\xf7\xfe\xbf\xf7\xff\xf5\xff\xfa\x7f\xfd\xff\xea\xaf\xaf" "\xff\x9f\x26\xef\xff\x0f\xeb\xa9\xff\xbf\xe7\xf9\x5b\xee\x7a\xe9\xf1\x2f" "\x7a\xe2\x24\x5f\x7f\x5b\xfd\xff\xee\xfe\xbf\xbf\xfe\x7f\x8b\xce\xfa\xf3" "\xeb\xff\xf5\xff\x2c\x1b\x5b\xff\x9f\xbb\xff\x3b\xe3\x96\x4e\xf6\x3f\x00" "\x00\x00\xf4\x20\x77\xff\x77\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff" "\x77\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xf7\xc4\x2d\x9d\xec\x7f" "\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xaf\xfe\xfa\xfa\xff\x69\xd2\xff\x0f" "\xeb\xa9\xff\xbf\x96\xaf\xef\xfd\x7f\xfd\xff\xda\xcf\x7f\xee\xe8\x1f\xaf" "\xff\xd7\xff\xb3\x6c\x6c\xfd\x7f\xee\xfe\xef\x8d\x5b\x3a\xd9\xff\x00\x00" "\x00\xd0\x83\xdc\xfd\xdf\x17\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x97" "\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x72\xdc\xd2\xc9\xfe\xd7\xff" "\xeb\xff\xf5\xff\x67\xd6\xff\x5f\xfd\x66\xfd\xbf\xfe\x5f\xff\xbf\x61\xfa" "\xff\x61\xfa\xff\x35\xf4\xff\xfa\x7f\xef\xff\xeb\xff\xd9\xa8\xb1\xf5\xff" "\xb9\xfb\xef\x8b\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xdf\x1f\xb7" "\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x3f\x10\xb7\xd8\xff\x00\x00\x00\xd0" "\x8c\xdc\xfd\x3f\x18\xb7\x74\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xf7\xff\xf5" "\xff\xab\xbf\xbe\xfe\x7f\x9a\xf4\xff\xc3\xf4\xff\x6b\xe8\xff\xaf\xb7\x9f" "\xbf\x49\xff\xaf\xff\xd7\xff\x73\xd0\x09\xfb\xff\x57\x06\xfe\xb6\xbd\x91" "\xfe\x3f\x77\xff\x0f\xc5\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x1f" "\x8e\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x1f\x89\x5b\xec\x7f\x00\x00" "\x00\x68\x46\xee\xfe\x1f\x8d\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\xaf\xff\x5f\xfd\xf5\xf5\xff\xd3\xa4\xff\x1f\x36\x9a\xfe\x7f\x67\x77\xe5" "\x37\xeb\xff\x27\xdf\xff\x7b\xff\x5f\xff\xaf\xff\x67\xc1\x81\xfe\x7f\xe1" "\x6f\x88\x67\xf5\xfe\x7f\xee\xfe\x1f\x8b\x5b\x3a\xd9\xff\x00\x00\x00\xd0" "\x83\xdc\xfd\x3f\x1e\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x3f\x11\xb7" "\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x3f\x19\xb7\x74\xb2\xff\xb7\xd9\xff" "\x1f\x6e\x78\x0f\xd3\xff\xeb\xff\xf5\xff\xad\xf4\xff\x37\x2f\x7c\x7b\x0f" "\xfd\xff\x13\x07\x3e\x9f\xfe\x7f\x5c\xf4\xff\xc3\x46\xd3\xff\x1f\x41\xff" "\xaf\xff\x9f\xf2\xe7\xd7\xff\xeb\xff\x59\x76\xa0\xff\x5f\x70\x56\xfd\x7f" "\xee\xfe\x9f\x8a\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xf7\xc7\x2d" "\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x4f\xc7\x2d\xf6\x3f\x00\x00\x00\x34" "\x23\x77\xff\xcf\xc4\x2d\x9d\xec\xff\xd5\xfd\xff\xfe\x1f\xf7\xfe\xff\xf1" "\xe8\xff\x17\x3f\xbf\xfe\x7f\xf5\xcf\x8f\x4d\xf5\xff\xf9\xef\xb8\xed\xfe" "\xff\xaa\x09\xbf\xff\x7f\x9b\xf7\xff\xfb\xa4\xff\x1f\xa6\xff\x5f\x43\xff" "\xaf\xff\xd7\xff\x1f\xd5\xff\x5f\x58\xf7\xe3\xf5\xff\xac\x32\xb6\xfe\x3f" "\x77\xff\xcf\xc6\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x9f\x8b\x5b" "\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x9f\x8f\x5b\xec\x7f\x00\x00\x00\x68" "\x46\xee\xfe\x5f\x88\x5b\x3a\xd9\xff\xdb\x7c\xff\x7f\x1d\xfd\xbf\xfe\xbf" "\xb3\xfe\xbf\xb2\xf6\xf6\xde\xff\x5f\x34\x92\xfe\x7f\xab\xef\xff\xcf\x4e" "\xbd\xff\xdf\xd5\xff\x1f\x93\xfe\x7f\x98\xfe\x7f\x0d\xfd\xbf\xfe\x5f\xff" "\xef\xfd\x7f\x36\x6a\x6c\xfd\x7f\xee\xfe\x5f\x8c\x5b\x3a\xd9\xff\x00\x00" "\x00\xd0\x83\xdc\xfd\xbf\x14\xb7\xd8\xff\x00\x00\x00\x30\x0d\x07\x7f\xef" "\xc0\xe1\xdf\x50\x1a\x72\xf7\x3f\x10\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xf9" "\xee\xaf\x7a\x77\xff\x0f\x74\xb2\xff\xf5\xff\x7d\xf7\xff\x97\xf5\xff\x7b" "\xa6\xf6\xfe\xbf\xfe\x7f\xae\xaf\xfe\xdf\xfb\xff\xc7\xa5\xff\x1f\xa6\xff" "\x5f\x43\xff\xbf\x8d\x7e\x7e\xb7\xb1\xfe\xff\xc1\xa3\x7e\xfc\x18\xfa\xff" "\x4b\xfa\x7f\x46\x66\xa1\xff\x7f\x6a\xff\xdb\xcf\xaa\xff\xff\xe5\xbd\x1f" "\x75\x7e\xf6\x2b\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x57\xe3" "\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xd7\xe2\x16\xfb\x1f\x00\x00\x00" "\x9a\x91\xbb\xff\xd7\xe3\x96\x4e\xf6\xff\xd6\xfb\xff\x0b\x47\x7f\x6d\xfd" "\xff\xd9\xf7\xff\xde\xff\x9f\xdb\x78\xff\x7f\x7e\xf5\xcf\x0f\xfd\xbf\xfe" "\x5f\xff\xbf\x7d\x0d\xf5\xff\x7b\x3f\x45\xf4\xff\xf3\x6f\xd7\xff\xcf\x4d" "\xb4\xff\xf7\xfe\xbf\xf7\xff\xf5\xff\x1d\x5b\xe8\xff\x0f\x38\xab\xfe\x3f" "\x77\xff\x6f\xc4\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xdf\x8c\x5b" "\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x07\xe3\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\xb7\xe2\x96\x63\xee\xff\x73\x5b\xf9\x54\xa7\xc7\xfb\xff\xfa" "\x7f\xfd\xbf\xf7\xff\xf5\xff\xab\xbf\xbe\xfe\x7f\x9a\x1a\xea\xff\xf7\xe8" "\xff\xe7\xdf\xde\x78\xff\x5f\x5d\xb7\xfe\x7f\xda\x9f\x5f\xff\xaf\xff\x67" "\xd9\xd8\xfa\xff\xdc\xfd\xbf\x1d\xb7\xf8\xf5\x7f\x00\x00\x00\x68\x46\xee" "\xfe\xdf\x89\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x87\xe2\x16\xfb\x1f" "\x00\x00\x00\x9a\x91\xbb\xff\x77\xe3\x96\x4e\xf6\xbf\xfe\x7f\xbb\xfd\x7f" "\x7e\xfb\xd6\xfb\xff\xdd\xc5\xaf\xad\xff\xd7\xff\x0f\x7d\xfd\x11\xf7\xff" "\xb7\xe9\xff\xf5\xff\xd7\xab\xdb\xfe\x7f\x67\xd5\x3f\x89\x96\x1d\xd1\xff" "\x3f\xf3\xb5\x97\xbf\x7c\xf1\x5b\x4e\xab\xff\xbf\xe7\x4b\x17\xfe\xe5\x19" "\xf4\xff\x8b\xff\xc1\x79\xff\x5f\xff\xaf\xff\xd7\xff\xb3\x51\xa3\xe8\xff" "\xaf\xec\xff\xb7\xcb\xdc\xfd\xbf\x17\xb7\x74\xb2\xff\x01\x00\x00\xa0\x11" "\x83\xff\x2f\xfa\x73\xf7\xff\x7e\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7" "\xff\x41\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x61\xdc\x12\xfb\xff" "\xb1\xcf\x3f\x93\x8f\x75\x6a\xf4\xff\xde\xff\xd7\xff\xeb\xff\x47\xd4\xff" "\x7b\xff\x5f\xff\x7f\xdd\xba\xed\xff\x8f\xc9\xfb\xff\x6b\xe8\xff\xf5\xff" "\xfa\x7f\xfd\x3f\x1b\x35\x8a\xfe\xff\xc0\xbf\xce\xdd\xff\x47\x71\x8b\x5f" "\xff\x07\x00\x00\x80\x66\xe4\xee\xff\xe3\xb8\xc5\xfe\x07\x00\x00\x80\x66" "\xe4\xee\xff\x93\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\xd3\xb8\xa5" "\x93\xfd\xaf\xff\xd7\xff\xeb\xff\x1b\xee\xff\x9f\x5c\xfc\x1c\xfa\x7f\xfd" "\x7f\x0f\xf4\xff\xc3\xf4\xff\x6b\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x1b\x35" "\xb6\xfe\x3f\x77\xff\xc3\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff" "\xcf\xe2\x16\xfb\x1f\x00\x00\x00\x46\xea\xe4\xbf\x47\x2e\x77\xff\x23\x71" "\x8b\xfd\x0f\x00\x00\x00\xa3\xf6\xe2\x09\xbe\x6f\xee\xfe\x3f\x8f\x5b\x3a" "\xd9\xff\xfa\x7f\xfd\xbf\xfe\xbf\xe1\xfe\xff\x88\xaf\xaf\xff\xd7\xff\xb7" "\x4c\xff\x3f\x4c\xff\x3f\x9b\xcd\x1e\x1d\xf8\x00\xab\xfa\xff\x2b\xe7\xf4" "\xff\xfa\x7f\xfd\xbf\xfe\x9f\x6b\x34\xb6\xfe\x3f\x77\xff\x5f\xc4\x2d\x9d" "\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x47\xe3\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\xb1\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\xcb\xb8\xa5" "\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xd5\x5f\x5f\xff\x3f\x4d" "\xfa\xff\x61\xfa\xff\x35\x5a\x7f\xff\xff\xf2\x6c\x67\xe8\x27\xe5\xc1\x7e" "\xfe\xe5\x4b\xb7\x5f\xd4\xff\x6f\xaa\xff\x7f\xfc\x58\x9f\x5f\xff\x4f\x8b" "\xc6\xd6\xff\xe7\xee\xff\xab\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd" "\xff\x78\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x75\xdc\x62\xff\x03" "\x00\x00\x40\x33\x72\xf7\x3f\x11\xb7\x74\xb2\xff\xf5\xff\x13\xef\xff\x9f" "\x9b\xe9\xff\xf5\xff\xfa\xff\x13\xf6\xff\x37\xe8\xff\x9b\xb6\xbd\xfe\x7f" "\xa6\xff\xef\xa2\xff\xbf\x79\xef\x34\xdb\xff\xaf\x71\xd6\xfd\xfc\x29\x7d" "\xfe\x8b\xdb\xfa\xfc\xde\xff\xd7\xff\xb3\x6c\x6c\xfd\x7f\xee\xfe\xbf\x89" "\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x4f\xc6\x2d\xf6\x3f\x00\x00" "\x00\x34\x23\x77\xff\xdf\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xdf" "\xc5\x2d\x9d\xec\x7f\xfd\xff\xc4\xfb\x7f\xef\xff\xeb\xff\xf5\xff\xde\xff" "\x67\x81\xf7\xff\x87\xe9\xff\xd7\x68\xfd\xfd\xff\x35\x3a\xe9\xff\xb7\xf6" "\xf9\xdb\xed\xff\x6f\xd4\xff\x73\xcd\xc6\xd6\xff\xe7\xee\xff\xfb\xb8\xa5" "\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x54\xdc\x62\xff\x03\x00\x00\x40" "\x33\x72\xf7\xff\x43\xdc\x62\xff\x03\x00\x00\xc0\x04\x3c\x7b\xac\xef\x95" "\xbb\xff\x1f\xe3\x96\x4e\xf6\xff\x9a\xfe\x7f\xff\x3f\x10\xfd\xff\x20\xfd" "\x7f\x7c\xfe\xdd\x99\xfe\x5f\xff\xaf\xff\x3f\xc2\x8a\xfe\xff\xfc\x4c\xff" "\xbf\x71\xfa\xff\x61\xfa\xff\x35\xf4\xff\x6d\xf6\xff\x37\xcc\x1a\xea\xff" "\x2f\x1c\xf9\xe3\x4f\xf7\xfd\xff\xf3\x4b\x3f\x5e\xff\xcf\x2a\x63\xeb\xff" "\x73\xf7\xff\x53\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xff\xe7\xb8" "\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x97\xb8\xc5\xfe\x07\x00\x00\x80" "\x66\xe4\xee\xff\xd7\xb8\xa5\x93\xfd\xef\xfd\x7f\xfd\xbf\xf7\xff\x4f\xd0" "\xff\xef\xe8\xff\x0f\xd2\xff\xcf\x79\xff\x7f\x5c\xf4\xff\xc3\xf4\xff\x6b" "\xe8\xff\xdb\xec\xff\xb7\xf0\xf9\x77\x57\xfc\xf8\x76\xdf\xff\x5f\xd5\xff" "\x2f\x3b\xdc\xff\x5f\xfd\xe7\xa4\xfe\x9f\xb1\xf5\xff\xb9\xfb\xff\x2d\x6e" "\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\xff\x7b\xdc\x62\xff\x03\x00\x00" "\xc0\x44\xac\xff\x6d\x77\xb9\xfb\xff\x23\x6e\xb1\xff\x01\x00\x00\xa0\x19" "\xb9\xfb\xff\x33\x6e\x99\xf4\xfe\xbf\xe9\xd8\xdf\x53\xff\xaf\xff\xd7\xff" "\x7b\xff\x5f\xff\xbf\xfa\xeb\xeb\xff\xa7\x49\xff\x3f\x4c\xff\xbf\x86\xfe" "\x7f\x43\xfd\xfc\xfc\xbf\x41\xb5\xdc\xff\xaf\xa2\xff\xf7\xfe\x3f\xcb\xc6" "\xd6\xff\xe7\xee\xff\xaf\xb8\x65\xd2\xfb\x1f\x00\x00\x00\x38\x28\x77\xff" "\xd3\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x4c\xdc\xb2\x6a\xff\x1f" "\xfe\x4d\xa9\x00\x00\x00\xc0\x24\xe4\xee\xff\xef\xb8\xa5\x93\x5f\xff\xd7" "\xff\xeb\xff\xf5\xff\x93\xec\xff\xf3\x4f\x59\xff\x7f\x74\xff\x5f\x7f\x43" "\xd7\xff\xf7\x65\x2c\xfd\xff\xad\xb7\x7e\xd9\x73\xfa\xff\xa1\xcf\xff\xd0" "\x1d\xab\xbe\x55\xff\xdf\x4a\xff\xdf\xfe\xfb\xff\xab\xe8\xff\xf5\xff\x2c" "\xdb\x5a\xff\x1f\x3f\xe0\xa4\xfd\x7f\xee\xfe\x67\xe3\x96\x4e\xf6\x3f\x00" "\x00\x00\xf4\x20\x77\xff\xff\xc4\x2d\xf6\x3f\x00\x00\x00\x8c\xde\xc5\x63" "\x7e\xbf\xdc\xfd\xff\x1b\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xff\x17" "\xb7\x74\xb2\xff\x97\xfb\xff\x9b\x66\xf3\x42\x75\x6e\x55\xff\x1f\x8d\x9a" "\xfe\xff\x00\xfd\xff\xe2\xe7\xd7\xff\xaf\xfe\xf9\xe1\xfd\x7f\xef\xff\xeb" "\xff\xb7\x6f\x2c\xfd\xbf\xf7\xff\xaf\xed\xf3\xeb\xff\xf5\xff\x53\xfe\xfc" "\x27\xea\xff\xbf\x78\xf9\xc7\xeb\xff\x69\xd1\xd8\xde\xff\xcf\xdd\xff\x5c" "\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xff\xff\xb8\xc5\xfe\x07\x00" "\x00\x80\x66\xe4\xee\x7f\x55\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f" "\x1f\xb7\x74\xb2\xff\xbd\xff\xaf\xff\xbf\x9e\xfe\xff\x81\xd9\x44\xfa\xff" "\x9b\x67\xfa\x7f\xfd\xbf\xfe\xbf\x13\xfa\xff\x61\xfa\xff\x35\xf4\xff\xfa" "\x7f\xef\xff\xdf\xfd\xd5\x37\xea\xff\xd9\x9c\xb1\xf5\xff\xb9\xfb\x5f\x1d" "\xb7\x1c\x63\xf8\xdd\xb0\xfe\xbb\x00\x00\x00\x00\x23\x90\xbb\xff\x35\x71" "\xcb\xea\xfd\xbf\xea\x97\x79\x01\x00\x00\x80\x91\xcb\xdd\xff\xda\xb8\xa5" "\x93\xdf\xff\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xba\xb8\xa5\x93\xfd\xaf\xff" "\x9f\x76\xff\x7f\xee\x88\xcf\x33\xb9\xf7\xff\x0f\xfc\x2f\xc1\xfb\xff\xfb" "\x3f\x4e\xff\x3f\xa7\xff\xd7\xff\x9f\x84\xfe\x7f\x98\xfe\x7f\x0d\xfd\xbf" "\xfe\x5f\xff\xef\xfd\x7f\x36\x6a\x6c\xfd\x7f\xee\xfe\xd7\xc7\x2d\x9d\xec" "\x7f\x00\x00\x00\xe8\x41\xee\xfe\x37\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23" "\x77\xff\x1b\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x4d\x71\xcb\x7c" "\xff\x37\xff\xc4\x9f\xfe\x7f\xda\xfd\xff\x59\xbf\xff\xbf\xb1\xfe\xff\xc0" "\x67\xdf\x7c\xff\xff\x55\xfa\xff\x43\x5f\x5f\xff\xaf\xff\x6f\x99\xfe\x3f" "\xff\x89\xbe\x9a\xfe\x7f\x0d\xfd\xbf\xfe\xff\xcc\xfb\xff\x9d\x99\xfe\x9f" "\x96\x8c\xad\xff\xcf\xdd\xff\x42\xdc\xe2\xd7\xff\x01\x00\x00\xa0\x19\xb9" "\xfb\xdf\x1c\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x6f\x89\x5b\xec\x7f" "\x00\x00\x00\x68\x46\xee\xfe\xb7\xc6\x2d\x9d\xec\x7f\xfd\x7f\x5f\xfd\xff" "\xce\x6c\x1c\xfd\xff\xe7\x9d\x6a\xff\xef\xfd\x7f\xfd\xbf\xfe\xbf\x27\xfa" "\xff\x61\xfa\xff\x35\xf4\xff\xfa\xff\x33\xef\xff\xbd\xff\x4f\x5b\xc6\xd6" "\xff\xe7\xee\x7f\x5b\xdc\xd2\xc9\xfe\x07\x00\x00\x80\xa9\xfa\x8a\x2f\xb9" "\xf3\x85\xe3\x7e\xdf\xdc\xfd\x6f\x8f\x5b\xec\x7f\x00\x00\x00\x68\x46\xee" "\xfe\x77\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x3b\xe3\x96\x4e\xf6" "\xbf\xfe\xbf\xaf\xfe\xbf\xcf\xf7\xff\xf5\xff\xfa\x7f\xfd\x7f\x4f\xf4\xff" "\xc3\xf4\xff\x6b\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x1b\x35\xb6\xfe\x3f\x77" "\xff\xbb\xe2\x96\x03\xc3\x6f\xf7\xc4\x7f\x96\x00\x00\x00\xc0\x98\xe4\xee" "\x7f\x77\xdc\xd2\xc9\xaf\xff\x03\x00\x00\x40\x0f\x72\xf7\xbf\x27\x6e\x59" "\xda\xff\x57\x8e\xf9\xbb\xda\x01\x00\x00\x80\xb1\xc9\xdd\xff\xde\xb8\xa5" "\x93\x5f\xff\xd7\xff\x8f\xbc\xff\x9f\xe9\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\xff\x24\xf4\xff\xc3\xae\xb3\xff\xbf\xb2\xa3\xff\xd7\xff\x0f\xd0\xff\xeb" "\xff\xf5\xff\x1c\x36\xb6\xfe\x3f\x77\xff\xfb\xe2\x96\x4e\xf6\x3f\x00\x00" "\x00\x34\x6a\xe1\xff\xa2\x90\xbb\xff\xfd\x71\x8b\xfd\x0f\x00\x00\x00\xcd" "\xc8\xdd\xff\x81\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x60\xdc\xd2" "\xc9\xfe\xd7\xff\x8f\xbc\xff\xbf\xa6\xf7\xff\x2f\xd4\xff\xa4\xff\xef\xbc" "\xff\xbf\xff\xfc\xca\xaf\xaf\xff\xd7\xff\xb7\x4c\xff\x3f\xcc\xfb\xff\x6b" "\xe8\xff\xf5\xff\x5b\xee\xff\xbf\x72\xe0\x61\x71\xfd\x3f\x2d\x1a\x5b\xff" "\x9f\xbb\xff\x43\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xc3\x71" "\xcb\xd0\xfe\x3f\xb7\xed\x4f\x05\x00\x00\x00\x6c\x52\xee\xfe\x8f\xc4\x2d" "\x7e\xfd\x1f\x00\x00\x00\x9a\x91\xbb\xff\xc5\xb8\xa5\x93\xfd\xaf\xff\x6f" "\xb1\xff\xbf\xe6\xf7\xff\xaf\x7e\x0c\xfd\xff\xac\xa1\xfe\xff\x88\xaf\xdf" "\x4e\xff\xff\x85\xb7\x5c\x7e\xfa\xf6\xaf\x79\xec\x61\xfd\x3f\xfb\x4e\xb3" "\xff\xcf\x9f\x0b\xfa\x7f\xfd\xbf\xfe\x7f\x4e\xff\xef\xfd\x7f\xfd\x3f\x87" "\x8d\xad\xff\xcf\xdd\xff\xd1\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd" "\xff\x52\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x2c\x6e\xb1\xff\x01" "\x00\x00\xa0\x19\xb9\xfb\x5f\x8e\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf\xf7\xff" "\xa7\xd8\xff\x67\x53\xdc\x71\xff\x9f\xff\xc2\xfb\xff\x1c\xe2\xfd\xff\x61" "\xfa\xff\x35\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x8d\x1a\x5b\xff\x9f\xbb\xff" "\xe3\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x13\x71\x8b\xfd\x0f" "\x00\x00\x00\xcd\xc8\xdd\xff\xc9\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee" "\xff\x54\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\x63\xed\xff\x77\xbc\xff" "\x1f\x8e\x7e\xff\xff\xd2\xc2\x9f\x4f\xd2\xff\xf7\xed\x4c\xfa\xff\x8c\xd4" "\xf5\xff\xfa\xff\xa0\xff\x3f\xb3\xfe\xff\x46\xfd\xbf\xfe\x9f\x71\x19\x5b" "\xff\x9f\xbb\xff\xd3\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x95" "\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x4c\xdc\x62\xff\x03\x00\x00" "\x40\x33\x72\xf7\x7f\x36\x6e\xe9\x64\xff\xeb\xff\xa7\xd0\xff\x5f\xfd\xa3" "\xe3\xee\xff\x67\x87\x3e\xbf\xfe\x7f\xf5\xcf\x8f\xcd\xbd\xff\xbf\xd4\xff" "\xef\xfd\x05\xac\xff\x9f\xd3\xff\xf7\xcd\xfb\xff\xc3\xf4\xff\x6b\xe8\xff" "\xa7\xde\xff\x7b\xff\x5f\xff\xcf\xc8\x8c\xad\xff\xcf\xdd\xff\xb9\x00\x00" "\x00\xff\xff\xa9\xf3\x51\x20", 25549); syz_mount_image(/*fs=*/0x200003c0, /*dir=*/0x20000080, /*flags=MS_POSIXACL|MS_NOSUID|MS_NODEV*/ 0x10006, /*opts=*/0x20000000, /*chdir=*/1, /*size=*/0x63cd, /*img=*/0x2000b880); memcpy((void*)0x20000440, ".pending_reads\000", 15); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000440ul, /*flags=O_TRUNC|O_NONBLOCK|O_CREAT|O_WRONLY|0x1c*/ 0xa5d, /*mode=*/0); if (res != -1) r[0] = res; syscall(__NR_read, /*fd=*/-1, /*buf=*/0ul, /*len=*/0ul); syscall(__NR_lchown, /*file=*/0ul, /*uid=*/0, /*gid=*/0xee00); memcpy((void*)0x20000080, "msdos\000", 6); memcpy((void*)0x20000f00, ".\000", 2); *(uint64_t*)0x20000140 = 0; *(uint16_t*)0x20000148 = -1; *(uint8_t*)0x2000014a = 0; memcpy( (void*)0x2000014b, "\x96\x80\x5c\x66\x37\x0e\x84\x2a\x72\x8d\x63\x84\x00\xdd\x8e\x61\x6e\xb3" "\x29\x78\x6b\xa9\x59\x8f\xc2\x8d\x1e\xdc\xd4\x0b\x1a\x5f\xae\x22\xe7\xd0" "\x56\x3c\x99\x7a\xca\x64\x59\x21\xd6\x79\x28\xc4\x05\xce\x31\x7d\x66\x03" "\x36\xbe\xe7\x26\x77\x87\xa1\xb3\xb0\x30\xa1\x64\x61\x4a\x69\x29\xf7\x8b" "\x46\x9a\x7a\xf0\x70\xcb\xfd\x0c\xa9\x88\x3c\x63\xe4\x90\xa8\xfa\xdd\x60" "\x73\x7d\x11\xe5\x66\x26\x48\x30\x40\x6c\xb5\x07\x1c\xfa\xb3\x3c\xce\xbc" "\x43\xcb\x8b\x1c\x5c\xd7\x37\xd8\x4b\x49\x17\x41\x9b\xea\x6c\x45\xa3\x0f" "\x64\x63\xb0\xd3\xd4\x83\x5d\x13\x8e\x83\x06\xb7\x49\xcc\xeb\x1d\x41\x14" "\xd7\x8c\x56\x71\xa3\x4f\x5c\xb5\x92\xba\xb0\xf5\xbb\xbf\x0e\x9b\x4a\x57" "\x5a\xff\xe5\x54\xfd\x2f\x60\xb5\x3c\x31\xd1\x21\x34\xaf\x59\x2e\xf5\xc6" "\x16\x7e\x97\x2a\x91\x9d\x52\xb5\x5f\x74\xd0\x78\x2f\x56\x38\xd7\x2e\xb1" "\x4b\xac\x38\x4f\x44\x0e\x94\x3f\xa9\x42\x91\x4e\x71\x77\xd4\x8d\x8e\x19" "\xb0\x27\xe7\x4f\x4f\xd7\x9c\xd6\x6e\x5d\x8f\x27\x15\xb2\xa7\xc3\x71\xe3" "\x4c\x86\x8b\xd1\x4c\xbf\xfe\x95\xc8\xd8", 244); syz_mount_image( /*fs=*/0x20000080, /*dir=*/0x20000f00, /*flags=MS_I_VERSION|MS_SLAVE|MS_PRIVATE|MS_REC|MS_SYNCHRONOUS|MS_STRICTATIME|0x20bc64*/ 0x1acfc74, /*opts=*/0x20000140, /*chdir=*/0, /*size=*/0, /*img=*/0x20000000); *(uint32_t*)0x20000280 = 0x30; *(uint32_t*)0x20000284 = 5; *(uint64_t*)0x20000288 = 0; *(uint64_t*)0x20000290 = 0; *(uint64_t*)0x20000298 = 1; *(uint64_t*)0x200002a0 = 8; *(uint32_t*)0x200002a8 = 0; *(uint32_t*)0x200002ac = 0; syscall(__NR_write, /*fd=*/r[0], /*arg=*/0x20000280ul, /*len=*/0x30ul); memcpy((void*)0x20000000, "vfat\000", 5); memcpy((void*)0x20000040, "\023\023w\305\3745\324\024T\325\324\035)\255\032`)" "Y\201F\346\276\026nA\255\r\275@T\003<\2373\273\332\202$" "\242\363\327r\347cnH\263<\277p\203r\350\361\271\223>" "\305\022wC\276\"\006 \236\360-\371\313\362\366\350\200\3238/\000", 78); syz_mount_image( /*fs=*/0x20000000, /*dir=*/0x20000040, /*flags=MS_I_VERSION|MS_SYNCHRONOUS|MS_RDONLY|MS_NOSUID|MS_MANDLOCK*/ 0x800053, /*opts=*/0, /*chdir=*/0xfc, /*size=*/0, /*img=*/0x200000c0); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); const char* reason; (void)reason; use_temporary_dir(); loop(); return 0; }