// https://syzkaller.appspot.com/bug?id=0f2cf7b72ba525cc8d9f12a776ab45f440dadac4 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } 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; retry: const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; 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 (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } void execute_one(void) { memcpy((void*)0x200001c0, "jfs\000", 4); memcpy((void*)0x20000200, "./file0\000", 8); memcpy((void*)0x20000640, "usrquota,errors=continue,nodiscard,usrquota,errors=remount-ro," "discard,resize=0x0000000000000000,nointegrity,errors=continue,gid=", 128); sprintf((char*)0x200006c0, "0x%016llx", (long long)0); memcpy((void*)0x200006d2, ",uid=", 5); sprintf((char*)0x200006d7, "0x%016llx", (long long)0); memcpy((void*)0x200006e9, ",noquota,noquota,iocharset=cp950,uid=", 37); sprintf((char*)0x2000070e, "%020llu", (long long)0); memcpy((void*)0x20000722, "\x2c\x73\x6d\x61\xfb\xa5\xeb\x8e\xcd\x09\x00\x00\x00\x00\x73\x6d\xa6" "\x9c\x82\xfe\x5f\xf4\x00\x00\x00\x00\x00\x00\x00\x09\x59\x83\xe7\xef" "\xe3\x6f\xc4\xff\xd3\x1d\x68\xdd\xe9\xa4\xa1\x30\xea\xae\xbf\xc3\x5b" "\x51\xf6\xce\xc1\xa9\xf9\x05\xae\x68\x71\xad\x97\xae\x00\x41\xf0\x39" "\xb9\xff\xeb\x61\x82\xb4\x99\x93\x88\x2f\x3b\x2b\x32\xfc\x96", 83); sprintf((char*)0x20000775, "%020llu", (long long)0); memcpy((void*)0x20000789, "\x2c\x70\x65\x72\x6d\x69\x74\x5f\x64\x69\x72\x65\x63\x74\x69\x6f\x2c" "\x64\x6f\x6e\x74\x5f\x61\x70\x70\x72\x61\x69\x73\x65\x2c\x6f\x62\x6a" "\x5f\x75\x73\x65\x72\x3d\xf3\x26\x26\x5b\x27\x5d\x24\x2c\x41\x2c\x00", 51); memcpy( (void*)0x200065c0, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xec\x9b\x5f\x42\xd3\xa8" "\x87\x52\x22\x84\xdc\x36\xbc\x94\xd2\xbc\x96\x10\x28\xd0\xe4\x00\x07\x2e" "\x1c\x50\xae\x28\x51\xea\x56\x11\x29\xa0\x24\xa0\xb4\x8a\x88\x2b\x5f\x38" "\xf0\x47\x80\x90\x38\x22\xc4\x91\x13\x7f\x40\x0f\x5c\xb9\xf1\x07\x10\xc9" "\x46\x02\xf5\xd4\x41\xe3\x7d\x1e\x67\x3c\xd9\xcd\x3a\x71\xbd\x63\x7b\x3e" "\x1f\xc9\x99\xf9\xed\x33\xe3\x7d\x26\xdf\x9d\x7d\xf1\xcc\xec\x13\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\xfc\xe8\x87\x3f\x39\x57" "\x44\xc4\xb5\x5f\xa7\x1b\x4e\x44\x7c\x2e\xfa\x11\xbd\x88\xa5\xaa\x5e\x89" "\x88\xa5\x95\x13\x79\xf9\x41\x44\x7c\x3e\xb6\x9a\xe3\xc5\x88\x18\x2e\x44" "\x54\xeb\x6f\xfd\xf3\x7c\xc4\x9b\x11\xf1\xf1\xf1\x74\x5b\xc4\xda\xf9\x5d" "\xf6\xe3\x07\x7f\xf9\xe7\x1f\x7f\x7a\xec\xc7\xff\xf8\xf3\xf0\xcc\xff\xfe" "\x7a\xb7\xff\xd6\xb4\xe5\xee\xdd\xfb\xdd\x7f\xff\xf6\x60\x2f\x5b\x0c\x00" "\x00\x00\xdd\x53\x96\x65\x59\xa4\x8f\xf9\x27\xd3\xe7\xfb\x5e\xdb\x9d\x02" "\x00\xe6\x22\xbf\xfe\x97\x49\xbe\x5d\xad\x56\xab\xd5\x6a\xf5\xd1\xab\xeb" "\xca\xc9\x1e\xd4\x8b\x88\x58\xab\xaf\x53\xbd\x67\x70\x38\x1e\x00\x0e\x99" "\xb5\xf8\xa4\xed\x2e\xd0\x22\xf9\x77\xda\x20\x22\x8e\xb5\xdd\x09\xe0\x40" "\x2b\xda\xee\x00\xfb\x62\x63\xf3\xfe\x8d\x22\xe5\x5b\xd4\x5f\x0f\x56\xc6" "\xed\xf9\x5c\x90\x1d\xf9\xaf\x15\x5b\xeb\xe5\xf5\x27\x4d\x67\x69\x9e\x63" "\x32\xaf\xc7\xd7\x7a\xf4\xe3\x85\x29\xfd\x59\x9a\x53\x1f\x0e\x92\x9c\x7f" "\xaf\x99\xff\xb5\x71\xfb\x28\x2d\xb7\xdf\xf9\xcf\xcb\xb4\xfc\x47\xe3\x4b" "\x9f\x3a\x27\xe7\xdf\x6f\xe6\xdf\x70\x74\xf2\xef\x4d\xcc\xbf\xab\x72\xfe" "\x83\xa7\xca\xbf\x2f\x7f\x00\x00\x00\x00\x00\x38\xc0\xf2\xdf\xff\x4f\xb4" "\x7c\xfc\x77\x61\xef\x9b\xb2\x2b\x4f\x3a\xfe\xbb\x32\xa7\x3e\x00\x00\x00" "\x00\x00\x00\x00\xc0\x67\xed\x59\xc6\xff\x7b\xa9\x36\xfe\xdf\xb6\xc6\xf8" "\x7f\xf9\x3c\x00\xe3\xff\x01\x00\x00\x40\xfb\xaa\xcf\xea\x95\xdf\x1f\x7f" "\x74\xdb\xb4\xef\x62\xab\x6e\xbf\x5a\x44\x3c\xd7\x58\x1e\xe8\x98\x74\xb1" "\xcc\x72\xdb\xfd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x2e\x19\x8c" "\xcf\xe1\xbd\x5a\x44\x0c\x23\xe2\xb9\xe5\xe5\xb2\x2c\xab\x9f\xba\x66\xfd" "\xb4\xf6\xba\xfe\x61\xd7\xf5\xed\x87\x2e\x6b\xfb\x49\x1e\x00\x00\xc6\x3e" "\x3e\xde\xb8\x96\xbf\x88\x58\x8c\x88\xab\xe9\xbb\xfe\x86\xcb\xcb\xcb\x65" "\xb9\xb8\xb4\x5c\x2e\x97\x4b\x0b\xf9\xfd\xec\x68\x61\xb1\x5c\xaa\x7d\xae" "\xcd\xd3\xea\xb6\x85\xd1\x2e\xde\x10\x0f\x46\x65\xf5\xcb\x16\x6b\xeb\xd5" "\xcd\xfa\xbc\x3c\xab\xbd\xf9\xfb\xaa\xfb\x1a\x95\xfd\x5d\x74\x6c\x3e\x5a" "\x0c\x1c\x00\x22\x62\xfc\x6a\xb4\xe1\x15\xe9\x88\x29\xcb\xe7\xa3\xed\x77" "\x39\x1c\x0e\x8f\xed\xff\xc5\xd4\xaf\x00\xe3\x90\xb0\xff\xb3\x1b\x6d\x3f" "\x4e\x01\x00\x00\x80\xfd\x57\x96\x65\x59\xa4\xaf\xf3\x3e\x99\x8e\xf9\xf7" "\xda\xee\x14\x00\x30\x17\xf9\xf5\xbf\x79\x5c\x40\xad\x56\xab\xd5\x6a\xf5" "\xd1\xab\xeb\xca\xc9\x1e\xd4\x8b\x88\x58\xab\xaf\x53\xbd\x67\x30\x1c\x3f" "\x00\x1c\x32\x6b\xf1\x49\xdb\x5d\xa0\x45\xf2\xef\xb4\x41\x44\xbc\xd4\x76" "\x27\x80\x03\xcd\x05\x41\x47\xd3\xc6\xe6\xfd\x1b\x45\xca\xb7\xa8\xbf\x1e" "\xa4\xf1\xdd\xf3\xb9\x20\x3b\xf2\x5f\x2b\xb6\xd6\xcb\xeb\x4f\x9a\xce\xd2" "\x3c\xc7\x64\x5e\x8f\xaf\xf5\xe8\xc7\x0b\x53\xfa\xf3\xe2\x9c\xfa\x70\x90" "\xe4\xfc\x7b\xcd\xfc\xaf\x8d\xdb\x47\x69\xb9\xfd\xce\x7f\x5e\xa6\xe5\x5f" "\x6d\xe7\x89\x16\xfa\xd3\xb6\x8d\xcd\x2b\x83\x2a\xdb\x7e\x33\xff\x86\xa3" "\x93\x7f\x6f\x62\xfe\x5d\x95\xf7\xff\xc1\x53\xe5\xdf\xdf\x75\xfe\x97\xa6" "\xdc\xaf\xfc\x01\x00\x00\x00\x00\x60\xff\xe4\xbf\xff\x9f\x38\x50\xc7\x7f" "\x47\xcf\xba\x39\x33\x3d\xe9\xf8\xef\xca\xbe\xdd\x2b\x00\x00\x00\x00\x00" "\x00\x00\xec\xaf\x8d\xcd\xfb\x37\xf2\x75\xaf\xf9\xf8\xff\x17\x27\x2c\xe7" "\xfa\xcf\xa3\x29\xe7\x5f\xc8\xbf\x93\x72\xfe\xbd\x46\xfe\x5f\x6b\x2c\xd7" "\xaf\xcd\x3f\xbc\xf2\x28\xff\xff\x6c\xde\xbf\xf1\xa7\xbb\xff\xfe\x42\x9e" "\xee\x36\xff\x85\x3c\x53\xa4\x47\x56\x91\x1e\x11\x45\xba\xa7\x62\x90\xa6" "\x7b\xd9\xba\xc7\xad\x0f\xfb\xa3\xea\x9e\x86\x45\xaf\x3f\x48\xe7\xfc\x94" "\xc3\x77\xe3\x66\xdc\x8a\xd5\x38\xbb\x63\xd9\x5e\xfa\xff\x78\xd4\x7e\x6e" "\x47\x7b\xd5\xd3\xe1\x56\x7b\xd9\x1f\xb7\x9f\xdf\xd1\x3e\xd8\x6e\xcf\xeb" "\x5f\xd8\xd1\x3e\x4c\x67\x3a\x95\x4b\xb9\xfd\x74\xdc\x88\x5f\xc4\xad\x78" "\x67\xab\xbd\x6a\x5b\x98\xb1\xfd\x8b\x33\xda\xcb\x19\xed\x39\xff\xbe\xfd" "\xbf\x93\x72\xfe\x83\xda\x4f\x95\xff\x72\x6a\x2f\x1a\xd3\xca\xc3\x8f\x7a" "\x8f\xed\xf7\xf5\xe9\xa4\xfb\xb9\x7c\xf3\x4b\xbf\x3d\xbb\xff\x9b\x33\xd3" "\x7a\xf4\xb7\xb7\xad\xae\xda\xbe\x57\x5a\xe8\xcf\xd6\xff\xc9\xb1\x51\xfc" "\xea\xce\xea\xed\xd3\xf7\xae\xdf\xbd\x7b\xfb\x5c\xa4\xc9\x8e\x5b\xcf\x47" "\x9a\x7c\xc6\x72\xfe\xc3\xf4\xb3\xfd\xfc\xff\xea\xb8\x3d\x3f\xef\xd7\xf7" "\xd7\x87\x1f\x8d\x9e\x3a\xff\x83\x62\x3d\x06\x53\xf3\x7f\xb5\x36\x5f\x6d" "\xef\x6b\x73\xee\x5b\x1b\x72\xfe\xa3\xf4\x93\xf3\x7f\x27\xb5\x4f\xde\xff" "\x0f\x73\xfe\xd3\xf7\xff\xd7\x5b\xe8\x0f\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x3c\x49\x59\x96\x5b\x97\x88\x5e\xee\x45\x5c\x4c\xd7\xff" "\xb4\x75\x6d\x26\x00\x30\x5f\x97\x63\xfc\xfa\x5f\x26\xf9\xf6\x79\xd5\xfd" "\x39\xdf\x9f\x5a\x7d\xc8\xeb\xe2\x80\xf5\x67\xae\xf5\xa7\xe5\xc1\xea\x8f" "\x5a\x7d\x18\xeb\xba\x72\xb2\xb7\xeb\x45\x44\xfc\xbd\xbe\x4e\xf5\x9e\xe1" "\x37\x93\x7e\x19\x00\x70\x90\x7d\x1a\x11\xff\x6a\xbb\x13\xb4\x46\xfe\x1d" "\x96\xbf\xef\xaf\x9a\x9e\x6a\xbb\x33\xc0\x5c\xdd\xf9\xe0\xc3\x9f\x5d\xbf" "\x75\x6b\xf5\xf6\x9d\xb6\x7b\x02\x00\x00\x00\x00\x00\x00\x00\x3c\xab\x3c" "\xfe\xe7\x4a\x6d\xfc\xe7\x53\x65\x59\x3e\x68\x2c\xb7\x63\xfc\xd7\x2b\xb1" "\xb2\xd7\xf1\x3f\x07\x79\x66\x7b\x80\xd1\x29\x03\x55\xf7\x9f\x7e\x9b\x9e" "\x64\xbd\x37\xea\xf7\x6a\xc3\x8d\xbf\x1c\xd3\xc6\xff\x1e\x6e\xcf\x3d\x69" "\xfc\xef\xc1\x8c\xfb\x1b\xce\x68\x1f\xcd\x68\x5f\x98\xd1\xbe\x38\xa3\x7d" "\xe2\x85\x1e\x35\x39\xff\x97\x6b\xe3\x9d\x9f\x8a\x88\x93\x8d\xe1\xd7\xbb" "\x30\xfe\x6b\x73\xcc\xfb\x2e\xc8\xf9\xbf\x52\x7b\x3c\x57\xf9\x7f\xb5\xb1" "\x5c\x3d\xff\xf2\x0f\x87\x39\xff\xde\x8e\xfc\xcf\xdc\x7d\xff\x97\x67\xee" "\x7c\xf0\xe1\x1b\x37\xdf\xbf\xfe\xde\xea\x7b\xab\x3f\xbf\x70\xee\xdc\xd9" "\x0b\x17\x2f\x5e\xba\x74\xe9\xcc\xbb\x37\x6f\xad\x9e\x1d\xff\xdb\x62\x8f" "\xf7\x57\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\xe4\xdf\x2d\x39\xff\xd7\x52\x2d\xff\x6e" "\xc9\xf9\x7f\x3d\xd5\xf2\xef\x96\x9c\xff\xeb\xa9\x96\x7f\xb7\xe4\xfc\xbf" "\x91\x6a\xf9\x77\x4b\xce\xff\x8d\x54\xcb\xbf\x5b\x72\xfe\xa7\x53\x2d\xff" "\x6e\xc9\xf9\x9f\x49\xf5\x2e\xf3\x5f\xda\xef\x7e\x31\x1f\x1b\x9b\xf7\xb7" "\x8e\xb0\xe7\x23\x5c\xf6\xff\x6e\xc9\xfb\x7f\x3e\xb3\x41\xfe\xdd\x92\xf3" "\x3f\x9f\x6a\xf9\x77\x4b\xce\xff\x42\xaa\xe5\xdf\x2d\x39\xff\x37\x53\x2d" "\xff\x6e\xc9\xf9\x7f\x33\xd5\xf2\xef\x96\x9c\xff\xc5\x54\xcb\xbf\x5b\x72" "\xfe\xdf\x4a\xb5\xfc\xbb\x25\xe7\x7f\x29\xd5\xf2\xef\x96\x9c\xff\xb7\x53" "\x2d\xff\x6e\xc9\xf9\x7f\x27\xd5\xf2\xef\x96\x9c\xff\x5b\xa9\x96\x7f\xb7" "\xe4\xfc\xbf\x9b\x6a\xf9\x77\x4b\xce\xff\x7b\xa9\x96\x7f\xb7\xe4\xfc\xbf" "\x9f\x6a\xf9\x77\x4b\xce\xff\xed\x54\xcb\xbf\x5b\x1e\x7d\xff\xbf\x19\x33" "\x66\xcc\xe4\x99\xb6\x9f\x99\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80" "\xa6\x79\x9c\x4e\xdc\xf6\x36\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff" "\x67\x07\x0e\x04\x00\x00\x00\x00\x80\xfc\x5f\x1b\xa1\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\x0a\x3b\x70\x20\x00\x00\x00\x00\x00\xe4\xff\xda\x08\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\xd8\xbb\xd7\x18\xb9\xce\xfa\x7e\xe0" "\x67\xf6\xe6\xb5\x13\x12\x03\x21\x7f\x27\x7f\x03\x6b\xc7\x18\xe3\x6c\xb2" "\xeb\x4b\x7c\xa1\x75\x31\xe1\xda\x70\x2b\x81\x50\xe8\x05\xdb\xf5\xae\xcd" "\x82\x6f\x78\xed\x12\x68\x24\x1b\x05\x4a\x24\x8c\x8a\x2a\xda\x86\x17\x6d" "\x01\xa1\x36\x6f\x2a\xac\x8a\x17\xb4\x0a\x28\x2f\x50\xab\x4a\x95\x48\x5b" "\x09\xde\x20\xaa\x4a\xbc\x88\xaa\x80\x02\x52\xa5\xb6\x82\x6c\x35\x67\x9e" "\xe7\xd9\x99\xd9\xb3\x33\xbb\xde\xb1\x3d\x73\xce\xe7\x23\xc5\x3f\xef\xec" "\x99\x39\x67\xce\x3c\x33\xbb\xdf\x75\xbe\x3b\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x34\xdb\xf2\xa6\xd9\xcf\xd5\xb2\x2c\xab\xff" "\x97\xff\xb1\x31\xcb\x6e\xad\xff\x7d\xfd\xc4\xc6\xfc\xb2\xd7\xdf\xec\x23" "\x04\x00\x00\x00\xd6\xea\x97\xf9\x9f\x2f\xdc\x9e\x2e\x38\xbc\x82\x2b\x35" "\x6d\xf3\x8f\xaf\xfa\xde\x37\x17\x16\x16\x16\xb2\x0f\x0e\xff\xc9\xe8\x97" "\x16\x16\xd2\x27\x26\xb2\x6c\x74\x5d\x96\xe5\x9f\x8b\xae\xfe\xc7\x87\x6a" "\xcd\xdb\x04\x8f\x67\xe3\xb5\xa1\xa6\x8f\x87\xba\xec\x7e\xb8\xcb\xe7\x47" "\xba\x7c\x7e\xb4\xcb\xe7\xc7\xba\x7c\x7e\x5d\x97\xcf\x8f\x77\xf9\xfc\x92" "\x13\xb0\xc4\xfa\xc6\xcf\x63\xf2\x1b\xdb\x96\xff\x75\x63\xe3\x94\x66\x77" "\x64\xa3\xf9\xe7\xb6\x15\x5c\xeb\xf1\xda\xba\xa1\xa1\xf8\xb3\x9c\x5c\x2d" "\xbf\xce\xc2\xe8\x89\x6c\x2e\x3b\x95\xcd\x66\xd3\x2d\xdb\x37\xb6\xad\xe5" "\xdb\x3f\xbd\xa5\xbe\xaf\xb7\x67\x71\x5f\x43\x4d\xfb\xda\x5c\x5f\x21\x3f" "\x7b\xec\x78\x3c\x86\x5a\x38\xc7\xdb\x5a\xf6\xb5\x78\x9b\xd1\x4f\xde\x98" "\x4d\xfc\xfc\x67\x8f\x1d\xff\xab\x0b\xcf\xdf\x55\x34\xbb\x9e\x86\x96\xdb" "\x6b\x1c\xe7\x8e\xad\xf5\xe3\xfc\x4c\xb8\xa4\x71\xac\xb5\x6c\x5d\x3a\x27" "\xf1\x38\x87\x9a\x8e\x73\x73\xc1\x63\x32\xdc\x72\x9c\xb5\xfc\x7a\xf5\xbf" "\xb7\x1f\xe7\x0b\x2b\x3c\xce\xe1\xc5\xc3\xbc\xa1\xda\x1f\xf3\xf1\x6c\x28" "\xff\xfb\xb3\xf9\x79\x1a\x69\xfe\xb1\x5e\x3a\x4f\x9b\xc3\x65\xff\x7d\x4f" "\x96\x65\x97\x17\x0f\xbb\x7d\x9b\x25\xfb\xca\x86\xb2\x0d\x2d\x97\x0c\x2d" "\x3e\x3e\xe3\x8d\x15\x59\xbf\x8d\xfa\x52\x7a\x59\x36\xb2\xaa\x75\xba\x65" "\x05\xeb\xb4\x3e\x67\xb6\xb5\xae\xd3\xf6\xe7\x44\x7c\xfc\xb7\x84\xeb\x8d" "\x2c\x73\x0c\xcd\x0f\xd3\x4f\x3e\x3d\xd6\xf4\xb8\xff\x62\xe1\x5a\xd6\x69" "\x54\xbf\xd7\xcb\x3d\x57\xda\xd7\x60\xaf\x9f\x2b\xfd\xb2\x06\xe3\xba\x78" "\x36\xbf\xd3\x4f\x14\xae\xc1\x6d\xe1\xfe\x3f\xb6\x7d\xf9\x35\x58\xb8\x76" "\x0a\xd6\x60\xba\xdf\x4d\x6b\x70\x6b\xb7\x35\x38\x34\x36\x9c\x1f\x73\x7a" "\x10\x6a\xf9\x75\x16\xd7\xe0\xae\x96\xed\x87\xf3\x3d\xd5\xf2\xf9\xdc\xf6" "\xce\x6b\x70\xea\xc2\xe9\x73\x53\xf3\x9f\xfc\xd4\x7d\x73\xa7\x8f\x9d\x9c" "\x3d\x39\x7b\x66\xcf\xae\x5d\xd3\x7b\xf6\xed\x3b\x70\xe0\xc0\xd4\x89\xb9" "\x53\xb3\xd3\x8d\x3f\xaf\xf1\x6c\xf7\xbf\x0d\xd9\x50\x7a\x0e\x6c\x0d\xe7" "\x2e\x3e\x07\x5e\xdb\xb6\x6d\xf3\x52\x5d\xf8\xea\xd8\x92\xd7\xdf\x6b\x7d" "\x1e\x8e\x77\x78\x1e\x6e\x6c\xdb\xb6\xd7\xcf\xc3\x91\xf6\x3b\x57\xbb\x31" "\x4f\xc8\xa5\x6b\xba\xf1\xdc\x78\x7f\xfd\xa4\x8f\x5f\x19\xca\x96\x79\x8e" "\xe5\x8f\xcf\xce\xb5\x3f\x0f\xd3\xfd\x6e\x7a\x1e\x8e\x34\x3d\x0f\x0b\xbf" "\xa6\x14\x3c\x0f\x47\x56\xf0\x3c\xac\x6f\x73\x6e\xe7\xca\xbe\x67\x19\x69" "\xfa\xaf\xe8\x18\x96\xff\x5a\xb0\xb6\x35\xb8\xb1\x69\x0d\xb6\x7f\x3f\xd2" "\xbe\x06\x7b\xfd\xfd\x48\xbf\xac\xc1\xf1\xb0\x2e\x7e\xb8\x73\xf9\xaf\x05" "\x9b\xc3\xf1\x3e\x31\xb9\xda\xef\x47\x86\x97\xac\xc1\x74\x77\xc3\x6b\x4f" "\xfd\x92\xf4\xfd\xfe\xf8\x81\x7c\x14\xad\xcb\xbb\xeb\x9f\xb8\x65\x2c\xbb" "\x38\x3f\x7b\xfe\xfe\x47\x8f\x5d\xb8\x70\x7e\x57\x16\xc6\x0d\xf1\xf2\xa6" "\xb5\xd2\xbe\x5e\x37\x34\xdd\xa7\x6c\xc9\x7a\x1d\x5a\xf5\x7a\x3d\x3c\xf7" "\xaa\x27\xee\x2e\xb8\x7c\x63\x38\x57\xe3\xf7\xd5\xff\x18\x5f\xf6\xb1\xaa" "\x6f\xb3\xf7\xfe\xce\x8f\x55\xfe\xd5\xad\xf8\x7c\xb6\x5c\xba\x3b\x0b\xa3" "\xc7\x6e\xf4\xf9\x2c\xfa\x6a\x5e\x3f\x9f\x63\x59\xf6\xe5\xef\x7e\xfa\xe1" "\x6f\x3f\xf6\xe5\x37\x2d\x7b\x3e\xeb\x79\xf3\x33\x53\x6b\xff\x5e\x3c\xe5" "\xd2\xa6\xd7\xdf\xd1\x65\x5e\x7f\x63\xee\x7f\xb1\xb1\xbf\x74\x53\x8f\x0f" "\x8f\x8e\x34\x9e\xbf\xc3\xe9\xec\x8c\xb6\xbc\x1e\xb7\x3e\x54\x23\xf9\x6b" "\x57\x2d\xdf\xf7\x0b\x53\x2b\x7b\x3d\x1e\x0d\xff\xdd\xe8\xd7\xe3\x3b\x3a" "\xbc\x1e\x6f\x6a\xdb\xb6\xd7\xaf\xc7\xa3\xed\x77\x2e\xbe\x1e\xd7\xba\xfd" "\xb4\x63\x6d\xda\x1f\xcf\xf1\xb0\x4e\x4e\x4d\x77\x7e\x3d\xae\x6f\xb3\x69" "\xf7\x6a\xd7\xe4\x48\xc7\xd7\xe3\x7b\xc2\xac\x85\xf3\xff\xba\x90\x14\x52" "\x2e\x6a\x5a\x3b\xcb\xad\xdb\xb4\xaf\x91\x91\xd1\x70\xbf\x46\xe2\x1e\x5a" "\xd7\xe9\x9e\x96\xed\x47\x43\x36\xab\xef\xeb\xa9\xdd\xd7\xb6\x4e\x77\xdc" "\xd3\xb8\xad\xe1\x74\xef\x16\xdd\xa8\x75\x3a\xd1\xb6\x6d\xaf\xd7\x69\xfa" "\xd9\xd7\x72\xeb\xb4\xd6\xed\xa7\x6f\xd7\xa6\xfd\xf1\x1c\x0f\xeb\xe2\x8e" "\x3d\x9d\xd7\x69\x7d\x9b\x67\xf6\xae\xfd\xb5\x73\x7d\xfc\x6b\xd3\x6b\xe7" "\x58\xb7\x35\x38\x3a\x3c\x56\x3f\xe6\xd1\xb4\x08\xf3\xd7\xfb\x6c\x61\x7d" "\x5c\x83\xf7\x67\xc7\xb3\xb3\xd9\xa9\x6c\x26\xff\xec\x58\xbe\x9e\x6a\xf9" "\xbe\x26\x1f\x58\xd9\x1a\x1c\x0b\xff\xdd\xe8\xd7\xca\x4d\x1d\xd6\xe0\x8e" "\xb6\x6d\x7b\xbd\x06\xd3\xd7\xb1\xe5\xd6\x5e\x6d\x64\xe9\x9d\xef\x81\xf6" "\xc7\x73\x3c\xac\x8b\x27\x1f\xe8\xbc\x06\xeb\xdb\xbc\x79\xff\x6a\xd6\xe0" "\x42\xd7\xef\x5d\x77\x84\x4b\xd2\x36\x4d\xdf\xbb\x6e\x69\xfa\x01\x76\xa7" "\x9f\x79\xdd\xdd\x76\x9a\xae\xd7\x5a\x19\x09\xc7\xf9\xdd\xfd\x9d\x7f\x36" "\x5b\xdf\xe6\xd4\x81\xd5\xe6\xcc\xce\xe7\xe9\xde\x70\xc9\x2d\x05\xe7\xa9" "\xfd\xf9\xbb\xdc\x73\x6a\x26\x5b\xe9\x79\xaa\xad\xf9\x39\x55\x3f\xce\xe7" "\x0f\x2c\x7f\x9e\xea\xc7\x53\xdf\xe6\x4b\x07\x57\xb8\x9e\x0e\x67\x59\x76" "\xe9\xe3\x0f\xe6\x3f\xef\x0d\xff\xbe\xf2\xb7\x17\xbf\xff\xcd\x96\x7f\x77" "\x29\xfa\x37\x9d\x4b\x1f\x7f\xf0\xa7\x2f\x39\xf1\x0f\xab\x39\x7e\x00\x06" "\xdf\x8b\x8d\xb1\xa1\xf1\xb5\xae\xe9\x5f\xa6\x56\xf2\xef\xff\x00\x00\x00" "\xc0\x40\x88\xb9\x7f\x28\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\x3f\xfe" "\x5f\xe1\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x48\x98\x49\x45\xf2\xff" "\xa6\x37\x3f\x3f\xf7\xe2\xa5\x2c\x35\xf3\x17\x82\xf8\xf9\x74\x1a\x1e\x6a" "\x6c\x17\x3b\xae\xd3\xe1\xe3\x89\x85\x45\xf5\xcb\x1f\xfc\xfa\xec\x7f\xfd" "\xfd\xa5\x95\xed\x7b\x28\xcb\xb2\x5f\x3c\xf4\x07\x85\xdb\x6f\x7a\x28\x1e" "\x57\xc3\x44\x38\xce\xab\x6f\x69\xbd\x7c\x89\x6f\xde\xb7\xa2\x7d\x1f\x7d" "\xe4\x52\xda\x6f\x73\x7f\xfd\x2b\xe1\xf6\xe3\xfd\x59\xe9\x32\x28\xaa\xe0" "\x4e\x67\x59\xf6\xf4\xed\x5f\xc8\xf7\x33\xf1\xa1\x2b\xf9\x7c\xe6\xa1\xa3" "\xf9\x7c\xf8\xf2\x13\x8f\xd7\xb7\x79\xe1\x60\xe3\xe3\x78\xfd\xe7\x5e\xde" "\xd8\xfe\xcf\x43\xf9\xf7\xf0\x89\x63\x2d\xd7\x7f\x2e\x9c\x87\x1f\x87\x39" "\xfd\x8e\xe2\xf3\x11\xaf\xf7\x8d\x2b\xaf\xdb\xbc\xff\x03\x8b\xfb\x8b\xd7" "\xab\x6d\xbd\x2d\xbf\xdb\x4f\x7e\xb8\x71\xbb\xf1\xf7\xe4\x7c\xf1\xf1\xc6" "\xf6\xf1\x3c\x2f\x77\xfc\xdf\xfe\xfc\x53\xdf\xa8\x6f\xff\xe8\x6b\x8a\x8f" "\xff\xd2\x50\xf1\xf1\x3f\x15\x6e\xf7\xeb\x61\xfe\xcf\x2b\x1b\xdb\x37\x3f" "\x06\xf5\x8f\xe3\xf5\x3e\x1b\x8e\x3f\xee\x2f\x5e\xef\xfe\xaf\x7d\xa7\xf0" "\xf8\xaf\x7e\xae\xb1\xfd\xb9\xb7\x36\xb6\x3b\x1a\x66\xdc\xff\x8e\xf0\xf1" "\xb6\xb7\x3e\x3f\xd7\x7c\xbe\x1e\xad\x1d\x6b\xb9\x5f\xd9\xdb\x1a\xdb\xc5" "\xfd\x4f\x7f\xff\x8f\xf2\xcf\xc7\xdb\x8b\xb7\xdf\x7e\xfc\xe3\x47\xae\xb4" "\x9c\x8f\xf6\xf5\xf1\xcc\xbf\x36\x6e\x67\xaa\x6d\xfb\x78\x79\xdc\x4f\xf4" "\x77\x6d\xfb\xaf\xdf\x4e\xf3\xfa\x8c\xfb\x7f\xea\x0f\x8f\xb6\x9c\xe7\x6e" "\xfb\xbf\xfa\xf0\x73\xaf\xac\xdf\x6e\xfb\xfe\xef\x6d\xdb\xee\xdc\xc7\x77" "\xe6\xfb\x5f\xbc\xbd\xd6\xdf\xd8\xf4\x17\x9f\xfd\x42\xe1\xfe\xe2\xf1\x1c" "\xfe\x9b\x73\x2d\xf7\xe7\xf0\x7b\xc3\xf3\x38\xec\xff\xc9\x0f\x87\xf5\x18" "\x3e\xff\xbf\x57\x1b\xb7\xd7\xfe\xdb\x15\x8e\xbe\xb7\xf5\xf5\x27\x6e\xff" "\x95\x8d\x97\x5a\xee\x4f\xf4\xf6\x9f\x37\xf6\x7f\xf5\x0d\x27\xf3\xb9\x6e" "\x7c\xfd\x86\x5b\x6e\x7d\xc9\x6d\x97\x5f\x5d\x3f\x77\x59\xf6\xec\xba\xc6" "\xed\x75\xdb\xff\xc9\xbf\x3c\xdb\x72\xfc\x5f\xbd\xb3\x71\x3e\xe2\xe7\x63" "\x47\xbf\x7d\xff\xcb\x89\xfb\x3f\xff\x89\xc9\x33\x67\xe7\x2f\xce\xcd\xa4" "\xb3\xfa\xd8\xed\xf9\xef\xce\x79\x67\xe3\x78\xe2\xf1\xde\x1e\x5e\x5b\xdb" "\x3f\x3e\x72\xf6\xc2\x47\x66\xcf\x4f\x4c\x4f\x4c\x67\xd9\x44\x79\x7f\x85" "\xde\x35\xfb\x5a\x98\x3f\x6d\x8c\xcb\xab\xbd\xfe\xce\x47\xc2\xe3\x79\xf7" "\x9f\x3d\xbd\x61\xfb\xbf\x7c\x3e\x5e\xfe\x83\xf7\x37\x2e\xbf\xf2\x8e\xc6" "\xd7\xad\xd7\x86\xed\xbe\x18\x2e\xdf\x18\x1e\xbf\xb5\xee\xff\xc9\x2d\x77" "\xe6\xcf\xef\xda\x33\x8d\x8f\x5b\x7a\xec\x3d\xb0\x79\xdb\x7f\x1e\x58\xd1" "\x86\xe1\xfe\xb7\x7f\x5f\x10\xd7\xfb\xb9\x57\x7c\x24\x3f\x0f\xf5\xcf\xe5" "\x5f\x37\xe2\xf3\x7a\x8d\xc7\xff\xa3\x99\xc6\xed\x7c\x2b\x9c\xd7\x85\xf0" "\x9b\x99\xb7\xde\xb9\xb8\xbf\xe6\xed\xe3\xef\x46\xb8\xf2\xbe\xc6\xf3\x7d" "\xcd\xe7\x2f\xbc\xcc\xc5\xc7\xf5\xaf\xc3\xe3\xfd\xae\x1f\x37\x6e\x3f\x1e" "\x57\xbc\xbf\x3f\x0a\xdf\xc7\x7c\x67\x53\xeb\xeb\x5d\x5c\x1f\xdf\xba\x34" "\xd4\x7e\xfb\xf9\x6f\xf1\xb8\x1c\x5e\x4f\xb2\xcb\x8d\xcf\xc7\xad\xe2\xf9" "\xbe\xf2\xc2\x9d\x85\x87\x17\x7f\x0f\x49\x76\xf9\xae\xfc\xe3\x3f\x4e\xb7" "\x73\xd7\xaa\xee\xe6\x72\xe6\x3f\x39\x3f\x75\x6a\xee\xcc\xc5\x47\xa7\x2e" "\xcc\xce\x5f\x98\x9a\xff\xe4\xa7\x8e\x9c\x3e\x7b\xf1\xcc\x85\x23\xf9\xef" "\xf2\x3c\xf2\xd1\x6e\xd7\x5f\x7c\x7d\xda\x90\xbf\x3e\xcd\xcc\xee\xdb\x9b" "\xe5\xaf\x56\x67\x1b\xe3\x3a\xbb\xd9\xc7\x7f\xee\x91\xe3\x33\xfb\xa7\xb7" "\xcf\xcc\x9e\x38\x76\xf1\xc4\x85\x47\xce\xcd\x9e\x3f\x79\x7c\x7e\xfe\xf8" "\xec\xcc\xfc\xf6\x63\x27\x4e\xcc\x7e\xa2\xdb\xf5\xe7\x66\x0e\xed\xda\x7d" "\x70\xcf\xfe\xdd\x93\x27\xe7\x66\x0e\x1d\x38\x78\x70\xcf\xc1\xc9\xb9\x33" "\x67\xeb\x87\xd1\x38\xa8\x2e\xf6\x4d\x7f\x6c\xf2\xcc\xf9\x23\xf9\x55\xe6" "\x0f\xed\x3d\xb8\xeb\x81\x07\xf6\x4e\x4f\x9e\x3e\x3b\x33\x7b\x68\xff\xf4" "\xf4\xe4\xc5\x6e\xd7\xcf\xbf\x36\x4d\xd6\xaf\xfd\xfb\x93\xe7\x67\x4f\x1d" "\xbb\x30\x77\x7a\x76\x72\x7e\xee\x53\xb3\x87\x76\x1d\xdc\xb7\x6f\x77\xd7" "\xdf\x06\x78\xfa\xdc\x89\xf9\x89\xa9\xf3\x17\xcf\x4c\x5d\x9c\x9f\x3d\x3f" "\xd5\xb8\x2f\x13\x17\xf2\x8b\xeb\x5f\xfb\xba\x5d\x9f\x72\x9a\xff\xf7\xc6" "\xf7\xb3\xed\x6a\x8d\x5f\xc4\x97\xbd\xe7\xde\x7d\xe9\xf7\xb3\xd6\x7d\xfd" "\xd3\xcb\xde\x54\x63\x93\xb6\x5f\x20\xfa\x7c\xf8\x5d\x34\xff\xf4\xd2\x73" "\x07\x56\xf2\x71\xcc\xfd\xa3\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31" "\xf7\x8f\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xaf\x0b\x33\x91\xff" "\x01\x00\x00\xa0\x34\x62\xee\x1f\x0f\x33\xa9\x48\xfe\x2f\x5d\xff\x7f\xd3" "\xa5\x15\xed\x5f\xff\x5f\xff\xbf\xf9\x7c\xe9\xff\x57\xac\xff\xff\xbe\x7e" "\xeb\xff\x37\x5e\x2f\xf4\xff\x7b\x43\xff\xbf\x33\xfd\xff\x2e\xf4\xff\xaf" "\xa5\x3f\x3f\x16\xff\xa2\xff\xaf\xff\xaf\xff\x4f\xbb\x7e\xeb\xff\xc7\xdc" "\xbf\x3e\xcb\x2a\x99\xff\x01\x00\x00\xa0\x0a\x62\xee\xdf\x10\x66\x22\xff" "\x03\x00\x00\x40\x69\xc4\xdc\x7f\x4b\x98\xc9\xaa\xf2\xff\xc2\xad\x3d\x3e" "\x2c\x00\x00\x00\xa0\x87\x62\xee\xbf\x35\xcc\xa4\x22\xff\xfe\xaf\xff\xaf" "\xff\xaf\xff\xaf\xff\xaf\xff\x5f\xbc\x7f\xfd\xff\xc1\xa4\xff\xdf\x99\xfe" "\x7f\x17\xfa\xff\x53\x59\xb5\xde\xff\xff\x72\x2f\x8f\x5f\xff\x5f\xff\x9f" "\xa5\xfa\xad\xff\x1f\x73\xff\x4b\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a" "\x62\xee\xbf\x2d\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\xf6\x30\x13" "\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x8d\x61\x26\x15\xc9\xff\xfa\xff\xfa" "\xff\xfa\xff\xfa\xff\xfa\xff\xc5\xfb\xd7\xff\x1f\x4c\xfa\xff\x9d\xe9\xff" "\x77\xa1\xff\x7f\x53\xdf\x3f\x7f\xd0\x8f\x5f\xff\x5f\xff\x9f\xa5\xfa\xad" "\xff\x1f\x73\xff\x4b\xc3\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\x7f" "\x59\x98\x89\xfc\x0f\x00\x00\x00\xfd\x67\xe4\xda\xae\x16\x73\xff\xcb\xc3" "\x4c\x96\xe4\xff\x6b\xdc\x01\x00\x00\x00\x70\xd3\xc5\xdc\x7f\x47\xd6\x56" "\x04\xaf\xc8\xbf\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x17\xef\x7f" "\xe5\xfd\xff\xe1\x4c\xff\xbf\x7f\xe8\xff\x77\xa6\xff\xdf\x85\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\x3f\x3d\xd5\x6f\xfd\xff\x3c\xf7\x67\xe3\xd9\x2b\xc2\x4c" "\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xbf\x33\xcc\x44\xfe\x07\x00\x00" "\x80\xd2\x88\xb9\xff\xff\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x6f" "\x0a\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x2f\xde\xbf" "\xf7\xff\x1f\x4c\xfa\xff\x9d\xe9\xff\x77\xa1\xff\xaf\xff\x5f\xfe\xfe\xff" "\xeb\x1f\x5e\xe6\xfa\xfa\xff\x5c\x0f\xfd\xd6\xff\x8f\xb9\xff\xae\x30\x93" "\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\xef\x0e\x33\x91\xff\x01\x00\x00" "\xa0\x34\x62\xee\xff\xff\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x9b" "\xc3\x4c\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x8b\xf7\xaf" "\xff\x3f\x98\xf4\xff\x3b\xd3\xff\xef\x42\xff\x5f\xff\xbf\xfc\xfd\xff\x65" "\xe9\xff\x73\x3d\xf4\x5b\xff\x3f\xe6\xfe\x57\x86\x99\x54\x24\xff\x03\x00" "\x00\x40\x15\xc4\xdc\xff\xaa\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe" "\x57\x87\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x4f\x84\x99\x54\x24\xff" "\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x17\xef\xff\xfa\xf7\xff\xd7\xa5" "\xb3\xaa\xff\xdf\x3b\xfa\xff\x9d\xe9\xff\x77\xa1\xff\xaf\xff\xaf\xff\xaf" "\xff\x4f\x4f\xf5\x5b\xff\x3f\xe6\xfe\x2d\x61\x26\x15\xc9\xff\x00\x00\x00" "\x50\x05\x31\xf7\x6f\x0d\x33\x91\xff\x01\x00\x00\xa0\x4f\xad\x5b\xf5\x35" "\x62\xee\xbf\x27\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\x7f\x5b\x98\x49" "\x45\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xf1\xfe\xbd\xff\xff" "\x60\xd2\xff\xef\x4c\xff\xbf\x0b\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x7a\xaa" "\xdf\xfa\xff\x31\xf7\xbf\x26\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6" "\xfe\xed\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xaf\x0d\x33\x91\xff" "\x01\x00\x00\xa0\x34\x62\xee\xdf\x11\x66\x52\x91\xfc\xaf\xff\xaf\xff\xaf" "\xff\xaf\xff\xaf\xff\x5f\xbc\x7f\xfd\xff\xc1\xa4\xff\xdf\x99\xfe\x7f\x17" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xf4\x54\xbf\xf5\xff\x63\xee\x7f\x5d\x98" "\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\x3b\xc3\x4c\xe4\x7f\x00\x00" "\x00\x28\x8d\x98\xfb\xef\x0d\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\x9f" "\x0c\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x2f\xde\xbf" "\xfe\xff\x60\xd2\xff\xef\x4c\xff\xbf\x0b\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f" "\x7a\xaa\xdf\xfa\xff\x31\xf7\xdf\x17\x66\x52\x91\xfc\x0f\x00\x00\x00\x55" "\x10\x73\xff\xfd\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x53\x61\x26" "\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xd3\x61\x26\x15\xc9\xff\xfa\xff\xfa" "\xff\xfa\xff\xfa\xff\xab\xea\xff\xbf\x7a\xf1\x76\xf5\xff\x1b\xf4\xff\xfb" "\x8b\xfe\x7f\x67\xcb\xf7\xff\xdb\x0e\x55\xff\x5f\xff\x5f\xff\xff\x26\xf5" "\xff\x47\xf5\xff\x29\x95\x7e\xeb\xff\xc7\xdc\xbf\x2b\xcc\xa4\x22\xf9\x1f" "\x00\x00\x00\xaa\x20\xe6\xfe\xdd\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc" "\xfd\x7b\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xf7\x86\x99\x54\x24" "\xff\xeb\xff\xeb\xff\x57\xb2\xff\xff\x03\xfd\x7f\xef\xff\xaf\xff\x5f\x56" "\xfa\xff\x9d\xf5\xfe\xfd\xff\xe3\x5d\xd4\xff\xd7\xff\xd7\xff\xf7\xfe\xff" "\xfa\xff\x2c\xd5\x6f\xfd\xff\x98\xfb\x1f\x08\x33\xa9\x48\xfe\x07\x00\x00" "\x80\x2a\x88\xb9\x7f\x5f\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xfe" "\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x03\x61\x26\x15\xc9\xff\xfa" "\xff\xfa\xff\x95\xec\xff\x7b\xff\x7f\xfd\x7f\xfd\xff\xd2\xd2\xff\xef\xac" "\xf7\xfd\x7f\xef\xff\xaf\xff\xbf\x48\xff\x5f\xff\x5f\xff\x9f\x76\xfd\xd6" "\xff\x8f\xb9\xff\x60\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\xaf" "\x0f\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xff\x95\x30\x13\xf9\x1f\x00" "\x00\x00\x06\xcf\x68\xf1\xc5\x31\xf7\xff\x6a\x98\x49\x45\xf2\xbf\xfe\xbf" "\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xf1\xfe\xf5\xff\x07\x93\xfe\x7f\x67\xfa" "\xff\x5d\xac\xb8\xff\xff\x6f\x99\xfe\xff\x52\xfa\xff\xfa\xff\xfa\xff\xb4" "\xeb\xb7\xfe\x7f\xcc\xfd\x87\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62" "\xee\xff\xb5\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x37\x84\x99\xc8" "\xff\x00\x00\x00\x50\x1a\x31\xf7\x1f\x0e\x33\xa9\x48\xfe\xd7\xff\xd7\xff" "\xd7\xff\xd7\xff\xd7\xff\x2f\xde\xff\x4d\xec\xff\x1f\xce\xf4\xff\xaf\x99" "\xfe\x7f\x67\xfa\xff\x5d\x78\xff\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x7a\xaa\xdf" "\xfa\xff\x31\xf7\xbf\x31\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe" "\x07\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xdf\x14\x66\x22\xff\x03" "\x00\x00\x40\x69\xc4\xdc\xff\xe6\x30\x93\x2a\xe4\xff\xfa\xdd\xd5\xff\xd7" "\xff\xd7\xff\xd7\xff\xd7\xff\x2f\xdc\xbf\xf7\xff\x1f\x4c\xfa\xff\x9d\xe9" "\xff\x77\xa1\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x4f\xf5\x5b\xff\x3f\xe6\xfe" "\xb7\x84\x99\x54\x21\xff\x03\x00\x00\xc0\x40\x9a\x58\xf5\x35\x62\xee\x7f" "\x6b\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xdb\xc2\x4c\xe4\x7f\x00" "\x00\x00\x28\x8d\x98\xfb\xdf\x1e\x66\x52\x91\xfc\xef\xfd\xff\xf5\xff\xf5" "\xff\xf5\xff\xf5\xff\x8b\xf7\xaf\xff\x3f\x98\xd6\xd8\xbf\x5f\xa8\x65\x99" "\xfe\x7f\xa6\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x6f\xf4\x5b\xff\x3f" "\xe6\xfe\x5f\x0f\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\xa1\x30" "\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x77\x84\x99\xc8\xff\x00\x00\x00" "\x50\x1a\x31\xf7\xbf\x33\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff" "\x5f\xff\xbf\x78\xff\xfa\xff\x83\xc9\xfb\xff\x77\x36\x60\xfd\xff\x5f\xde" "\x16\x2e\xd7\xff\x6f\xd0\xff\xef\xef\xe3\x1f\xac\xfe\xff\xc2\xba\xf6\xeb" "\xeb\xff\x73\x3d\xf4\x5b\xff\x3f\xe6\xfe\x77\x85\x99\x54\x24\xff\x03\x00" "\x00\x40\x15\xc4\xdc\xff\xee\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe" "\xf7\x84\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xff\x46\x98\x49\x45\xf2" "\xbf\xfe\x7f\xfd\x38\x16\xdb\xcb\xfa\xff\xfa\xff\xf9\x05\xfa\xff\xfa\xff" "\xfa\xff\x03\x4b\xff\xbf\xb3\x01\xeb\xff\x7b\xff\xff\x36\xfa\xff\xfd\x7d" "\xfc\x83\xd5\xff\x5f\xaa\x5b\xff\x7f\x7d\x97\xeb\xeb\xff\x53\xa4\xdf\xfa" "\xff\x31\xf7\xbf\x37\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\x87" "\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xdf\x17\x66\x22\xff\x03\x00" "\x00\x40\x69\xc4\xdc\xff\xfe\x30\x93\x8a\xe4\x7f\xfd\x7f\xef\xff\xaf\xff" "\xaf\xff\xaf\xff\x5f\xbc\x7f\xfd\xff\xc1\xa4\xff\xdf\x99\xfe\x7f\x17\xfa" "\xff\xfa\xff\xfa\xff\xde\xff\x9f\x9e\xea\xb7\xfe\x7f\xcc\xfd\x8f\x84\x99" "\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\xff\x81\x30\x13\xf9\x1f\x00\x00" "\x00\x4a\x23\xe6\xfe\xdf\x0c\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xff" "\x60\x98\x49\x45\xf2\xbf\xfe\xff\xa0\xf4\xff\x27\xf4\xff\xf5\xff\xf5\xff" "\xdb\xee\x8f\xfe\xbf\xfe\x7f\x11\xfd\xff\xce\xf4\xff\xbb\xd0\xff\xd7\xff" "\xd7\xff\xd7\xff\xa7\xa7\xfa\xad\xff\x1f\x73\xff\x87\xc2\x4c\x2a\x92\xff" "\x01\x00\x00\xa0\x0a\x62\xee\xff\xad\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23" "\xe6\xfe\xdf\x0e\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xff\x9d\x30\x93" "\x8a\xe4\x7f\xfd\xff\x41\xe9\xff\x7b\xff\xff\x4c\xff\x5f\xff\xbf\xed\xfe" "\xe8\xff\xeb\xff\x17\xb9\x71\xfd\xff\xf8\xca\xa3\xff\xaf\xff\x5f\xda\xfe" "\x7f\x7d\x57\xfa\xff\x65\xef\xff\x8f\x2e\xfe\x55\xff\x9f\xeb\xa1\xdf\xfa" "\xff\x31\xf7\xff\x6e\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\x1f" "\x0e\x33\x91\xff\x01\x00\x00\x60\x20\x14\xfd\x3f\xd9\xed\x62\xee\x3f\x12" "\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x7f\x34\xcc\xa4\x22\xf9\x5f\xff" "\x5f\xff\x5f\xff\xbf\x4f\xfb\xff\x7f\xba\xf5\x9f\x7f\xf8\xbd\x77\x1f\xdd" "\xa5\xff\xaf\xff\xaf\xff\xbf\x2a\x37\xf4\xfd\xff\xeb\x4f\xfe\x6b\x7e\xff" "\xff\xf5\x85\x97\xea\xff\xeb\xff\xf7\x51\xff\xdf\xfb\xff\x57\xa1\xff\xdf" "\x44\xff\x9f\xeb\xa1\xdf\xfa\xff\x31\xf7\x1f\x0b\x33\xa9\x48\xfe\x07\x00" "\x00\x80\x2a\x88\xb9\xff\xf7\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb" "\x8f\x87\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xcf\x84\x99\x54\x24\xff" "\xeb\xff\xeb\xff\xeb\xff\xf7\x69\xff\x7f\x80\xdf\xff\x3f\x9e\x8f\x01\xe8" "\xff\x0f\xdf\xf8\xfe\xff\xf0\xda\xfb\xff\xf1\x45\x57\xff\xbf\xd0\x0d\xed" "\xff\x7f\x60\xb1\x27\xee\xfd\xff\x57\xdb\xff\x1f\x2b\xbc\x54\xff\x5f\xff" "\x7f\x90\x8f\x5f\xff\x5f\xff\x9f\xa5\xfa\xad\xff\x1f\x73\xff\x6c\x98\x49" "\x45\xf2\x3f\x00\x00\x00\x54\x41\xc8\xfd\x43\x27\x1a\x73\xf1\x13\xf2\x3f" "\x00\x00\x00\x94\x46\xcc\xfd\x27\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98" "\xfb\x3f\x12\x66\x52\x91\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xef\xfd\xff" "\x8b\xf7\xef\xfd\xff\x07\x93\xfe\x7f\x67\xfd\xd3\xff\x2f\xa6\xff\xaf\xff" "\x3f\xc8\xc7\xaf\xff\xaf\xff\xcf\x52\xfd\xd6\xff\x8f\xb9\x7f\x2e\xcc\xa4" "\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\x8f\x86\x99\xc8\xff\x00\x00\x00" "\x50\x1a\x31\xf7\x7f\x2c\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x54" "\x98\x49\x45\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xf1\xfe\xf5" "\xff\x07\x93\xfe\x7f\x67\xfa\xff\x5d\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xd3" "\x53\xfd\xd6\xff\x8f\xb9\xff\x74\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41" "\xcc\xfd\x67\xc2\x4c\xe4\x7f\xe0\xff\xd8\xbb\xb3\x66\xcb\xea\xb3\x8e\xe3" "\xa7\xb1\xa1\xbb\x8b\x17\xe0\x85\x37\xde\xfb\x12\xb8\x68\xae\xf5\x05\x78" "\x81\x17\x56\xa1\x55\x96\x17\xa2\x22\xce\x0a\x38\x8f\x38\xcf\x03\x2a\xce" "\x8a\x26\x90\x10\x32\x91\x79\x82\x4c\x24\x64\x0e\x99\xe7\x39\x84\x4c\x24" "\x55\x9d\xa2\xcf\xf3\x3c\x7d\x86\x75\xd6\x3e\xa7\x7b\xef\xee\xb5\xff\xcf" "\xe7\x73\xf3\xe8\x81\xc3\xda\x52\x47\xc8\x2f\xdd\xdf\x5a\x00\x00\xc0\x30" "\x72\xf7\xdf\x16\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x3f\x19\xb7\x34" "\xd9\xff\xfa\x7f\xfd\xff\x09\xfb\xff\x3b\xce\x6c\x4b\xff\x7f\x5e\xff\x7f" "\xd4\xf3\xf5\xff\xfa\xff\x91\xe9\xff\xe7\xe9\xff\x57\xd0\xff\xeb\xff\xf5" "\xff\xfa\x7f\xd6\x6a\x69\xfd\x7f\xee\xfe\x9f\x8a\x5b\x9a\xec\x7f\x00\x00" "\x00\xe8\x20\x77\xff\x4f\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xed" "\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x33\x71\x4b\x93\xfd\x7f\xa0" "\xff\x3f\xb5\xd3\xb3\xff\xcf\x8c\x57\xff\xef\xfd\xff\xfa\x7f\xfd\xbf\xfe" "\x7f\xcb\x5d\xdd\xfe\xff\xee\x67\xff\xc9\xb7\x91\xfe\xff\xd6\xf8\xff\x73" "\xfd\xff\xee\xd7\xf5\xff\xbb\xf4\xff\xcb\xfe\xfc\xfa\x7f\xfd\x3f\x87\x2d" "\xad\xff\xcf\xdd\x7f\x47\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x7f" "\x36\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x7f\x2e\x6e\xb1\xff\x01\x00" "\x00\x60\x18\xb9\xfb\x7f\x3e\x6e\x69\xb2\xff\xbd\xff\xdf\xfb\xff\xf5\xff" "\xfa\x7f\xfd\xff\xf4\xf3\xf5\xff\xdb\xc9\xfb\xff\xe7\x75\xea\xff\x6f\x7f" "\xe2\xc6\x9f\x78\xea\xa1\xef\x79\xf8\x24\xcf\xdf\x54\xff\x7f\xfa\xd2\x5f" "\x5f\xff\xbf\x41\xd7\xfa\xf3\xeb\xff\xf5\xff\x1c\xb6\xb4\xfe\x3f\x77\xff" "\x2f\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x17\xe3\x16\xfb\x1f" "\x00\x00\x00\x86\x91\xbb\xff\x97\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb" "\xff\x97\xe3\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xd3\xcf" "\xd7\xff\x6f\x27\xfd\xff\xbc\x4e\xfd\xff\xe5\x3c\xdf\xfb\xff\xf5\xff\x2b" "\x3f\xff\x99\xa3\xbf\x5f\xff\xaf\xff\xe7\xb0\xa5\xf5\xff\xb9\xfb\x7f\x25" "\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xbf\x1a\xb7\xd8\xff\x00\x00" "\x00\x30\x8c\xdc\xfd\x77\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x5d" "\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xe9\xe7\xeb\xff" "\xb7\x93\xfe\x7f\x9e\xfe\x7f\x05\xfd\xbf\xfe\xdf\xfb\xff\xf5\xff\xac\xd5" "\xd2\xfa\xff\xdc\xfd\x77\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff" "\xd7\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xd7\xe3\x16\xfb\x1f\x00" "\x00\x00\x86\x91\xbb\xff\x37\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb" "\xff\xf5\xff\xd3\xcf\xd7\xff\x6f\x27\xfd\xff\x3c\xfd\xff\x0a\xfa\xff\x2b" "\xed\xe7\xaf\xd7\xff\xeb\xff\xf5\xff\xec\x75\xc2\xfe\xff\x99\x99\x7f\x6c" "\xaf\xa5\xff\xcf\xdd\xff\x9b\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee" "\xff\xad\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\xed\xb8\xc5\xfe\x07" "\x00\x00\x80\x61\xe4\xee\xff\x9d\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\xff\xf4\xf3\xf5\xff\xdb\x49\xff\x3f\x6f\x31\xfd\xff\xa9\xd3" "\x93\x5f\xd6\xff\x6f\x7d\xff\xef\xfd\xff\xfa\x7f\xfd\x3f\xfb\x2c\xed\xfd" "\xff\xb9\xfb\x7f\x37\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xbf\x17" "\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xbf\x1f\xb7\xd8\xff\x00\x00\x00" "\x30\x8c\xdc\xfd\x7f\x10\xb7\x34\xd9\xff\x9b\xec\xff\x0f\x36\xbc\x07\xe9" "\xff\xf5\xff\xfa\xff\x51\xfa\xff\x1b\xf6\x7d\xbd\x43\xff\xff\xf0\x9e\xcf" "\xa7\xff\x5f\x16\xfd\xff\xbc\xc5\xf4\xff\x47\xd0\xff\xeb\xff\xb7\xf9\xf3" "\xeb\xff\xf5\xff\x1c\xb6\xb4\xfe\x3f\x77\xff\x1f\xc6\x2d\x4d\xf6\x3f\x00" "\x00\x00\x74\x90\xbb\xff\x9e\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff" "\xa3\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\xe3\xb8\xa5\xc9\xfe\x9f" "\xee\xff\x2f\xfd\x71\xef\xff\x3f\x1e\xfd\xff\xfe\xcf\xaf\xff\x9f\xfe\xf9" "\x58\x57\xff\x9f\x7f\xc5\x4d\xf7\xff\xcf\xda\xe2\xf7\xff\xdf\xec\xfd\xff" "\x3d\xe9\xff\xe7\xe9\xff\x57\xd0\xff\xeb\xff\xf5\xff\x47\xf5\xff\xe7\x56" "\x7d\xbf\xfe\x9f\x29\x4b\xeb\xff\x73\xf7\xff\x49\xdc\xd2\x64\xff\x03\x00" "\x00\x40\x07\xb9\xfb\xff\x34\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xff" "\x2c\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xff\x3c\x6e\x69\xb2\xff\x37" "\xf9\xfe\xff\x55\xf4\xff\xfa\xff\x66\xfd\x7f\x65\xed\xe3\xbd\xff\x7f\xbf" "\x85\xf4\xff\x1b\x7d\xff\xff\xce\x55\xef\xff\x4f\xeb\xff\x8f\x49\xff\x3f" "\x4f\xff\xbf\x82\xfe\x5f\xff\xaf\xff\xf7\xfe\x7f\xd6\x6a\x69\xfd\x7f\xee" "\xfe\xbf\x88\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x5f\xc6\x2d\xf6" "\x3f\x00\x00\x00\x6c\x87\xbd\xbf\x77\xe0\xe0\x6f\x28\x0d\xb9\xfb\xff\x2a" "\x6e\xb1\xff\x01\x00\x00\x60\x18\xbb\xbb\xbf\xea\xdd\x4b\x7f\xa0\xc9\xfe" "\xd7\xff\xeb\xff\xf5\xff\xdb\xf7\xfe\x7f\xfd\xff\xae\x5e\xfd\xbf\xf7\xff" "\x1f\x97\xfe\x7f\x9e\xfe\x7f\x05\xfd\xff\x26\xfa\xf9\xd3\x83\xf5\xff\xf7" "\x1e\xf5\xfd\x4b\xe8\xff\xef\xd4\xff\xb3\x30\xfb\xfa\xff\x47\x2e\x7d\xfd" "\x5a\xf5\xff\x7f\x7d\xf1\xbb\xce\xee\xfc\x4d\xdc\xd2\x64\xff\x03\x00\x00" "\x40\x07\xb9\xfb\xff\x36\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xff\x2e" "\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xff\x3e\x6e\x69\xb2\xff\x37\xde" "\xff\x9f\x3b\xfa\xd9\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xaf\xdb" "\x40\xfd\xff\xc5\x1f\x11\xfd\xff\xee\xd7\xf5\xff\xbb\xb6\xb4\xff\xf7\xfe" "\x7f\xef\xff\xd7\xff\x37\xb6\xaf\xff\xdf\xe3\x5a\xf5\xff\xb9\xfb\xff\x21" "\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xff\x18\xb7\xd8\xff\x00\x00" "\x00\x30\x8c\xdc\xfd\xf7\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x3f" "\xc5\x2d\x4d\xf6\xbf\xf7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf4\xf3\xf5" "\xff\xdb\x69\xa0\xfe\xff\x22\xfd\xff\xee\xd7\xf5\xff\xbb\xf4\xff\xcb\xfe" "\xfc\xfa\x7f\xfd\x3f\x87\x2d\xad\xff\xcf\xdd\xff\xcf\x71\x4b\x93\xfd\x0f" "\x00\x00\x00\x1d\xe4\xee\xff\x97\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee" "\xbf\x2f\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xff\x35\x6e\x69\xb2\xff" "\xf5\xff\x9b\xed\xff\xf3\xeb\xfa\x7f\xfd\xff\x8e\xfe\xff\x38\xfd\xff\xcd" "\xfa\x7f\xfd\xff\x95\x6a\xdb\xff\x9f\x9a\xfa\x37\xd1\x61\x47\xf4\xff\x8f" "\xfd\xd8\x5d\x3f\xb0\xff\x2b\x7d\xfa\xff\xfd\x7f\xe3\xf4\xff\xfa\x7f\xfd" "\xbf\xfe\x9f\xb5\x5a\x44\xff\x7f\xe1\xd2\x7f\xba\xcc\xdd\xff\x6f\x71\x4b" "\x93\xfd\x0f\x00\x00\x00\x83\x38\x33\xf7\x07\x73\xf7\xff\x7b\xdc\x62\xff" "\x03\x00\x00\xc0\x30\x72\xf7\xff\x47\xdc\x62\xff\x03\x00\x00\xc0\x30\x72" "\xf7\xff\x67\xdc\xd2\x64\xff\xeb\xff\xbd\xff\x5f\xff\xaf\xff\x5f\x50\xff" "\xef\xfd\xff\xfa\xff\x2b\xd6\xb6\xff\x3f\x26\xef\xff\x5f\x41\xff\xaf\xff" "\xd7\xff\xeb\xff\x59\xab\x45\xf4\xff\x7b\xfe\xf7\xdc\xfd\xff\x15\xb7\x34" "\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xff\x8e\x5b\xec\x7f\x00\x00\x00\x18" "\x46\xee\xfe\xff\x89\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xff\x8d\x5b" "\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x4f\x3f\x5f\xff\xbf\x9d" "\xf4\xff\xf3\xf4\xff\x2b\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x6b\xb5\xb4\xfe" "\x3f\x77\xff\xfd\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\xbf\xb8" "\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\xff\xb8\xc5\xfe\x07\x00\x00\x80" "\x61\xe4\xee\x7f\x4e\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\x7f\xfa\xf9\xfa\xff\xed\xa4\xff\x9f\xa7\xff\xdf\xd9\xd9\x79\x60\xe6\x03" "\x4c\xf5\xff\x17\xce\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x97\x69\x69\xfd\x7f" "\xee\xfe\xe7\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x81\xb8\xc5" "\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x30\x6e\xb1\xff\x01\x00\x00\x60\x18" "\xb9\xfb\x9f\x17\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x9f" "\x7e\xbe\xfe\x7f\x3b\xe9\xff\xe7\xe9\xff\x57\x18\xfd\xfd\xff\x2b\x7e\x22" "\xf7\xf6\xf3\x4f\xdf\x79\xcb\x79\xfd\xbf\xfe\x5f\xff\xcf\x95\x5a\x5a\xff" "\x9f\xbb\xff\xf9\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x28\x6e" "\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x5f\x10\xb7\xd8\xff\x00\x00\x00\x30" "\x8c\xdc\xfd\x0f\xc7\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff" "\xa7\x9f\xaf\xff\xdf\x4e\x9b\xeb\xff\x77\xf4\xff\x2d\xfa\xff\x1b\x2e\x9e" "\x61\xfb\xff\x15\xae\x75\x3f\x7f\x95\x3e\xff\xf9\x4d\x7d\x7e\xfd\xbf\xfe" "\x9f\xc3\x96\xd6\xff\xe7\xee\x7f\x61\xdc\xd2\x64\xff\x03\x00\x00\x40\x07" "\xb9\xfb\x5f\x14\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x2f\x8e\x5b\xec" "\x7f\x00\x00\x00\x18\x46\xee\xfe\x97\xc4\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\xa7\x9f\xaf\xff\xdf\x4e\xde\xff\x3f\x4f\xff\xbf\xc2" "\xe8\xef\xff\x5f\xa1\x49\xff\xbf\xb1\xcf\xaf\xff\xd7\xff\x73\xd8\xd2\xfa" "\xff\xdc\xfd\x2f\x8d\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x23\x71" "\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xb2\xb8\xc5\xfe\x07\x00\x00\x80" "\x61\xe4\xee\x7f\x79\xdc\xd2\x64\xff\xaf\xe8\xff\x2f\xfd\x0d\xd1\xff\xcf" "\xd2\xff\xef\xff\xfc\xfa\xff\xe9\x9f\x0f\xfd\xbf\xfe\xff\x40\xff\x7f\x76" "\x47\xff\xbf\x76\xfa\xff\x79\xfa\xff\x15\xf4\xff\x63\xf6\xff\xd7\xed\x0c" "\xd4\xff\x9f\x3b\xf2\xfb\xaf\x6e\xff\x7f\xf6\xd0\xf7\xeb\xff\x99\xb2\xb4" "\xfe\x3f\x77\xff\x2b\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xca" "\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x55\xdc\x62\xff\x03\x00\x00" "\xc0\x30\x72\xf7\xbf\x3a\x6e\x69\xb2\xff\xbd\xff\x5f\xff\xaf\xff\xd7\xff" "\xeb\xff\xa7\x9f\xef\xfd\xff\xdb\x49\xff\x3f\x4f\xff\xbf\x82\xfe\x7f\xcc" "\xfe\xdf\xfb\xff\xbd\xff\x9f\x6b\x66\x69\xfd\x7f\xee\xfe\xd7\xc4\x2d\x4d" "\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xb5\x71\x8b\xfd\x0f\x00\x00\x00\x5b" "\x62\xf5\x6f\xbb\xcb\xdd\xff\xba\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee" "\x7f\x7d\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xfa\xf9" "\xfa\xff\xed\xa4\xff\x9f\xa7\xff\x5f\x41\xff\xaf\xff\xd7\xff\xeb\xff\x59" "\xab\xa5\xf5\xff\xb9\xfb\xdf\x10\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee" "\xfe\x47\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xb1\xb8\xc5\xfe\x07" "\x00\x00\x80\x61\xe4\xee\x7f\x63\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\xff" "\xed\xec\xff\xcf\xea\xff\xf5\xff\xfa\xff\x49\x4b\xe9\xff\x6f\xba\xe9\xfb" "\x1f\xd7\xff\xcf\x7d\xfe\xfb\x6e\x9d\xfa\xaa\xfe\x5f\xff\xbf\xcd\x9f\x5f" "\xff\xaf\xff\xe7\xb0\x8d\xf5\xff\xf1\x0d\x27\xed\xff\x73\xf7\xbf\x29\x6e" "\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x6f\x8e\x5b\xec\x7f\x00\x00\x00" "\x58\xbc\xf3\xc7\xfc\xf3\x72\xf7\xbf\x25\x6e\xb1\xff\x01\x00\x00\x60\x18" "\xb9\xfb\xdf\x1a\xb7\x34\xd9\xff\x87\xfb\xff\xeb\x77\x76\x0b\xd5\x5d\x53" "\xfd\x7f\x34\x6a\xfa\xff\x3d\xf4\xff\xfb\x3f\xbf\xfe\x7f\xfa\xe7\xc3\xfb" "\xff\xf5\xff\xfa\xff\xcd\x5b\x4a\xff\xef\xfd\xff\x97\xf7\xf9\xf5\xff\xfa" "\xff\x6d\xfe\xfc\x27\xea\xff\xbf\xf7\xf0\xf7\xeb\xff\x19\xd1\xd2\xde\xff" "\x9f\xbb\xff\xf1\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xbf\x2d\x6e" "\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xdf\x1e\xb7\xd8\xff\x00\x00\x00\x30" "\x8c\xdc\xfd\x4f\xc4\x2d\x4d\xf6\xbf\xf7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd" "\xff\xf4\xf3\xf5\xff\xdb\x49\xff\x3f\x4f\xff\xbf\x82\xfe\x5f\xff\xef\xfd" "\xff\xb7\xfd\xc8\x77\xe9\xff\x59\x9f\xa5\xf5\xff\xb9\xfb\xdf\x11\xb7\x1c" "\x63\xf8\x5d\xb7\xfa\x4f\x01\x00\x00\x00\x16\x20\x77\xff\x3b\xe3\x96\xe9" "\xfd\x3f\xf5\xcb\xbc\x00\x00\x00\xc0\xc2\xe5\xee\x7f\x57\xdc\xd2\xe4\xf7" "\xff\x03\x00\x00\x40\x07\xb9\xfb\xdf\x1d\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\x9f\x7e\xbe\xfe\x7f\x3b\xe9\xff\xe7\xe9\xff\x57\xd0" "\xff\xeb\xff\xf5\xff\xde\xff\xcf\x5a\x2d\xad\xff\xcf\xdd\xff\x9e\xb8\xa5" "\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xbf\x37\x6e\xb1\xff\x01\x00\x00\x60" "\x18\xb9\xfb\xdf\x17\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xef\x8f\x5b" "\x9a\xec\x7f\xfd\xbf\xfe\x7f\xfc\xfe\xff\x87\xf5\xff\x07\x9e\xaf\xff\xd7" "\xff\x8f\x4c\xff\x9f\xff\x46\x9f\xa6\xff\x5f\x41\xff\xaf\xff\xd7\xff\xeb" "\xff\x59\xab\xa5\xf5\xff\xb9\xfb\x9f\x8c\x5b\x9a\xec\x7f\x00\x00\x00\xe8" "\x20\x77\xff\x07\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x83\x71\x8b" "\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xa1\xb8\xa5\xc9\xfe\xd7\xff\xf7\xea" "\xff\x4f\xed\x74\xec\xff\xbd\xff\x5f\xff\xaf\xff\xef\x44\xff\x3f\x4f\xff" "\xbf\x82\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\x56\x4b\xeb\xff\x73\xf7\x7f\x38" "\x6e\x69\xb2\xff\x01\x00\x00\x60\x5b\xfd\xe0\xf7\xfd\xf8\x93\xc7\xfd\x73" "\x73\xf7\x7f\x24\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x3f\x1a\xb7\xd8" "\xff\x00\x00\x00\x30\x8c\xdc\xfd\x1f\x8b\x5b\x9a\xec\x7f\xfd\x7f\xaf\xfe" "\xbf\xe7\xfb\xff\xf5\xff\xfa\x7f\xfd\x7f\x27\xfa\xff\x79\xfa\xff\x15\xf4" "\xff\xfa\x7f\xfd\xbf\xfe\x9f\xb5\x5a\x5a\xff\x9f\xbb\xff\xe3\x71\xcb\x9e" "\xe1\x77\xfa\xc4\xff\x57\x02\x00\x00\x00\x4b\x92\xbb\xff\x13\x71\x4b\x93" "\x5f\xff\x07\x00\x00\x80\x0e\x72\xf7\x7f\x32\x6e\x39\xb4\xff\x2f\x1c\xf3" "\x77\xb5\x03\x00\x00\x00\x4b\x93\xbb\xff\x53\x71\x4b\x93\x5f\xff\xd7\xff" "\x2f\xbc\xff\xdf\xd1\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x49\xe8\xff\xe7" "\x5d\x61\xff\x7f\xe1\x94\xfe\x5f\xff\x3f\x43\xff\xaf\xff\xd7\xff\x73\xd0" "\xd2\xfa\xff\xdc\xfd\x9f\x8e\x5b\x9a\xec\x7f\x00\x00\x00\x18\xd4\xbe\xff" "\x46\x21\x77\xff\x67\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xb3\x71" "\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xb9\xb8\xa5\xc9\xfe\xd7\xff\x2f" "\xbc\xff\xbf\xac\xf7\xff\x9f\xab\xff\x49\xff\xdf\xbc\xff\xbf\xe7\xec\xe4" "\xf3\xf5\xff\xfa\xff\x91\xe9\xff\xe7\x79\xff\xff\x0a\xfa\x7f\xfd\xff\x86" "\xfb\xff\x1f\x9a\x79\xb1\xb8\xfe\x9f\x11\x2d\xad\xff\xcf\xdd\xff\xf9\xb8" "\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x7f\x21\x6e\x99\xdb\xff\x67\x36" "\xfd\xa9\x00\x00\x00\x80\x75\xca\xdd\xff\xc5\xb8\xc5\xaf\xff\x03\x00\x00" "\xc0\x30\x72\xf7\x7f\x29\x6e\x69\xb2\xff\xf5\xff\x23\xf6\xff\xde\xff\xaf" "\xff\x9f\x7f\xfe\x38\xfd\xff\x77\xdf\x78\xd7\xa3\xb7\xfc\xe8\x83\xf7\xeb" "\xff\xb9\xe4\x6a\xf6\xff\xf9\xb3\xa0\xff\xd7\xff\xeb\xff\x77\xe9\xff\xbd" "\xff\x5f\xff\xcf\x41\x4b\xeb\xff\x73\xf7\x7f\x39\x6e\x69\xb2\xff\x01\x00" "\x00\xa0\x83\xdc\xfd\x4f\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x57" "\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xe9\xb8\xa5\xc9\xfe\xd7\xff" "\xeb\xff\xf5\xff\xdb\xd8\xff\x67\x53\xdc\xbd\xff\xf7\xfe\x7f\xfd\xff\x61" "\xde\xff\x3f\x4f\xff\xbf\x82\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\x56\x4b\xeb" "\xff\x73\xf7\x7f\x35\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x5f\x8b" "\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xaf\xc7\x2d\xf6\x3f\x00\x00\x00" "\x0c\x23\x77\xff\x37\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\x2f\xb5\xff" "\x3f\xe5\xfd\xff\x41\xff\xaf\xff\x3f\x09\xfd\xff\x3c\xfd\xff\x0a\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\xcf\x5a\x2d\xad\xff\xcf\xdd\xff\xcd\xb8\xa5\xc9\xfe" "\x07\x00\x00\x80\x0e\x72\xf7\x3f\x13\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc" "\xfd\xdf\x8a\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x6f\xc7\x2d\x4d\xf6" "\xbf\xfe\x5f\xff\xbf\x8e\xfe\x7f\xe7\xc0\xe7\xd7\xff\x4f\xff\x7c\xac\xef" "\xfd\xff\xfa\xff\x1d\xfd\xbf\xfe\xff\x08\xfa\xff\x79\xfa\xff\x15\xf4\xff" "\xfa\x7f\xfd\xbf\xfe\x9f\xb5\x5a\x5a\xff\x9f\xbb\xff\x3b\x01\x00\x00\xff" "\xff\x7a\x3e\x72\x34", 25007); syz_mount_image(/*fs=*/0x200001c0, /*dir=*/0x20000200, /*flags=MS_SILENT*/ 0x8000, /*opts=*/0x20000640, /*chdir=*/1, /*size=*/0x61ac, /*img=*/0x200065c0); } 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); for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }