// https://syzkaller.appspot.com/bug?id=6aa3f212fbd814aa1ff554012252888813baa7e0 // 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_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static 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) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); } static void setup_sysctl() { int cad_pid = fork(); if (cad_pid < 0) exit(1); if (cad_pid == 0) { for (;;) sleep(100); } char tmppid[32]; snprintf(tmppid, sizeof(tmppid), "%d", cad_pid); struct { const char* name; const char* data; } files[] = { {"/sys/kernel/debug/x86/nmi_longest_ns", "10000000000"}, {"/proc/sys/kernel/hung_task_check_interval_secs", "20"}, {"/proc/sys/net/core/bpf_jit_kallsyms", "1"}, {"/proc/sys/net/core/bpf_jit_harden", "0"}, {"/proc/sys/kernel/kptr_restrict", "0"}, {"/proc/sys/kernel/softlockup_all_cpu_backtrace", "1"}, {"/proc/sys/fs/mount-max", "100"}, {"/proc/sys/vm/oom_dump_tasks", "0"}, {"/proc/sys/debug/exception-trace", "0"}, {"/proc/sys/kernel/printk", "7 4 1 3"}, {"/proc/sys/kernel/keys/gc_delay", "1"}, {"/proc/sys/vm/oom_kill_allocating_task", "1"}, {"/proc/sys/kernel/ctrl-alt-del", "0"}, {"/proc/sys/kernel/cad_pid", tmppid}, }; for (size_t i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].name, files[i].data)) { } } kill(cad_pid, SIGKILL); while (waitpid(cad_pid, NULL, 0) != cad_pid) ; } 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) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 5; 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); 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++) { reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } uint64_t r[1] = {0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: // syz_mount_image$bcachefs arguments: [ // fs: ptr[in, buffer] { // buffer: {62 63 61 63 68 65 66 73 00} (length 0x9) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x0 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {d8 4c ac cd 28 3c ae 37 73 64 5b c9 12 2b de // 15 bd 9d b5 3f 0c 72 36 38 4c de c5 82 71 12 fc 15 78 b7 ab 6b // fc b6 6e 6d 14 39 88 7c 85 ca 49 78 84 78 53 8b b6 4d 8f 64 6b // e2 9d aa 14 76 ba 6d d9 f8 24 42 6a 56 52 6c ca 87 54 b5 3d 02 // 6a 49 85 9f 3d f6 74 99 ea 19 11 91 45 96 4c a8 bc ca 5e 01 25 // bf 92 55 34 76 d5 a2 0c 2a be 83 c4 a9 09 fa c5 a6 3a f6 95 c9 // 1b 0d 84 7c e0 b4 3a a8 bb c5 ab 9b b9 13 6b b6 7e 0e 0c 73 51 // 93 48 72 37 fa 20 4c 89 c8 b0 58 0e 85 a9} (length 0x9b) // } // union ANYUNION { // ANYRES8: ANYRES8 (resource) // } // union ANYUNION { // ANYRES16: ANYRES16 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {4b eb 68 6d 7e 19 87 09} (length 0x8) // } // union ANYUNION { // ANYRES16: ANYRES16 (resource) // } // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x59e0 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x59e0) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x200000000000, "bcachefs\000", 9)); NONFAILING(memcpy((void*)0x200000005a00, "./file0\000", 8)); NONFAILING(memcpy( (void*)0x200000000380, "\xd8\x4c\xac\xcd\x28\x3c\xae\x37\x73\x64\x5b\xc9\x12\x2b\xde\x15\xbd" "\x9d\xb5\x3f\x0c\x72\x36\x38\x4c\xde\xc5\x82\x71\x12\xfc\x15\x78\xb7" "\xab\x6b\xfc\xb6\x6e\x6d\x14\x39\x88\x7c\x85\xca\x49\x78\x84\x78\x53" "\x8b\xb6\x4d\x8f\x64\x6b\xe2\x9d\xaa\x14\x76\xba\x6d\xd9\xf8\x24\x42" "\x6a\x56\x52\x6c\xca\x87\x54\xb5\x3d\x02\x6a\x49\x85\x9f\x3d\xf6\x74" "\x99\xea\x19\x11\x91\x45\x96\x4c\xa8\xbc\xca\x5e\x01\x25\xbf\x92\x55" "\x34\x76\xd5\xa2\x0c\x2a\xbe\x83\xc4\xa9\x09\xfa\xc5\xa6\x3a\xf6\x95" "\xc9\x1b\x0d\x84\x7c\xe0\xb4\x3a\xa8\xbb\xc5\xab\x9b\xb9\x13\x6b\xb6" "\x7e\x0e\x0c\x73\x51\x93\x48\x72\x37\xfa\x20\x4c\x89\xc8\xb0\x58\x0e" "\x85\xa9", 155)); NONFAILING(*(uint8_t*)0x20000000041b = 0); NONFAILING(*(uint16_t*)0x20000000041c = -1); NONFAILING( memcpy((void*)0x20000000041e, "\x4b\xeb\x68\x6d\x7e\x19\x87\x09", 8)); NONFAILING(*(uint16_t*)0x200000000426 = -1); NONFAILING(memcpy( (void*)0x20000000b440, "\x78\x9c\xec\xdd\x0d\x90\x5c\x55\x9d\x28\xf0\x7b\x7b\x7a\x32\x9d\x99" "\x7c\xcc\x24\x0a\x43\xa2\x64\xf8\x28\x0c\xf5\xc8\x90\x90\xa7\xc4\x07" "\x3e\x52\xf0\xa8\xf2\xf9\x20\xc4\x27\x82\x20\xcf\x10\x65\x82\x91\x21" "\xc1\x64\x24\x09\xf8\x20\x08\x22\x16\x88\x14\xf8\xde\x52\x45\x2d\xc6" "\xda\x2d\x13\x59\xa5\xe2\xc7\xae\xb5\xf8\xc1\x50\x2c\x58\x98\x05\x49" "\xa1\x5b\x15\x2c\x96\x8f\x92\x62\x97\x45\x70\xd7\x82\x45\x16\x99\xad" "\xee\xbe\xa7\xa7\xe7\x4e\xdf\xe9\x9e\x9e\x9e\x90\xc4\xdf\xaf\xc8\xdc" "\x3e\xa7\xef\xfd\xdf\xff\x3d\xf7\xf4\xed\x7b\xce\x34\x3d\x11\x00\x00" "\x00\x7f\x12\x1e\xfe\xe2\xe6\xd7\x56\x2d\x38\xf3\xe7\x5f\x18\x78\xf5" "\xda\x0f\xde\x77\xf9\x75\x51\x57\x5b\xa9\xbe\x10\x56\xe8\x4e\x96\x5b" "\xdf\xae\x0c\x99\x4e\x1b\x7f\xf5\xd5\x73\xaa\xcb\x1d\xf9\xde\xd2\x32" "\xdd\x2f\x3e\x76\xfe\xb6\x57\x2e\x9a\x7f\xc6\x43\x37\xac\x3e\xed\x91" "\x57\xee\xfc\xf6\xd3\x6f\xbe\x78\xf2\x82\xfb\xcf\xfe\xd0\x5d\xb7\x9c" "\xb9\xe7\xf6\xaf\xdc\x7e\xfa\x85\xf5\xf6\x13\xfa\xd3\xf1\xa3\xe5\xf8" "\xb7\x71\x14\x7d\xf3\xcd\xa1\xaf\xdd\xf8\xd0\x9e\xc3\x8b\x75\x71\x71" "\xff\x71\xf7\xf6\xa8\xa7\x27\xce\x3d\xd0\x13\xa7\x42\x2c\x7d\x23\x8a" "\xa2\x4b\x2a\x79\x8e\x7d\xf2\xfb\xaf\x2e\x5f\x57\x5c\x6e\xbf\xb9\x63" "\x4c\xfd\xdc\x54\x10\xfd\xfd\x4f\x5b\x21\xe9\x67\x37\xdc\xbd\xeb\x5b" "\x57\x5e\xb3\xaa\xff\xc6\x5f\x5d\x78\xc7\xea\xd3\x7f\xf0\xd8\xf6\xd1" "\x55\xe2\xe2\x3a\xdf\x4b\xfa\x53\x14\xcd\xb9\xb8\x7a\xfb\xf6\x28\x8a" "\x66\x26\xff\x8a\x42\x6f\xeb\x0d\x1b\x27\xcb\xd5\x51\x14\x75\x56\x6d" "\xb7\xa2\x4e\x5e\x47\x37\x98\xff\x92\x8c\xf2\xc2\x64\x39\x23\x59\x76" "\xd5\x89\x13\x9e\x3f\x2a\x55\xce\x35\x98\x47\x3e\xb5\xec\x6c\x70\xbb" "\x66\x35\x9a\x57\xab\xcc\x4a\x95\xd3\x17\xa3\xe9\x12\x8e\x33\x5c\xb7" "\x7e\x98\x2c\x8f\x9f\x64\x9c\xb6\xf0\x2f\x8e\x72\x71\x94\xaf\xa4\x3f" "\x18\x8f\xf6\x91\xa8\xea\xbc\xc5\x51\x5c\xea\xdb\x85\x4a\x39\x57\x2a" "\x47\x95\x72\x94\x2e\xc7\xa9\x72\x2e\x55\x6e\x6b\x4f\x1d\x57\x69\xbf" "\x49\x47\x6b\x8b\xe3\xb1\xf5\x61\xbd\x54\x7d\x5f\x52\x9f\x4f\xea\x8f" "\xaa\xbe\x56\xd7\xf0\x91\x8c\xfa\x23\x92\x65\x21\x79\xa1\xbe\x1e\xca" "\x51\xfa\x41\x59\xd7\xb8\x07\x95\xe3\x2a\x09\x79\x3d\x33\x41\x2e\xfb" "\x43\xae\xea\x1a\x54\xab\x3e\xe4\xbb\x22\x39\x19\x5d\x49\x5d\x57\x3c" "\x6f\xdc\x36\x23\x35\x84\xe7\x16\x1f\x39\xdc\x9f\x5f\xb1\xf8\xe1\xee" "\x8c\x3c\xe2\xdd\x71\x12\x3f\x6e\x2a\xfe\xbe\x5d\x5b\xd7\x75\xee\xdb" "\xb2\xb1\x37\x2b\xfe\xc5\xb9\x24\x7e\xae\xa9\xf8\x57\x8e\x0c\x76\xef" "\x3e\xfb\xb9\x85\x99\xf1\x6f\x0b\xf1\xdb\x9a\x8a\x7f\xf7\x4f\xef\xfa" "\xd9\x96\x25\x67\xfc\x28\xb3\x7d\x7e\x17\xda\x27\xdf\x54\xfc\xe7\xf7" "\xee\xdc\xf1\xd2\xbd\x4f\x3f\x9a\x99\xff\x8e\x10\xbf\xd0\x54\xfc\x47" "\x9e\x3b\x65\xd7\xf0\xe2\x13\x2e\xc8\xcc\x7f\x69\x68\x9f\x99\x4d\xc5" "\xbf\xe7\xb5\x3f\x5c\xf3\x9b\x9d\xd7\x2f\xc8\x8c\x1f\x85\xf8\x9d\x4d" "\xc5\xdf\xfb\xf1\xc7\x6e\xf9\xc9\xac\x07\xe7\x67\xc6\x1f\x0e\xed\xd3" "\xd5\x54\xfc\x73\x5f\x3e\xeb\xc6\x27\xe6\x3c\xd9\xd3\x97\x15\xff\xf1" "\x10\x7f\x76\x53\xf1\x9f\x2a\xdc\xba\xe6\xeb\xcf\x3e\x39\x9c\x79\x7e" "\x57\x86\xf6\xe9\x6e\x2a\xfe\x59\xbd\xa7\x76\xde\xbf\xe7\xb4\xf7\x67" "\x5d\x3b\xe3\xed\xfb\xfb\x1d\x16\xe0\xd0\x32\x3f\xb9\xc7\xba\x29\x29" "\x37\x3b\xce\x9c\xaa\xaa\xf1\xc2\x9d\xdd\x71\xf9\x9e\x6f\x56\xf2\x6f" "\x76\x2b\x77\x94\x52\xdc\xcf\x9c\x69\x8c\x0f\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x9f\x86\x63" "\x1e\xfd\xeb\x4f\x56\x97\x3f\xd3\xb1\xf0\xac\x3f\x3f\xae\xe7\xd9\x7c" "\x52\xee\xc8\x47\x51\x1c\x45\xd1\xaf\x73\xe5\x72\xa8\x9f\x11\x45\xf1" "\xcc\x28\x8a\x36\x0f\xad\xdd\x34\xb4\x7e\xc3\xa5\x7d\x9f\xd9\xf8\xb9" "\x4d\x1b\xd6\x0e\xf6\xad\x1d\xea\x1b\xd8\x30\xb4\x69\x5b\xdf\x7f\x3d" "\xa1\x6f\xd3\xc0\x15\x83\x6b\xb7\x15\x9f\x5d\xba\x64\x79\x79\xbb\x79" "\xa5\x68\x51\x34\x2f\x7e\xf7\xb8\x5c\x46\x46\x46\x46\xa2\x28\x5a\x59" "\x5d\x17\xf6\xf7\xff\xf6\x6c\xeb\x7a\xe3\xc5\xe7\x7f\x11\x45\x4b\xdf" "\xf9\xc4\x91\xf9\xcc\xe3\x79\xe5\xdf\xce\x58\x34\xa7\xc6\xcf\x94\x78" "\xe5\xc8\x3f\x5d\x94\xfb\xee\x17\xef\x2b\x1c\x53\xae\xe8\x4e\xf2\xea" "\xce\xca\xab\x7b\x6c\x5d\xc8\x60\xf7\x39\x9d\xc7\x5d\x7f\xda\xff\x7a" "\x4f\x14\x2d\x3d\x6c\xa2\xbc\xb6\x6c\xfe\xec\xa3\x63\x12\x2a\x55\x8c" "\xc6\x49\xe4\x3a\xa2\x72\x43\x77\xc4\x9d\x35\xf3\xa8\x64\x3d\x9a\x4f" "\xa9\xbd\xf2\xeb\xd6\x0f\x0e\x2c\xad\xdf\xbe\x71\x46\xfb\xfe\xd9\xac" "\xb7\xbe\xda\x97\xef\x9d\x57\x6e\xdf\x42\xe6\x71\x34\xd8\xbe\x73\xa3" "\x28\x2a\x8c\xdc\x31\xe7\xdf\x07\xef\x3b\xfa\xa4\x0f\x1c\xc0\xe7\xbd" "\x5e\x7b\x57\x1d\x42\x29\xbf\xd0\x7e\x85\xa4\xbd\xe7\x24\xc7\x35\x27" "\xe3\xb8\x72\x19\xc7\x75\xd9\xb5\x9f\x7a\xee\xcd\xab\xcf\xbb\x62\x7b" "\xb4\x34\xff\xfb\x45\xe3\xf7\x5d\xef\xb8\xda\x93\x0e\xd0\x1e\x1f\xd1" "\xd0\x7e\xc3\x1e\x3a\xe3\x9e\x31\xeb\x16\x92\xf5\xc3\x19\x0f\xdb\x9d" "\x38\x74\xf9\x15\x27\x6e\xde\x76\xd5\x92\xf5\x97\xaf\xbd\x74\xe0\xd2" "\x81\x0d\xcb\x57\x2c\x5b\xfe\xde\x93\x97\xbf\x6f\xc5\xd2\x13\x4b\x87" "\x5e\xfe\xd9\xb2\xe3\x0f\xfb\x7f\x4f\x83\xc7\x7f\xa0\xf6\xa7\x7a\x79" "\xd5\x6b\x8f\x62\x5e\xcd\xb4\x47\x4a\xf9\xf5\xd7\xfd\xd9\xbf\xba\xe3" "\x2f\x36\x3f\x73\x78\x03\xfd\xbc\x6a\xd5\x52\x7e\x21\xcf\xce\xe2\x69" "\x5e\x16\x55\xf5\xb7\xf1\x6d\x55\xeb\xb8\xea\xb5\x43\x5b\x46\x3b\x6c" "\xfc\xf1\x5b\x73\x1f\x7d\xea\x88\xab\x5a\x74\x1d\x2a\x9e\x9f\xfe\x5f" "\xaf\xfa\xe5\xb2\xdf\xbf\xaf\x5c\x71\xd0\x5c\xe7\x43\xd6\x49\x3e\x6d" "\xd5\xd7\x9d\x65\x07\x6e\xfb\x76\x14\x33\x2d\x1d\x57\x57\xcd\xbc\xee" "\xfd\xc1\x61\x77\xdf\xfc\x97\x2f\x56\x8e\x27\x9a\x31\x23\xda\xba\x76" "\x68\x68\xd3\xb2\xf2\xcf\xfd\x73\x5c\xbf\xf8\xf6\xfa\x33\xeb\x1e\x57" "\x7b\x75\x45\xbd\xe3\xfa\xf4\x2b\x2f\x2f\x7a\xeb\x81\xab\xe7\x8f\x3b" "\xae\x93\xca\x3f\xeb\x1d\x57\x3e\xe3\xb8\xbe\xb1\x6e\x78\xe7\x29\x7f" "\xf3\xdd\xfe\x7a\xc7\x55\x3e\xa2\xf1\x3f\xc7\x1f\xd7\x87\x4f\xd9\x77" "\xf8\xaa\xff\xbe\xf2\xa2\x72\xc5\x7e\x79\x3d\x54\x27\xd4\xe4\xeb\xa1" "\x92\x75\x77\x25\x8f\xd1\xd7\xc3\x49\x07\xce\x71\x34\x7b\x9e\xbb\xa7" "\x7c\x9e\x73\xd5\xab\xc5\x2b\x47\xce\x5c\xd6\xb6\x60\xdf\xff\xb8\xa9" "\xbf\x5c\x51\xaf\x7d\x2b\x6b\xd7\x6a\xdf\xe5\x51\x34\x2b\xc9\x74\x56" "\xbc\xb0\x66\x5e\xe9\xda\x70\x5c\x8b\x4a\x3f\xdb\xa2\xa4\x59\xc2\x22" "\x2a\xe4\x6a\x1f\x5f\x7b\x54\x7e\x7d\xa5\xef\x6b\xc2\x76\xe9\x56\xed" "\x4a\x9e\xeb\x8a\xe7\xd5\x3c\xae\xb4\xf0\xdc\xe2\x23\x87\xfb\xf3\x2b" "\x16\x3f\x9c\xd5\xd2\xf1\xee\xf2\x1e\x67\x46\xb3\xcb\xcb\xf8\x5d\x19" "\x6b\x0e\xa6\x36\x6c\xab\x24\x5c\x6b\xff\xf5\xfa\x47\x7b\x46\xff\xf8" "\xc0\xee\xe1\x7b\x5e\x79\x61\xcb\xd5\xad\xbb\x0e\x2c\xee\x7a\xeb\xb5" "\xcf\x7e\xf9\xf0\xd3\xcb\x15\x07\xca\xeb\xa7\x90\xf4\xd3\x42\x46\x3f" "\xad\x64\x9d\xe4\xd3\x5e\xdd\x4f\xfb\x3f\xb5\x71\xf0\x92\x72\x7d\xbd" "\xfe\xba\x28\xaa\x7d\x3c\xad\xee\xaf\xe9\xfd\x8c\xae\x5f\x3b\x5e\x5f" "\xaa\xdc\x15\xb5\x35\xd5\xbf\xef\xfe\xe9\x5d\x3f\xdb\xb2\xe4\x8c\x1f" "\x65\xf6\xef\xdf\x35\xda\xbf\x3f\x3f\xa6\xd4\x36\xc5\xfe\xfd\xf6\xdd" "\xff\x96\x75\xd4\x19\xff\x84\xf7\xef\xcd\xdb\xae\xba\x6c\xed\xe0\xe0" "\xc0\xa6\xcd\xe5\xfa\x56\xdd\x97\x84\xfd\xa4\x7b\xf7\x24\xee\x4b\xc6" "\xdc\x6f\x85\x5e\x31\xaf\xce\x71\xb5\x8f\x3b\xae\xe9\x7b\xd0\x48\x7b" "\x35\x7a\x9d\x0b\xf9\x5f\x92\x8a\xd1\xec\x75\xae\x2b\x8a\x9b\x7a\x3d" "\xed\xdb\xb5\x75\x5d\xe7\xbe\x2d\x1b\xbb\xc7\x6d\x95\xec\xe8\xe2\x5c" "\x12\x3f\xd7\x54\xfc\x2b\x47\x06\xbb\x77\x9f\xfd\xdc\xc2\xcc\xf8\xb7" "\x85\xf8\xf9\xa6\xe2\x3f\xbf\x77\xe7\x8e\x97\xee\x7d\xfa\xd1\xcc\xf8" "\x3b\xe2\x24\x7e\xa1\xa9\xf8\x8f\x3c\x77\xca\xae\xe1\xc5\x27\x5c\x90" "\x19\x7f\x69\xc8\x7f\x66\x53\xf1\xef\x79\xed\x0f\xd7\xfc\x66\xe7\xf5" "\x0b\x32\xe3\x47\x21\x7e\x57\x53\xf1\xcf\x7d\xf9\xac\x1b\x9f\x98\xf3" "\x64\x4f\x66\xfc\xc7\xe3\x64\x3f\xc5\xf7\x96\x28\xfa\xde\xab\xcb\xd7" "\x95\xcb\x71\xf1\xb5\x55\xe9\xa7\xc5\x3c\xda\xc7\xe4\x15\xa5\xcb\x71" "\xaa\x9c\x4b\x95\xdb\xaa\xcb\xb9\xf2\x5c\x6b\x65\x07\x6d\x71\x3c\xb6" "\x3e\xac\x97\xd4\x1f\x55\x95\x4b\x2d\xe7\x67\xd4\x87\x77\xaf\x42\x6f" "\x79\xf9\x7a\x28\x47\xe9\x07\x13\xd7\x1f\x68\x72\x55\xd7\xfe\x5a\xf5" "\xf5\xde\xdf\x01\x00\x0e\x35\x7b\xaf\xfc\xf9\xaa\xea\x72\xf8\xfd\x7f" "\xb8\x07\x0d\xbf\xff\x1f\x48\x6e\x94\xb2\x67\x78\x60\x54\xbd\x71\xd8" "\x8c\xaa\xc7\xb5\xc6\x61\xbd\x19\x71\xc3\x38\x6c\x74\x3e\x67\xc6\x98" "\xe7\x7b\x93\x98\x61\xfb\x30\x8f\xfd\x89\xfe\xf2\x30\xec\xba\xbe\xf2" "\x8d\xfe\x64\xe7\xe9\xc3\xeb\x21\x3d\x4f\x1f\xf6\xb3\xb8\xf2\x79\x82" "\xb2\x66\xe7\xe9\xeb\xcd\x5b\x1e\x9d\x2a\x87\xbc\x16\x25\x47\x1b\xf2" "\x99\x60\x5c\x33\x2b\x6a\x60\xde\x72\xfc\x7e\x26\x9e\xb7\x3c\x26\x55" "\xae\x3b\xaf\xd8\x77\x53\xaa\x22\x5f\x9a\xfb\xcc\x3a\x7f\xed\xc9\x8c" "\x59\xad\xcf\x3b\xa4\xf2\x9d\x55\x8c\x90\xd5\x3f\xd2\xf3\x62\xe1\xf3" "\x1c\x47\xce\x89\xda\xfb\xbf\xf4\xe0\x63\x71\x83\xfd\x23\xfd\x39\x9a" "\x70\x1e\xd2\x9f\xa3\x09\xfb\x59\x90\xba\x70\x36\xfb\x39\x9a\xa9\xf6" "\x8f\xbe\xd1\xe3\x2e\xb7\xc7\xf8\xfe\x51\x9a\x02\xa9\x3f\x2f\x3c\xfe" "\xfc\x45\x13\xb4\xef\xe8\xf9\xab\x1d\x2d\x7d\xfe\x26\x71\xbe\xbb\x8b" "\xeb\x4f\xf7\xef\x81\x0e\xfe\x79\xc3\xe9\xfd\x3d\x82\x79\xc9\x8c\xf8" "\xc9\xf5\xfe\x40\x9f\x37\x0c\xf5\xe1\xfa\x90\x6f\x70\x3e\xf1\xbc\x8c" "\xfa\x56\xcd\x27\x86\xcb\x45\xc8\xeb\x99\x09\x72\xd9\x1f\xcc\x27\x02" "\x87\x8a\x5b\x6f\xea\x7f\xb5\xba\x1c\xc6\xff\xe1\x3d\xa2\x38\xfe\x2f" "\xbe\x07\xf4\xa5\xee\xdb\xea\xdd\x87\xa6\xef\x1a\x43\xbc\xac\xcf\x57" "\xac\x68\xab\x9d\x5f\xbd\x71\xc7\xf8\xcf\x03\x75\x36\xf5\x3e\xbe\xf7" "\xe3\x8f\xdd\xf2\x93\x59\x0f\xce\xcf\xbc\xcf\x19\x6e\xf4\xf3\x12\x57" "\x8c\x29\x75\xd6\xf9\xbc\x44\xbd\x76\x3c\x36\x55\xae\xdb\x8e\x19\x13" "\x34\xf5\xc6\x7b\xc7\xa5\xd6\xef\x8a\x66\x37\xd5\x8e\x4f\x15\x6e\x5d" "\xf3\xf5\x67\x9f\x1c\xce\x6c\xc7\x95\xe5\x37\xc6\xfa\xed\x78\x5b\x2a" "\xff\xd1\x84\x9b\x69\xc7\xc5\xa9\x72\xdd\x76\x6c\xaf\x9d\x55\xbd\x76" "\x4c\xef\xa7\x5e\xff\x3d\x3e\x55\xee\x4a\x3e\x89\x35\xd9\x76\x3f\xab" "\xf7\xd4\xce\xfb\xf7\x9c\xf6\xfe\xcc\x76\xdf\xde\x68\xbb\xef\x18\x53" "\xea\xae\xd3\x7f\x8d\xbb\x32\xe2\x1b\x77\x1d\x10\xe3\xae\xa9\x7e\x1e" "\xa4\xde\x3c\xe4\xdb\x36\xae\x4b\x3e\x86\x3e\x5d\xe3\xba\x8f\x64\xd4" "\x4f\x76\x5c\xd7\x35\xee\x41\xe5\xb8\x4a\x0e\xb6\x71\x5d\xd6\xfb\x02" "\x00\x1c\x4c\x0e\xfb\x87\x1d\xd7\x57\x97\xc3\xf8\xbf\xf2\xfb\xb3\x64" "\xfc\xff\x60\x6a\x3b\xf7\xfd\x19\xf1\xdd\xf7\x1f\x20\xf7\xfd\xd3\x3b" "\x0f\x34\xdd\xe3\x8a\xe9\x9e\x7f\x99\xee\x79\x06\xe3\xa2\xa4\x1c\xa5" "\x1f\x94\x19\x17\x01\x00\xf0\x76\xf8\x6f\xbf\xfc\x9f\x7f\x5b\x5d\x0e" "\xe3\xff\x70\xbb\x9a\x3d\xfe\x9f\xda\xf8\x24\x73\xfc\xb6\xb2\x35\xff" "\x9f\x73\xe6\xf8\xaa\x32\xbe\x9d\xda\xf8\x3c\x33\xff\xca\xf8\x7c\x6a" "\xf3\x23\x99\xf1\x2b\xf3\x23\x53\x9b\xbf\xc8\x6c\x9f\xca\xfc\xc5\xd4" "\xe6\x5f\x32\xe3\x5f\xdc\x9a\xf1\x79\x66\xfb\xb4\x68\x7c\x9e\xfe\x1e" "\x8e\x4a\xfc\xc7\x0f\x95\xf9\x91\xfd\x33\xfe\xff\xbe\xf1\x7f\xea\x41" "\x99\xf1\x3f\x00\x00\x6f\x87\xc7\x1f\x78\x63\xcc\x27\xef\xc3\xf8\x7f" "\x66\x52\x9e\xae\xf1\x7f\xe6\xf8\xb0\x32\xfe\x9f\xee\xf1\xf3\x74\x8f" "\x6f\xa7\x7b\x7c\x3e\xdd\xf3\x17\xd3\x3d\xff\x72\xb0\x8f\x9f\x0f\xf6" "\xf9\x0b\xe3\x7f\xe3\xff\xfa\x8c\xff\x01\x00\x0e\x2d\xff\xfb\x63\xb3" "\x7e\x59\x5d\x0e\xe3\xff\xf0\xfd\xf4\xe1\xfb\xff\xfe\x2e\x29\xa7\xbf" "\xb7\xde\x38\x3d\x23\xbe\x71\xba\x71\xfa\x04\xf1\x6b\x8c\xd3\xb7\x8f" "\x89\xdf\xa2\xff\x0f\xa0\xfe\x3c\x9b\x79\x00\xf3\x00\xf5\x99\x07\x00" "\x00\x38\x34\xa4\xbf\xc7\x2c\x7c\x6d\x69\xfa\x7b\xf5\xda\x4b\x23\xa9" "\xf1\xeb\xff\x9f\x64\xb9\xb5\xc6\xfa\xb5\xe2\x5f\x98\xb1\x7e\x90\x2f" "\x7d\x47\x59\x14\x7d\x72\x68\xd3\xc0\xc0\x9a\xcf\x5d\x71\xc9\xda\xa1" "\x81\x35\x1b\x36\x5e\x32\xb0\x79\xcd\x96\x4d\xeb\x87\x86\x06\x36\x94" "\xd7\x9b\xea\xb8\x31\x73\xdc\x92\xb4\x40\x7b\x94\x4f\x8e\xb7\xf6\x7a" "\xe9\xdf\xaf\xce\x4d\xbe\x7f\x6e\x6e\xc6\xf7\xcf\xa5\xd7\x0f\x61\x17" "\x96\x1e\x8c\xff\xfe\xb9\xf4\x6e\x67\xd6\xf9\x1e\xb6\xd1\xf3\xd3\x58" "\xbe\x59\xe7\x27\x37\xc1\xfa\xb5\xce\x7f\xd6\xf9\xcc\x8a\x7f\x7e\xc6" "\xfa\x41\xe3\xe7\x7f\x6a\xf3\x12\x99\xe7\x7f\x69\x63\xe7\x3f\xfd\x7d" "\xf7\xf5\xce\x7f\x7a\xfd\xc9\x9e\xff\xc2\x14\xcf\x7f\x7a\xff\xf5\xce" "\x7f\xad\xf5\x6b\x9d\xff\xac\xf3\x99\x15\xff\xdc\x8c\xf5\x83\xc6\xcf" "\xff\xd4\xe6\x05\x33\xcf\xff\xc5\x8d\x9d\xff\xf4\xf7\x65\xd6\x3b\xff" "\xe9\xf5\x27\x7b\xfe\xe3\x29\x9e\xff\xf4\xfe\xeb\x9d\xff\x5a\xeb\xd7" "\x3a\xff\x59\xe7\x33\x2b\xfe\x87\x33\xd6\x0f\x2a\xe7\xff\x53\x9f\x3e" "\x69\xcd\xba\xcd\x6b\xd6\x6f\x58\x3f\xb4\x7e\xed\xe0\xfa\xab\x06\xc6" "\xae\xd7\x1d\xc5\xa5\x7c\x1a\xfd\x7b\xc5\xa1\x59\x26\xf5\xf7\x8a\x53" "\x3f\xc6\xc9\x4d\xfe\xef\x26\xb7\x26\x8f\xdc\xb8\x3c\xda\x93\xf6\xa8" "\x75\xfe\x8b\x79\xc4\xa9\x3c\x7a\x92\x4c\x7a\xb2\xfe\xbe\x45\x46\xde" "\xef\x78\xfd\x5f\x96\xad\xff\xe6\x37\xfe\x18\x45\x4b\xdf\xd9\xf6\xae" "\x29\xb5\x5f\xbc\x72\xe4\xc7\x57\xf4\xec\x58\xf4\xf9\x67\xe7\x16\xf3" "\xcf\x4d\x98\x7f\x65\xcd\x24\xaf\x7a\x7f\x27\x3a\xbd\x7e\x38\x9e\xfc" "\xe0\xc6\xcd\x43\xff\x65\xdd\xc6\xcf\x6d\x48\xff\x45\xd9\xe6\x84\xf9" "\xcc\x5c\xa5\x3c\x4d\xf3\x99\x49\x65\x5b\x83\xf3\x93\x17\x66\xd4\x4f" "\x76\x7e\xb2\x7d\xdc\x83\x03\x53\xa3\xf3\x93\x00\x94\xdd\xf4\xff\xb7" "\x8e\xf9\x22\xf0\xf0\xfb\xff\xf0\x7e\xd6\x9b\x5c\x3b\x67\x26\x17\xd0" "\x50\xdf\xf8\x7d\xfa\xd4\x7e\xbf\x9e\x79\x9f\x7e\x5b\x63\xf7\xe9\xe9" "\xef\x57\xaf\x77\x9f\x9e\x5e\x3f\x1c\x6f\xa3\xf7\xe9\xb9\x29\xde\xa7" "\xa7\xf7\x5f\xef\x3e\xbd\xd6\xfa\xb5\xee\xd3\xb3\xee\xbb\xb3\xe2\xaf" "\xca\x58\x7f\xb2\xc6\xf6\x93\x62\x07\x29\xf5\x8f\x81\x35\x5b\x36\x6e" "\xba\xac\x6a\xbd\xe9\xfe\x3e\xc6\xd6\xe7\x3b\xbd\xdf\x4f\x39\xf5\xfc" "\xa6\xf7\x73\x1b\xcd\x6a\x3c\xff\xe9\xfd\x5c\xc8\xf4\xe7\x3f\xb5\xcf" "\x85\x64\xe6\xff\xf8\xd4\xee\x64\x1b\xcf\x7f\x7a\xbf\x5f\xb4\x59\xfb" "\x6d\xbc\x95\x7c\x58\xa4\xde\xe7\x47\xea\x8d\xc3\x2e\xc8\xa8\x9f\xec" "\x38\x6c\xc6\xb8\x07\x07\x26\xe3\x30\x00\x38\xf0\x7d\xb7\xff\x5f\xff" "\xb9\xba\x1c\xc6\xff\xe1\x4b\x01\xc2\xf8\xff\xe6\xa4\x9c\xf1\x67\xfa" "\x9a\x76\xf0\x7f\xcf\xbf\xef\xe1\xaf\x19\xbf\x45\x7f\x7f\xab\xde\x38" "\xc8\x78\x60\x82\x9d\x1d\x00\x8c\x07\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a" "\x7b\x79\xdf\xdf\xbf\x56\x5d\xee\xc8\xf7\x96\x96\x0f\x7f\x71\xf3\x6b" "\xab\x16\x9c\xf9\xf3\x2f\x0c\xbc\x7a\xed\x07\xef\xbb\xfc\xba\x8f\x9d" "\xbf\xed\x95\x8b\xe6\x9f\xf1\xd0\x0d\xab\x4f\x7b\xe4\x95\x3b\xbf\xfd" "\xf4\x9b\x2f\x9e\xbc\xe0\xfe\xb3\x3f\x74\xd7\x2d\x67\xee\xb9\xfd\x2b" "\xb7\x9f\x7e\x61\xdd\x1d\x75\x97\x17\xc7\x27\xc5\x42\x14\xc5\xbf\x8d" "\xa3\xe8\x9b\x6f\x0e\x7d\xed\xc6\x87\xf6\x1c\x5e\xac\x8b\x8b\xfb\x8f" "\xbb\xb7\x47\x3d\x3d\x71\xee\x81\x9e\x38\x15\x61\xe9\x1b\x51\x14\x5d" "\x52\xc9\x73\xec\x93\xdf\x7f\x75\xf9\xba\xe2\x72\xfb\xcd\x1d\x63\xea" "\xe7\xa6\x82\xa4\x8f\x2b\xea\x6a\x0b\xf9\x8c\xc9\x33\xda\x5a\xf7\x88" "\x38\x08\x15\x92\x7e\x76\xc3\xdd\xbb\xbe\x75\xe5\x35\xab\xfa\x6f\xfc" "\xd5\x85\x77\xac\x3e\xfd\x07\x8f\x6d\x1f\x5d\x25\x2e\xae\xf3\xbd\xa4" "\x3f\x45\xd1\x9c\x8b\xab\xb7\x6f\x8f\xa2\x68\x66\xf2\xaf\x28\xf4\xb6" "\xde\xb0\x71\xb2\x5c\x1d\x45\x51\x67\xd5\x76\x2b\xea\xe4\x75\x74\x83" "\xf9\x2f\xc9\x28\x2f\x4c\x96\x33\x92\x65\x57\x9d\x38\xe1\xf9\xa3\x52" "\xe5\x5c\x83\x79\xe4\x53\xcb\xce\x06\xb7\x6b\x56\xa3\x79\xb5\xca\xac" "\x54\x39\x7d\x31\x9a\x2e\xe1\x38\xc3\x75\xeb\x87\xc9\xf2\xf8\x49\xc6" "\x69\x0b\xff\xe2\x28\x17\x47\xf9\x4a\xfa\x83\xf1\x68\x1f\x89\xaa\xce" "\x5b\x1c\xc5\xa5\xbe\x5d\xa8\x94\x73\xa5\x72\x54\x29\x47\xe9\x72\x9c" "\x2a\xe7\x52\xe5\xb6\xf6\xd4\x71\x95\xf6\x9b\x74\xb4\xb6\x38\x1e\x5b" "\x1f\xd6\x4b\xd5\xf7\x25\xf5\xf9\xa4\xfe\xa8\xea\x6b\x75\x0d\x1f\xc9" "\xa8\x3f\x22\x59\x16\x92\x17\xea\xeb\xa1\x1c\xa5\x1f\x94\x75\x8d\x7b" "\x50\x39\xae\x92\x90\xd7\x33\x13\xe4\xb2\x3f\xe4\xaa\xae\x41\xb5\xea" "\x43\xbe\x2b\x92\x93\xd1\x95\xd4\x75\xc5\xf3\xc6\x6d\x33\x52\x43\x78" "\x6e\xf1\x91\xc3\xfd\xf9\x15\x8b\x1f\xee\xce\xc8\x23\xde\x1d\x27\xf1" "\xe3\xa6\xe2\xef\xdb\xb5\x75\x5d\xe7\xbe\x2d\x1b\x7b\xb3\xe2\x5f\x9c" "\x4b\xe2\xe7\x9a\x8a\x7f\xe5\xc8\x60\xf7\xee\xb3\x9f\x5b\x98\x19\xff" "\xb6\x10\xbf\xad\xa9\xf8\x77\xff\xf4\xae\x9f\x6d\x59\x72\xc6\x8f\x32" "\xdb\xe7\x77\xa1\x7d\xf2\x4d\xc5\x7f\x7e\xef\xce\x1d\x2f\xdd\xfb\xf4" "\xa3\x99\xf9\xef\x08\xf1\x0b\x4d\xc5\x7f\xe4\xb9\x53\x76\x0d\x2f\x3e" "\xe1\x82\xcc\xfc\x97\x86\xf6\x99\xd9\x54\xfc\x7b\x5e\xfb\xc3\x35\xbf" "\xd9\x79\xfd\x82\xcc\xf8\x51\x88\xdf\xd9\x54\xfc\xbd\x1f\x7f\xec\x96" "\x9f\xcc\x7a\x70\x7e\x66\xfc\xe1\xd0\x3e\x5d\x4d\xc5\x3f\xf7\xe5\xb3" "\x6e\x7c\x62\xce\x93\x3d\x7d\x59\xf1\x1f\x0f\xf1\x67\x37\x15\xff\xa9" "\xc2\xad\x6b\xbe\xfe\xec\x93\xc3\x99\xe7\x77\x65\x68\x9f\xee\xa6\xe2" "\x9f\xd5\x7b\x6a\xe7\xfd\x7b\x4e\x7b\x7f\xd6\xb5\x33\xde\xbe\xbf\xdf" "\x61\x01\x0e\x2d\xf3\x93\x7b\xac\x9b\x92\x72\xb3\xe3\xcc\xa9\xaa\x1a" "\x2f\xdc\xd9\x1d\x97\xef\xf9\x66\x25\xff\x66\xb7\x72\x47\x29\xc5\xfd" "\xcc\x99\xc6\xf8\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1c\x1a\xfe\xf1\x83\x2f" "\x6f\xab\x2e\x7f\x67\xf5\x0b\xe7\x1d\x7b\xce\xea\x8f\xe6\xe3\x28\x8a" "\x33\xb6\x19\xa9\x21\x3c\xd7\x36\x63\xe5\xca\xbe\x26\xf2\x78\x7e\xef" "\xce\x1d\x2f\xdd\xfb\xf4\xa3\xa1\x5c\xdc\x77\x6f\x13\x71\x00\x00\x00" "\x80\xf1\xde\x38\xe7\x8f\x67\x56\x97\xc3\x38\x3c\x97\x94\xe3\xa8\x10" "\xf5\x46\x5b\xe2\x99\xd1\xc2\x9a\xdb\x87\x39\x82\x85\xa1\x14\x8f\xad" "\x4f\xcf\x21\xcc\x1c\x5d\xb3\x25\x71\x72\x2d\x8a\xd3\xd6\xa2\x38\xf9" "\x16\xc5\x69\x6f\x51\x9c\x19\x2d\x8a\xd3\xd1\xa2\x38\x85\x3a\x71\x0a" "\x51\x63\x71\x66\x4e\x18\x27\xd7\x70\x3e\x9d\x2d\x8a\xd3\xd5\xa2\x38" "\xb3\x5a\x14\x67\x76\x8b\xe2\xcc\x69\x51\x9c\xb9\x2d\x8a\xd3\x3d\x61" "\x9c\xc6\xfb\x61\x4f\x8b\xe2\xcc\x6b\x51\x9c\xf9\x2d\x8a\xf3\x8e\x16" "\xc5\x79\x67\x8b\xe2\x1c\xd6\xa2\x38\x87\xb7\x28\x4e\x7a\x4e\x79\xb2" "\xfd\x70\x76\xb2\xe6\x82\xac\x38\xa5\x07\x6d\x75\xe3\xe4\xe3\xb6\xca" "\x13\xb5\xe6\xd3\xc3\x7e\xde\x3d\xc5\xfd\x74\x35\xb8\x9f\xf4\x9c\xfd" "\x64\xf7\x33\xb3\xc1\xfd\x1c\x33\xc5\xfd\x14\x1a\xdc\xcf\x71\x53\xdc" "\x4f\xdc\xe0\x7e\x8e\x4f\x6d\x97\x9b\xe4\x7e\x72\x75\xf6\x13\xfa\xed" "\xd6\xac\xe3\x09\xa5\x06\xfb\xff\xb6\x16\xc5\xb9\xaa\x45\x71\xae\x6e" "\x51\x9c\xcf\xb7\x28\xce\xff\x6d\x51\x9c\x6b\x5a\x14\xe7\xda\x29\xc6" "\x01\xc8\x72\x4d\xdf\x7f\xbc\xa7\xba\x1c\xc6\xff\x61\xdc\x18\x47\xdd" "\x51\x47\xfe\xd4\xa8\x33\xb9\xe2\xa4\x67\x01\xc2\x78\x77\x51\xe9\xe7" "\xf8\xf7\xbb\x42\x7a\x80\x9e\x08\xf1\xde\x95\xaa\x9f\x51\x27\xde\x8a" "\xf4\x40\x3d\x15\x6f\x51\x8b\xf3\x3b\x3a\x55\xdf\x3e\x26\x5e\xbe\x72" "\xdf\x34\x41\xbc\xee\xea\x78\xc7\xa6\x9e\xac\x7b\xbc\xe9\x09\x85\x54" "\x7e\x8b\x27\x1b\x2f\x3d\xb1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x2d\xd4\xfb\xd4\x69\x5f\xaa\x2e\x7f\x67" "\xf5\x0b\xe7\x1d\x7b\xce\xea\x8f\x46\x71\x54\xfc\xaf\xa6\x91\x1a\xc2" "\x73\x6d\x33\x56\xae\xec\x6b\x22\x8f\xc5\x47\x0e\xf7\xe7\x57\x2c\x7e" "\x38\x94\x8b\xfb\xee\xc8\x37\x11\x08\x00\x00\x00\x18\xe7\x85\x27\xbe" "\x7c\x62\x75\x39\x8c\xc3\xdb\x93\x72\x1c\x15\xa2\x8e\xfc\xb2\xa8\x23" "\x9e\x31\x66\xbb\x42\x32\x0f\x50\xa8\xac\x17\xad\x2c\x2e\x8f\x9c\x13" "\xb5\xf7\x7f\xe9\xc1\xc7\xe2\xbe\x5c\xa9\xbe\x33\xee\x99\x70\xbb\x5c" "\xb2\xdd\x89\x43\x97\x5f\x71\xe2\xe6\x6d\x57\x2d\x59\x7f\xf9\xda\x4b" "\x07\x2e\x1d\xd8\xb0\x7c\xc5\xb2\xe5\xef\x3d\x79\xf9\xfb\x56\x2c\x3d" "\x71\xdd\xfa\xc1\x81\xe4\x67\xd4\x51\x27\x5e\x5b\x12\x6f\xf3\xb6\xab" "\x2e\x5b\x3b\x38\x38\xb0\x69\x73\xb9\x3e\x9d\x7f\x6f\xb2\x5d\x6f\x52" "\xce\x27\xdb\x7d\xa2\x3f\x2a\x1d\xfa\x75\x49\xfe\xf3\xea\xec\xaf\x7d" "\xdc\xfe\xa6\xef\x41\x03\xa7\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xf8\x4f\x76\xed\x36\x46\xae\xaa\x7c\x00\xf8\xb9\x3b\xb3" "\x33\xc3\x96\x6e\x87\x3f\x7f\xe8\xb4\x14\xba\x69\x37\x50\x83\x6e\xba" "\xd5\x40\x0c\x6f\x37\xbc\x7c\x12\xbb\x43\xe2\x6e\x34\x12\x09\x01\x1a" "\x81\x0d\x6d\x29\xda\xf2\xa2\x86\x10\x08\x44\x23\x26\xc5\x18\x63\xc2" "\x4b\x30\x80\xc0\x9a\x92\x10\x8d\x15\xb1\xc6\x0f\x06\x1b\x44\x03\x98" "\x14\x24\x01\xa2\x2e\xc1\xa4\x24\x12\x8b\x1a\xe9\x98\xd9\xbd\x67\xf7" "\xce\xec\x8c\xbb\x0c\x02\x96\xfc\x7e\x1f\xee\xcc\x33\xe7\x79\xce\x73" "\xee\x6c\xd3\xe4\xb9\xbb\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x7b\xea\x99" "\x53\x4f\xd8\x98\x8f\xa7\xea\xd3\x13\xc3\x63\xf5\xf1\x81\x24\x84\xa4" "\x4b\x4d\xa3\x83\xb8\x56\x28\xa5\xe9\x50\x0f\xe7\xf8\xdd\xe7\x7f\xf3" "\x8d\x9f\x1d\xfd\xcb\x63\x63\xdc\xec\x5d\x2e\xf6\xb0\x11\x00\x00\x00" "\xb0\xc0\xef\x1f\x1d\xdc\x92\x8f\xe3\x1c\xde\x9f\xc5\x49\xa8\x84\x72" "\xb1\x10\x0a\x61\xd5\x4c\xbc\x6e\x3e\xb5\x1a\xc2\xfc\xdc\x0f\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x7c\xf8\x9d\xf9\xfc\xc8\x44\x3e\x9e\xaa\x4f\x4f\x0c\x8f\xd5\xc7" "\x97\x25\x21\x24\x5d\x6a\x1a\x1d\xc4\xb5\x42\x29\x4d\x87\x7a\x38\xc7" "\x67\x0e\x5e\x78\xdb\xb3\x83\x2f\x1c\x13\xe3\x66\xef\x5a\x0f\xfb\x00" "\x00\x00\x00\x0b\x1d\x5c\x55\x39\x3b\x1f\xc7\x39\xbc\x2f\x8b\x93\x50" "\x09\xb5\xb0\x3e\xf4\x27\xab\x5a\xea\xe2\xb3\x81\xd5\x6d\xfb\xb5\xe7" "\xc5\x7d\x4e\x5c\x62\x5e\xfb\xb3\x83\x6e\x79\xeb\x97\x98\x77\xf2\x12" "\xf3\x3e\xb2\x48\xde\xe6\xec\x75\x57\x00\x00\x00\x80\x23\xcf\x93\xcb" "\x2b\xdf\xcd\xc7\x71\xfe\x2f\x66\x71\x12\xaa\xa1\x5c\x5c\xde\x75\xfe" "\x5f\x6c\xae\x8f\x79\x6b\xdb\xf2\x0a\xd9\x6b\x2f\x7f\x2b\x00\x00\x00" "\x00\xbc\x33\xf7\xed\xfc\xf1\xdf\xf2\x71\x9c\xff\x4b\x59\x9c\x84\x5a" "\x28\x17\x6b\x73\xf3\xfa\x52\xe7\xfd\x75\x6d\x79\xb1\x7e\xb1\xdf\xdb" "\xc7\xfa\xc5\x7e\x6f\x1f\xf3\x8a\x5d\xfa\xb4\xff\x3e\x1f\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xf8\xdf\xb1\xe6\xd0\xb6\x96\x78\xaa\x3e\x3d\x31\x3c\x56\x1f\x2f\x24" "\x21\x24\x5d\x6a\x1a\x1d\xc4\xb5\x42\x29\x4d\x87\x7a\x38\xc7\xdd\x4f" "\x7e\xef\x57\x3b\x3f\x76\xde\x4f\x63\xdc\xec\x5d\x2e\xf6\xb0\x11\x00" "\x00\x00\xb0\xc0\xdb\x5f\xb8\xe4\xaa\x7c\x1c\xe7\xf0\x38\x7a\x27\xa1" "\x12\xca\xc5\x81\xd0\x1f\x96\xcd\xcc\xfd\x3f\x7c\xfc\xf8\xbb\xbf\xfe" "\xfd\xd7\x43\x21\x84\x74\x26\xa1\x54\x0a\xbb\x2e\xbd\xee\xba\x6b\x47" "\x67\xaf\x31\xef\x8b\x6f\x1c\x5c\x7b\xf8\x17\x37\x1e\xbb\x20\x6f\xd3" "\xec\xf5\xfd\xbf\x53\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xdd\xba\x79\xcf\xde\x24\x1f\x4f" "\xd5\xa7\x27\x86\xc7\xea\xe3\x47\x25\x21\x24\x5d\x6a\x1a\x1d\xc4\xb5" "\x42\x29\x4d\x87\x7a\x38\xc7\xc3\x87\xfe\xf1\xd5\x3f\x3e\x78\xcb\xea" "\x18\x37\x7b\xd7\x7a\xd8\x07\x00\x00\x00\x58\xe8\x81\x8b\x56\xfe\x3a" "\x1f\xc7\x39\x3c\xce\xfe\x49\xa8\x84\x5a\x28\x85\x52\x38\x7e\x26\xce" "\xcf\xfa\x4d\x7d\x6d\xfb\x75\x7b\x66\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x7c\x78\xec\xb8\xfe\x86\xab\x2f\x9d\x9c\xbc\xe2\x5a" "\x6f\xbc\xf1\xc6\x9b\xb9\x37\x1f\xf4\xff\x4c\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xc0\x07\x65\xf5\x5d\x8f\x3f\x95\x8f\xa7\xea\xd3\x13\xc3\x63\xf5\xf1" "\x4a\x12\x42\xd2\xa5\xa6\xd1\x41\x5c\x2b\x94\xd2\x74\xa8\x87\x73\x3c" "\xf5\xea\x19\x0f\xed\xdb\xf0\xd1\xcf\xc5\xb8\xd9\xbb\xd6\xc3\x3e\x00" "\x00\x00\xc0\x42\x3b\x8a\xa7\x9d\x9d\x8f\xe3\x1c\x1e\x67\xff\x24\x54" "\x42\x2d\xf4\x87\xfe\x70\x5c\x16\x2f\x34\x33\xff\x57\xdf\x8f\xd3\x02" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x1f\xa4\x3f\xdf\x77\xcd\xcd\xf9\x78\xaa\x3e\x3d\x31\x3c" "\x56\x1f\x5f\x9e\x84\x90\x74\xa9\x69\x74\x10\xd7\x0a\xa5\x34\x1d\xea" "\xe1\x1c\x2f\x55\xbe\x79\xc9\x3d\xaf\xbc\xb0\x2f\xc6\xcd\xde\xe5\x62" "\x0f\x1b\x01\x00\x00\x00\x0b\x5c\x75\x70\xff\x27\xf2\x71\x9c\xc3\xfb" "\xb3\x38\x09\x95\x50\x2e\xae\x09\xe5\xb0\x26\xfb\x64\xb2\x75\x83\xa4" "\x10\x13\x3b\x3e\x17\x98\xaf\xbb\xa9\xa5\xac\xb0\xe4\xba\xdb\xdb\x4e" "\x3c\xfb\x50\xa0\x92\x3d\x87\xa8\xcc\x9d\x33\xa4\xcd\xd7\xb9\xba\xa1" "\x85\x75\x43\x21\x84\x5a\x56\x57\x9b\xdf\x2d\x5d\xf2\x97\x05\x00\x00" "\x00\x47\xa8\x73\x7e\x70\xee\x49\xf9\x38\xce\xff\xa5\x2c\x4e\x42\x35" "\x94\x8b\xc7\xe5\xe6\xff\x6d\x2d\xf5\x03\x4b\x9e\xe3\xbf\xd5\x52\xb7" "\x7c\xc9\x75\xf7\xb6\xd4\x55\x17\xa9\xfb\x2f\x7c\x25\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xc0\xbb\x74\xfa\x3d\x0f\xec\xcf\xc7\x53\xf5\xe9\x89\xe1" "\xb1\xfa\x78\x92\x84\x90\x74\xa9\x69\x74\x10\xd7\x0a\xa5\x34\x1d\xea" "\xe1\x1c\x07\x1e\xda\xb5\x65\xe0\xc0\xce\xad\x31\x6e\xf6\xae\xf5\xb0" "\x0f\x00\x00\x00\xb0\xd0\x9d\xe3\xbf\x3d\x3f\x1f\xc7\x39\x3c\xce\xfe" "\x49\xa8\x84\x5a\x38\x31\x0c\x86\x13\x67\xe6\xfe\x50\x6d\xad\x8f\x79" "\x7b\xc6\x06\x4e\xbe\xe5\x9c\x4f\x9d\x12\xc2\xc6\xe3\x9f\x3d\xa9\xd8" "\xb5\xdf\xce\x1d\xdb\x9f\x6e\xbf\x84\xd0\xd7\x9a\xd4\x17\xc2\x8a\xac" "\x5f\xd2\xa5\xdf\xff\xff\xfd\x2f\xa3\x57\x3e\x70\xdf\xdb\x21\x6c\x3c" "\xae\xb0\xe6\x9d\xf6\x6b\xdd\x32\x6d\x3c\xb1\xed\x98\x7b\xd7\xde\xf4" "\xca\x8a\xae\xdb\x00\x00\x00\xc0\x11\xed\x0f\x97\x9d\x72\x54\x3e\x8e" "\xf3\x7f\x7f\x16\x27\xa1\x1a\xca\xc5\x6b\xba\xce\xff\x71\xf2\x7e\x47" "\xf3\xff\x33\x8f\x5e\x79\xc1\x60\x76\xcd\x26\xf2\xb6\x8a\xbe\x6a\xec" "\x17\x42\xda\xa9\xdf\xb7\xf7\x5f\xbf\xec\x9f\xaf\xff\xe9\x99\xe6\xfc" "\xff\x9f\xfa\xbd\xf1\xd7\xf3\xd6\x0e\x76\xb8\xb6\x49\xd2\xc6\x6b\x17" "\xf7\x3d\x76\xeb\xde\xca\xfa\xd9\x0f\x62\xff\xa4\xad\x7f\xfc\x5e\xbe" "\x73\xf4\xe1\x3b\x87\x8a\xb5\xff\x9b\xed\x5f\x09\x95\xec\xf3\xd5\xc5" "\x9e\xfa\xaf\x08\x21\x54\x1a\xbb\x07\xdf\x9a\xdc\xbb\x6e\xd3\x59\xb9" "\xfe\x7d\x5d\xee\xff\xea\xaf\x5d\xf6\xea\xbf\x6e\x9c\xd8\xd6\xec\xff" "\xe6\xda\x81\xb9\xfe\xa7\xf4\x76\xff\xb3\xfd\xab\xdb\x1f\xd9\x7d\xff" "\x8e\x97\x57\xe6\xfa\x17\xba\xf4\xdf\xfa\xc4\xe1\x15\x4f\xbf\xb4\xea" "\x86\xf6\xfb\x1f\xe8\xd8\x7f\xf6\x47\xbd\xc8\xf7\x3f\xf2\xe2\xe6\xe7" "\x46\xdf\x3c\xad\xf5\xfb\x2f\x76\xf9\xfe\xab\x5b\xf6\x3d\x78\xc6\x8f" "\x1e\x1b\x89\xfd\xe3\xdf\x8a\x6c\x58\xdf\xba\x71\xfe\x9f\x5a\xfe\xda" "\xf6\xcc\x29\x49\x1b\x17\x8c\x16\x56\x1f\x38\xff\xf6\x91\xd6\xfe\xfd" "\x5d\xee\xff\xac\x3d\xfb\x1e\x7e\x63\x7a\xe7\x8d\xed\xf7\x7f\x79\x58" "\x6a\xff\xf6\xfb\xdf\xb0\xec\xf0\xa1\xed\x77\xac\x3c\xb7\x7d\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\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xe0\xc8\xf4\xd9\xdb\xae\x7e\x3e\x1f\x4f\xd5\xa7" "\x27\x86\xc7\xea\xe3\xa1\x10\x42\xd2\xa5\xa6\xd1\x41\x5c\x2b\x94\xd2" "\x74\xa8\x87\x73\x5c\x58\x3b\x73\xe0\xe7\xfb\xcf\xf9\x64\x8c\x9b\xbd" "\xcb\xc5\x1e\x36\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\xf6\xc8\xae\xc1" "\x75\xf9\x78\xaa\x3e\x3d\x31\x3c\x56\x1f\xef\x4b\x42\x48\xba\xd4\x34" "\x3a\x88\x6b\x85\x52\x9a\x0e\xf5\x70\x8e\x2f\x37\x26\xab\x7b\x3e\xfd" "\xea\x09\x31\x6e\xf6\xae\xf5\xb0\x0f\x00\x00\x00\xb0\xd0\x79\xc3\xfb" "\x1f\xcf\xc7\x71\x0e\x8f\xb3\x7f\x12\x2a\xa1\x16\x4a\xa1\x14\x06\x66" "\xe6\xfe\x27\xb6\x1d\x73\xef\xda\x9b\x5e\x59\x11\xaa\xd9\x7a\xf6\x5a" "\x9c\xdc\xba\xe3\xba\x53\xb7\x6c\xfd\xd2\x35\x97\xbf\xdf\xb7\x00\x00" "\x00\x00\x2c\xe2\xf4\x9f\xdc\xf5\x95\x7c\x1c\xe7\xff\x62\x16\x27\xa1" "\x1a\xca\xc5\xe1\xd0\x9f\xcd\xff\xaf\x5d\xdc\xf7\xd8\xad\x7b\x2b\xeb" "\xe3\xfc\x1f\x42\x48\x9b\x97\xe2\x96\x2b\x27\xaf\xd8\x18\xe6\xf2\x2e" "\x18\x2d\xac\x3e\x70\xfe\xed\x23\x31\xaf\x98\xe5\x55\x9a\x79\x1f\x9f" "\xcf\x7b\x6d\xe4\xc5\xcd\xcf\x8d\xbe\x79\x5a\xcc\x2b\xe4\xf3\x46\xc3" "\xdc\x73\x87\x0d\xcb\x0e\x1f\xda\x7e\xc7\xca\x73\x63\x5e\x7f\x3e\x6f" "\xe4\xb2\xad\x93\x97\xc7\xcf\x67\xf3\x2f\x3a\xe3\xc0\xca\xcd\x67\xa7" "\x17\x77\xec\xbf\x69\x3e\xaf\xba\xfd\x91\xdd\xf7\xef\x78\x79\x65\xbc" "\x8f\xbe\xec\x75\x20\xeb\x1f\xf3\x76\x0f\xbe\x35\xb9\x77\xdd\xa6\xb3" "\x62\x5e\x92\xdf\x6f\xe3\x7b\xf5\xd3\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0" "\xdf\xec\xc0\x81\x00\x00\x00\x00\x00\x90\xff\x6b\x23\x54\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x61\xbf\x0e\x42\xac" "\xaa\xfe\x38\x80\x9f\xf3\xe6\xcd\xdf\xe7\xbc\x71\xfe\x6f\x9a\x45\xd3" "\x08\xa5\xad\x46\x48\x11\x66\xd1\x44\x81\xa1\x08\x11\x2a\x03\x05\x95" "\x05\xb9\x28\x57\x46\x8b\x42\x6d\x63\x53\xd9\x10\x64\x11\xd6\x42\x10" "\xcc\x55\x4e\x11\x21\x15\x04\x45\x39\x11\x1a\x36\x24\x49\xb4\x50\x08" "\x4b\xaa\x45\x54\xb6\x51\x2a\x04\xe3\xcd\xdc\x33\xbe\xb9\xce\x6d\x5e" "\x37\x75\x21\x9f\x0f\x3c\xce\xfb\x9d\x77\xef\xf7\xfe\xee\xbd\x67\xee" "\xbc\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x50\xe4\xa6\x9f\x86\x86\x5a\xeb\x05\xd5" "\xfe\xa9\xf1\xc8\xf3\x4f\x9c\xdb\x30\xb0\xf6\x8b\x67\x1f\x3d\xfb\xf4" "\x5d\x1f\x3e\xf6\xcc\xfd\xf7\x3d\x75\xe6\xa1\xbe\x35\x87\x77\x8e\xac" "\x3a\x7a\x66\xcf\xdb\xa7\xce\xff\x7c\xeb\xc0\xa1\xf5\x77\xef\xdd\xb5" "\x76\x72\xf7\x4b\xbb\x57\x6f\x9c\xf7\x40\xdb\xa7\x87\x65\x59\x59\x0b" "\x21\xfe\x1a\x43\x78\xe3\xfc\x93\xaf\x8d\x1d\x9e\xbc\xbe\x39\x17\x9b" "\xc7\x8f\x8d\xd1\xd0\xdb\x1b\x2b\x9f\xf6\xc6\x5c\xc2\xca\xbf\x42\x08" "\x8f\xcc\xf4\x39\xfb\xc3\xf7\xce\x0e\x6d\x6e\x8e\xa3\x2f\x2e\x98\x35" "\xff\xff\x5c\x48\xfe\xbc\x42\xbd\x23\xf5\x33\xad\x31\xbb\x5f\xae\x2d" "\xb5\x6c\x9d\xed\xdc\x37\xfe\xe6\xd6\x1d\x1b\x56\x8c\x7d\xb3\xf1\xd5" "\x91\xd5\xef\x1f\x1b\xbd\xb8\x49\x6c\x6e\xf3\x6e\xb6\x9e\x42\xe8\xd9" "\xd4\xba\x7f\x67\x08\x61\x61\xf6\x6a\x4a\xab\xad\x3f\xed\x9c\x8d\x23" "\x21\x84\xae\x96\xfd\x86\xe7\xe9\xeb\xe6\x36\xfb\x5f\x5e\x50\x2f\xce" "\xc6\xff\x65\x63\x7d\x9e\x9c\xf4\xf9\xd2\x5c\x5d\x69\xb3\x8f\x6a\x6e" "\xec\x6a\x73\xbf\xb2\xda\xed\xeb\x72\xe9\xce\xd5\xf9\x87\xd1\x95\x92" "\xce\x33\x3d\xb7\x3e\xc8\xc6\x65\xff\x32\xa7\x23\xbd\x62\xa8\xc4\x50" "\x9d\x69\x7f\x4b\xbc\xb8\x46\x42\xcb\x7d\x8b\x21\x4e\xad\xed\xda\x4c" "\x5d\x99\xaa\xc3\x4c\x1d\xf2\x75\xcc\xd5\x95\x5c\xdd\xd1\x99\x3b\xaf" "\xa9\xe3\x66\x0b\xad\x23\xc6\xd9\xf3\x69\xbb\xdc\xfc\x92\x6c\xbe\x9a" "\xcd\x2f\x6d\x7d\x56\xcf\xe1\x9e\x82\xf9\x1b\xb2\xb1\x96\xfd\xa1\xfe" "\x91\xea\x90\x7f\x33\xad\x7e\xc9\x9b\x99\xf3\x9a\x92\xfa\xfa\xee\x1f" "\x7a\xb9\x1a\x2a\x2d\xcf\xa0\xb9\xe6\x53\xbf\xc3\xd9\xcd\xa8\x67\x73" "\xf5\x78\xdd\x25\xfb\x5c\x98\x43\xfa\x6c\xf0\xc6\x89\x15\xd5\xe1\xc1" "\x23\x8d\x82\x3e\xe2\xc1\x98\xe5\xc7\x52\xf9\x27\xc6\xb7\x6f\xee\x3a" "\xb1\xed\xf1\xfe\xa2\xfc\x4d\x95\x2c\xbf\x52\x2a\x7f\xeb\x85\x2d\x8d" "\x83\xeb\x4f\x2f\x2e\xcc\x7f\x25\xe5\x77\x94\xca\xdf\xf7\xc9\xde\xcf" "\xb7\x2d\x5f\xf3\x51\xe1\xf5\xf9\x3d\x5d\x9f\x6a\xa9\xfc\x1f\x8f\x1f" "\xd8\xff\xcb\x3b\xa7\xbe\x2c\xec\x7f\x7f\xca\xaf\x95\xca\x3f\x7a\xfa" "\xf6\xf1\x89\xc1\x5b\x1e\x28\xec\x7f\x65\xba\x3e\x0b\x4b\xe5\xbf\x75" "\xee\xcf\x1d\x3f\x1c\x78\x6e\xa0\x30\x3f\xa4\xfc\xae\x96\xfc\xce\xb6" "\xf3\x8f\x3f\x78\x6c\xd7\xc7\xdd\x9f\xf5\x15\xe6\x4f\xa4\xeb\x53\x2f" "\xd5\xff\xbd\xbf\xad\x1b\xfb\xba\xe7\x64\xef\x92\xa2\xfc\xaf\x52\xfe" "\xa2\x52\xf9\xdf\xd6\x5e\x7e\xf8\xf5\xef\x4f\x4e\x14\xde\xdf\x3b\xd3" "\xf5\x69\x94\xca\x5f\xd7\x7f\x47\xd7\xa1\xc9\x55\xb7\x15\x3d\x3b\xe3" "\xe8\xd5\xfe\x0f\x0b\x70\x6d\xe9\xcb\xbe\x63\xbd\x90\xd5\x65\x7f\x67" "\xfe\x57\x2d\xbf\x17\xf6\x34\xe2\xf4\x77\xbe\xee\xec\xb5\xe8\x72\x1e" "\x28\xa7\x79\x9c\x9e\x2b\x98\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xc0\xdf\xec\xc0\x01\x09\x00\x00\x00\x80\xa0\xff\xaf" "\xdb\x11\x28\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x53\x01\x00" "\x00\xff\xff\xda\x2e\x6f\xda", 23008)); NONFAILING(syz_mount_image(/*fs=*/0x200000000000, /*dir=*/0x200000005a00, /*flags=*/0, /*opts=*/0x200000000380, /*chdir=*/1, /*size=*/0x59e0, /*img=*/0x20000000b440)); break; case 1: // rename arguments: [ // old: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 32 00} (length 0x8) // } // new: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // ] NONFAILING(memcpy((void*)0x200000000000, "./file2\000", 8)); NONFAILING(memcpy((void*)0x200000000040, "./file1\000", 8)); syscall(__NR_rename, /*old=*/0x200000000000ul, /*new=*/0x200000000040ul); break; case 2: // truncate arguments: [ // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // len: intptr = 0xc88 (8 bytes) // ] NONFAILING(memcpy((void*)0x200000000100, "./file1\000", 8)); syscall(__NR_truncate, /*file=*/0x200000000100ul, /*len=*/0xc88ul); break; case 3: // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: open_flags = 0x101100 (4 bytes) // mode: open_mode = 0x0 (2 bytes) // ] // returns fd NONFAILING(memcpy((void*)0x2000000001c0, "./file0\000", 8)); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x2000000001c0ul, /*flags=O_SYNC|O_NOCTTY*/ 0x101100, /*mode=*/0); if (res != -1) r[0] = res; break; case 4: // ioctl$EXT4_IOC_GROUP_ADD arguments: [ // fd: fd (resource) // cmd: const = 0x4010bc05 (4 bytes) // arg: ptr[in, ext4_new_group_input] { // ext4_new_group_input { // group: int32 = 0x1f (4 bytes) // pad = 0x0 (4 bytes) // block_bitmap: int64 = 0x0 (8 bytes) // inode_bitmap: int64 = 0x7fffffbf (8 bytes) // inode_table: int64 = 0x7fffffffffffffff (8 bytes) // blocks_count: int32 = 0x400868 (4 bytes) // reserved_blocks: int16 = 0x8 (2 bytes) // unused: const = 0x0 (2 bytes) // } // } // ] NONFAILING(*(uint32_t*)0x2000000000c0 = 0x1f); NONFAILING(*(uint64_t*)0x2000000000c8 = 0); NONFAILING(*(uint64_t*)0x2000000000d0 = 0x7fffffbf); NONFAILING(*(uint64_t*)0x2000000000d8 = 0x7fffffffffffffff); NONFAILING(*(uint32_t*)0x2000000000e0 = 0x400868); NONFAILING(*(uint16_t*)0x2000000000e4 = 8); NONFAILING(*(uint16_t*)0x2000000000e6 = 0); syscall(__NR_ioctl, /*fd=*/r[0], /*cmd=*/0x4010bc05, /*arg=*/0x2000000000c0ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); setup_sysctl(); const char* reason; (void)reason; install_segv_handler(); for (procid = 0; procid < 5; procid++) { if (fork() == 0) { loop(); } } sleep(1000000); return 0; }