// https://syzkaller.appspot.com/bug?id=82eaefee4a51f203913ffb21f9d328d1eab78ed7 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_fsconfig #define __NR_fsconfig 431 #endif #ifndef __NR_fspick #define __NR_fspick 433 #endif #ifndef __NR_memfd_create #define __NR_memfd_create 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif #ifndef __NR_openat #define __NR_openat 56 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } 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) { errno = EMSGSIZE; return -1; } 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, 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 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, loopfd = -1, 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) { memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; 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) { if (strstr(opts, "errors=panic") || strstr(opts, "errors=remount-ro") == 0) 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) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; retry: while (umount2(dir, MNT_DETACH | UMOUNT_NOFOLLOW) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, MNT_DETACH | UMOUNT_NOFOLLOW) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, MNT_DETACH | UMOUNT_NOFOLLOW)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, MNT_DETACH | UMOUNT_NOFOLLOW)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void setup_sysctl() { char mypid[32]; snprintf(mypid, sizeof(mypid), "%d", getpid()); struct { const char* name; const char* data; } files[] = { {"/proc/sys/kernel/hung_task_check_interval_secs", "20"}, {"/proc/sys/net/core/bpf_jit_kallsyms", "1"}, {"/proc/sys/net/core/bpf_jit_harden", "0"}, {"/proc/sys/kernel/kptr_restrict", "0"}, {"/proc/sys/kernel/softlockup_all_cpu_backtrace", "1"}, {"/proc/sys/fs/mount-max", "100"}, {"/proc/sys/vm/oom_dump_tasks", "0"}, {"/proc/sys/debug/exception-trace", "0"}, {"/proc/sys/kernel/printk", "7 4 1 3"}, {"/proc/sys/kernel/keys/gc_delay", "1"}, {"/proc/sys/vm/oom_kill_allocating_task", "1"}, {"/proc/sys/kernel/ctrl-alt-del", "0"}, {"/proc/sys/kernel/cad_pid", mypid}, }; for (size_t i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].name, files[i].data)) printf("write to %s failed: %s\n", files[i].name, strerror(errno)); } } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { int i, call, thread; for (call = 0; call < 4; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); if (call == 1) break; event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[1] = {0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x20005e00, "jfs\000", 4); memcpy((void*)0x20000080, "./file0\000", 8); memcpy( (void*)0x20005ec0, "\x78\x9c\xec\xdd\x4d\x6f\x1d\x57\xfd\x07\xf0\xdf\xdc\x27\x3f\xf4\xdf" "\xd6\xea\xa2\xea\x3f\x42\xc8\x4d\xcb\x43\x29\xcd\x63\x09\x81\x02\x6d" "\x17\xb0\x60\xc3\x02\x65\x8b\x12\xb9\x6e\x15\x91\x02\x4a\x02\x4a\xab" "\x88\xb8\xf2\x86\x05\x2f\x02\x84\xc4\x12\x21\x96\xac\x78\x01\x5d\xb0" "\x65\xc7\x0b\x20\x52\x82\x04\xea\x8a\x41\x63\x9f\x93\x8c\x27\xd7\xb9" "\x0e\x8e\xef\xd8\x3e\x9f\x8f\xe4\xcc\xfc\xe6\xcc\xf8\x9e\xc9\xf7\x3e" "\x7a\x66\xee\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x20\xbe\xff\xbd\x1f\x9e\xad\x22\xe2\xf2\x2f\xd2\x82\x95\x88\xff" "\x8b\x61\xc4\x20\x62\xa9\xa9\x57\x23\x62\x69\x75\x25\xaf\x3f\x8a\x88" "\x97\x62\xab\x39\x5e\x8c\x88\xf1\x42\x44\xb3\xfd\xd6\x3f\xcf\x47\xbc" "\x19\x11\x9f\x3e\x17\x71\xef\xfe\xed\xb5\x66\xf1\xb9\x3d\xf6\xe3\xbb" "\x7f\xfc\xdb\xef\x7e\xf4\xcc\x0f\xfe\xfa\x87\xf1\xe9\x7f\xff\xe9\xe6" "\xf0\xad\xdd\xd6\xbb\x75\xeb\xd7\xff\xfa\xf3\x9d\xfd\xed\x33\x00\x00" "\x00\x94\xa6\xae\xeb\xba\x4a\x1f\xf3\x4f\xa4\xcf\xf7\x83\xbe\x3b\x05" "\x00\xcc\x45\x7e\xfd\xaf\x93\xbc\x5c\xad\x56\xab\xd5\x6a\xf5\xf1\xab" "\xdb\xea\xe9\xee\xb4\x8b\x88\xd8\x68\x6f\xd3\xbc\x67\x70\x38\x1e\x00" "\x8e\x98\x8d\xf8\xac\xef\x2e\xd0\x23\xf9\x17\x6d\x14\x11\xcf\xf4\xdd" "\x09\xe0\x50\xab\xfa\xee\x00\x07\xe2\xde\xfd\xdb\x6b\x55\xca\xb7\x6a" "\xbf\x1e\xac\x6e\xb7\xe7\x73\x41\x76\xe4\xbf\x51\x3d\xb8\xbe\x63\xb7" "\xe9\x2c\xdd\x73\x4c\xe6\x75\xff\xda\x8c\x61\xbc\xb0\x4b\x7f\x96\xe6" "\xd4\x87\xc3\x24\xe7\x3f\xe8\xe6\x7f\x79\xbb\x7d\x92\xd6\x3b\xe8\xfc" "\xe7\x65\xb7\xfc\x27\xdb\x97\x3e\x15\x27\xe7\x3f\xec\xe6\xdf\x71\x7c" "\xf2\x1f\x4c\xcd\xbf\x54\x39\xff\xd1\x13\xe5\x3f\x94\x3f\x00\x00\x00" "\x00\x00\x1c\x62\xf9\xef\xff\x2b\x3d\x1f\xff\x5d\xd8\xff\xae\xec\xc9" "\xe3\x8e\xff\xae\xce\xa9\x0f\x00\x00\x00\x00\x00\x00\x00\xf0\xb4\xed" "\x77\xfc\xbf\x07\x8c\xff\x07\x00\x00\x00\x87\x56\xf3\x59\xbd\xf1\x9b" "\xe7\x1e\x2e\xdb\xed\xbb\xd8\x9a\xe5\x97\xaa\x88\x67\x3b\xeb\x03\x85" "\x49\x17\xcb\x2c\xf7\xdd\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x28\xc9\x68\xfb\x1c\xde\x4b\x55\xc4\x38\x22\x9e\x5d\x5e\xae\xeb\xba" "\xf9\x69\xeb\xd6\x4f\x6a\xbf\xdb\x1f\x75\xa5\xef\x3f\x94\xac\xef\x27" "\x79\x00\x00\xd8\xf6\xe9\x73\x9d\x6b\xf9\xab\x88\xc5\x88\xb8\x94\xbe" "\xeb\x6f\xbc\xbc\xbc\x5c\xd7\x8b\x4b\xcb\xf5\x72\xbd\xb4\x90\xdf\xcf" "\x4e\x16\x16\xeb\xa5\xd6\xe7\xda\x3c\x6d\x96\x2d\x4c\xf6\xf0\x86\x78" "\x34\xa9\x9b\x5f\xb6\xd8\xda\xae\x6d\xd6\xe7\xe5\x59\xed\xdd\xdf\xd7" "\xdc\xd6\xa4\x1e\xee\xa1\x63\xf3\xd1\x63\xe0\x00\x10\x11\xdb\xaf\x46" "\xf7\xbc\x22\x1d\x33\x75\xfd\x7c\xf4\xfd\x2e\x87\xa3\xc1\xe3\xff\xf8" "\xf1\xf8\x67\x2f\xfa\xbe\x9f\x02\x00\x00\x00\x07\xaf\xae\xeb\xba\x4a" "\x5f\xe7\x7d\x22\x1d\xf3\x1f\xf4\xdd\x29\x00\x60\x2e\xf2\xeb\x7f\xf7" "\xb8\x80\x5a\xad\x56\xab\xd5\xea\xe3\x57\xb7\xd5\xd3\xdd\x69\x17\x11" "\xb1\xd1\xde\xa6\x79\xcf\x60\x38\x7e\x00\x38\x62\x36\xe2\xb3\xbe\xbb" "\x40\x8f\xe4\x5f\xb4\x51\x44\xbc\xd4\x77\x27\x80\x43\xad\xea\xbb\x03" "\x1c\x88\x7b\xf7\x6f\xaf\x55\x29\xdf\xaa\xfd\x7a\x90\xc6\x77\xcf\xe7" "\x82\xec\xc8\x7f\xa3\xda\xda\x2e\x6f\x3f\x6d\x3a\x4b\xf7\x1c\x93\x79" "\xdd\xbf\x36\x63\x18\x2f\xec\xd2\x9f\x17\xe7\xd4\x87\xc3\x24\xe7\x3f" "\xe8\xe6\x7f\x79\xbb\x7d\x92\xd6\x3b\xe8\xfc\xe7\x65\xb7\xfc\x9b\xfd" "\x5c\xe9\xa1\x3f\x7d\xcb\xf9\x0f\xbb\xf9\x77\x1c\x9f\xfc\x07\x53\xf3" "\x2f\x55\xce\x7f\xf4\x44\xf9\x0f\xe5\x0f\x00\x00\x00\x00\x00\x87\x58" "\xfe\xfb\xff\x8a\xe3\xbf\x79\x97\x01\x00\x00\x00\x00\x00\x00\xe0\xc8" "\xb9\x77\xff\xf6\x5a\xbe\xee\x35\x1f\xff\xff\xdc\x94\xf5\x5c\xff\x79" "\x3c\xe5\xfc\x2b\xf9\x17\x29\xe7\x3f\xe8\xe4\xff\xe5\xce\x7a\xc3\xd6" "\xfc\xdd\x77\x1f\xe6\xff\xcf\xfb\xb7\xd7\x7e\x7f\xf3\x1f\xff\x9f\xa7" "\x7b\xcd\x7f\x21\xcf\x54\xe9\x9e\x55\xa5\x7b\x44\x95\x6e\xa9\x1a\xa5" "\xe9\x7e\xf6\xee\x51\x9b\xe3\xe1\xa4\xb9\xa5\x71\x35\x18\x8e\xd2\x39" "\x3f\xf5\xf8\xfd\xb8\x1a\xd7\x62\x3d\xce\xec\x58\x77\x90\xfe\x3f\x1e" "\xb6\x9f\xdd\xd1\xde\xf4\x74\xbc\xa3\xfd\xdc\x8e\xf6\xd1\x23\xed\xe7" "\x77\xb4\x8f\xd3\xf7\x0e\xd4\x4b\xb9\xfd\x54\xac\xc5\x4f\xe3\x5a\xbc" "\xb7\xd5\xde\xb4\x2d\xcc\xd8\xff\xc5\x19\xed\xf5\x8c\xf6\x9c\xff\xd0" "\xe3\xbf\x48\x39\xff\x51\xeb\xa7\xc9\x7f\x39\xb5\x57\x9d\x69\xe3\xee" "\x27\x83\x47\x1e\xf7\xed\xe9\xb4\xdb\x79\xe7\xea\xe7\x7f\x75\xe6\xe0" "\x77\x67\xa6\xcd\x18\x3e\xd8\xb7\xb6\x66\xff\x4e\xf6\xd0\x9f\xad\xff" "\x93\x67\x26\xf1\xf3\x1b\xeb\xd7\x4f\xdd\xba\x72\xf3\xe6\xf5\xb3\x91" "\x26\x3b\x96\x9e\x8b\x34\x79\xca\x72\xfe\xe3\xf4\xf3\xe0\xf9\xff\x95" "\xed\xf6\xfc\xbc\xdf\x7e\xbc\xde\xfd\x64\xf2\xc4\xf9\x1f\x16\x9b\x31" "\xda\x35\xff\x57\x5a\xf3\xcd\xfe\xbe\x36\xe7\xbe\xf5\x21\xe7\x3f\x49" "\x3f\x39\xff\xf7\x52\xfb\xf4\xc7\xff\x51\xce\x7f\xf7\xc7\xff\xeb\x3d" "\xf4\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1e\xa7\xae" "\xeb\xad\x4b\x44\xdf\x89\x88\x0b\xe9\xfa\x9f\xbe\xae\xcd\x04\x00\xe6" "\x2b\xbf\xfe\xd7\x49\x5e\xae\x56\xab\xd5\x6a\xb5\xfa\xf8\xd5\x6d\xf5" "\x74\x6f\xb7\x8b\x88\xf8\x4b\x7b\x9b\xe6\x3d\xc3\x2f\xa7\xfd\x32\x00" "\xe0\x30\xfb\x4f\x44\xfc\xbd\xef\x4e\xd0\x1b\xf9\x17\x2c\x7f\xdf\x5f" "\x33\x7d\xb5\xef\xce\x00\x73\x75\xe3\xa3\x8f\x7f\x7c\xe5\xda\xb5\xf5" "\xeb\x37\xfa\xee\x09\x00\x00\x00\x00\x00\x00\x00\xf0\xbf\xca\xe3\x7f" "\xae\xb6\xc6\x7f\x7e\x35\x22\x56\x3a\xeb\xed\x18\xff\xf5\xdd\x58\xdd" "\xef\xf8\x9f\xa3\x3c\xf3\x60\x80\xd1\xa7\x3c\xd0\xf7\x2e\x36\x07\x93" "\xe1\xa0\x35\xdc\xf8\xcb\xf1\xf8\xf1\xbf\x4f\xc6\xe3\xc7\xff\x1e\xcd" "\xb8\xbd\xf1\x8c\xf6\xc9\x8c\xf6\x85\x19\xed\x8b\x33\xda\xa7\x5e\xe8" "\xd1\x92\xf3\x7f\xb9\x35\xde\x79\x93\xff\x89\xce\xf0\xeb\x25\x8c\xff" "\xda\x1d\xf3\xbe\x04\x39\xff\x93\xad\xfb\x73\x93\xff\x97\x3a\xeb\xb5" "\xf3\xaf\x7f\x7b\x94\xf3\x1f\xec\xc8\xff\xf4\xcd\x0f\x7f\x76\xfa\xc6" "\x47\x1f\xbf\x71\xf5\xc3\x2b\x1f\xac\x7f\xb0\xfe\x93\xf3\x67\xcf\x9e" "\x39\x7f\xe1\xc2\xc5\x8b\x17\x4f\xbf\x7f\xf5\xda\xfa\x99\xed\x7f\x7b" "\xec\xf1\xc1\xca\xf9\xe7\xb1\xaf\x9d\x07\x5a\x96\x9c\x7f\xce\x5c\xfe" "\x65\xc9\xf9\x7f\x21\xd5\xf2\x2f\x4b\xce\xff\x8b\xa9\x96\x7f\x59\x72" "\xfe\xf9\xfd\x9e\xfc\xcb\x92\xf3\xcf\x9f\x7d\xe4\x5f\x96\x9c\xff\x6b" "\xa9\x96\x7f\x59\x72\xfe\x5f\x49\xb5\xfc\xcb\x92\xf3\x7f\x3d\xd5\xf2" "\x2f\x4b\xce\xff\xab\xa9\x96\x7f\x59\x72\xfe\x6f\xa4\x5a\xfe\x65\xc9" "\xf9\x9f\x4a\xb5\xfc\xcb\x92\xf3\x3f\x9d\x6a\xf9\x97\x25\xe7\x9f\x8f" "\x70\xc9\xbf\x2c\x39\xff\x7c\x66\x83\xfc\xcb\x92\xf3\x3f\x97\x6a\xf9" "\x97\x25\xe7\x7f\x3e\xd5\xf2\x2f\x4b\xce\xff\xcd\x54\xcb\xbf\x2c\x39" "\xff\xaf\xa5\x5a\xfe\x65\xc9\xf9\x5f\x48\xb5\xfc\xcb\x92\xf3\xff\x7a" "\xaa\xe5\x5f\x96\x9c\xff\xc5\x54\xcb\xbf\x2c\x39\xff\x6f\xa4\x5a\xfe" "\x65\xc9\xf9\x7f\x33\xd5\xf2\x2f\x4b\xce\xff\xad\x54\xcb\xbf\x2c\x39" "\xff\x6f\xa5\x5a\xfe\x65\xc9\xf9\x7f\x3b\xd5\xf2\x2f\x4b\xce\xff\x3b" "\xa9\x96\x7f\x59\x72\xfe\x6f\xa7\x5a\xfe\x65\x79\xf8\xfd\xff\x66\xcc" "\x98\x31\x93\x67\xfa\x7e\x66\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xba\xe6\x71\x3a\x71\xdf\xfb\x08\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x65\x07\x0e" "\x04\x00\x00\x00\x00\x80\xfc\x5f\x1b\xa1\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x0a\x3b\x70\x20\x00\x00\x00\x00\x00" "\xe4\xff\xda\x08\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\xd8\xb9\xb7\x18\xb9\xea\xfb\x0e\xe0\x67\xd7\xbb\xf6\xda" "\xdc\x9c\x40\xa8\xa1\x86\xac\x8d\x63\x8c\x59\xd8\xf5\x05\x5f\xd2\xba" "\x71\x08\x21\x14\x92\xa6\xdc\xd2\xd0\x0b\xb6\xeb\x5d\x9b\x4d\x7c\xc3" "\xbb\x4e\x80\x22\xd9\x11\x49\x83\x14\x47\x8d\xaa\x54\xe5\xa5\x6d\x12" "\xa1\x96\x97\x2a\x56\x95\x87\xb4\xa2\x11\x0f\x55\xab\x3e\x95\xf6\x21" "\x7d\xa9\x52\x55\xca\x03\xaa\x48\x44\x22\x55\x6a\xab\x96\x8d\xe6\xcc" "\xff\xff\xdf\x99\xf1\xd9\x39\x6b\x3c\x38\x33\xe7\x7c\x3e\x12\xfe\x79" "\x67\xce\xcc\xff\xcc\x99\x33\xb3\xfb\x5d\xf3\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\x00\x00" "\x00\x00\x00\x00\x68\xb5\xe1\x23\x33\x5f\x1e\xca\xb2\xac\xf1\x5f\xfe" "\xc7\xda\x2c\xbb\xba\xf1\xf7\xd5\xe3\x6b\xf3\xcb\x3e\xf8\xf3\xde\x43" "\x00\x00\x00\xe0\x72\xfd\x7f\xfe\xe7\x5b\xd7\xa5\x0b\xf6\x2f\xe3\x46" "\x2d\xdb\xfc\xc3\xad\xff\xf4\x9d\x85\x85\x85\x85\xec\xd3\x2b\xfe\x68" "\xf4\xeb\x0b\x0b\xe9\x8a\xf1\x2c\x1b\x5d\x95\x65\xf9\x75\xd1\x85\xff" "\x78\x62\xa8\x75\x9b\xe0\x85\x6c\x6c\x68\xb8\xe5\xeb\xe1\x92\xe5\x57" "\x94\x5c\x3f\x52\x72\xfd\x68\xc9\xf5\x2b\x4b\xae\x5f\x55\x72\xfd\x58" "\xc9\xf5\x17\x1d\x80\x8b\xac\x6e\xfe\x3e\x26\xbf\xb3\x4d\xf9\x5f\xd7" "\x36\x0f\x69\x76\x43\x36\x9a\x5f\xb7\xa9\xe0\x56\x2f\x0c\xad\x1a\x1e" "\x8e\xbf\xcb\xc9\x0d\xe5\xb7\x59\x18\x3d\x92\xcd\x66\xc7\xb2\x99\x6c" "\xaa\x6d\xfb\xe6\xb6\x43\xf9\xf6\xaf\x6e\x68\xac\xf5\x40\x16\xd7\x1a" "\x6e\x59\x6b\x7d\xe3\x0c\xf9\xc9\xf3\x87\xe3\x3e\x0c\x85\x63\xbc\xa9" "\x6d\xad\xc5\xfb\x8c\x7e\xf4\xe1\x6c\xfc\xa7\x3f\x79\xfe\xf0\x9f\xcf" "\xbf\x79\x53\xd1\x2c\x3d\x0c\x6d\xf7\xd7\xdc\xcf\x2d\x1b\x1b\xfb\xf9" "\xc5\x70\x49\x73\x5f\x87\xb2\x55\xe9\x98\xc4\xfd\x1c\x6e\xd9\xcf\xf5" "\x05\xcf\xc9\x8a\xb6\xfd\x1c\xca\x6f\xd7\xf8\x7b\xe7\x7e\xbe\xb5\xcc" "\xfd\x5c\xb1\xb8\x9b\x57\x54\xe7\x73\x3e\x96\x0d\xe7\x7f\x7f\x3d\x3f" "\x4e\x23\xad\xbf\xd6\x4b\xc7\x69\x7d\xb8\xec\xbf\x6f\xcb\xb2\xec\xdc" "\xe2\x6e\x77\x6e\x73\xd1\x5a\xd9\x70\xb6\xa6\xed\x92\xe1\xc5\xe7\x67" "\xac\x79\x46\x36\xee\xa3\x71\x2a\xbd\x37\x1b\xb9\xa4\xf3\x74\xc3\x32" "\xce\xd3\xc6\x9c\xde\xd4\x7e\x9e\x76\xbe\x26\xe2\xf3\xbf\x21\xdc\x6e" "\x64\x89\x7d\x68\x7d\x9a\x7e\xf4\x85\x95\x17\x3d\xef\x97\x7a\x9e\x46" "\x8d\x47\xbd\xd4\x6b\xa5\xf3\x1c\xec\xf5\x6b\xa5\x5f\xce\xc1\x78\x5e" "\xbc\x9e\x3f\xe8\x17\x0b\xcf\xc1\x4d\xe1\xf1\x3f\xbf\x79\xe9\x73\xb0" "\xf0\xdc\x29\x38\x07\xd3\xe3\x6e\x39\x07\x37\x96\x9d\x83\xc3\x2b\x57" "\xe4\xfb\x9c\x9e\x84\xa1\xfc\x36\x8b\xe7\xe0\xb6\xb6\xed\x57\xe4\x2b" "\x0d\xe5\xf3\x8d\xcd\xdd\xcf\xc1\xc9\xf9\xe3\xa7\x26\xe7\x9e\x7d\xee" "\xae\xd9\xe3\x87\x8e\xce\x1c\x9d\x39\xb1\x63\xdb\xb6\xa9\x1d\xbb\x76" "\xed\xd9\xb3\x67\xf2\xc8\xec\xb1\x99\xa9\xe6\x9f\xef\xf0\x68\xf7\xbf" "\x35\xd9\x70\x7a\x0d\x6c\x0c\xc7\x2e\xbe\x06\x6e\xef\xd8\xb6\xf5\x54" "\x5d\xf8\x66\xef\x5e\x87\x63\x5d\x5e\x87\x6b\x3b\xb6\xed\xf5\xeb\x70" "\xa4\xf3\xc1\x0d\x5d\x99\x17\xe4\xc5\xe7\x74\xf3\xb5\xf1\x58\xe3\xa0" "\x8f\x9d\x1f\xce\x96\x78\x8d\xe5\xcf\xcf\xd6\xcb\x7f\x1d\xa6\xc7\xdd" "\xf2\x3a\x1c\x69\x79\x1d\x16\x7e\x4f\x29\x78\x1d\x8e\x2c\xe3\x75\xd8" "\xd8\xe6\xd4\xd6\xe5\xfd\xcc\x32\xd2\xf2\x5f\xd1\x3e\xbc\x5b\xdf\x0b" "\xd6\xb6\x9c\x83\x9d\x3f\x8f\x74\x9e\x83\xbd\xfe\x79\xa4\x5f\xce\xc1" "\xb1\x70\x5e\xfc\xdb\xd6\xa5\xbf\x17\xac\x0f\xfb\xfb\xe2\xc4\xa5\xfe" "\x3c\xb2\xe2\xa2\x73\x30\x3d\xdc\xf0\xde\xd3\xb8\x24\xfd\xbc\x3f\xb6" "\x27\x1f\x45\xe7\xe5\xcd\x8d\x2b\xae\x5a\x99\x9d\x99\x9b\x39\x7d\xf7" "\x33\x87\xe6\xe7\x4f\x6f\xcb\xc2\xb8\x22\xae\x6f\x39\x57\x3a\xcf\xd7" "\x35\x2d\x8f\x29\xbb\xe8\x7c\x1d\xbe\xe4\xf3\x75\xff\xec\xad\x2f\xde" "\x5c\x70\xf9\xda\x70\xac\xc6\xee\x6a\xfc\x31\xb6\xe4\x73\xd5\xd8\x66" "\xe7\xdd\xdd\x9f\xab\xfc\xbb\x5b\xf1\xf1\x6c\xbb\x74\x7b\x16\x46\x8f" "\x5d\xe9\xe3\x59\xf4\xdd\xbc\x71\x3c\x53\x96\xec\x72\x3c\x1b\xdb\x7c" "\x71\xf2\xf2\x7f\x16\x4f\xb9\xb4\xe5\xfd\x77\x74\x89\xf7\xdf\x98\xfb" "\xdf\x6e\xae\x97\xee\xea\x85\x15\xa3\x23\xcd\xd7\xef\x8a\x74\x74\x46" "\xdb\xde\x8f\xdb\x9f\xaa\x91\xfc\xbd\x6b\x28\x5f\xfb\xad\xc9\xe5\xbd" "\x1f\x8f\x86\xff\xae\xf4\xfb\xf1\x0d\x5d\xde\x8f\xd7\x75\x6c\xdb\xeb" "\xf7\xe3\xd1\xce\x07\x17\xdf\x8f\x87\xca\x7e\xdb\x71\x79\x3a\x9f\xcf" "\xb1\x70\x9e\x1c\x9b\xea\xfe\x7e\xdc\xd8\x66\xdd\xf6\x4b\x3d\x27\x47" "\xba\xbe\x1f\xdf\x16\xe6\x50\x38\xfe\x77\x84\xa4\x90\x72\x51\xcb\xb9" "\xb3\xd4\x79\x9b\xd6\x1a\x19\x19\x0d\x8f\x6b\x24\xae\xd0\x7e\x9e\xee" "\x68\xdb\x7e\x34\x64\xb3\xc6\x5a\xaf\x6c\x7f\x67\xe7\xe9\x96\xdb\x9a" "\xf7\xb5\x22\x3d\xba\x45\x57\xea\x3c\x1d\xef\xd8\xb6\xd7\xe7\x69\x7a" "\xbf\x5a\xea\x3c\x1d\x2a\xfb\xed\xdb\x3b\xd3\xf9\x7c\x8e\x85\xf3\xe2" "\x86\x1d\xdd\xcf\xd3\xc6\x36\xaf\xed\xbc\xfc\xf7\xce\xd5\xf1\xaf\x2d" "\xef\x9d\x2b\xcb\xce\xc1\xd1\x15\x2b\x1b\xfb\x3c\x9a\x4e\xc2\xe6\xfb" "\xfd\xc2\xea\x78\x0e\xde\x9d\x1d\xce\x4e\x66\xc7\xb2\xe9\xfc\xda\x95" "\xf9\xf9\x34\x94\xaf\x35\x71\xcf\xf2\xce\xc1\x95\xe1\xbf\x2b\xfd\x5e" "\xb9\xae\xcb\x39\xb8\xa5\x63\xdb\x5e\x9f\x83\xe9\xfb\xd8\x52\xe7\xde" "\xd0\xc8\xc5\x0f\xbe\x07\x3a\x9f\xcf\xb1\x70\x5e\xbc\x74\x4f\xf7\x73" "\xb0\xb1\xcd\x7d\xbb\x7b\xfb\xb3\xeb\x96\x70\x49\xda\xa6\xe5\x67\xd7" "\xce\xdf\xaf\x2d\xf5\x3b\xaf\x9b\x3b\x0e\xd3\xbb\xf9\x3b\xaf\xc6\x7e" "\xfe\xdd\xee\xee\xbf\x9b\x6d\x6c\x73\x6c\xcf\xa5\xe6\xcc\xee\xc7\xe9" "\xce\x70\xc9\x55\x05\xc7\xa9\xf3\xf5\xbb\xd4\x6b\x6a\x3a\xbb\x32\xc7" "\x69\x5d\xd8\xcf\x37\xf7\x2c\x7d\x9c\x1a\xfb\xd3\xd8\xe6\xeb\x7b\x97" "\x79\x3e\xed\xcf\xb2\xec\xec\xd3\xf7\xe6\xbf\xef\x0d\xff\xbe\xf2\x57" "\x67\xbe\xff\x9d\xb6\x7f\x77\x29\xfa\x37\x9d\xb3\x4f\xdf\xfb\xe3\x6b" "\x8e\xfc\xfd\xa5\xec\x3f\x00\x83\xef\xed\xe6\x58\xd3\xfc\x5e\xd7\xf2" "\x2f\x53\xcb\xf9\xf7\x7f\x00\x00\x00\x60\x20\xc4\xdc\x3f\x1c\x66\x22" "\xff\x03\x00\x00\x40\x65\xc4\xdc\x1f\xff\xaf\xf0\x44\xfe\x07\x00\x00" "\x80\xca\x88\xb9\x7f\x24\xcc\xa4\x26\xf9\x7f\xdd\x7d\x6f\xce\xbe\x7d" "\x36\x4b\xcd\xfc\x85\x20\x5e\x9f\x0e\xc3\x83\xcd\xed\x62\xc7\x75\x2a" "\x7c\x3d\xbe\xb0\xa8\x71\xf9\xbd\x2f\xcf\xfc\xd7\xdf\x9c\x5d\xde\xda" "\xc3\x59\x96\xfd\xdf\x83\xbf\x57\xb8\xfd\xba\x07\xe3\x7e\x35\x8d\x87" "\xfd\xbc\xf0\xd1\xf6\xcb\x2f\xbe\xe1\xd9\x65\xad\x7f\xf0\xf1\xc5\xed" "\x5a\xfb\xeb\xdf\x08\xf7\x1f\x1f\xcf\x72\x4f\x83\xa2\x0a\xee\x54\x96" "\x65\xaf\x5e\xf7\xd5\x7c\x9d\xf1\x27\xce\xe7\xf3\xb5\x07\x0f\xe6\xf3" "\x91\x73\x2f\xbe\xd0\xd8\xe6\xad\xbd\xcd\xaf\xe3\xed\xdf\xb8\xbe\xb9" "\xfd\x9f\x84\xf2\xef\xfe\x23\x87\xda\x6e\xff\x46\x38\x0e\x3f\x0c\x73" "\xea\xa1\xe2\xe3\x11\x6f\xf7\xed\xf3\x77\xac\xdf\xfd\xa9\xc5\xf5\xe2" "\xed\x86\x36\x5e\x9b\x3f\xec\x97\x9e\x6c\xde\x6f\xfc\x9c\x9c\xaf\xbd" "\xd0\xdc\x3e\x1e\xe7\xa5\xf6\xff\x6f\xbf\xf2\xca\xb7\x1b\xdb\x3f\xf3" "\x81\xe2\xfd\x3f\x3b\x5c\xbc\xff\xaf\x84\xfb\x7d\x39\xcc\xff\xb9\xa5" "\xb9\x7d\xeb\x73\xd0\xf8\x3a\xde\xee\x4b\x61\xff\xe3\x7a\xf1\x76\x77" "\x7f\xeb\x7b\x85\xfb\x7f\xe1\xcb\xcd\xed\x4f\xdd\xdf\xdc\xee\x60\x98" "\x71\xfd\x2d\xe1\xeb\x4d\xf7\xbf\x39\xdb\x7a\xbc\x9e\x19\x3a\xd4\xf6" "\xb8\xb2\x8f\x35\xb7\x8b\xeb\x4f\x7d\xff\x0f\xf2\xeb\xe3\xfd\xc5\xfb" "\xef\xdc\xff\xb1\x03\xe7\xdb\x8e\x47\xe7\xf9\xf1\xda\xbf\x34\xef\x67" "\xb2\x63\xfb\x78\x79\x5c\x27\xfa\xeb\x8e\xf5\x1b\xf7\xd3\x7a\x7e\xc6" "\xf5\x5f\xf9\xfd\x83\x6d\xc7\xb9\x6c\xfd\x0b\x8f\xbc\x71\x4b\xe3\x7e" "\x3b\xd7\xbf\xb3\x63\xbb\x53\x4f\x6f\xcd\xd7\x5f\xbc\xbf\xf6\x4f\x6c" "\xfa\xd3\x2f\x7d\xb5\x70\xbd\xb8\x3f\xfb\xff\xf2\x54\xdb\xe3\xd9\xff" "\x70\x78\x1d\x87\xf5\x5f\x7a\x32\x9c\x8f\xe1\xfa\xff\xbd\xd0\xbc\xbf" "\xce\x4f\x57\x38\xf8\x70\xfb\xfb\x4f\xdc\xfe\x1b\x6b\xcf\xb6\x3d\x9e" "\xe8\x81\x9f\x36\xd7\xbf\xf0\xa1\xa3\xf9\x5c\x35\xb6\x7a\xcd\x55\x57" "\x5f\x73\xed\xb9\xf7\x37\x8e\x5d\x96\xbd\xfe\x68\xf3\xfe\xca\xd6\x3f" "\xfa\x67\x27\xdb\xf6\xff\x9b\x37\x36\x8f\x47\xbc\x3e\x76\xf4\x3b\xd7" "\x5f\x4a\x5c\xff\xf4\xe7\x27\x4e\x9c\x9c\x3b\x33\x3b\xdd\x72\x54\xf3" "\xcf\xce\xf9\x78\x73\x7f\xe2\xfe\x5e\x17\xde\x5b\x3b\xbf\x3e\x70\x72" "\xfe\xa9\x99\xd3\xe3\x53\xe3\x53\x59\x36\x5e\xdd\x8f\xd0\x7b\xc7\xbe" "\x15\xe6\x8f\x9b\xe3\xdc\xa5\xde\x7e\xeb\xe3\xe1\xf9\xbc\xf9\x8f\x5f" "\x5d\xb3\xf9\x9f\xbf\x12\x2f\xff\xd7\xc7\x9a\x97\x9f\x7f\xa8\xf9\x7d" "\xeb\xf6\xb0\xdd\xd7\xc2\xe5\x6b\xc3\xf3\x77\xb9\xeb\xbf\xb4\xe1\xc6" "\xfc\xf5\x3d\xf4\x5a\xf3\xeb\xb6\x1e\x7b\x0f\xac\xdf\xf4\x9f\x7b\x96" "\xb5\x61\x78\xfc\x9d\x3f\x17\xc4\xf3\xfd\xd4\xfb\x9e\xca\x8f\x43\xe3" "\xba\xfc\xfb\x46\x7c\x5d\x5f\xe6\xfe\xff\x60\xba\x79\x3f\xdf\x0d\xc7" "\x75\x21\x7c\x32\xf3\xc6\x1b\x17\xd7\x6b\xdd\x3e\x7e\x36\xc2\xf9\x47" "\x9b\xaf\xf7\xcb\x3e\x7e\xe1\x6d\x2e\x3e\xaf\x7f\x11\x9e\xef\x4f\xfc" "\xb0\x79\xff\x71\xbf\xe2\xe3\xfd\x41\xf8\x39\xe6\x7b\xeb\xda\xdf\xef" "\xe2\xf9\xf1\xdd\xb3\xc3\x9d\xf7\x9f\x7f\x8a\xc7\xb9\xf0\x7e\x92\x9d" "\x6b\x5e\x1f\xb7\x8a\xc7\xfb\xfc\x5b\x37\x16\xee\x5e\xfc\x1c\x92\xec" "\xdc\x4d\xf9\xd7\x7f\x98\xee\xe7\xa6\x4b\x7a\x98\x4b\x99\x7b\x76\x6e" "\xf2\xd8\xec\x89\x33\xcf\x4c\xce\xcf\xcc\xcd\x4f\xce\x3d\xfb\xdc\x81" "\xe3\x27\xcf\x9c\x98\x3f\x90\x7f\x96\xe7\x81\xcf\x94\xdd\x7e\xf1\xfd" "\x69\x4d\xfe\xfe\x34\x3d\xb3\x6b\x67\x96\xbf\x5b\x9d\x6c\x8e\x77\xd9" "\xcf\x7b\xff\x4f\x3d\x7e\x78\x7a\xf7\xd4\xe6\xe9\x99\x23\x87\xce\x1c" "\x99\x7f\xfc\xd4\xcc\xe9\xa3\x87\xe7\xe6\x0e\xcf\x4c\xcf\x6d\x3e\x74" "\xe4\xc8\xcc\xe7\xcb\x6e\x3f\x3b\xbd\x6f\xdb\xf6\xbd\x3b\x76\x6f\x9f" "\x38\x3a\x3b\xbd\x6f\xcf\xde\xbd\x3b\xf6\x4e\xcc\x9e\x38\xd9\xd8\x8d" "\xe6\x4e\x95\xd8\x35\xf5\xd9\x89\x13\xa7\x0f\xe4\x37\x99\xdb\xb7\x73" "\xef\xb6\x7b\xee\xd9\x39\x35\x71\xfc\xe4\xf4\xcc\xbe\xdd\x53\x53\x13" "\x67\xca\x6e\x9f\x7f\x6f\x9a\x68\xdc\xfa\x73\x13\xa7\x67\x8e\x1d\x9a" "\x9f\x3d\x3e\x33\x31\x37\xfb\xdc\xcc\xbe\x6d\x7b\x77\xed\xda\x5e\xfa" "\x69\x80\xc7\x4f\x1d\x99\x1b\x9f\x3c\x7d\xe6\xc4\xe4\x99\xb9\x99\xd3" "\x93\xcd\xc7\x32\x3e\x9f\x5f\xdc\xf8\xde\x57\x76\x7b\xaa\x69\xee\xdf" "\x9b\x3f\xcf\x76\x1a\x6a\x7e\x10\x5f\xf6\xc9\x3b\x77\xa5\xcf\x67\x6d" "\x78\xf9\x0b\x4b\xde\x55\x73\x93\x8e\x0f\x10\x7d\x33\x7c\x16\xcd\x3f" "\xbe\xe7\xd4\x9e\xe5\x7c\x1d\x73\xff\x68\x98\x49\x4d\xf2\x3f\x00\x00" "\x00\xd4\x41\xcc\xfd\x2b\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb" "\x57\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x8f\x85\x99\xd4\x24" "\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x17\xaf\xaf\xff\x3f\x98" "\xf4\xff\xbb\xd3\xff\x2f\xa1\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x4f\xf5" "\x5b\xff\x3f\xe6\xfe\xd5\x59\x56\xcb\xfc\x0f\x00\x00\x00\x75\x10\x73" "\xff\x9a\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xab\xc2\x4c\xe4" "\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xaf\x0e\x33\xa9\x49\xfe\xd7\xff\xd7" "\xff\xd7\xff\xd7\xff\xd7\xff\x2f\x5e\x5f\xff\x7f\x30\xe9\xff\x77\xa7" "\xff\x5f\x42\xff\x5f\xff\x5f\xff\x5f\xff\x9f\x9e\xea\xb7\xfe\x7f\xcc" "\xfd\xd7\x84\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\x7f\x6d\x98" "\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x75\x61\x26\xf2\x3f\x00\x00" "\x00\x54\x46\xcc\xfd\x6b\xc3\x4c\x6a\x92\xff\xf5\xff\xf5\xff\xf5\xff" "\xf5\xff\xf5\xff\x8b\xd7\xd7\xff\x1f\x4c\xfa\xff\xdd\xe9\xff\x97\xd0" "\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xa7\xfa\xad\xff\x1f\x73\xff\x7b\xc2" "\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62\xee\x7f\x6f\x98\x89\xfc\x0f" "\x00\x00\x00\x95\x11\x73\xff\xf5\x61\x26\xf2\x3f\x00\x00\x00\x54\x46" "\xcc\xfd\x37\x84\x99\xd4\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb" "\xff\x17\xaf\xaf\xff\x3f\x98\xf4\xff\xbb\xd3\xff\x2f\xa1\xff\xaf\xff" "\xaf\xff\xaf\xff\x4f\x4f\xf5\x5b\xff\x3f\xe6\xfe\xf7\x85\x99\xd4\x24" "\xff\x03\x00\x00\x40\x1d\xc4\xdc\x7f\x63\x98\x89\xfc\x0f\x00\x00\x00" "\x95\x11\x73\xff\x2f\x84\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xaf" "\x0b\x33\xa9\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x2f\x5e" "\x5f\xff\x7f\x30\xe9\xff\x77\xa7\xff\x5f\x42\xff\x5f\xff\x5f\xff\x5f" "\xff\x9f\x9e\xea\xb7\xfe\x7f\xcc\xfd\x37\x85\x99\xd4\x24\xff\x03\x00" "\x00\x40\x1d\xc4\xdc\x7f\x73\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73" "\xff\x2f\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xaf\x0f\x33\xa9" "\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x2f\x5e\x5f\xff\x7f" "\x30\xe9\xff\x77\xa7\xff\x5f\x42\xff\x5f\xff\x5f\xff\x5f\xff\x9f\x9e" "\xea\xb7\xfe\x7f\xcc\xfd\xb7\x84\x99\xd4\x24\xff\x03\x00\x00\x40\x1d" "\xc4\xdc\x7f\x6b\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xfb\xc3" "\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xc7\xc3\x4c\x6a\x92\xff\xf5" "\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x8b\xd7\xd7\xff\x1f\x4c\xfa\xff" "\xdd\xe9\xff\x97\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xa7\xfa\xad\xff" "\x1f\x73\xff\x86\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\x37" "\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xdf\x16\x66\x22\xff\x03" "\x00\x00\x40\x65\xc4\xdc\xbf\x29\xcc\xa4\x26\xf9\x5f\xff\x5f\xff\x5f" "\xff\x5f\xff\x5f\xff\xbf\x78\x7d\xfd\xff\xc1\xa4\xff\xdf\x9d\xfe\x7f" "\x09\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x7a\xaa\xdf\xfa\xff\x31\xf7\x7f" "\x20\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\xcd\x61\x26\xf2" "\x3f\x00\x00\x00\x54\x46\xcc\xfd\xb7\x87\x99\xc8\xff\x00\x00\x00\x50" "\x19\x31\xf7\x6f\x09\x33\xa9\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff" "\xd7\xff\x2f\x5e\x5f\xff\x7f\x30\xe9\xff\x77\xa7\xff\x5f\x42\xff\x5f" "\xff\x5f\xff\x5f\xff\x9f\x9e\xea\xb7\xfe\x7f\xcc\xfd\x77\x84\x99\xd4" "\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\xbf\x35\xcc\x44\xfe\x07\x00\x00" "\x80\xca\x88\xb9\xff\xce\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe" "\x89\x30\x93\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xe2" "\xf5\xf5\xff\x07\x93\xfe\x7f\x77\xfa\xff\x25\xf4\xff\xf5\xff\xf5\xff" "\xf5\xff\xe9\xa9\x7e\xeb\xff\xc7\xdc\x7f\x57\x98\x49\x4d\xf2\x3f\x00" "\x00\x00\xd4\x41\xcc\xfd\x77\x87\x99\xc8\xff\x00\x00\x00\x50\x19\x31" "\xf7\x4f\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x4f\x85\x99\xd4" "\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x17\xaf\xaf\xff\x3f" "\x98\xf4\xff\xbb\xd3\xff\x2f\xa1\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x4f" "\xf5\x5b\xff\x3f\xe6\xfe\x6d\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07" "\x31\xf7\x6f\x0f\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xdf\x11\x66" "\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x33\xcc\xa4\x26\xf9\x5f\xff" "\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x78\x7d\xfd\xff\xc1\xa4\xff\xdf" "\x9d\xfe\x7f\x09\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x7a\xaa\xdf\xfa\xff" "\x31\xf7\xdf\x13\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73\xff\xae" "\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xdd\x61\x26\xf2\x3f\x00" "\x00\x00\x54\x46\xcc\xfd\x7b\xc2\x4c\x6a\x92\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\xf5\xff\x8b\xd7\xd7\xff\x1f\x4c\xfa\xff\xdd\xe9\xff\x97" "\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xa7\xfa\xad\xff\x1f\x73\xff\xde" "\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\x3f\x18\x66\x22\xff" "\x03\x00\x00\x40\x65\xc4\xdc\xff\x4b\x61\x26\xf2\x3f\x00\x00\x00\x54" "\x46\xcc\xfd\xbf\x1c\x66\x52\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff" "\xaf\xff\x5f\xbc\xbe\xfe\xff\x60\xd2\xff\xef\x4e\xff\xbf\x84\xfe\xbf" "\xfe\xbf\xfe\xbf\xfe\x3f\x3d\xd5\x6f\xfd\xff\x98\xfb\xf7\x85\x99\xd4" "\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\xff\x2b\x61\x26\xf2\x3f\x00\x00" "\x00\x54\x46\xcc\xfd\x1f\x0a\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee" "\xdf\x1f\x66\x52\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x5f" "\xbc\xbe\xfe\xff\x60\xd2\xff\xef\x4e\xff\xbf\x84\xfe\xbf\xfe\xbf\xfe" "\xbf\xfe\x3f\x3d\xd5\x6f\xfd\xff\x98\xfb\x3f\x1c\x66\x52\x93\xfc\x0f" "\x00\x00\x00\x75\x10\x73\xff\xbd\x61\x26\xf2\x3f\x00\x00\x00\x54\x46" "\xcc\xfd\x1f\x09\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xbf\x2f\xcc" "\xa4\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x78\x7d\xfd" "\xff\xc1\xa4\xff\xdf\x9d\xfe\x7f\x09\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f" "\x7a\xaa\xdf\xfa\xff\x31\xf7\x7f\x34\xcc\xa4\x26\xf9\x1f\x00\x00\x00" "\xea\x20\xe6\xfe\xfb\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x3f" "\x16\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\x40\x98\x49\x4d\xf2" "\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xf1\xfa\xfa\xff\x83\x49" "\xff\xbf\x3b\xfd\xff\x12\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xf4\x54\xbf" "\xf5\xff\x63\xee\xff\xd5\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98" "\xfb\x1f\x0c\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x7f\x28\xcc\x44" "\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xe3\x61\x26\x35\xc9\xff\xfa\xff" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xc5\xeb\xeb\xff\x0f\x26\xfd\xff\xee" "\xf4\xff\x4b\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x53\xfd\xd6\xff\x8f" "\xb9\xff\x13\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\xff\x5a" "\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x27\xc3\x4c\xe4\x7f\x00" "\x00\x00\xa8\x8c\x98\xfb\x7f\x3d\xcc\xa4\x26\xf9\x5f\xff\x5f\xff\x5f" "\xff\x5f\xff\x5f\xff\xbf\x78\x7d\xfd\xff\xc1\xa4\xff\xdf\x9d\xfe\x7f" "\x09\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x7a\xaa\xdf\xfa\xff\x31\xf7\x3f" "\x1c\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73\xff\x23\x61\x26\xf2" "\x3f\x00\x00\x00\x54\x46\xcc\xfd\x8f\x86\x99\xc8\xff\x00\x00\x00\x50" "\x19\x31\xf7\x3f\x16\x66\x52\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff" "\xaf\xff\x5f\xbc\xbe\xfe\xff\x60\xd2\xff\xef\x4e\xff\xbf\x84\xfe\xbf" "\xfe\xbf\xfe\xbf\xfe\x3f\x3d\xd5\x6f\xfd\xff\x98\xfb\x1f\x0f\x33\xa9" "\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\xff\x53\x61\x26\xf2\x3f\x00\x00" "\x00\x54\x46\xcc\xfd\xbf\x11\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc" "\xff\xe9\x30\x93\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff" "\xe2\xf5\xf5\xff\x07\x93\xfe\x7f\x77\xfa\xff\x25\xf4\xff\xf5\xff\xf5" "\xff\xf5\xff\xe9\xa9\x7e\xeb\xff\xc7\xdc\xff\x44\x98\x49\x4d\xf2\x3f" "\x00\x00\x00\xd4\x41\xcc\xfd\xbf\x19\x66\x22\xff\x03\x00\x00\x40\x65" "\xc4\xdc\xff\x5b\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xbf\x1d" "\x66\x52\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x5f\xbc\xbe" "\xfe\xff\x60\xd2\xff\xef\x4e\xff\xbf\x84\xfe\xbf\xfe\xbf\xfe\xbf\xfe" "\x3f\x3d\xd5\x6f\xfd\xff\x98\xfb\x7f\x27\xcc\xa4\x26\xf9\x1f\x00\x00" "\x00\xea\x20\xe6\xfe\x27\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb" "\x0f\x84\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x1f\x0c\x33\xa9\x49" "\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x2f\x5e\x5f\xff\x7f\x30" "\xe9\xff\x77\xa7\xff\x5f\x42\xff\x5f\xff\x5f\xff\x5f\xff\x9f\x9e\xea" "\xb7\xfe\x7f\xcc\xfd\x87\xc2\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62" "\xee\xff\xdd\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xc3\x61\x26" "\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xd3\x61\x26\x35\xc9\xff\xfa\xff" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xc5\xeb\xeb\xff\x0f\x26\xfd\xff\xee" "\xf4\xff\x4b\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x53\xfd\xd6\xff\x8f" "\xb9\x7f\x26\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\x23\x61" "\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x47\xc3\x4c\xe4\x7f\x00\x00" "\x00\xa8\x8c\x98\xfb\x9f\x0a\x33\xa9\x49\xfe\xd7\xff\xd7\xff\xd7\xff" "\xd7\xff\xd7\xff\x2f\x5e\x5f\xff\x7f\x30\xe9\xff\x77\xa7\xff\x5f\x42" "\xff\x5f\xff\x5f\xff\x5f\xff\x9f\x9e\xea\xb7\xfe\x7f\xcc\xfd\xb3\x61" "\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\x7f\x26\xcc\x44\xfe\x07" "\x00\x00\x80\xca\x88\xb9\xff\xb3\x61\x26\xf2\x3f\x00\x00\x00\x54\x46" "\xcc\xfd\xc7\xc2\x4c\x6a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5" "\xff\x8b\xd7\xd7\xff\x1f\x4c\xfa\xff\xdd\xe9\xff\x97\xd0\xff\xd7\xff" "\xd7\xff\xd7\xff\xa7\xa7\xfa\xad\xff\x1f\x73\xff\xf1\x30\x93\x9a\xe4" "\x7f\x00\x00\x00\xa8\x83\x98\xfb\x4f\x84\x99\xc8\xff\x00\x00\x00\x50" "\x19\x31\xf7\x9f\x0c\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x3f\x15" "\x66\x52\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x5f\xbc\xbe" "\xfe\xff\x60\xd2\xff\xef\x4e\xff\xbf\x84\xfe\xbf\xfe\xbf\xfe\xbf\xfe" "\x3f\x3d\xd5\x6f\xfd\xff\x98\xfb\x9f\x0e\x33\xa9\x49\xfe\x07\x00\x00" "\x80\x3a\x88\xb9\xff\x74\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff" "\x5c\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x7c\x98\x49\x4d\xf2" "\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xf1\xfa\xfa\xff\x83\x49" "\xff\xbf\x3b\xfd\xff\x12\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xf4\x54\xbf" "\xf5\xff\x63\xee\x3f\x13\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73" "\xff\xe7\xc2\x4c\xe4\x7f\x00\x7e\xc6\xbe\x3d\xab\x01\xb0\xee\x60\x18" "\xbd\xec\x63\xdb\xb6\x6d\xdb\xb6\x6d\x9f\x6d\x9b\xc5\x6e\x92\x54\xf3" "\xcc\x34\x53\xcc\x9f\xac\xd5\xa4\x4c\xfd\x15\x2f\x00\x00\x6d\xe4\xee" "\x7f\x52\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\x9f\x1c\xb7\x0c\xd9" "\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf\xfe\xaf\xff\x5f\x93\xfe" "\x7f\x9f\xfe\xff\x80\xfe\x5f\xff\xaf\xff\xd7\xff\x73\xaa\xab\xf5\xff" "\xb9\xfb\x9f\x12\xb7\x0c\xd9\xff\x00\x00\x00\x30\x41\xee\xfe\xa7\xc6" "\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x69\x71\x8b\xfd\x0f\x00\x00" "\x00\x6d\xe4\xee\x7f\x7a\xdc\x32\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd" "\xbf\xfe\x7f\xfb\xbf\xfe\x7f\x4d\xfa\xff\x7d\xfa\xff\x03\xfa\x7f\xfd" "\xbf\xfe\x5f\xff\xcf\xa9\xae\xd6\xff\xe7\xee\x7f\x46\xdc\x32\x64\xff" "\x03\x00\x00\xc0\x04\xb9\xfb\x9f\x19\xb7\xd8\xff\x00\x00\x00\xd0\x46" "\xee\xfe\x67\xc5\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\xd9\x71\xcb" "\x90\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xed\xff\xfa\xff\x35" "\xe9\xff\xf7\xe9\xff\x0f\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\xa7\xba\x5a" "\xff\x9f\xbb\xff\x39\x71\xcb\x90\xfd\x0f\x00\x00\x00\x13\xe4\xee\x7f" "\x6e\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\x9f\x17\xb7\xd8\xff\x00" "\x00\x00\xd0\x46\xee\xfe\xe7\xc7\x2d\x43\xf6\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\xeb\xff\xb7\xff\xeb\xff\xd7\xa4\xff\xdf\xa7\xff\x3f\xa0\xff" "\xd7\xff\xeb\xff\xf5\xff\x9c\xea\x6a\xfd\x7f\xee\xfe\x17\xc4\x2d\x43" "\xf6\x3f\x00\x00\x00\x4c\x90\xbb\xff\x85\x71\x8b\xfd\x0f\x00\x00\x00" "\x6d\xe4\xee\x7f\x51\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\x5f\x1c" "\xb7\x0c\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf\xfe\xaf\xff" "\x5f\x93\xfe\x7f\x9f\xfe\xff\x80\xfe\x5f\xff\xaf\xff\xd7\xff\x73\xaa" "\xab\xf5\xff\xb9\xfb\x5f\x12\xb7\x0c\xd9\xff\x00\x00\x00\x30\x41\xee" "\xfe\x97\xc6\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x65\x71\x8b\xfd" "\x0f\x00\x00\x00\x6d\xe4\xee\x7f\x79\xdc\x32\x64\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xfe\x7f\xfb\xbf\xfe\x7f\x4d\xfa\xff\x7d\xfa\xff\x03" "\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xa9\xae\xd6\xff\xe7\xee\x7f\x45\xdc" "\x32\x64\xff\x03\x00\x00\xc0\x04\xb9\xfb\x5f\x19\xb7\xd8\xff\x00\x00" "\x00\xd0\x46\xee\xfe\x57\xc5\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff" "\xd5\x71\xcb\x90\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xed\xff" "\xfa\xff\x35\xe9\xff\xf7\xe9\xff\x0f\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f" "\xa7\xba\x5a\xff\x9f\xbb\xff\x35\x71\xcb\x90\xfd\x0f\x00\x00\x00\x13" "\xe4\xee\x7f\x6d\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\x5f\x17\xb7" "\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\xd7\xc7\x2d\x43\xf6\xbf\xfe\x5f" "\xff\xaf\xff\xd7\xff\xeb\xff\xb7\xff\xeb\xff\xd7\xa4\xff\xdf\xa7\xff" "\x3f\xa0\xff\xd7\xff\xeb\xff\xf5\xff\x9c\xea\x6a\xfd\x7f\xee\xfe\x37" "\xc4\x2d\x43\xf6\x3f\x00\x00\x00\x4c\x90\xbb\xff\x8d\x71\x8b\xfd\x0f" "\x00\x00\x00\x6d\xe4\xee\x7f\x53\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9" "\xfb\xdf\x1c\xb7\x0c\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf" "\xfe\xaf\xff\x5f\x93\xfe\x7f\x9f\xfe\xff\x80\xfe\x5f\xff\xaf\xff\xd7" "\xff\x73\xaa\xab\xf5\xff\xb9\xfb\xdf\x12\xb7\x0c\xd9\xff\x00\x00\x00" "\x30\x41\xee\xfe\xb7\xc6\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x6d" "\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\x7f\x7b\xdc\x32\x64\xff\xeb" "\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xfb\xbf\xfe\x7f\x4d\xfa\xff\x7d" "\xfa\xff\x03\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xa9\xae\xd6\xff\xe7\xee" "\x7f\x47\xdc\x32\x64\xff\x03\x00\x00\xc0\x04\xb9\xfb\xdf\x19\xb7\xd8" "\xff\x00\x00\x00\xd0\x46\xee\xfe\x77\xc5\x2d\xf6\x3f\x00\x00\x00\xb4" "\x91\xbb\xff\xdd\x71\xcb\x90\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa" "\xff\xed\xff\xfa\xff\x35\xe9\xff\xf7\xe9\xff\x0f\xe8\xff\xf5\xff\xfa" "\x7f\xfd\x3f\xa7\xba\x5a\xff\x9f\xbb\xff\x3d\x71\xcb\x90\xfd\x0f\x00" "\x00\x00\x13\xe4\xee\x7f\x6f\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb" "\xdf\x17\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\xf7\xc7\x2d\x43\xf6" "\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xb7\xff\xeb\xff\xd7\xa4\xff" "\xdf\xa7\xff\x3f\xa0\xff\xd7\xff\xeb\xff\xf5\xff\x9c\xea\x6a\xfd\x7f" "\xee\xfe\x0f\xc4\x2d\x43\xf6\x3f\x00\x00\x00\x4c\x90\xbb\xff\x83\x71" "\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\xff\x50\xdc\x62\xff\x03\x00\x00" "\x40\x1b\xb9\xfb\x3f\x1c\xb7\x0c\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\xaf\xff\xdf\xfe\xaf\xff\x5f\x93\xfe\x7f\x9f\xfe\xff\x80\xfe\x5f\xff" "\xaf\xff\xd7\xff\x73\xaa\xab\xf5\xff\xb9\xfb\x3f\x12\xb7\x0c\xd9\xff" "\x00\x00\x00\x30\x41\xee\xfe\x8f\xc6\x2d\xf6\x3f\x00\x00\x00\xb4\x91" "\xbb\xff\x63\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\xff\x78\xdc\x32" "\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xfb\xbf\xfe\x7f\x4d" "\xfa\xff\x7d\xfa\xff\x03\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xa9\xae\xd6" "\xff\xe7\xee\xff\x44\xdc\x32\x64\xff\x03\x00\x00\xc0\x04\xb9\xfb\x3f" "\x19\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\x4f\xc5\x2d\xf6\x3f\x00" "\x00\x00\xb4\x91\xbb\xff\xd3\x71\xcb\x90\xfd\xaf\xff\xd7\xff\xeb\xff" "\xf5\xff\xfa\xff\xed\xff\xfa\xff\x35\xe9\xff\xf7\xe9\xff\x0f\xe8\xff" "\xf5\xff\xfa\x7f\xfd\x3f\xa7\xba\x5a\xff\x9f\xbb\xff\x33\x71\xcb\x90" "\xfd\x0f\x00\x00\x00\x13\xe4\xee\xff\x6c\xdc\x62\xff\x03\x00\x00\x40" "\x1b\xb9\xfb\x3f\x17\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\xcf\xc7" "\x2d\x43\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xb7\xff\xeb\xff" "\xd7\xa4\xff\xdf\xa7\xff\x3f\xa0\xff\xd7\xff\xeb\xff\xf5\xff\x9c\xea" "\x6a\xfd\x7f\xee\xfe\x2f\xc4\x2d\x43\xf6\x3f\x00\x00\x00\x4c\x90\xbb" "\xff\x8b\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\xff\x52\xdc\x62\xff" "\x03\x00\x00\x40\x1b\xb9\xfb\xbf\x1c\xb7\x0c\xd9\xff\xfa\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\xdf\xfe\xaf\xff\x5f\x93\xfe\x7f\x9f\xfe\xff\x80" "\xfe\x5f\xff\xaf\xff\xd7\xff\x73\xaa\xab\xf5\xff\xb9\xfb\xbf\x12\xb7" "\x0c\xd9\xff\x00\x00\x00\x30\x41\xee\xfe\xaf\xc6\x2d\xf6\x3f\x00\x00" "\x00\xb4\x91\xbb\xff\x6b\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\xff" "\x7a\xdc\x32\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xfb\xbf" "\xfe\x7f\x4d\xfa\xff\x7d\xfa\xff\x03\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf" "\xa9\xae\xd6\xff\xe7\xee\xff\x46\xdc\x32\x64\xff\x03\x00\x00\xc0\x04" "\xb9\xfb\xbf\x19\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\x6f\xc5\x2d" "\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\xdb\x71\xcb\x90\xfd\xaf\xff\xd7" "\xff\xeb\xff\xf5\xff\xfa\xff\xed\xff\xfa\xff\x35\xe9\xff\xf7\xe9\xff" "\x0f\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\xa7\xba\x5a\xff\x9f\xbb\xff\x3b" "\x71\xcb\x90\xfd\x0f\x00\x00\x00\x13\xe4\xee\xff\x6e\xdc\x62\xff\x03" "\x00\x00\x40\x1b\xb9\xfb\xbf\x17\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee" "\xfe\xef\xc7\x2d\x43\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xb7" "\xff\xeb\xff\xd7\xa4\xff\xdf\xa7\xff\x3f\xa0\xff\xd7\xff\xeb\xff\xf5" "\xff\x9c\xea\x6a\xfd\x7f\xee\xfe\x1f\xc4\x2d\x43\xf6\x3f\x00\x00\x00" "\x4c\x90\xbb\xff\x87\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\xff\x51" "\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\x7f\x1c\xb7\x0c\xd9\xff\xfa" "\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf\xfe\xaf\xff\x5f\x93\xfe\x7f\x9f" "\xfe\xff\x80\xfe\x5f\xff\xaf\xff\xd7\xff\x73\xaa\xab\xf5\xff\xb9\xfb" "\x7f\x12\xb7\x0c\xd9\xff\x00\x00\x00\x30\x41\xee\xfe\x9f\xc6\x2d\xf6" "\x3f\x00\x00\x00\xb4\x91\xbb\xff\x67\x71\x8b\xfd\x0f\x00\x00\x00\x6d" "\xe4\xee\xff\x79\xdc\x32\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\x7f\xfb\xbf\xfe\x7f\x4d\xfa\xff\x7d\xfa\xff\x03\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\xcf\xa9\xae\xd6\xff\xe7\xee\xff\x45\xdc\x32\x64\xff\x03\x00" "\x00\xc0\x04\xb9\xfb\x7f\x19\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe" "\x5f\xc5\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\xd7\x71\xcb\x90\xfd" "\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xed\xff\xfa\xff\x35\xe9\xff" "\xf7\xe9\xff\x0f\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\xa7\xba\x5a\xff\x9f" "\xbb\xff\x37\x71\xcb\x90\xfd\x0f\x00\x00\x00\x13\xe4\xee\xff\x6d\xdc" "\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\x7f\x17\xb7\xd8\xff\x00\x00\x00" "\xd0\x46\xee\xfe\xdf\xc7\x2d\x43\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff" "\xeb\xff\xb7\xff\xeb\xff\xd7\xa4\xff\xdf\xa7\xff\x3f\xa0\xff\xd7\xff" "\xeb\xff\xf5\xff\x9c\xea\x6a\xfd\x7f\xee\xfe\x3f\xc4\x2d\x43\xf6\x3f" "\x00\x00\x00\x4c\x90\xbb\xff\x8f\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4" "\xee\xff\x53\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\xff\x1c\xb7\x0c" "\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf\xfe\xaf\xff\x5f\x93" "\xfe\x7f\x9f\xfe\xff\x80\xfe\x5f\xff\xaf\xff\xd7\xff\x73\xaa\xab\xf5" "\xff\xb9\xfb\xff\x12\xb7\x0c\xd9\xff\x00\x00\x00\x30\x41\xee\xfe\xbf" "\xc6\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x6f\x71\x8b\xfd\x0f\x00" "\x00\x00\x6d\xe4\xee\xff\x7b\xdc\x32\x64\xff\xeb\xff\xf5\xff\xfa\x7f" "\xfd\xbf\xfe\x7f\xfb\xbf\xfe\x7f\x4d\xfa\xff\x7d\xfa\xff\x03\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\xcf\xa9\xae\xd6\xff\xe7\xee\xff\x47\xdc\x32\x64" "\xff\x03\x00\x00\xc0\x04\xb9\xfb\xff\x19\xb7\xd8\xff\x00\x00\x00\xd0" "\x46\xee\xfe\x7f\xc5\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\xdf\x71" "\xcb\x90\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xed\xff\xfa\xff" "\x35\xe9\xff\xf7\xe9\xff\x0f\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\xa7\xba" "\x5a\xff\x9f\xbb\xff\x3f\x71\xcb\x90\xfd\x0f\x00\x00\x00\x13\xe4\xee" "\xff\x6f\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\xff\x17\xb7\xd8\xff" "\x00\x00\x00\xd0\x46\xee\xfe\xff\xc7\x2d\x43\xf6\xbf\xfe\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\xb7\xff\xeb\xff\xd7\xa4\xff\xdf\xa7\xff\x3f\xa0" "\xff\xd7\xff\xeb\xff\xf5\xff\x9c\xea\x6a\xfd\x7f\xee\xfe\x1b\xe2\x96" "\x21\xfb\x1f\x00\x00\x00\x26\xc8\xdd\x7f\x63\xdc\x62\xff\x03\x00\x00" "\x40\x1b\xb9\xfb\x6f\x8a\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\xcd" "\x71\xcb\x90\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xed\xff\xfa" "\xff\x35\xe9\xff\xf7\xe9\xff\x0f\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\xa7" "\xba\x5a\xff\x9f\xbb\xff\x96\xb8\x65\xc8\xfe\x07\x00\x00\x80\x09\x72" "\xf7\xdf\x1a\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\xdb\xe2\x16\xfb" "\x1f\x00\x00\x00\xda\xc8\xdd\x7f\x7b\xdc\x32\x64\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xfe\x7f\xfb\xbf\xfe\x7f\x4d\xfa\xff\x7d\xfa\xff\x03" "\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xa9\xae\xd6\xff\xe7\xee\xbf\x23\x6e" "\x19\xb2\xff\x01\x00\x00\x60\x82\xdc\xfd\x77\xc6\x2d\xf6\x3f\x00\x00" "\x00\xb4\x91\xbb\xff\xae\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\xdf" "\x1d\xb7\x0c\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf\xfe\xaf" "\xff\x5f\x93\xfe\x7f\x9f\xfe\xff\x80\xfe\x5f\xff\xaf\xff\xd7\xff\x73" "\xaa\xab\xf5\xff\xb9\xfb\xef\x89\x5b\x86\xec\x7f\x00\x00\x00\x98\x20" "\x77\xff\xbd\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\xbf\x2f\x6e\xb1" "\xff\x01\x00\x00\xa0\x8d\xdc\xfd\xf7\xc7\x2d\x43\xf6\xbf\xfe\x5f\xff" "\xaf\xff\xd7\xff\xeb\xff\xb7\xff\xeb\xff\xd7\xa4\xff\xdf\xa7\xff\x3f" "\xa0\xff\xd7\xff\xeb\xff\xf5\xff\x9c\xea\x6a\xfd\x7f\xee\xfe\x07\xe2" "\x96\x21\xfb\x1f\x00\x00\x00\x26\xc8\xdd\xff\x60\xdc\x62\xff\x03\x00" "\x00\x40\x1b\xb9\xfb\x1f\x8a\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff" "\xc3\x71\xcb\x90\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xed\xff" "\xfa\xff\x35\xe9\xff\xf7\xe9\xff\x0f\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f" "\xa7\xba\x5a\xff\x9f\xbb\xff\x91\xb8\x65\xc8\xfe\x07\x00\x00\x80\x09" "\x72\xf7\x3f\x1a\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\xc7\xe2\x16" "\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\x78\xdc\x32\x64\xff\xeb\xff\xf5" "\xff\xfa\x7f\xfd\xbf\xfe\x7f\xfb\xbf\xfe\x7f\x4d\xfa\xff\x7d\xfa\xff" "\x03\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xa9\xae\xd6\xff\xe7\xee\x7f\x22" "\x00\x00\xff\xff\xc3\xb6\x7d\xad", 24012); syz_mount_image(0x20005e00, 0x20000080, 1, 0x20000140, 1, 0x5dcc, 0x20005ec0); break; case 1: memcpy((void*)0x200000c0, "./file0/file0/file0\000", 20); syscall(__NR_openat, 0xffffffffffffff9cul, 0x200000c0ul, 0x101800ul, 0x59ul); break; case 2: memcpy((void*)0x20000000, ".\000", 2); res = syscall(__NR_fspick, 0xffffff9c, 0x20000000ul, 0ul); if (res != -1) r[0] = res; break; case 3: syscall(__NR_fsconfig, r[0], 7ul, 0ul, 0ul, 0ul); break; } } int main(void) { syscall(__NR_mmap, 0x1ffff000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 7ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x21000000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); setup_sysctl(); use_temporary_dir(); loop(); return 0; }