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