// https://syzkaller.appspot.com/bug?id=b3f85701fb031906ee7c2e8a273022ebd994c210 // 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 #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif #ifndef __NR_pwritev2 #define __NR_pwritev2 328 #endif static unsigned long long procid; 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; } static void setup_gadgetfs(); static void setup_binderfs(); static void setup_fusectl(); static void sandbox_common_mount_tmpfs(void) { write_file("/proc/sys/fs/mount-max", "100000"); if (mkdir("./syz-tmp", 0777)) exit(1); if (mount("", "./syz-tmp", "tmpfs", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot", 0777)) exit(1); if (mkdir("./syz-tmp/newroot/dev", 0700)) exit(1); unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE; if (mount("/dev", "./syz-tmp/newroot/dev", NULL, bind_mount_flags, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/proc", 0700)) exit(1); if (mount("syz-proc", "./syz-tmp/newroot/proc", "proc", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/selinux", 0700)) exit(1); const char* selinux_path = "./syz-tmp/newroot/selinux"; if (mount("/selinux", selinux_path, NULL, bind_mount_flags, NULL)) { if (errno != ENOENT) exit(1); if (mount("/sys/fs/selinux", selinux_path, NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); } if (mkdir("./syz-tmp/newroot/sys", 0700)) exit(1); if (mount("/sys", "./syz-tmp/newroot/sys", 0, bind_mount_flags, NULL)) exit(1); if (mount("/sys/kernel/debug", "./syz-tmp/newroot/sys/kernel/debug", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/sys/fs/smackfs", "./syz-tmp/newroot/sys/fs/smackfs", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/proc/sys/fs/binfmt_misc", "./syz-tmp/newroot/proc/sys/fs/binfmt_misc", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/pivot", 0777)) exit(1); if (syscall(SYS_pivot_root, "./syz-tmp", "./syz-tmp/pivot")) { if (chdir("./syz-tmp")) exit(1); } else { if (chdir("/")) exit(1); if (umount2("./pivot", MNT_DETACH)) exit(1); } if (chroot("./newroot")) exit(1); if (chdir("/")) exit(1); setup_gadgetfs(); setup_binderfs(); setup_fusectl(); } static void setup_gadgetfs() { if (mkdir("/dev/gadgetfs", 0777)) { } if (mount("gadgetfs", "/dev/gadgetfs", "gadgetfs", 0, NULL)) { } } static void setup_fusectl() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } } static void setup_binderfs() { if (mkdir("/dev/binderfs", 0777)) { } if (mount("binder", "/dev/binderfs", "binder", 0, NULL)) { } if (symlink("/dev/binderfs", "./binderfs")) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); if (getppid() == 1) exit(1); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = (200 << 20); setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 128 << 20; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); if (unshare(CLONE_NEWNS)) { } if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(0x02000000)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } typedef struct { const char* name; const char* value; } sysctl_t; static const sysctl_t sysctls[] = { {"/proc/sys/kernel/shmmax", "16777216"}, {"/proc/sys/kernel/shmall", "536870912"}, {"/proc/sys/kernel/shmmni", "1024"}, {"/proc/sys/kernel/msgmax", "8192"}, {"/proc/sys/kernel/msgmni", "1024"}, {"/proc/sys/kernel/msgmnb", "1024"}, {"/proc/sys/kernel/sem", "1024 1048576 500 1024"}, }; unsigned i; for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++) write_file(sysctls[i].name, sysctls[i].value); } static int wait_for_loop(int pid) { if (pid < 0) exit(1); int status = 0; while (waitpid(-1, &status, __WALL) != pid) { } return WEXITSTATUS(status); } static void drop_caps(void) { struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) exit(1); const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE); cap_data[0].effective &= ~drop; cap_data[0].permitted &= ~drop; cap_data[0].inheritable &= ~drop; if (syscall(SYS_capset, &cap_hdr, &cap_data)) exit(1); } static int do_sandbox_none(void) { if (unshare(CLONE_NEWPID)) { } int pid = fork(); if (pid != 0) return wait_for_loop(pid); sandbox_common(); drop_caps(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); sandbox_common_mount_tmpfs(); loop(); exit(1); } uint64_t r[2] = {0xffffffffffffffff, 0xffffffffffffffff}; void loop(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x20000000, "jfs\000", 4); memcpy((void*)0x20000040, "./file0\000", 8); *(uint8_t*)0x20002ac0 = 0; memcpy( (void*)0x20008d40, "\x78\x9c\xec\xdd\x4d\x6f\x1d\x57\xfd\x07\xf0\xdf\x7d\xf4\x43\xff\x6d\xad" "\x2e\xaa\xfe\x2b\x84\xdc\x07\x1e\x4a\x69\x12\x27\x25\x04\x0a\xb4\x5d\xc0" "\x82\x4d\x17\x28\x5b\x94\xc8\x75\xab\x88\x14\x50\x12\x50\x5a\x59\xc4\x95" "\x85\xc4\x82\x15\xaf\x00\x84\xc4\x12\x21\x96\x88\x05\x2f\xa0\x0b\xb6\xec" "\x58\xb1\x22\x92\x8d\x04\xea\x8a\x41\x63\x9f\x13\x8f\x6f\xee\xad\x9d\xda" "\xbe\x73\xed\xf3\xf9\x48\xce\xcc\x6f\xce\xdc\xeb\x33\xfe\xde\xb9\x0f\x99" "\x99\x7b\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x88\xef" "\x7e\xe7\x7b\x2b\x9d\x88\xb8\xf6\xd3\xb4\x60\x29\xe2\xff\xa2\x17\xd1\x8d" "\x58\xa8\xeb\xe5\x88\x58\x58\x5e\xca\xeb\xf7\x23\xe2\x99\xd8\x69\x8e\xa7" "\x23\x62\x30\x17\x51\xdf\x7e\xe7\x9f\x27\x23\x5e\x8d\x88\x8f\x9e\x88\xd8" "\xda\x5e\x5f\xad\x17\x5f\x3c\x64\x3f\xbe\xfd\x87\xbf\xfd\xf6\xfb\x8f\xbd" "\xf5\xd7\xdf\x0f\xce\xff\xe7\x8f\x77\x7a\xaf\x4d\x5a\xef\xee\xdd\x5f\xfe" "\xfb\x4f\xf7\x8e\xb6\xcd\x00\x00\x00\x50\x9a\xaa\xaa\xaa\x4e\xfa\x98\xff" "\x6c\xfa\x7c\xdf\x6d\xbb\x53\x00\xc0\x54\xe4\xd7\xff\x2a\xc9\xcb\xcf\x7c" "\xfd\xab\x7f\xbc\xf5\xe7\x59\xea\x8f\x5a\xad\x56\xab\xd5\x53\xa8\x9b\xaa" "\xf1\xee\x35\x8b\x88\xd8\x68\xde\xa6\x7e\xcf\xe0\x70\x3c\x00\x9c\x32\x1b" "\xf1\x71\xdb\x5d\xa0\x45\xf2\x2f\x5a\x3f\x22\x1e\x6b\xbb\x13\xc0\x4c\xeb" "\xb4\xdd\x01\x4e\xc4\xd6\xf6\xfa\x6a\x27\xe5\xdb\x69\xbe\x1e\x2c\xef\xb6" "\xe7\x73\x41\xf6\xe5\xbf\xd1\x79\x70\x7d\xc7\xa4\xe9\x41\x46\xcf\x31\x99" "\xd6\xe3\x6b\x33\x7a\xf1\xd4\x84\xfe\x2c\x4c\xa9\x0f\xb3\x24\xe7\xdf\x1d" "\xcd\xff\xda\x6e\xfb\x30\xad\x77\xd2\xf9\x4f\xcb\xa4\xfc\x87\xbb\x97\x3e" "\x15\x27\xe7\xdf\x1b\xcd\x7f\xc4\xd9\xc9\xbf\x3b\x36\xff\x52\xe5\xfc\xfb" "\x8f\x94\x7f\x4f\xfe\x00\x00\x00\x00\x00\x30\xc3\xf2\xff\xff\x2f\xb5\x7c" "\xfc\x77\xee\xe8\x9b\x72\x28\x9f\x74\xfc\x77\x79\x4a\x7d\x00\x00\x00\x00" "\x00\x00\x00\x80\xe3\x76\xd4\xf1\xff\x1e\x30\xfe\x1f\x00\x00\x00\xcc\xac" "\xfa\xb3\x7a\xed\xd7\x4f\xec\x2d\x9b\xf4\x5d\x6c\xf5\xf2\xab\x9d\x88\xc7" "\x47\xd6\x07\x0a\x93\x2e\x96\x59\x6c\xbb\x1f\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x50\x92\xfe\xee\x39\xbc\x57\x3b\x11\x83\x88\x78\x7c\x71\xb1" "\xaa\xaa\xfa\xa7\x69\xb4\x7e\x54\x47\xbd\xfd\x69\x57\xfa\xf6\x43\xc9\xda" "\x7e\x92\x07\x00\x80\x5d\x1f\x3d\x91\xaf\xe5\x1f\xec\x2e\xe8\x44\xcc\x47" "\xc4\xd5\xf4\x5d\x7f\x83\xc5\xc5\xc5\xaa\x9a\x5f\x58\xac\x16\xab\x85\xb9" "\xfc\x7e\x76\x38\x37\x5f\x2d\x34\x3e\xd7\xe6\x69\xbd\x6c\x6e\x78\x88\x37" "\xc4\xfd\x61\x55\xdf\xd9\x7c\xe3\x76\x4d\x07\x7d\x5e\x3e\xa8\x7d\xf4\xfe" "\xea\xdf\x35\xac\x7a\x87\xe8\xd8\x31\x49\x7f\xcc\x98\xd0\xdc\x62\xe0\x00" "\x90\x5e\xa0\x22\xb6\xbc\x22\x9d\x31\x55\xf5\xe4\xa4\x37\x1f\xb0\x8f\xfd" "\xff\x0c\x5a\x8a\xa5\xb6\x1f\x57\xcc\xbe\xb6\x1f\xa6\x00\x00\x00\xc0\xc9" "\xab\xaa\xaa\xea\xa4\xaf\xf3\x7e\x36\x1d\xf3\xef\xb6\xdd\x29\x00\x60\x2a" "\xf2\xeb\xff\xe8\x71\x81\x23\xd5\xdd\x09\xed\x11\xc7\x73\xff\x6a\xb5\x5a" "\xad\x56\xab\x3f\x55\xdd\x54\x8d\x77\xaf\x59\x44\xc4\x46\xf3\x36\xf5\x7b" "\x06\xc3\xf1\x03\xc0\x29\xb3\x11\x1f\xb7\xdd\x05\x5a\x24\xff\xa2\xf5\x23" "\xe2\x99\xb6\x3b\x01\xcc\xb4\x4e\xdb\x1d\xe0\x44\x6c\x6d\xaf\xaf\x76\x52" "\xbe\x9d\xe6\xeb\x41\x1a\xdf\x3d\x9f\x0b\xb2\x2f\xff\x8d\xce\xce\xed\xf2" "\xed\xc7\x4d\x0f\x32\x7a\x8e\xc9\xb4\x1e\x5f\x9b\xd1\x8b\xa7\x26\xf4\xe7" "\xe9\x29\xf5\x61\x96\xe4\xfc\xbb\xa3\xf9\x5f\xdb\x6d\x1f\xa6\xf5\x4e\x3a" "\xff\x69\x99\x94\xff\x70\xe7\x92\xb9\xf2\xe4\xfc\x7b\xa3\xf9\x8f\x38\x3b" "\xf9\x77\xc7\xe6\x5f\xaa\x9c\x7f\xff\x91\xf2\xef\xc9\x1f\x00\x00\x00\x00" "\x00\x66\x58\xfe\xff\xff\x25\xc7\x7f\xf3\x26\x03\x00\x00\x00\x00\x00\x00" "\xc0\xa9\xb3\xb5\xbd\xbe\x9a\xaf\x7b\xcd\xc7\xff\x3f\x33\x66\x3d\xd7\x7f" "\x9e\x4d\x39\xff\xce\xa3\xe6\xbf\x90\xe6\xe5\x7f\xaa\xe5\xfc\xbb\x23\xf9" "\x7f\x71\x64\xbd\x5e\x63\xfe\xfe\x9b\x7b\xfb\xff\xbf\xb6\xd7\x57\x7f\x77" "\xe7\x9f\xff\x9f\xa7\x87\xcd\x7f\x2e\xcf\x74\xd2\x23\xab\x93\x1e\x11\x9d" "\xf4\x9b\x3a\xfd\x34\x3d\xca\xd6\x3d\x6c\x73\xd0\x1b\xd6\xbf\x69\xd0\xe9" "\xf6\xfa\xe9\x9c\x9f\x6a\xf0\x4e\xdc\x88\x9b\xb1\x16\x17\xf6\xad\xdb\x4d" "\x7f\x8f\xbd\xf6\x95\x7d\xed\x75\x4f\x07\xfb\xda\x2f\xee\x6b\xef\x3f\xd4" "\x7e\x69\x5f\xfb\x20\x7d\xef\x40\xb5\x90\xdb\xcf\xc5\x6a\xfc\x28\x6e\xc6" "\xdb\x3b\xed\x75\xdb\xdc\x01\xdb\x3f\x7f\x40\x7b\x75\x40\x7b\xce\xbf\xe7" "\xf9\xbf\x48\x39\xff\x7e\xe3\xa7\xce\x7f\x31\xb5\x77\x46\xa6\xb5\xfb\x1f" "\x76\x1f\xda\xef\x9b\xd3\x71\xbf\xe7\x8d\x1b\x9f\xfd\xc5\x85\x93\xdf\x9c" "\x03\x6d\x46\xef\xc1\xb6\x35\xd5\xdb\xf7\x7c\x0b\xfd\xd9\xf9\x9b\x3c\x36" "\x8c\x9f\xdc\x5e\xbb\x75\xee\xee\xf5\x3b\x77\x6e\xad\x44\x9a\xec\x5b\x7a" "\x31\xd2\xe4\x98\xe5\xfc\x07\x3b\x3f\x73\x7b\xcf\xff\x2f\xec\xb6\xe7\xe7" "\xfd\xe6\xfe\x7a\xff\xc3\xe1\x23\xe7\x3f\x2b\x36\xa3\x3f\x31\xff\x17\x1a" "\xf3\xf5\xf6\xbe\x34\xe5\xbe\xb5\x21\xe7\x3f\x4c\x3f\x39\xff\xb7\x53\xfb" "\xf8\xfd\xff\x34\xe7\x3f\x79\xff\x7f\xb9\x85\xfe\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xc0\x27\xa9\xaa\x6a\xe7\x12\xd1\x37\x22\xe2\x72" "\xba\xfe\xa7\xad\x6b\x33\x01\x80\xe9\xca\xaf\xff\x55\x92\x97\xab\xd5\x27" "\x52\x2f\xcd\x58\x7f\xd4\x6a\xb5\xba\xb0\xba\xa9\x1a\xef\xf5\x66\x11\x11" "\x7f\x69\xde\xa6\x7e\xcf\xf0\xb3\x71\x77\x06\x00\xcc\xb2\xff\x46\xc4\xdf" "\xdb\xee\x04\xad\x91\x7f\xc1\xf2\xf7\xfd\xd5\xd3\x17\xdb\xee\x0c\x30\x55" "\xb7\xdf\xff\xe0\x07\xd7\x6f\xde\x5c\xbb\x75\xbb\xed\x9e\x00\x00\x00\x00" "\x00\x00\x00\x00\x9f\x56\x1e\xff\x73\xb9\x31\xfe\xf3\x8b\x11\xf9\xf2\xac" "\x07\xf6\x8d\xff\xfa\x66\x2c\x1f\x75\xfc\xcf\x7e\x9e\x79\x30\xc0\xe8\x31" "\x0f\xf4\x3d\xc1\x66\x77\xd8\xeb\x36\x86\x1b\x7f\x2e\x76\xc6\xe7\x3e\x37" "\x69\xfc\xef\xe7\xe3\xe1\xf1\xbf\xf3\x98\xb8\xbd\xe6\x76\x4c\x30\x38\xa0" "\x7d\x78\x40\xfb\xdc\x01\xed\xf3\x63\x97\xee\xa5\x35\xf6\x42\x8f\x86\x9c" "\xff\x73\x8d\xf1\xce\xeb\xfc\x9f\x1d\x19\x7e\xbd\x84\xf1\x5f\x47\xc7\xbc" "\x2f\x41\xce\xff\xf9\xc6\xe3\xb9\xce\xff\x0b\x23\xeb\x35\xf3\xaf\x7e\x33" "\x73\xf9\x6f\x1c\x76\xc5\xcd\xe8\xee\xcb\xff\xfc\x9d\xf7\x7e\x7c\xfe\xf6" "\xfb\x1f\xbc\x72\xe3\xbd\xeb\xef\xae\xbd\xbb\xf6\xc3\x4b\x2b\x2b\x17\x2e" "\x5d\xbe\x7c\xe5\xca\x95\xf3\xef\xdc\xb8\xb9\x76\x61\xf7\xdf\x93\xe9\xf5" "\x0c\xc8\xf9\xe7\xb1\xaf\x9d\x07\x5a\x96\x9c\x7f\xce\x5c\xfe\x65\xc9\xf9" "\x7f\x2e\xd5\xf2\x2f\x4b\xce\xff\xf3\xa9\x96\x7f\x59\x72\xfe\xf9\xfd\x9e" "\xfc\xcb\x92\xf3\xcf\x9f\x7d\xe4\x5f\x96\x9c\xff\x4b\xa9\x96\x7f\x59\x72" "\xfe\x5f\x4a\xb5\xfc\xcb\xb2\xb5\xbd\x3e\x57\xe7\xff\x72\xaa\xe5\x5f\x96" "\xbc\xff\x7f\x39\xd5\xf2\x2f\x4b\xce\xff\x95\x54\xcb\xbf\x2c\x39\xff\x73" "\xa9\x96\x7f\x59\x72\xfe\xe7\x53\x7d\x88\xfc\x7d\x3d\xfc\x19\x92\xf3\xcf" "\x47\xb8\xec\xff\x65\xc9\xf9\xaf\xa4\x5a\xfe\x65\xc9\xf9\x5f\x4c\xb5\xfc" "\xcb\x92\xf3\xbf\x94\x6a\xf9\x97\x25\xe7\xff\x6a\xaa\xe5\x5f\x96\x9c\xff" "\x57\x52\x2d\xff\xb2\xe4\xfc\x2f\xa7\x5a\xfe\x65\xc9\xf9\x7f\x35\xd5\xf2" "\x2f\x4b\xce\xff\x4a\xaa\xe5\x5f\x96\x9c\xff\xd7\x52\x2d\xff\xb2\xe4\xfc" "\xbf\x9e\x6a\xf9\x97\x25\xe7\xff\x5a\xaa\xe5\x5f\x96\x9c\xff\x37\x52\x2d" "\xff\xb2\xe4\xfc\xbf\x99\x6a\xf9\x97\x25\xe7\xff\xad\x54\xcb\xbf\x2c\x39" "\xff\xd7\x53\x2d\xff\xb2\xec\x7d\xff\xbf\x19\x33\xb3\x30\xf3\xf3\xe3\xbd" "\xc3\x5e\xcc\xc8\x76\x9d\xb6\x99\xb6\x9f\x99\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x80\x51\xd3\x38\x9d\xb8\xed\x6d\x04\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xe0\x7f\xec\xc0\x81\x00\x00\x00\x00\x00\x90\xff\x6b\x23\x54\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x61\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\x7b\x77\x17\x23\xd7" "\x59\xdf\x0f\xfc\xcc\xbe\x79\xed\x90\xc4\x40\x08\x4e\xfe\x06\x36\x8e\x09" "\x21\x59\xb2\x6b\x3b\xf1\x0b\xff\xa6\x98\xf0\xda\x00\xe5\x25\x09\x85\xbe" "\xe0\xb8\xde\xb5\x59\x70\x6c\xe3\xb5\x4b\xa0\x48\x36\x0d\x94\x48\x18\x15" "\x55\xa0\xa6\x17\x6d\x01\xa1\x36\x52\x55\x61\x55\x5c\xd0\x8a\xd2\x5c\x54" "\x7d\xb9\x6a\xda\x0b\x7a\x53\x51\x55\x42\x6a\x84\x0c\x0a\xa8\x48\x6d\x45" "\xb3\xd5\xcc\x79\x9e\xc7\x33\xb3\xb3\x33\xb3\xde\xf5\x7a\xe6\x3c\x9f\x8f" "\x64\xff\x76\x67\xce\x99\xf3\xcc\x99\xe7\x9c\x9d\xdf\xda\xdf\x39\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\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\xb3\xdb\xde\x34\xff" "\xb9\x5a\x51\x14\xf5\x3f\x8d\xbf\xb6\x16\xc5\x8b\xea\x5f\x6f\x9e\xda\xda" "\xb8\xed\xf5\xd7\x7a\x84\x00\x00\x00\xc0\x5a\xfd\x6f\xe3\xef\xe7\x6f\x4c" "\x37\x1c\xec\x63\xa5\xa6\x65\xfe\xee\x95\xff\xf8\xcd\xa5\xa5\xa5\xa5\xe2" "\x03\xa3\x5f\x1e\xff\xd2\xd2\x52\xba\x63\xaa\x28\xc6\x37\x15\x45\xe3\xbe" "\xe8\xe2\xbf\x7f\xb0\xd6\xbc\x4c\xf0\x44\x31\x59\x1b\x69\xfa\x7e\xa4\xc7" "\xe6\x47\x7b\xdc\x3f\xd6\xe3\xfe\xf1\x1e\xf7\x4f\xf4\xb8\x7f\x53\x8f\xfb" "\x27\x7b\xdc\xbf\x6c\x07\x2c\xb3\xb9\xfc\x7d\x4c\xe3\xc1\x76\x36\xbe\xdc" "\x5a\xee\xd2\xe2\xa6\x62\xbc\x71\xdf\xce\x0e\x6b\x3d\x51\xdb\x34\x32\x12" "\x7f\x97\xd3\x50\x6b\xac\xb3\x34\x7e\xb4\x58\x28\x8e\x17\xf3\xc5\x6c\xcb" "\xf2\xe5\xb2\xb5\xc6\xf2\xdf\xbe\xad\xbe\xad\xb7\x17\x71\x5b\x23\x4d\xdb" "\xda\x5e\x9f\x21\x3f\xfe\xd4\x91\x38\x86\x5a\xd8\xc7\x3b\x5b\xb6\x75\xf9" "\x31\xa3\x1f\xbe\xb1\x98\xfa\xc9\x8f\x3f\x75\xe4\x8f\xcf\x5c\xba\xa5\x53" "\xed\xb9\x1b\x5a\x1e\xaf\x1c\xe7\x9d\x3b\xea\xe3\xfc\x4c\xb8\xa5\x1c\x6b" "\xad\xd8\x94\xf6\x49\x1c\xe7\x48\xd3\x38\xb7\x77\x78\x4d\x46\x5b\xc6\x59" "\x6b\xac\x57\xff\xba\x7d\x9c\xcf\xf7\x39\xce\xd1\xcb\xc3\xdc\x50\xed\xaf" "\xf9\x64\x31\xd2\xf8\xfa\xd9\xc6\x7e\x1a\x6b\xfe\xb5\x5e\xda\x4f\xdb\xc3" "\x6d\xff\x75\x7b\x51\x14\xe7\x2f\x0f\xbb\x7d\x99\x65\xdb\x2a\x46\x8a\x2d" "\x2d\xb7\x8c\x5c\x7e\x7d\x26\xcb\x19\x59\x7f\x8c\xfa\x54\x7a\x49\x31\xb6" "\xaa\x79\x7a\x5b\x1f\xf3\xb4\x5e\xe7\x76\xb6\xce\xd3\xf6\x63\x22\xbe\xfe" "\xb7\x85\xf5\xc6\x56\x18\x43\xf3\xcb\xf4\xc3\x4f\x4f\x2c\x7b\xdd\x57\x3b" "\x4f\xa3\xfa\xb3\x5e\xe9\x58\x69\x9f\x83\xeb\x7d\xac\x0c\xca\x1c\x8c\xf3" "\xe2\xd9\xc6\x93\x7e\xb2\xe3\x1c\xdc\x19\x9e\xff\xa7\xee\x58\x79\x0e\x76" "\x9c\x3b\x1d\xe6\x60\x7a\xde\x4d\x73\x70\x47\xaf\x39\x38\x32\x31\xda\x18" "\x73\x7a\x11\x6a\x8d\x75\x2e\xcf\xc1\x5d\x2d\xcb\x8f\x36\xb6\x54\x6b\xd4" "\xe7\xee\xe8\x3e\x07\x67\xce\x3c\x76\x6a\x66\xf1\x13\x9f\x7c\xdd\xc2\x63" "\x87\x8f\xcd\x1f\x9b\x3f\xb1\x67\xd7\xae\xd9\x3d\x7b\xf7\xee\xdf\xbf\x7f" "\xe6\xe8\xc2\xf1\xf9\xd9\xf2\xef\x2b\xdc\xdb\x83\x6f\x4b\x31\x92\x8e\x81" "\x1d\x61\xdf\xc5\x63\xe0\x35\x6d\xcb\x36\x4f\xd5\xa5\xaf\xae\xdf\x71\x38" "\xd9\xe5\x38\xdc\xda\xb6\xec\x7a\x1f\x87\x63\xed\x4f\xae\xb6\x31\x07\xe4" "\xf2\x39\x5d\x1e\x1b\x0f\xd7\x77\xfa\xe4\x85\x91\x62\x85\x63\xac\xf1\xfa" "\xdc\xb5\xf6\xe3\x30\x3d\xef\xa6\xe3\x70\xac\xe9\x38\xec\xf8\x33\xa5\xc3" "\x71\x38\xd6\xc7\x71\x58\x5f\xe6\xd4\x5d\xfd\xbd\x67\x19\x6b\xfa\xd3\x69" "\x0c\x57\xeb\x67\xc1\xd6\xa6\x39\xd8\xfe\x7e\xa4\x7d\x0e\xae\xf7\xfb\x91" "\x41\x99\x83\x93\x61\x5e\xfc\xeb\x5d\x2b\xff\x2c\xd8\x1e\xc6\xfb\xe4\xf4" "\x6a\xdf\x8f\x8c\x2e\x9b\x83\xe9\xe9\x86\x73\x4f\xfd\x96\xf4\x7e\x7f\x72" "\x7f\xa3\x74\x9a\x97\xb7\xd6\xef\xb8\x6e\xa2\x38\xbb\x38\x7f\xfa\x9e\xc7" "\x0f\x9f\x39\x73\x7a\x57\x11\xca\x86\x78\x69\xd3\x5c\x69\x9f\xaf\x5b\x9a" "\x9e\x53\xb1\x6c\xbe\x8e\xac\x7a\xbe\x1e\x5c\x78\xe5\x93\xb7\x76\xb8\x7d" "\x6b\xd8\x57\x93\xaf\xab\xff\x35\xb9\xe2\x6b\x55\x5f\xe6\xde\x7b\xba\xbf" "\x56\x8d\x9f\x6e\x9d\xf7\x67\xcb\xad\xbb\x8b\x50\xd6\xd9\x46\xef\xcf\x4e" "\x3f\xcd\xeb\xfb\x33\xf5\x92\x5d\xf6\x67\x7d\x99\xcf\xcc\xac\xfd\xbd\x78" "\xea\x4b\x9b\xce\xbf\xe3\x2b\x9c\x7f\x63\xdf\xff\x42\xb9\xbd\xf4\x50\x4f" "\x8c\x8e\x8f\x95\xc7\xef\x68\xda\x3b\xe3\x2d\xe7\xe3\xd6\x97\x6a\xac\x71" "\xee\xaa\x35\xb6\xfd\xfc\x4c\x7f\xe7\xe3\xf1\xf0\x67\xa3\xcf\xc7\x37\x75" "\x39\x1f\x6f\x6b\x5b\x76\xbd\xcf\xc7\xe3\xed\x4f\x2e\x9e\x8f\x6b\xbd\x7e" "\xdb\xb1\x36\xed\xaf\xe7\x64\x98\x27\xc7\x67\xbb\x9f\x8f\xeb\xcb\x6c\xdb" "\xbd\xda\x39\x39\xd6\xf5\x7c\x7c\x7b\xa8\xb5\xb0\xff\x5f\x1b\x3a\x85\xd4" "\x17\x35\xcd\x9d\x95\xe6\x6d\xda\xd6\xd8\xd8\x78\x78\x5e\x63\x71\x0b\xad" "\xf3\x74\x4f\xcb\xf2\xe3\xa1\x37\xab\x6f\xeb\xe9\xdd\x57\x36\x4f\xef\xbc" "\xbd\x7c\xac\xd1\xf4\xec\x2e\xdb\xa8\x79\x3a\xd5\xb6\xec\x7a\xcf\xd3\x74" "\xbe\x5a\x69\x9e\xd6\x7a\xfd\xf6\xed\xca\xb4\xbf\x9e\x93\x61\x5e\xdc\xb4" "\xa7\xfb\x3c\xad\x2f\xf3\xcc\xbd\x6b\x3f\x77\x6e\x8e\x5f\x36\x9d\x3b\x27" "\x7a\xcd\xc1\xf1\xd1\x89\xfa\x98\xc7\xd3\x24\x2c\xcf\xf7\x4b\x9b\xe3\x1c" "\xbc\xa7\x38\x52\x9c\x2c\x8e\x17\x73\x8d\x7b\x27\x1a\xf3\xa9\xd6\xd8\xd6" "\xf4\x7d\xfd\xcd\xc1\x89\xf0\x67\xad\xe7\xca\x5e\xbf\xb3\x6c\xb7\xad\xcb" "\x1c\xbc\xb3\x6d\xd9\xf5\x9e\x83\x69\xac\x2b\xcd\xbd\xda\xd8\xf2\x27\xbf" "\x0e\xda\x5f\xcf\xc9\x30\x2f\x9e\xba\xaf\xfb\x1c\xac\x2f\xf3\xe6\x7d\xeb" "\xfb\xde\xf5\xce\x70\x4b\x5a\xa6\xe9\xbd\x6b\xfb\xef\xd7\x56\xfa\x9d\xd7" "\xad\x6d\xbb\xe9\x6a\xfe\xce\xab\x3e\xce\xbf\xd9\xd7\xfd\x77\xb3\xf5\x65" "\x8e\xef\x5f\x6d\x9f\xd9\x7d\x3f\xdd\x1d\x6e\xb9\xae\xc3\x7e\x6a\x3f\x7e" "\x57\x3a\xa6\xe6\x8a\x8d\xd9\x4f\xdb\xc2\x38\x2f\xed\x5f\x79\x3f\xd5\xc7" "\x53\x5f\xe6\x4b\x07\xfa\x9c\x4f\x07\x8b\xa2\x38\xf7\xb1\x07\x1a\xbf\xef" "\x0d\xff\xbe\xf2\xe7\x67\xbf\xfb\xcd\x96\x7f\x77\xe9\xf4\x6f\x3a\xe7\x3e" "\xf6\xc0\x8f\xae\x3f\xfa\xb7\xab\x19\x3f\x00\xc3\xef\x85\xb2\x6c\x29\x7f" "\xd6\x35\xfd\xcb\x54\x3f\xff\xfe\x0f\x00\x00\x00\x0c\x85\xd8\xf7\x8f\x84" "\x9a\xe8\xff\x01\x00\x00\xa0\x32\x62\xdf\x1f\xff\x57\x78\xa2\xff\x07\x00" "\x00\x80\xca\x88\x7d\xff\x58\xa8\x49\x26\xfd\xff\xb6\x37\x5f\x5a\x78\xe1" "\x5c\x91\x92\xf9\x4b\x41\xbc\x3f\xed\x86\x07\xcb\xe5\x62\xc6\x75\x36\x7c" "\x3f\xb5\x74\x59\xfd\xf6\x07\xbe\x3e\xff\xd3\xbf\x3c\xd7\xdf\xb6\x47\x8a" "\xa2\xf8\xd9\x83\xbf\xd9\x71\xf9\x6d\x0f\xc6\x71\x95\xa6\xc2\x38\x2f\xbe" "\xa5\xf5\xf6\xe5\x2b\x9e\xeb\x6b\xfb\x8f\x3e\x72\x79\xb9\xe6\xfc\xfa\x57" "\xc2\xe3\xc7\xe7\xd3\xef\x34\xe8\x14\xc1\x9d\x2d\x8a\xe2\xdb\x37\x7e\xa1" "\xb1\x9d\xa9\x0f\x5e\x68\xd4\x67\x1e\x7c\xb4\x51\xdf\x77\xfe\xc9\x27\xea" "\xcb\x3c\x7f\xa0\xfc\x3e\xae\xff\xdc\x4b\xcb\xe5\xff\x20\x84\x7f\x0f\x1e" "\x3d\xdc\xb2\xfe\x73\x61\x3f\x7c\x3f\xd4\xd9\x77\x74\xde\x1f\x71\xbd\x6f" "\x5c\x78\xed\xf6\x7d\xef\xbf\xbc\xbd\xb8\x5e\x6d\xc7\x0d\x8d\xa7\xfd\xd4" "\x87\xca\xc7\x8d\x9f\x93\xf3\xc5\x27\xca\xe5\xe3\x7e\x5e\x69\xfc\x7f\xf5" "\xf9\xa7\xbf\x51\x5f\xfe\xf1\x57\x77\x1e\xff\xb9\x91\xce\xe3\x7f\x3a\x3c" "\xee\xd7\x43\xfd\xef\x57\x94\xcb\x37\xbf\x06\xf5\xef\xe3\x7a\x9f\x0d\xe3" "\x8f\xdb\x8b\xeb\xdd\xf3\xb5\xef\x74\x1c\xff\xc5\xcf\x95\xcb\x9f\x7a\x6b" "\xb9\xdc\xa3\xa1\xc6\xed\xdf\x19\xbe\xdf\xf9\xd6\x4b\x0b\xcd\xfb\xeb\xf1" "\xda\xe1\x96\xe7\x55\xbc\xad\x5c\x2e\x6e\x7f\xf6\xbb\xbf\xd3\xb8\x3f\x3e" "\x5e\x7c\xfc\xf6\xf1\x4f\x1e\xba\xd0\xb2\x3f\xda\xe7\xc7\x33\xff\x5c\x3e" "\xce\x4c\xdb\xf2\xf1\xf6\xb8\x9d\xe8\x2f\xda\xb6\x5f\x7f\x9c\xe6\xf9\x19" "\xb7\xff\xf4\x6f\x3f\xda\xb2\x9f\x7b\x6d\xff\xe2\xfb\x9e\x7b\x45\xfd\x71" "\xdb\xb7\x7f\x77\xdb\x72\xa3\x6d\xeb\xb7\x7f\x62\xd3\x1f\x7e\xf6\x0b\x1d" "\xb7\x17\xc7\x73\xf0\xcf\x4e\xb5\x3c\x9f\x83\xef\x0d\xc7\x71\xd8\xfe\x53" "\x1f\x0a\xf3\x31\xdc\xff\x3f\x17\xbf\xd0\xb2\xdd\xe8\xd1\xf7\xb6\x9e\x7f" "\xe2\xf2\x5f\xd9\x7a\xae\xe5\xf9\x44\x6f\xff\x49\xb9\xfd\x8b\x6f\x38\xd6" "\xa8\xff\x31\xf5\xd3\xdf\xbf\xee\x45\xd7\xdf\x70\xfe\x55\xf5\x7d\x57\x14" "\xcf\x3e\x54\x3e\x5e\xaf\xed\x1f\xfb\xa3\x93\x2d\xe3\xff\xea\xcd\x77\x35" "\x5e\x8f\x78\x7f\xcc\xe8\xb7\x6f\x7f\x25\x71\xfb\xa7\x3f\x3e\x7d\xe2\xe4" "\xe2\xd9\x85\xb9\xa6\xbd\xda\xf8\xec\x9c\x77\x96\xe3\xd9\x34\xb9\x79\x4b" "\x7d\xbc\x37\x86\x73\x6b\xfb\xf7\x87\x4e\x9e\xf9\xf0\xfc\xe9\xa9\xd9\xa9" "\xd9\xa2\x98\xaa\xee\x47\xe8\x5d\xb1\xaf\x85\xfa\xa3\xb2\x9c\x5f\xed\xfa" "\x77\x3d\x12\x5e\xcf\x5b\x7f\xef\xdb\x5b\xee\xf8\xa7\xcf\xc7\xdb\xff\xe5" "\xe1\xf2\xf6\x0b\xef\x28\x7f\x6e\xbd\x26\x2c\xf7\xc5\x70\xfb\xd6\xf2\xf5" "\x5b\xaa\xad\x71\xfb\x4f\xdd\x76\x73\xe3\xf8\xae\x3d\x53\x7e\xdf\x92\x63" "\x5f\x07\xdb\x77\xfe\x60\x7f\x5f\x0b\x86\xe7\xdf\xfe\xbe\x20\xce\xf7\x53" "\x2f\xfb\x70\x63\x3f\xd4\xef\x6b\xfc\xdc\x88\xc7\xf5\x1a\xc7\xff\xbd\xb9" "\xf2\x71\xbe\x15\xf6\xeb\x52\xf8\x64\xe6\x1d\x37\x5f\xde\x5e\xf3\xf2\xf1" "\xb3\x11\x2e\x3c\x54\x1e\xef\x6b\xde\x7f\xe1\x34\x17\x5f\xd7\x3f\x09\xaf" "\xf7\xbb\xbe\x5f\x3e\x7e\x1c\x57\x7c\xbe\xdf\x0b\xef\x63\xbe\xb3\xad\xf5" "\x7c\x17\xe7\xc7\xb7\xce\x8d\xb4\x3f\x7e\xe3\x53\x3c\xce\x87\xf3\x49\x71" "\xbe\xbc\x3f\x2e\x15\xf7\xf7\x85\xe7\x6f\xee\x38\xbc\xf8\x39\x24\xc5\xf9" "\x5b\x1a\xdf\xff\x6e\x7a\x9c\x5b\x56\xf5\x34\x57\xb2\xf8\x89\xc5\x99\xe3" "\x0b\x27\xce\x3e\x3e\x73\x66\x7e\xf1\xcc\xcc\xe2\x27\x3e\x79\xe8\xb1\x93" "\x67\x4f\x9c\x39\xd4\xf8\x2c\xcf\x43\x1f\xe9\xb5\xfe\xe5\xf3\xd3\x96\xc6" "\xf9\x69\x6e\x7e\xef\xbd\xc5\xec\xe6\xa2\x28\x4e\x16\xb3\x1b\x70\xc2\xba" "\x3a\xe3\xaf\x7f\xd5\xdf\xf8\x4f\x3d\x72\x64\x6e\xdf\xec\x1d\x73\xf3\x47" "\x0f\x9f\x3d\x7a\xe6\x91\x53\xf3\xa7\x8f\x1d\x59\x5c\x3c\x32\x3f\xb7\x78" "\xc7\xe1\xa3\x47\xe7\x3f\xde\x6b\xfd\x85\xb9\xfb\x77\xed\x3e\xb0\x67\xdf" "\xee\xe9\x63\x0b\x73\xf7\xef\x3f\x70\x60\xcf\x81\xe9\x85\x13\x27\xeb\xc3" "\x28\x07\xd5\xc3\xde\xd9\x8f\x4e\x9f\x38\x7d\xa8\xb1\xca\xe2\xfd\xf7\x1e" "\xd8\x75\xdf\x7d\xf7\xce\x4e\x3f\x76\x72\x6e\xfe\xfe\x7d\xb3\xb3\xd3\x67" "\x7b\xad\xdf\xf8\xd9\x34\x5d\x5f\xfb\x37\xa6\x4f\xcf\x1f\x3f\x7c\x66\xe1" "\xb1\xf9\xe9\xc5\x85\x4f\xce\xdf\xbf\xeb\xc0\xde\xbd\xbb\x7b\x7e\x1a\xe0" "\x63\xa7\x8e\x2e\x4e\xcd\x9c\x3e\x7b\x62\xe6\xec\xe2\xfc\xe9\x99\xf2\xb9" "\x4c\x9d\x69\xdc\x5c\xff\xd9\xd7\x6b\x7d\xaa\x69\xf1\xdf\xca\xf7\xb3\xed" "\x6a\xe5\x07\xf1\x15\xef\xbe\x7b\x6f\xfa\x7c\xd6\xba\xaf\x7f\x7a\xc5\x87" "\x2a\x17\x69\xfb\x00\xd1\x4b\xe1\xb3\x68\xfe\xe1\xc5\xa7\xf6\xf7\xf3\x7d" "\xec\xfb\xc7\x43\x4d\x32\xe9\xff\x01\x00\x00\x20\x07\xb1\xef\x9f\x08\x35" "\xd1\xff\x03\x00\x00\x40\x65\xc4\xbe\x7f\x53\xa8\x89\xfe\x1f\x00\x00\x00" "\x2a\x23\xf6\xfd\x93\xa1\x26\x99\xf4\xff\xf2\xff\xf2\xff\xfd\xe5\xff\xcb" "\xfb\xe5\xff\xf3\xca\xff\x9f\xfa\x58\x99\x2b\x1d\xf6\xfc\x7f\xcc\xcf\xcb" "\xff\xe7\xe1\x1a\xe7\xff\xd7\xbc\x7d\xf9\x7f\xf9\xff\xea\xe5\xff\xfb\xcf" "\xcf\x0f\xfb\xf8\xe5\xff\xe5\xff\x59\x6e\xd0\xf2\xff\xb1\xef\xdf\x5c\x14" "\x59\xf6\xff\x00\x00\x00\x90\x83\xd8\xf7\x6f\x09\x35\xd1\xff\x03\x00\x00" "\x40\x65\xc4\xbe\xff\xba\x50\x13\xfd\x3f\x00\x00\x00\x54\x46\xec\xfb\x5f" "\x14\x6a\x92\x49\xff\x9f\x43\xfe\xff\x3d\x1d\x16\x5b\x65\xfe\x7f\x77\xaf" "\xc0\x55\xf5\xf3\xff\x43\x73\xfd\xff\xcd\x85\xfc\xff\xc6\xe7\xff\xdb\x02" "\xfb\x03\x95\xff\x8f\x2f\x8e\xfc\x7f\x36\x56\x9d\xbf\x7f\xff\xc3\x2d\xdf" "\xca\xff\x07\xf2\xff\xf2\xff\xf2\xff\xf2\xff\xf2\xff\xac\xd9\xf8\x8a\xf7" "\x5c\xab\xfc\x7f\xec\xfb\xaf\x0f\x35\xc9\xa4\xff\x07\x00\x00\x80\x1c\xc4" "\xbe\xff\x86\x50\x13\xfd\x3f\x00\x00\x00\x54\x46\xec\xfb\x6f\x0c\x35\xd1" "\xff\x03\x00\x00\x40\x65\xc4\xbe\x7f\x6b\xa8\x49\x26\xfd\x7f\x0e\xf9\xff" "\x4e\x5c\xff\xbf\xb2\xf9\x7f\xd7\xff\x77\xfd\xff\xf5\xbd\xfe\x7f\xd3\x60" "\xe4\xff\x87\x83\xeb\xff\x77\xd7\x39\xff\x3f\x71\xdd\xb2\x9b\xe4\xff\x57" "\x99\xff\x9f\x94\xff\x1f\xc6\xfc\xff\xf8\xfa\x8e\x7f\xb0\xf3\xff\x3d\x87" "\x2f\xff\xcf\x55\x31\x68\xd7\xff\x8f\x7d\xff\x8b\x43\x4d\x32\xe9\xff\x01" "\x00\x00\x20\x07\xb1\xef\x7f\x49\xa8\x89\xfe\x1f\x00\x00\x00\x2a\x23\xf6" "\xfd\x2f\x0d\x35\xd1\xff\x03\x00\x00\x40\x65\xc4\xbe\xff\xa6\x50\x93\x4c" "\xfa\x7f\xf9\x7f\xf9\x7f\xf9\x7f\xf9\x7f\xf9\xff\xce\xdb\xef\x7d\xfd\xff" "\xf2\x2b\xf9\xff\xc1\x22\xff\xdf\x9d\xeb\xff\xf7\xe0\xfa\xff\x79\xe5\xff" "\xd7\x79\xfc\x83\x9d\xff\x5f\xef\xeb\xff\x8f\xbf\xa5\x7d\x7d\xf9\x7f\x3a" "\x19\xb4\xfc\x7f\xec\xfb\x5f\x16\x6a\x92\x49\xff\x0f\x00\x00\x00\x39\x88" "\x7d\xff\xcd\xa1\x26\xfa\x7f\x00\x00\x00\xa8\x8c\xd8\xf7\xbf\x3c\xd4\x44" "\xff\x0f\x00\x00\x00\x95\x11\xfb\xfe\x6d\xa1\x26\x99\xf4\xff\xf2\xff\xf2" "\xff\xf2\xff\xf2\xff\xf2\xff\x9d\xb7\xdf\x3b\xff\x5f\x92\xff\x1f\x2c\xf2" "\xff\xdd\xc9\xff\xf7\x20\xff\x2f\xff\x2f\xff\xdf\x5f\xfe\xbf\xc3\x9b\x5f" "\xf9\x7f\x3a\x19\xb4\xfc\x7f\xec\xfb\x6f\x09\x35\xc9\xa4\xff\x07\x00\x00" "\x80\x1c\xc4\xbe\xff\xd6\x50\x13\xfd\x3f\x00\x00\x00\x54\x46\xec\xfb\xff" "\x5f\xa8\x89\xfe\x1f\x00\x00\x00\x2a\x23\xf6\xfd\xdb\x43\x4d\x32\xe9\xff" "\xe5\xff\xe5\xff\xe5\xff\xf3\xca\xff\xdf\x3d\x21\xff\xff\xec\x43\x97\xe2" "\xa2\xf2\xff\x15\x24\xff\xdf\x9d\xfc\x7f\x0f\xf2\xff\xf2\xff\xf2\xff\x7d" "\x5e\xff\x7f\xb9\xd5\xe4\xff\x37\xf5\x7a\x30\x2a\x63\xd0\xf2\xff\xb1\xef" "\x7f\x45\xa8\x49\x26\xfd\x3f\x00\x00\x00\xe4\x20\xf6\xfd\xaf\x0c\x35\xd1" "\xff\x03\x00\x00\x40\x65\xc4\xbe\xff\x55\xa1\x26\xfa\x7f\x00\x00\x00\xa8" "\x8c\xd8\xf7\x4f\x85\x9a\x64\xd2\xff\xcb\xff\x57\x2b\xff\xff\xa7\x7f\xfd" "\xd4\xab\x0a\xf9\x7f\xf9\xff\x1e\xdb\xaf\x68\xfe\x3f\x4e\x03\xd7\xff\xcf" "\x9c\xfc\x7f\x77\xf2\xff\x3d\xc8\xff\xcb\xff\xcb\xff\x6f\x48\xfe\x9f\x7c" "\x0c\x5a\xfe\x3f\xf6\xfd\xb7\x85\x9a\x64\xd2\xff\x03\x00\x00\x40\x0e\x62" "\xdf\xbf\x23\xd4\x44\xff\x0f\x00\x00\x00\x95\x11\xfb\xfe\xdb\x43\x4d\xf4" "\xff\x00\x00\x00\x50\x19\xb1\xef\xdf\x19\x6a\x92\x49\xff\x2f\xff\x5f\xad" "\xfc\x7f\x24\xff\x2f\xff\xdf\x6d\xfb\x15\xcd\xff\x27\xf2\xff\x79\x93\xff" "\xef\xa0\xe9\x20\x95\xff\xef\x41\xfe\x5f\xfe\x3f\xfb\xfc\x7f\x7c\xf7\x2b" "\xff\xcf\xfa\x18\xb4\xfc\x7f\xec\xfb\x5f\x1d\x6a\x92\x49\xff\x0f\x00\x00" "\x00\x39\x88\x7d\xff\x1d\xa1\x26\xfa\x7f\x00\x00\x00\xa8\x8c\xd8\xf7\xbf" "\x26\xd4\x44\xff\x0f\x00\x00\x00\x95\x11\xfb\xfe\x3b\x43\x4d\x32\xe9\xff" "\xe5\xff\xe5\xff\xe5\xff\xe5\xff\xe5\xff\x3b\x6f\x5f\xfe\x7f\x38\xc9\xff" "\x77\xb7\xda\xfc\xff\x84\xfc\xbf\xfc\xbf\xfc\x7f\x66\xf9\x7f\xd7\xff\x67" "\x7d\x0d\x5a\xfe\x3f\xf6\xfd\xaf\x0d\x35\xc9\xa4\xff\x07\x00\x00\x80\x1c" "\xc4\xbe\xff\xae\x50\x13\xfd\x3f\x00\x00\x00\x54\x46\xfc\xff\x9b\xe5\xff" "\x7b\xd5\xff\x03\x00\x00\x40\x15\xc5\xbe\x7f\x3a\xd4\x24\x93\xfe\x5f\xfe" "\x5f\xfe\x3f\xa7\xfc\x7f\x4d\xfe\x5f\xfe\x5f\xfe\xbf\xf2\xe4\xff\xbb\x73" "\xfd\xff\x1e\xe4\xff\xe5\xff\xe5\xff\xe5\xff\x59\x57\x83\x96\xff\x8f\x7d" "\xff\xeb\x42\x4d\x32\xe9\xff\x01\x00\x00\x20\x07\xb1\xef\xbf\x27\xd4\x44" "\xff\x0f\x00\x00\x00\x95\x11\xfb\xfe\x99\x50\x13\xfd\x3f\x00\x00\x00\x54" "\x46\xec\xfb\x67\x43\x4d\x32\xe9\xff\xe5\xff\xe5\xff\x73\xca\xff\xbb\xfe" "\xbf\xfc\xbf\xfc\x7f\xf5\xc9\xff\x77\x27\xff\xdf\x83\xfc\xbf\xfc\x7f\xd5" "\xf2\xff\x45\x21\xff\xcf\x35\x35\x68\xf9\xff\xd8\xf7\xef\x0a\x35\xc9\xa4" "\xff\x07\x00\x00\x80\x1c\xc4\xbe\x7f\x77\xa8\x89\xfe\x1f\x00\x00\x00\x2a" "\x23\xf6\xfd\x7b\x42\x4d\xf4\xff\x00\x00\x00\x50\x19\xb1\xef\xbf\x37\xd4" "\x24\x93\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x5f\xfe\xbf\xf3\xf6\xe5\xff" "\x87\x53\xb7\xfc\xfd\x97\xfb\x58\x5f\xfe\x3f\x90\xff\x97\xff\x97\xff\xaf" "\x46\xfe\xdf\xf5\xff\xb9\xc6\x06\x2d\xff\x1f\xfb\xfe\xfb\x42\x4d\x32\xe9" "\xff\x01\x00\x00\x20\x07\xb1\xef\xdf\x1b\x6a\xa2\xff\x07\x00\x00\x80\xca" "\x88\x7d\xff\xbe\x50\x93\xd0\xff\x77\xfa\x7f\xdd\x00\x00\x00\xc0\x70\x89" "\x7d\xff\xfe\x50\x93\x4c\xfe\xfd\x5f\xfe\xbf\x22\xf9\xff\xdf\xfa\xfb\x96" "\x6d\xcb\xff\xcb\xff\x77\xdb\xfe\xfa\xe4\xff\x37\xcb\xff\x87\x2a\xff\x3f" "\x58\x2a\x7a\xfd\xff\xf6\xc3\xe2\x8a\x0d\x67\xfe\xff\x85\xf4\xfc\xe5\xff" "\xe5\xff\x07\x79\xfc\xf2\xff\xf2\xff\x2c\x37\x68\xf9\xff\xd8\xf7\x1f\x08" "\x35\xc9\xa4\xff\x07\x00\x00\x80\x1c\xc4\xbe\xff\xf5\xa1\x26\xfa\x7f\x00" "\x00\x00\xa8\x8c\xd8\xf7\xff\xff\x50\x13\xfd\x3f\x00\x00\x00\x54\x46\xec" "\xfb\x7f\x2e\xd4\x24\x93\xfe\x5f\xfe\xbf\x22\xf9\xff\x36\xc3\x94\xff\x1f" "\x91\xff\x1f\xd2\xfc\xbf\xeb\xff\xcb\xff\x0f\xa6\x8a\xe6\xff\xd7\xcd\xf6" "\x9d\x3f\xd8\xbf\xe3\x86\xe7\x5e\xd6\x73\xc1\x81\xca\xff\xaf\x70\xfd\xff" "\x11\xf9\x7f\xf9\xff\xc1\x1a\xbf\xfc\x7f\x3f\xf9\xff\x4d\xbd\x1e\x86\x8a" "\xb9\xfa\xf9\xff\xf8\x55\x7f\xf9\xff\xd8\xf7\xdf\x1f\x6a\x92\x49\xff\x0f" "\x00\x00\x00\x39\x88\x7d\xff\xcf\x87\x9a\xe8\xff\x01\x00\x00\xa0\x32\x62" "\xdf\xff\x86\x50\x13\xfd\x3f\x00\x00\x00\x54\x46\xec\xfb\x0f\x86\x9a\x64" "\xd2\xff\xcb\xff\xcb\xff\x5f\xeb\xfc\xbf\xeb\xff\x57\x35\xff\xff\x86\xa2" "\xdd\x20\xe6\xff\xeb\x93\x47\xfe\xbf\x5a\xe4\xff\xbb\x1b\xce\xeb\xff\xaf" "\x90\xff\x77\xfd\x7f\xf9\xff\x01\x1b\xbf\xfc\xbf\xeb\xff\xb3\xdc\xa0\x5d" "\xff\x3f\xf6\xfd\x6f\x0c\x35\xc9\xa4\xff\x07\x00\x00\x80\x1c\xc4\xbe\xff" "\x81\x50\x13\xfd\x3f\x00\x00\x00\x54\x46\xec\xfb\xdf\x14\x6a\xa2\xff\x07" "\x00\x00\x80\xca\x88\x7d\xff\x9b\x43\x4d\x32\xe9\xff\xe5\xff\xe5\xff\xe5" "\xff\xe5\xff\x5d\xff\xbf\xf3\xf6\xe5\xff\x87\xd3\xc0\xe5\xff\xc7\x57\xb7" "\x7d\xf9\x7f\xf9\x7f\xf9\xff\xe1\x1d\xbf\xfc\xbf\xfc\x3f\xcb\x5d\xbb\xfc" "\xff\xa6\x8e\xf7\xc7\xbe\xff\x2d\xa1\x26\x99\xf4\xff\x00\x00\x00\x90\x83" "\xd8\xf7\xbf\x35\xd4\x44\xff\x0f\x00\x00\x00\x95\x11\xfb\xfe\xb7\x85\x9a" "\xe8\xff\x01\x00\x00\xa0\x32\x62\xdf\xff\xf6\x50\x93\x4c\xfa\x7f\xf9\x7f" "\xf9\x7f\xf9\x7f\xf9\x7f\xf9\xff\xce\xdb\x97\xff\x1f\x4e\x03\x97\xff\x5f" "\x25\xf9\x7f\xf9\x7f\xf9\xff\x35\x8e\x7f\xa2\x90\xff\x97\xff\x67\x80\x0c" "\xda\xf5\xff\x63\xdf\xff\x0b\xa1\x26\x99\xf4\xff\x00\x00\x00\x90\x83\xd8" "\xf7\x3f\x18\x6a\xa2\xff\x07\x00\x00\x80\xca\x88\x7d\xff\x3b\x42\x4d\xf4" "\xff\x00\x00\x00\x50\x19\xb1\xef\x7f\x67\xa8\x49\x26\xfd\xbf\xfc\xbf\xfc" "\xbf\xfc\xbf\xfc\xbf\xfc\x7f\xe7\xed\xcb\xff\x0f\x27\xf9\xff\xee\xe4\xff" "\x7b\x90\xff\x1f\xfe\xfc\xbf\xeb\xff\xcb\xff\x33\x50\x06\x2d\xff\x1f\xfb" "\xfe\x77\x85\x9a\x64\xd2\xff\x03\x00\x00\x40\x0e\x62\xdf\xff\x8b\xa1\x26" "\xfa\x7f\x00\x00\x00\xa8\x8c\xd8\xf7\xbf\x3b\xd4\x44\xff\x0f\x00\x00\x00" "\x95\x11\xfb\xfe\xf7\x84\x9a\x64\xd2\xff\xcb\xff\xcb\xff\xf7\x95\xff\x1f" "\x2d\x36\x28\xff\xbf\x74\xae\x79\x3d\xf9\x7f\xf9\xff\x62\xbd\xf2\xff\xf5" "\x95\xe4\xff\xb3\x20\xff\xdf\x9d\xfc\x7f\x0f\x1d\xf2\xff\x9b\xe4\xff\xe5" "\xff\xe5\xff\xe5\xff\xb9\x62\x83\x96\xff\x8f\x7d\xff\x7b\x43\x4d\x32\xe9" "\xff\x01\x00\x00\x20\x07\xb1\xef\x7f\x5f\xa8\x89\xfe\x1f\x00\x00\x00\x2a" "\x23\xf6\xfd\x0f\x85\x9a\xe8\xff\x01\x00\x00\xa0\x32\x62\xdf\xff\x70\xa8" "\x49\x26\xfd\xbf\xfc\x7f\x96\xf9\xff\xf4\x94\x5d\xff\xbf\x24\xff\x9f\x41" "\xfe\xdf\xf5\xff\xb3\x21\xff\xdf\x5d\x9e\xf9\xff\x4d\xfd\x0f\xc0\xf5\xff" "\xe5\xff\x87\x32\xff\x3f\x1e\xea\x47\xa7\xe3\x6c\x97\xff\x67\x50\x0c\x5a" "\xfe\x3f\xf6\xfd\x8f\x84\x9a\x64\xd2\xff\x03\x00\x00\x40\x0e\x62\xdf\xff" "\xfe\x50\x13\xfd\x3f\x00\x00\x00\x54\x46\xec\xfb\x7f\x29\xd4\x44\xff\x0f" "\x00\x00\x00\x95\x11\xfb\xfe\x0f\x84\x9a\x64\xd2\xff\xcb\xff\x67\x99\xff" "\x5f\xfd\xf5\xff\xe5\xff\xaf\x30\xff\x3f\xd6\x32\x3f\x72\xca\xff\x4f\x36" "\xbd\x9e\x69\x5e\xca\xff\xcb\xff\x6f\x00\xf9\xff\xee\xf2\xcc\xff\xaf\x82" "\xfc\xbf\xfc\xff\x20\xe7\xff\xc3\x6c\xde\xbc\xc2\xfa\xae\xff\xcf\x20\x1a" "\xb4\xfc\x7f\xec\xfb\x3f\x18\x6a\x92\x49\xff\x0f\x00\x00\x00\x39\x88\x7d" "\xff\x2f\x87\x9a\xe8\xff\x01\x00\x00\xa0\x32\x62\xdf\xff\x2b\xa1\x26\xfa" "\x7f\x00\x00\x00\xa8\x8c\xd8\xf7\xff\x6a\xa8\x49\x26\xfd\xff\xb0\xe7\xff" "\x6b\x63\xed\x2b\xca\xff\x17\xf2\xff\x03\x94\xff\x6f\x9d\x1f\x39\xe5\xff" "\x5d\xff\x7f\x39\xf9\xff\x8d\x21\xff\xdf\x9d\xfc\x7f\x0f\xf2\xff\xf9\xe4" "\xff\xdb\xdf\x43\x0e\x43\xfe\xbf\x07\xf9\x7f\x06\xd1\xa0\xe5\xff\x63\xdf" "\xff\x6b\xa1\x26\x2b\x36\x7e\x3f\xfa\xcf\x3e\x9e\x26\x00\x00\x00\x30\x40" "\x62\xdf\xff\xa1\x50\x93\x4c\xfe\xfd\x1f\x00\x00\x00\x72\x10\xfb\xfe\x43" "\xa1\x26\xfa\x7f\x00\x00\x00\xa8\x8c\xd8\xf7\x3f\x1a\x6a\x92\x49\xff\x3f" "\xec\xf9\xff\xe5\x2b\xae\x35\xff\x1f\xaf\xa8\x2a\xff\x2f\xff\x2f\xff\x2f" "\xff\x2f\xff\x3f\x8c\xd6\x2f\xff\xff\xf2\xeb\x8b\x42\xfe\x5f\xfe\x5f\xfe" "\xbf\xb2\xf9\xff\xab\x30\xfe\x3c\xf2\xff\x9d\xde\xf5\x96\xe4\xff\xe9\x64" "\xd0\xf2\xff\xb1\xef\x3f\x1c\x6a\x92\x49\xff\x0f\x00\x00\x00\x39\x88\x7d" "\xff\xaf\x87\x9a\xe8\xff\x01\x00\x00\xa0\x32\x62\xdf\x7f\x24\xd4\x44\xff" "\x0f\x00\x00\x00\x95\x11\xfb\xfe\xb9\x50\x93\x4c\xfa\xff\x8d\xce\xff\x37" "\xe5\x7a\xc7\x07\x33\xff\xef\xfa\xff\x57\x9a\xff\xff\x99\xfc\xbf\xfc\x7f" "\x20\xff\xdf\x99\xfc\xff\xc6\x70\xfd\xff\xee\xe4\xff\x7b\x90\xff\x5f\x65" "\x7e\xbe\xf5\x8c\x2d\xff\x9f\x43\xfe\x7f\x65\xf2\xff\x74\x32\x68\xf9\xff" "\xd8\xf7\xcf\x87\x9a\x64\xd2\xff\x03\x00\x00\x40\x85\xa5\x5f\x07\xc7\xbe" "\xff\x68\xa8\x89\xfe\x1f\x00\x00\x00\x2a\x23\xf6\xfd\xc7\x42\x4d\xf4\xff" "\x00\x00\x00\x50\x19\xb1\xef\xff\x70\xa8\x49\x26\xfd\xbf\xeb\xff\xcb\xff" "\xbb\xfe\xff\xb5\xc8\xff\x8f\xb5\x2c\x2f\xff\x5f\x92\xff\x97\xff\x5f\x0f" "\xf2\xff\xdd\xc9\xff\xf7\x20\xff\xef\xfa\xff\xf2\xff\xf2\xff\xac\xab\x41" "\xcb\xff\xc7\xbe\x7f\x21\xd4\x24\x93\xfe\x1f\x00\x00\x00\x72\x10\xfb\xfe" "\x8f\x84\x9a\xe8\xff\x01\x00\x00\xa0\x32\x62\xdf\xff\xd1\x50\x13\xfd\x3f" "\x00\x00\x00\x54\x46\xec\xfb\x8f\x87\x9a\x64\xd2\xff\xcb\xff\xcb\xff\xe7" "\x9e\xff\xff\x3f\xf6\xee\xa3\xc9\xae\xb3\xda\xe3\xf0\xb6\xad\x38\xba\xf7" "\x23\xdc\xf1\x1d\x31\x34\x23\x7b\xc0\x07\x60\xca\x8c\x2a\xc6\x26\x9a\x1c" "\x2c\x93\x33\x98\x68\x32\x18\x30\x39\x9b\x9c\x4c\x34\x39\xe7\x68\x72\x8e" "\x26\x18\x43\x55\x53\x6e\xaf\xb5\xa4\x56\x9f\xde\x5b\x52\x1f\x9d\xb3\xf7" "\xfb\x3e\xcf\x64\x5d\xa9\x2c\xfa\x08\x37\x76\xfd\xaf\xea\x57\xef\x25\xc3" "\x70\xca\xfb\xff\xfa\xff\x55\x5f\x5f\xff\xbf\x4c\xfa\xff\x71\xfa\xff\x09" "\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x5a\xcd\xad\xff\xcf\xdd\x7f\x55\xdc\xd2" "\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xbf\x6f\xdc\x62\xff\x03\x00\x00\x40" "\x33\x72\xf7\xdf\x2f\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xef\x1f\xb7" "\x74\xb2\xff\xf5\xff\xfa\xff\xde\xfb\xff\x61\x2b\xef\xff\xef\xfd\xeb\xdb" "\xef\xff\xef\xfa\x3b\xa4\xff\xd7\xff\x6f\xc2\xbe\xfe\xfe\xc8\xea\xbf\xee" "\xa0\x28\xfc\xc0\xfe\xff\x6e\x97\x5f\x7d\x6f\xfd\xff\xb9\xf4\xff\xc7\x0f" "\xf3\xf9\xf5\xff\xfa\xff\x25\x7f\x7e\xfd\xbf\xfe\x9f\xfd\xe6\xd6\xff\xe7" "\xee\x7f\x40\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x60\xdc\x62" "\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x28\x6e\xb1\xff\x01\x00\x00\xa0\x19" "\xb9\xfb\xaf\x8e\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\xa7\xff" "\xbf\xd9\xfb\xff\xfa\xff\x65\xf3\xfe\xff\xb8\x65\xbc\xff\x7f\xf9\xce\xce" "\x8e\xfe\x7f\x15\xfd\xff\xbc\x3f\xbf\xfe\x5f\xff\xcf\x7e\x73\xeb\xff\x73" "\xf7\x3f\x38\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x3f\x24\x6e\xb1" "\xff\x01\x00\x00\xa0\x19\xb9\xfb\x1f\x1a\xb7\xd8\xff\x00\x00\x00\xd0\x8c" "\xdc\xfd\x0f\x8b\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf\xfe\x7f\x29\xfd\xff\xb1" "\x05\xbf\xff\x1f\xdf\x0f\xfa\x7f\xfd\xff\x06\xe8\xff\xc7\x2d\xa3\xff\xf7" "\xfe\xbf\xfe\x7f\x99\x9f\x5f\xff\xaf\xff\x67\xbf\xf3\xef\xff\x0f\xfc\xc7" "\xf6\x5a\xfa\xff\xdc\xfd\x0f\x8f\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc" "\xfd\x8f\x88\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x47\xc6\x2d\xf6\x3f" "\x00\x00\x00\x34\x23\x77\xff\xa3\xe2\x96\x4e\xf6\xbf\xfe\x5f\xff\xaf\xff" "\x5f\x4a\xff\xbf\xa1\xf7\xff\xf5\xff\xfa\xff\x85\xbb\x61\x38\xfd\xcf\x04" "\xfd\xff\x7e\xfa\xff\x09\x13\xfd\xff\x30\xe8\xff\xc7\x9c\x73\x3f\xbf\xfa" "\xb7\xb7\x9c\xcf\x7f\x00\xfd\xbf\xfe\x9f\xfd\xce\xbf\xff\x3f\xf0\x3f\x6a" "\x2d\xfd\x7f\xee\xfe\x47\xc7\x2d\x57\x0e\xc3\xb1\x0b\xfd\x4d\x02\x00\x00" "\x00\xb3\x92\xbb\xff\x31\x71\x4b\x27\x7f\xfe\x0f\x00\x00\x00\x3d\xc8\xdd" "\x7f\x4d\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x9f\x8a\x5b\x3a\xd9\xff" "\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x5f\xfd\xf5\xf5\xff\xcb\xe4\xfd\xff" "\x71\x87\xef\xff\xff\xff\x7f\xaf\xba\x4f\xbf\xfd\xbf\xf7\xff\xc7\x79\xff" "\x7f\xdd\xfd\xff\x9d\xdf\x19\x4d\xf6\xff\x32\xeb\x8e\xcc\xad\xff\xcf\xdd" "\x7f\x6d\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x6c\xdc\x62\xff" "\x03\x00\x00\x40\x33\x72\xf7\x3f\x2e\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9" "\xfb\x1f\x1f\xb7\x74\xb2\xff\xf5\xff\xad\xf5\xff\x97\xed\xf9\x75\x67\xf4" "\xff\xbb\xb5\x8b\xfe\x7f\xe9\xfd\xff\x3d\xf4\xff\xfa\x7f\xfd\xff\x04\xfd" "\xff\x38\xef\xff\x4f\xd8\xfd\xc7\xdc\xc9\xfa\xa1\xfe\x5f\xff\xef\xfd\x7f" "\xef\xff\x73\x38\x73\xeb\xff\x73\xf7\x3f\x21\x6e\xe9\x64\xff\x03\x00\x00" "\x40\x0f\x72\xf7\x3f\x31\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x9f\x14" "\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x4f\x8e\x5b\x3a\xd9\xff\xfa\xff" "\xd6\xfa\xff\xbd\xbf\xce\xfb\xff\xad\xf5\xff\xde\xff\x1f\xf4\xff\xfa\xff" "\x09\xfa\xff\x71\xfa\xff\x09\xad\xbc\xff\x7f\x81\xdf\x35\xdb\xee\xe7\x0f" "\x6b\xdb\x9f\x5f\xff\xaf\xff\x67\xbf\xb9\xf5\xff\xb9\xfb\x9f\x12\xb7\x74" "\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x9f\x1a\xb7\xd8\xff\x00\x00\x00\xd0" "\x8c\xdc\xfd\x4f\x8b\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xa7\xc7\x2d" "\x9d\xec\x7f\xfd\xbf\xfe\x7f\x19\xfd\x7f\x7e\x05\xfd\xbf\xfe\xff\xe2\xf7" "\xff\x49\xff\xbf\x4c\xfa\xff\x71\xfa\xff\x09\xad\xf4\xff\x17\x68\xdb\xfd" "\xfc\xd2\x3f\xbf\xfe\x5f\xff\xcf\x7e\x73\xeb\xff\x73\xf7\x3f\x23\x6e\xe9" "\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x3f\x33\x6e\xb1\xff\x01\x00\x00\xa0" "\x19\xb9\xfb\x9f\x15\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xcf\x8e\x5b" "\x3a\xd9\xff\xfa\x7f\xfd\xff\x32\xfa\x7f\xef\xff\xeb\xff\xbd\xff\xaf\xff" "\x3f\x37\xfa\xff\x71\xfa\xff\x09\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x5a\xcd" "\xad\xff\xcf\xdd\x7f\x5d\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f" "\x4e\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x37\x6e\xb1\xff\x01\x00" "\x00\xa0\x19\xb9\xfb\x9f\x17\xb7\x74\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\xbf\xfa\xeb\xeb\xff\x97\x49\xff\x3f\x4e\xff\x3f\x41\xff\xaf\xff" "\xd7\xff\xeb\xff\x59\xab\x19\xf5\xff\x67\xfc\xaa\x13\xc3\xf3\xe3\x96\x4e" "\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x0b\xe2\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\x85\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\x7f\x7d\xdc\xd2" "\xc9\xfe\xd7\xff\xcf\xa6\xff\xdf\xcd\xf9\xda\xea\xff\x4f\x0e\xc3\xa0\xff" "\x1f\x3a\xed\xff\x4f\x9e\xf1\xf7\xb3\xbe\x2f\xf5\xff\xfa\xff\x0d\xd0\xff" "\x8f\xd3\xff\x4f\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\xd6\x6a\x46\xfd\xff\xee" "\x8f\x73\xf7\xbf\x28\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\xbf\x38" "\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x5f\x12\xb7\xd8\xff\x00\x00\x00" "\xd0\x8c\xdc\xfd\x2f\x8d\x5b\x3a\xd9\xff\xfa\xff\xd9\xf4\xff\xbb\xda\xea" "\xff\xbd\xff\x7f\xf6\xf7\x47\x4f\xfd\xbf\xf7\xff\xf7\xd3\xff\x6f\x86\xfe" "\x7f\x9c\xfe\x7f\x82\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\x1e\x37\xdd\xb2\x7b" "\xe6\xd6\xff\xe7\xee\x7f\x59\xdc\x74\xec\xe8\x05\xfe\x3e\x01\x00\x00\x80" "\xd9\xc9\xdd\xff\xf2\xb8\xa5\x93\x3f\xff\x07\x00\x00\x80\x1e\xe4\xee\x7f" "\x45\xdc\x62\xff\x03\x00\x00\xc0\x42\x5d\xb7\xef\x67\x72\xf7\xbf\x32\x6e" "\xe9\x64\xff\xeb\xff\xd7\xdb\xff\x1f\x3b\xe3\xe7\xf4\xff\xfa\xff\xb3\xbf" "\x3f\xf4\xff\xfa\x7f\xfd\xff\xc5\xa7\xff\x1f\xa7\xff\x9f\xa0\xff\xd7\xff" "\xeb\xff\xf5\xff\xac\xd5\xdc\xfa\xff\xdc\xfd\xaf\x8a\x5b\x3a\xd9\xff\x00" "\x00\x00\xd0\x83\xdc\xfd\x37\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff" "\xab\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x35\x71\x4b\x27\xfb\x5f" "\xff\xef\xfd\x7f\xfd\xbf\xfe\x5f\xff\xbf\xfa\xeb\xeb\xff\x97\x49\xff\x3f" "\x4e\xff\x3f\x41\xff\x7f\x60\x3f\x7f\x2e\x4f\x63\xeb\xff\x0f\xdd\xff\x1f" "\x3f\xfd\x7f\xea\xff\x69\xc3\x79\xf4\xff\x3b\x3b\x3b\xd7\x5c\xf4\xfe\x3f" "\x77\xff\x6b\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x8d\x71\x8b" "\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xba\xb8\xc5\xfe\x07\x00\x00\x80\x66" "\xe4\xee\x7f\x7d\xdc\xd2\xc9\xfe\xd7\xff\x77\xda\xff\xe7\xb7\xfa\xb2\xfa" "\xff\x53\xc3\xa0\xff\xd7\xff\xeb\xff\xf5\xff\xe3\xf4\xff\xe3\xf4\xff\x13" "\xf4\xff\xde\xff\xf7\xfe\xbf\xfe\x9f\xb5\x9a\xdb\xfb\xff\xb9\xfb\xdf\x10" "\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xdf\x18\xb7\xd8\xff\x00\x00" "\x00\xd0\x8c\xdc\xfd\x6f\x8a\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x37" "\xc7\x2d\x9d\xec\x7f\xfd\x7f\xa7\xfd\xbf\xf7\xff\xf5\xff\xfa\xff\x4d\xf7" "\xff\x77\x0c\xfa\xff\x8d\x58\x44\xff\x7f\xf2\xe0\xaf\x3f\xf7\xfe\xff\x5a" "\xfd\xbf\xfe\x7f\x44\x77\xfd\xff\x3d\xef\xbe\xe7\x87\xfa\x7f\xfd\x3f\xfb" "\xcd\xad\xff\xcf\xdd\xff\x96\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd" "\xff\xd6\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x5b\xdc\x62\xff\x03" "\x00\x00\x40\x33\x72\xf7\xbf\x3d\x6e\x3a\xd2\xc9\xfe\xdf\x50\xff\xbf\x2a" "\x8f\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x9e\xfa\xff\xa9\xf7\xff\x8f\x0d\xc3" "\xa0\xff\x5f\x83\x45\xf4\xff\x23\xe6\xde\xff\xaf\xe7\xfd\xff\xb3\xff\x57" "\x7e\x9a\xfe\x5f\xff\xbf\xe4\xcf\xaf\xff\xd7\xff\xb3\xdf\xdc\xfa\xff\xdc" "\xfd\xef\x88\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xef\x8c\x5b\xec" "\x7f\x00\x00\x00\x68\x46\xee\xfe\x77\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23" "\x77\xff\x4d\x71\x4b\x27\xfb\xdf\xfb\xff\xfa\x7f\xfd\xbf\xfe\xbf\xf9\xfe" "\xff\xda\x45\xf4\xff\xde\xff\x5f\x13\xfd\xff\xb8\x79\xf4\xff\x07\xd3\xff" "\xeb\xff\x97\xfc\xf9\xf5\xff\xfa\x7f\xce\xdd\xb6\xfa\xff\xdc\xfd\xef\x8e" "\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xef\x89\x5b\xec\x7f\x00\x00" "\x00\x68\x46\xee\xfe\xf7\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xfb" "\xe2\x96\x4e\xf6\xbf\xfe\x5f\xff\x7f\x3e\xfd\x7f\x7e\x4e\xfd\x7f\x5b\xfd" "\xff\xf1\xd9\xf5\xff\x27\xf6\xfc\xe7\x75\xf2\xfe\xbf\xfe\x7f\x4d\xf4\xff" "\xe3\xf4\xff\x13\xf4\xff\xfa\x7f\xfd\xff\x75\xfa\x7f\xd6\x69\x6e\xef\xff" "\xe7\xee\x7f\x7f\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xff\x40\xdc" "\xfa\x7f\xdd\xda\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x1f\x8c\x5b\xec\x7f\x00" "\x00\x00\x68\x46\xee\xfe\x0f\xc5\x2d\x9d\xec\x7f\xfd\xbf\xfe\xdf\xfb\xff" "\xfa\xff\xe6\xdf\xff\xd7\xff\x77\x45\xff\x3f\x4e\xff\x3f\x41\xff\xaf\xff" "\xd7\xff\x7b\xff\x9f\xb5\x9a\x5b\xff\x9f\xbb\xff\xc3\x71\x4b\x27\xfb\x1f" "\x00\x00\x00\x7a\x90\xbb\xff\x23\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd" "\xff\xd1\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xbf\x39\x6e\xe9\x64\xff" "\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff\xae\xbf\x87\xfa\xff\x36\xe8\xff" "\xc7\x6d\xa6\xff\x3f\xa9\xff\xd7\xff\x57\x3f\x7f\x49\xfc\xaf\x40\xff\xaf" "\xff\x9f\xfa\xf5\xb4\x69\x6e\xfd\x7f\xee\xfe\x8f\xc5\x2d\x9d\xec\x7f\x00" "\x00\x00\x68\xcd\xd1\x15\x3f\x97\xbb\xff\xe3\x71\x8b\xfd\x0f\x00\x00\x00" "\xcd\xc8\xdd\xff\x89\xb8\xc5\xfe\x07\x00\x00\x80\x45\x3a\xb2\xe2\xe7\x72" "\xf7\x7f\x32\x6e\x59\xe4\xfe\x5f\x55\xa1\x8f\xd3\xff\xeb\xff\xf5\xff\xfa" "\x7f\xfd\xff\xea\xaf\xaf\xff\x5f\xa6\xad\xf4\xff\xf9\x4d\xa1\xff\xf7\xfe" "\x7f\xe8\xa7\xff\xff\xbf\x3d\x3f\x5a\xda\xfb\xff\x67\xff\xfb\xeb\xb2\x41" "\xff\xaf\xff\x67\xdd\xe6\xd6\xff\xe7\xee\xff\x54\xdc\xb2\xc8\xfd\x0f\x00" "\x00\x00\xac\x92\xbb\xff\xd3\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\x7f" "\x4b\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x26\x6e\xe9\x64\xff\xeb" "\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf5\xd7\xd7\xff\x2f\x93\xf7\xff\xc7" "\xe9\xff\x27\xe8\xff\xb7\xfa\x7e\xfe\xd2\x3f\xbf\xfe\x5f\xff\xcf\x7e\x73" "\xeb\xff\x73\xf7\x7f\x36\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x7f" "\x2e\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x3f\x1f\xb7\xd8\xff\x00\x00" "\x00\xd0\x8c\xdd\xdd\x9f\x71\x59\x87\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff" "\xf5\xff\xab\xbf\xbe\xfe\x7f\x99\xf4\xff\xe3\xf4\xff\x13\xf4\xff\xfa\x7f" "\xfd\xbf\xfe\x9f\xb5\x9a\x5b\xff\xff\x85\xdd\x5f\x75\x62\xf8\x62\xdc\xd2" "\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xff\x52\xdc\x62\xff\x03\x00\x00\x40" "\x33\x72\xf7\x7f\x39\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xbf\x12\xb7" "\x74\xb2\xff\xf5\xff\xfa\xff\x65\xf4\xff\x3b\x3b\x3b\xd7\xe8\xff\xf5\xff" "\x7b\x7f\x3f\xa7\xfb\xff\x5b\x17\xdc\xff\x5f\xaf\xff\x5f\x33\xfd\xff\x38" "\xfd\xff\x04\xfd\xbf\xfe\x7f\xf6\xfd\xff\xd9\xff\x96\x3c\x4d\xff\xcf\x1c" "\xcd\xad\xff\xcf\xdd\xff\xd5\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd" "\xff\xb5\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x7a\xdc\x62\xff\x03" "\x00\x00\x40\x33\x72\xf7\x7f\x23\x6e\xe9\x64\xff\xeb\xff\x67\xd0\xff\x9f" "\xd0\xff\x7b\xff\x5f\xff\x3f\x78\xff\x5f\xff\xbf\x26\xfa\xff\x71\xfa\xff" "\x09\x2d\xf6\xff\x27\xce\xfd\xb7\xbf\xed\x7e\xfe\xb0\xb6\xfd\xf9\x2f\x7a" "\xff\x7f\x64\xfc\xd7\xeb\xff\x99\xa3\xb9\xf5\xff\xb9\xfb\xbf\x19\xb7\x74" "\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xbf\x15\xb7\xd8\xff\x00\x00\x00\xd0" "\x8c\xdc\xfd\xdf\x8e\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xef\xc4\x2d" "\x9d\xec\x7f\xfd\xff\xe6\xfa\xff\x3b\xff\xbb\xeb\xe5\xfd\xff\x93\xc3\xea" "\xcf\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x17\x9b\xfe\x7f\x9c\xfe\x7f\x42\x8b" "\xfd\xff\x79\xd8\x76\x3f\xbf\xf4\xcf\xbf\x99\xf7\xff\x0f\xa6\xff\x67\x8e" "\xe6\xd6\xff\xe7\xee\xff\x6e\xdc\xb2\x77\xf8\x1d\x3d\xbf\xdf\x25\x00\x00" "\x00\x30\x27\xb9\xfb\xbf\x17\xb7\x74\xf2\xe7\xff\x00\x00\x00\xd0\x83\xdc" "\xfd\xdf\x8f\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x1f\xc4\x2d\x9d\xec" "\x7f\xfd\xff\x0c\xde\xff\x6f\xb0\xff\xf7\xfe\xff\xea\xef\x0f\xfd\xff\xac" "\xfb\xff\x4b\xf5\xff\x6d\xd0\xff\x8f\xd3\xff\x4f\xd0\xff\xeb\xff\xf5\xff" "\x6b\xea\xff\xf3\xbb\x59\xff\xdf\xbb\xb9\xf5\xff\xb9\xfb\x7f\x18\xb7\x74" "\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x7f\x14\xb7\x5c\x79\x72\x5b\x1f\x09" "\x00\x00\x00\x58\xb3\xdc\xfd\x3f\x8e\x5b\xfc\xf9\x3f\x00\x00\x00\x34\x23" "\x77\xff\xad\x71\xcb\x19\xfb\x7f\x55\xdb\xdd\x0a\xfd\xbf\xfe\x5f\xff\xaf" "\xff\xd7\xff\xaf\xfe\xfa\xfa\xff\x65\xd2\xff\x8f\x3b\xd7\xfe\xff\xf8\x70" "\xb8\xfe\x3f\xe9\xff\xf5\xff\xfa\xff\x5e\xfb\x7f\xef\xff\x73\x97\x0d\xf7" "\xff\xa7\xa6\xfa\xff\xdc\xfd\x3f\x89\x5b\xfc\xf9\x3f\x00\x00\x00\x2c\xce" "\xd1\x03\x7e\x3e\x77\xff\x4f\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff" "\x67\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xf3\xb8\xe5\xb6\x4b\xb7" "\xf5\x91\x36\x4a\xff\xaf\xff\xd7\xff\x4f\xf4\xff\xb7\xc7\x37\xb8\xfe\x5f" "\xff\xaf\xff\x5f\x04\xfd\xff\x38\xef\xff\x4f\xd0\xff\xaf\xa3\x9f\xbf\x42" "\xff\xdf\x46\xff\x3f\x0c\xfa\x7f\x0e\x6f\xc3\xfd\xff\xe4\x8f\x73\xf7\xff" "\x22\x6e\xf1\xe7\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xbf\x8c\x5b\xec\x7f\x00" "\x00\x00\x68\x46\xee\xfe\x5f\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff" "\xaf\xe3\x96\x4e\xf6\xbf\xfe\x5f\xff\x7f\xc8\xfe\x7f\x37\xcd\x6c\xba\xff" "\xf7\xfe\xbf\xfe\x3f\xe8\xff\x97\x41\xff\x3f\x6e\xfb\xfd\xff\x8d\xa3\x5f" "\x56\xff\xdf\x44\xff\xef\xfd\xff\x46\xfa\x7f\xef\xff\xb3\x0e\x73\xeb\xff" "\x73\xf7\xff\x26\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\xff\x36\x6e" "\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x7f\x17\xb7\xd8\xff\x00\x00\x00\xd0" "\x8c\xdc\xfd\xbf\x8f\x5b\x3a\xd9\xff\x5b\xeb\xff\xe3\xbf\x6a\xfd\xff\xe2" "\xfb\xff\xf6\xdf\xff\x1f\xed\xff\x77\x06\xfd\xbf\xfe\x5f\xff\x3f\x2f\xfa" "\xff\x71\xdb\xef\xff\xc7\xe9\xff\xf5\xff\x4b\xfe\xfc\x67\xf6\xff\xc7\x07" "\xfd\xbf\xfe\x9f\x61\x86\xfd\x7f\xee\xfe\x3f\xc4\x2d\x9d\xec\x7f\x00\x00" "\x00\xe8\x41\xee\xfe\x3f\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x9f" "\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xcf\x71\x4b\x27\xfb\xdf\xfb" "\xff\xfa\x7f\xfd\xbf\xf7\xff\xf5\xff\xab\xbf\xbe\xfe\x7f\x99\xf4\xff\xe3" "\xf4\xff\xab\xd5\xdf\x28\xfd\xbf\xfe\xdf\xfb\xff\xfa\x7f\xd6\x6a\x6e\xfd" "\x7f\xee\xfe\xbf\xc4\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xbf\xc6" "\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x6d\x71\x8b\xfd\x0f\x00\x00\x00" "\xcd\xc8\xdd\xff\xb7\xb8\xa5\x89\xfd\x7f\x64\xf2\xaf\xd0\xff\x2f\xb2\xff" "\xaf\x3c\x5a\xff\xaf\xff\xd7\xff\xeb\xff\xd9\x4b\xff\x3f\x6e\x9b\xfd\xff" "\xbd\xfe\x67\xfa\xcb\x7a\xff\x7f\xeb\xfd\x7f\x7e\x04\xfd\xbf\xfe\x5f\xff" "\xcf\x5a\xcc\xad\xff\xcf\xdd\xff\xf7\xb8\xa5\x89\xfd\x0f\x00\x00\x00\xdc" "\x29\x77\xff\x3f\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x9f\x71\x8b" "\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\x7f\x7b\xdc\xd2\xc9\xfe\x9f\xe8\xff\x8f" "\xd7\x5f\xa8\xff\x1f\xe5\xfd\xff\xbd\x9f\x5f\xff\xbf\xfa\xfb\x43\xff\xaf" "\xff\xd7\xff\x5f\x7c\xfa\xff\x71\xde\xff\x9f\xa0\xff\xf7\xfe\xbf\xfe\x5f" "\xff\xcf\x5a\xcd\xad\xff\xcf\xdd\xff\xaf\xb8\xa5\x93\xfd\x0f\x00\x00\x00" "\x3d\xc8\xdd\x7f\x47\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x3b\x6e" "\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xff\x13\xb7\x74\xb2\xff\xbd\xff\xbf" "\xa4\xfe\xff\x0a\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x4f\xd0\xff\x8f\xd3" "\xff\x4f\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\xd6\x6a\x6e\xfd\x7f\xee\xfe\xff" "\x06\x00\x00\xff\xff\x3a\x81\x4a\x6b", 25191); syz_mount_image(/*fs=*/0x20000000, /*dir=*/0x20000040, /*flags=MS_LAZYTIME*/ 0x2000000, /*opts=*/0x20002ac0, /*chdir=*/0xfe, /*size=*/0x6267, /*img=*/0x20008d40); memcpy((void*)0x200001c0, "./file2\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200001c0ul, /*flags=O_DIRECT|O_CREAT|FASYNC|O_RDWR*/ 0x6042, /*mode=*/0); if (res != -1) r[0] = res; memcpy((void*)0x20000040, "./file2\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000040ul, /*flags=O_SYNC|O_NOATIME|O_CREAT|FASYNC|O_RDWR*/ 0x143042, /*mode=*/0); if (res != -1) r[1] = res; *(uint64_t*)0x20000100 = 0x20000080; memset((void*)0x20000080, 255, 1); *(uint64_t*)0x20000108 = 0xabfb; syscall(__NR_pwritev2, /*fd=*/r[1], /*vec=*/0x20000100ul, /*vlen=*/1ul, /*off_low=*/0x5405, /*off_high=*/0, /*flags=*/0ul); syscall(__NR_sendfile, /*fdout=*/r[0], /*fdin=*/r[1], /*off=*/0ul, /*count=*/0x80000002ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); const char* reason; (void)reason; do_sandbox_none(); return 0; }