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