// https://syzkaller.appspot.com/bug?id=781a4c1f2279253fbed103d86f99047ae1ae76ad // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #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 use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) 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; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } 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 < 2; 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++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } void execute_call(int call) { switch (call) { case 0: // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 00} (length 0xfd) // } // flags: mount_flags = 0x4000 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {69 6f 63 68 61 72 73 65 74 3d 6d 61 63 63 72 // 6f 61 74 69 61 6e 2c 64 69 73 63 61 72 64 3d 30 78 30 30 30 30 // 30 30 30 30 30 30 30 30 30 30 30 33 2c 6e 6f 64 69 73 63 61 72 // 64 2c 65 72 72 6f 72 73 3d 63 6f 6e 74 69 6e 75 65 2c 69 6f 63 // 68 61 72 73 65 74 3d 6d 61 63 63 79 72 69 6c 6c 69 63 2c 00 67 // ad d4 ce ec a1 1a 75 7c b8 70 2b 1b 4a 0f f3 22 83 9e 69 b5 07 // d7 47 8e 07 06 b0 04 08 dc 59 28 3f 5c f8 e6 97 2c db 3f 50 68 // 0f c9 60 2e d2 7c 1f 6b 47 a9 1f 94 1f 15 4a e2 05 d3 4a 9b 7a // 7c 67 ef a0 c0 e2 a7 02 51 d6 64 fc e1 2a 00 00 80 01 00 00 00 // 00 b7 67 2c 4e 15 66 a6 1a 0a de 4b 6c 9d 78 15 10 53 d9 fb 31 // fd 2c fc 77 f2 69 f8 73 e1 4e 5f e3 c4 6c 0a cb b2 2d 40 39 1a // e3 1d 20 25 dc d9 47 ad f7 67 39 ae 4e cb e3 9b 13 1c ab 48 d9 // 9b d1 b6 30 04 0b 37 e2 b0 9d 78 16 e0 b9 39 81 de 11 47 53 2c // f2 f4 6d 4d 49 04 f6 8f b4 3c d1 65 b9} (length 0x118) // } // union ANYUNION { // ANYRES64: ANYRES64 (resource) // } // union ANYUNION { // ANYRESHEX: ANYRES64 (resource) // } // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x6281 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x6281) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x200000000000, "jfs\000", 4)); NONFAILING(memcpy( (void*)0x2000000000c0, "./" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 253)); NONFAILING(memcpy( (void*)0x200000000200, "\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x6d\x61\x63\x63\x72\x6f\x61" "\x74\x69\x61\x6e\x2c\x64\x69\x73\x63\x61\x72\x64\x3d\x30\x78\x30\x30" "\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x33\x2c\x6e\x6f" "\x64\x69\x73\x63\x61\x72\x64\x2c\x65\x72\x72\x6f\x72\x73\x3d\x63\x6f" "\x6e\x74\x69\x6e\x75\x65\x2c\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d" "\x6d\x61\x63\x63\x79\x72\x69\x6c\x6c\x69\x63\x2c\x00\x67\xad\xd4\xce" "\xec\xa1\x1a\x75\x7c\xb8\x70\x2b\x1b\x4a\x0f\xf3\x22\x83\x9e\x69\xb5" "\x07\xd7\x47\x8e\x07\x06\xb0\x04\x08\xdc\x59\x28\x3f\x5c\xf8\xe6\x97" "\x2c\xdb\x3f\x50\x68\x0f\xc9\x60\x2e\xd2\x7c\x1f\x6b\x47\xa9\x1f\x94" "\x1f\x15\x4a\xe2\x05\xd3\x4a\x9b\x7a\x7c\x67\xef\xa0\xc0\xe2\xa7\x02" "\x51\xd6\x64\xfc\xe1\x2a\x00\x00\x80\x01\x00\x00\x00\x00\xb7\x67\x2c" "\x4e\x15\x66\xa6\x1a\x0a\xde\x4b\x6c\x9d\x78\x15\x10\x53\xd9\xfb\x31" "\xfd\x2c\xfc\x77\xf2\x69\xf8\x73\xe1\x4e\x5f\xe3\xc4\x6c\x0a\xcb\xb2" "\x2d\x40\x39\x1a\xe3\x1d\x20\x25\xdc\xd9\x47\xad\xf7\x67\x39\xae\x4e" "\xcb\xe3\x9b\x13\x1c\xab\x48\xd9\x9b\xd1\xb6\x30\x04\x0b\x37\xe2\xb0" "\x9d\x78\x16\xe0\xb9\x39\x81\xde\x11\x47\x53\x2c\xf2\xf4\x6d\x4d\x49" "\x04\xf6\x8f\xb4\x3c\xd1\x65\xb9", 280)); NONFAILING(*(uint64_t*)0x200000000318 = -1); NONFAILING(sprintf((char*)0x200000000320, "0x%016llx", (long long)-1)); NONFAILING(memcpy( (void*)0x200000006600, "\x78\x9c\xec\xdd\xcd\x8e\x1c\x57\xd9\x07\xf0\xa7\xfa\x6b\x3e\xfc\xc6" "\xb1\xb2\x88\xf2\x5a\x08\x4d\x12\x03\x09\x21\xfe\x0c\xc6\x10\x20\xc9" "\x02\x16\x6c\x58\x20\x6f\x91\xad\xc9\x24\xb2\x70\x00\xd9\x06\x39\x91" "\x85\xc7\x9a\x0d\x0b\x2e\x02\x84\xc4\x12\x10\x4b\x56\x5c\x40\x16\x6c" "\xd9\x71\x01\x58\xb2\x91\x80\xac\x52\xa8\x3c\xe7\x8c\x6b\x9a\x6e\xf7" "\xd8\xce\x74\xf5\xcc\xf9\xfd\xa4\x71\xd5\x53\xa7\x6a\xfa\x94\xfe\x5d" "\xd3\xdd\xae\xaa\x3e\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\xc4\xf7\xbe\xfb\x83\x33\x55\x44\x5c\xfa\x79\x5a\x70\x2c" "\xe2\xff\xa2\x1f\xd1\x8b\x58\x69\xea\xb5\x88\x58\x59\x3b\x96\xd7\x1f" "\x44\xc4\x0b\xf1\xa0\x39\x9e\x8f\x88\xe1\x52\x44\x95\x1b\x9f\x8d\x78" "\x23\x22\x3e\x3e\x1a\x71\xef\xfe\xad\xf5\x66\xd1\xd9\x3d\xf6\xe3\x3b" "\x7f\xfc\xdb\x6f\x7f\x78\xe4\xfb\x7f\xfd\xfd\xf0\xd4\xbf\xff\x74\xa3" "\xff\xe6\xb4\xf5\x6e\xde\xfc\xd5\xbf\xfe\x7c\xfb\xc9\xf7\x17\x00\x00" "\x00\x4a\x54\xd7\x75\x5d\xa5\x8f\xf9\xc7\xd3\xe7\xfb\x5e\xd7\x9d\x02" "\x00\xe6\x22\xbf\xfe\xd7\x49\x5e\xae\x5e\xb8\x7a\x73\xc1\xfa\xa3\x56" "\xab\x0f\x7c\x3d\x5c\xb0\xfe\xa8\xe7\x51\xb7\xd5\x93\xdd\x6e\x17\x11" "\xb1\xd9\xde\xa6\x79\xcf\xe0\x74\x3c\x00\x1c\x30\x9b\xf1\x49\xd7\x5d" "\xa0\x43\xf2\x2f\xda\x20\x22\x8e\x74\xdd\x09\x60\xa1\x55\x5d\x77\x80" "\x7d\x71\xef\xfe\xad\xf5\x2a\xe5\x5b\xb5\x5f\x0f\xd6\xb6\xdb\xf3\xb5" "\x20\xbb\xf2\xdf\xac\x76\xee\xef\x98\x36\x9d\x65\xfc\x1a\x93\x79\x3d" "\xbf\xb6\xa2\x1f\xcf\x4d\xe9\xcf\xca\x9c\xfa\xb0\x48\x72\xfe\xbd\xf1" "\xfc\x2f\x6d\xb7\x8f\xd2\x7a\xfb\x9d\xff\xbc\x4c\xcb\x7f\xb4\x7d\xeb" "\x53\x71\x72\xfe\xfd\xf1\xfc\xc7\x1c\x9e\xfc\x7b\x13\xf3\x2f\x55\xce" "\x7f\xf0\x58\xf9\xf7\xe5\x0f\x00\x00\x00\x00\x00\x0b\x2c\xff\xff\xff" "\xb1\x8e\xcf\xff\x2e\x3d\xfd\xae\xec\xc9\xa3\xce\xff\xae\xcd\xa9\x0f" "\x00\x00\x00\x00\x00\x00\x00\xf0\x59\x7b\xda\xf1\xff\x76\x54\xc6\xff" "\x03\x00\x00\x80\x45\xd5\x7c\x56\x6f\xfc\xfa\xe8\xc3\x65\xd3\xbe\x8b" "\xad\x59\x7e\xb1\x8a\x78\x66\x6c\x7d\xa0\x30\xe9\x66\x99\xd5\xae\xfb" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x25\x19\x6c\x5f\xc3\x7b" "\xb1\x8a\x18\x46\xc4\x33\xab\xab\x75\x5d\x37\x3f\x6d\xe3\xf5\xe3\x7a" "\xda\xed\x0f\xba\xd2\xf7\x1f\x4a\xd6\xf5\x1f\x79\x00\x00\xd8\xf6\xf1" "\xd1\xb1\x7b\xf9\xab\x88\xe5\x88\xb8\x98\xbe\xeb\x6f\xb8\xba\xba\x5a" "\xd7\xcb\x2b\xab\xf5\x6a\xbd\xb2\x94\xdf\xcf\x8e\x96\x96\xeb\x95\xd6" "\xe7\xda\x3c\x6d\x96\x2d\x8d\xf6\xf0\x86\x78\x30\xaa\x9b\x5f\xb6\xdc" "\xda\xae\x6d\xd6\xe7\xe5\x59\xed\xe3\xbf\xaf\x79\xac\x51\xdd\xdf\x43" "\xc7\xe6\xa3\xc3\xc0\x01\x20\x22\xb6\x5f\x8d\xee\x79\x45\x3a\x64\xea" "\xfa\xd9\xe8\xfa\x5d\x0e\x07\x83\xe3\xff\xf0\x71\xfc\xb3\x17\x5d\x3f" "\x4f\x01\x00\x00\x80\xfd\x57\xd7\x75\x5d\xa5\xaf\xf3\x3e\x9e\xce\xf9" "\xf7\xba\xee\x14\x00\x30\x17\xf9\xf5\x7f\xfc\xbc\x80\x5a\xad\x56\xab" "\xd5\xea\xc3\x57\xb7\xd5\x93\xdd\x6e\x17\x11\xb1\xd9\xde\xa6\x79\xcf" "\x60\x38\x7e\x00\x38\x60\x36\xe3\x93\xae\xbb\x40\x87\xe4\x5f\xb4\x41" "\x44\xbc\xd0\x75\x27\x80\x85\x56\x75\xdd\x01\xf6\xc5\xbd\xfb\xb7\xd6" "\xab\x94\x6f\xd5\x7e\x3d\x48\xe3\xbb\xe7\x6b\x41\x76\xe5\xbf\x59\x3d" "\xd8\x2e\x6f\x3f\x69\x3a\xcb\xf8\x35\x26\xf3\x7a\x7e\x6d\x45\x3f\x9e" "\x9b\xd2\x9f\xe7\xe7\xd4\x87\x45\x92\xf3\xef\x8d\xe7\x7f\x69\xbb\x7d" "\x94\xd6\xdb\xef\xfc\xe7\x65\x5a\xfe\xcd\x7e\x1e\xeb\xa0\x3f\x5d\xcb" "\xf9\xf7\xc7\xf3\x1f\x73\x78\xf2\xef\x4d\xcc\xbf\x54\x39\xff\xc1\x63" "\xe5\xdf\x97\x3f\x00\x00\x00\x00\x00\x2c\xb0\xfc\xff\xff\xc7\x16\xea" "\xfc\xef\xe8\x49\x77\x67\xa6\x47\x9d\xff\x5d\xdb\xb7\x47\x05\x00\x00" "\x00\x00\x00\x00\x80\xfd\x75\xef\xfe\xad\xf5\x7c\xdf\x6b\x3e\xff\xff" "\xb9\x09\xeb\xb9\xff\xf3\x70\xca\xf9\x57\xf2\x2f\x52\xce\x3f\xdd\xff" "\xbf\x73\xe1\xcd\x2b\x63\xeb\xf5\x5b\xf3\x77\xdf\x79\x98\xff\x3f\xef" "\xdf\x5a\xff\xdd\x8d\x7f\xfc\x7f\x9e\xee\x35\xff\xa5\x3c\x53\xa5\x67" "\x56\x95\x9e\x11\x55\x7a\xa4\x6a\x90\xa6\x4f\xb8\x63\x53\x6c\x0d\xfb" "\xa3\xe6\x91\x86\x55\xaf\x3f\x48\xd7\xfc\xd4\xc3\xf7\xe2\x4a\x5c\x8d" "\x8d\x38\xbd\x6b\xdd\x5e\x3a\x1e\x1e\xb6\x9f\xd9\xd5\xde\xf4\x74\xf8" "\xa0\xbd\xee\x6f\xb7\x9f\xdd\xd5\x3e\xd8\x69\xcf\xdb\x9f\xdb\xd5\x3e" "\x4c\x57\x3a\xd5\x2b\xb9\xfd\x64\xac\xc7\x4f\xe2\x6a\xbc\xfb\xa0\xbd" "\x69\x5b\x9a\xb1\xff\xcb\x33\xda\xeb\x19\xed\x39\xff\xbe\xe3\xbf\x48" "\x39\xff\x41\xeb\xa7\xc9\x7f\x35\xb5\x57\x63\xd3\xc6\xdd\x3b\xbd\xff" "\x39\xee\xdb\xd3\x49\x8f\xf3\xf6\x95\xcf\xff\xf2\xf4\xfe\xef\xce\x4c" "\x5b\x71\x67\xe2\xf2\x66\xff\x5e\x9a\x7b\x6f\x62\xfb\x2f\xce\x91\x51" "\xfc\xec\xfa\xc6\xb5\x93\x37\x2f\xdf\xb8\x71\xed\x4c\xa4\xc9\xae\xa5" "\x67\x23\x4d\x3e\x63\x39\xff\x61\xfa\xc9\xf9\xbf\xf2\xf2\x76\x7b\xfe" "\xbb\xdf\x3e\x5e\xef\xde\x19\x3d\x76\xfe\x8b\x62\x2b\x06\x3b\xcf\xed" "\xb6\x26\xff\x97\x5b\xf3\xcd\xfe\xbe\x3a\xe7\xbe\x75\x21\xe7\x3f\x4a" "\x3f\x39\xff\x77\x53\xfb\xe4\xe3\xff\x20\xe7\xdf\x9f\x9a\xff\x6b\x1d" "\xf4\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1e\xa5\xae" "\xeb\x07\xb7\x88\xbe\x1d\x11\xe7\xd3\xfd\x3f\x5d\xdd\x9b\x09\x00\xcc" "\x57\x7e\xfd\xaf\x93\xbc\x7c\x5e\x75\xff\x49\xb7\xff\xc3\xee\xfd\xe8" "\xaa\xff\x6a\xf5\x9c\xeb\x6a\xc1\xfa\x33\xd7\xfa\xd3\x7a\xb1\xfa\xa3" "\x5e\xc8\xfa\x3f\x0b\xd6\x9f\x85\xab\xdb\xea\xc9\xde\x6a\x17\x11\xf1" "\x97\xf6\x36\xcd\x7b\x86\x5f\x4c\xfa\x65\x00\xc0\x22\xfb\x34\x22\xfe" "\xde\x75\x27\xe8\x8c\xfc\x0b\x96\xbf\xef\xaf\x99\x9e\xe8\xba\x33\xc0" "\x5c\x5d\xff\xf0\xa3\x1f\x5d\xbe\x7a\x75\xe3\xda\xf5\xae\x7b\x02\x00" "\x00\x00\x00\x00\x00\x00\x3c\xa9\x3c\xfe\xe7\x5a\x6b\xfc\xe7\x13\x75" "\x5d\xdf\x1e\x5b\x6f\xd7\xf8\xaf\xef\xc4\xda\xd3\x8e\xff\x39\xc8\x33" "\x3b\x03\x8c\x4e\x19\xa8\xba\xff\xf8\xfb\xf4\x28\x5b\xbd\x51\xbf\xd7" "\x1a\x6e\xfc\xc5\x98\x36\xfe\xf7\x70\x67\xee\x51\xe3\x7f\x0f\x66\x3c" "\xde\x70\x46\xfb\x68\x46\xfb\xd2\x8c\xf6\xe5\x19\xed\x13\x6f\xf4\x68" "\xc9\xf9\xbf\xd8\x1a\xef\xfc\x44\x44\x1c\x1f\x1b\x7e\xbd\x84\xf1\x5f" "\xc7\xc7\xbc\x2f\x41\xce\xff\xa5\xd6\xf3\xb9\xc9\xff\x4b\x63\xeb\xb5" "\xf3\xaf\x7f\x73\x90\xf3\xef\xed\xca\xff\xd4\x8d\x0f\x7e\x7a\xea\xfa" "\x87\x1f\xbd\x7e\xe5\x83\xcb\xef\x6f\xbc\xbf\xf1\xe3\x73\x67\xce\x9c" "\x3e\x77\xfe\xfc\x85\x0b\x17\x4e\xbd\x77\xe5\xea\xc6\xe9\xed\x7f\x3b" "\xec\xf1\xfe\xca\xf9\xe7\xb1\xaf\x5d\x07\x5a\x96\x9c\x7f\xce\x5c\xfe" "\x65\xc9\xf9\x7f\x21\xd5\xf2\x2f\x4b\xce\xff\x8b\xa9\x96\x7f\x59\x72" "\xfe\xf9\xfd\x9e\xfc\xcb\x92\xf3\xcf\x9f\x7d\xe4\x5f\x96\x9c\xff\xab" "\xa9\xde\x4b\xfe\xbe\x1f\xf2\xf0\xc8\xf9\x7f\x39\xd5\x8e\xff\xb2\xe4" "\xfc\x5f\x4b\xb5\xfc\xcb\x92\xf3\xff\x4a\xaa\xe5\x5f\x96\x9c\xff\xeb" "\xa9\x96\x7f\x59\x72\xfe\x27\x53\x2d\xff\xb2\xe4\xfc\x4f\xa5\x7a\x8f" "\xf9\xaf\xec\x77\xbf\x98\x8f\x9c\x7f\x3e\xc3\xe5\xf8\x2f\x4b\xce\x3f" "\x5f\xd9\x20\xff\xb2\xe4\xfc\xcf\xa6\x5a\xfe\x65\xc9\xf9\x9f\x4b\xb5" "\xfc\xcb\x92\xf3\x7f\x23\xd5\xf2\x2f\x4b\xce\xff\xab\xa9\x96\x7f\x59" "\x72\xfe\xe7\x53\x2d\xff\xb2\xe4\xfc\xbf\x96\x6a\xf9\x97\x25\xe7\x7f" "\x21\xd5\xf2\x2f\x4b\xce\xff\xeb\xa9\x96\x7f\x59\x72\xfe\xdf\x48\xb5" "\xfc\xcb\x92\xf3\x7f\x33\xd5\xf2\x2f\x4b\xce\xff\x9b\xa9\x96\x7f\x59" "\x72\xfe\xdf\x4a\xb5\xfc\xcb\x92\xf3\xff\x76\xaa\xe5\x5f\x96\x9c\xff" "\x5b\xa9\x96\x7f\x59\x1e\x7e\xff\x7f\x9a\x59\x8e\xf1\x25\x66\xcc\x98" "\x29\x6e\xa6\xeb\xbf\x4c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0" "\xb8\x79\x5c\x4e\xdc\xf5\x3e\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\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xfc\x97\x1d\x38\x10\x00\x00\x00\x00\x00\xf2\x7f\x6d\x84\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x2a\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\xef\xde\x62\xe4\xba\xeb\x3b\x80" "\x9f\xd9\x9b\x37\x0e\x24\x06\x42\xea\xa4\x26\x6c\x1c\x13\x8c\xb3\xc9" "\xae\x2f\xf1\x85\xd6\xc5\x84\x6b\xc3\xad\x24\x84\x42\x2f\xd8\xae\x77" "\x6d\x16\x7c\xc3\x6b\x97\x40\xa3\xda\x51\xa0\x44\xc2\xa8\xa8\xa2\x6d" "\x78\x68\x0b\x08\xb5\x79\xa9\xb0\x2a\x1e\x68\x05\x28\x0f\xb4\x55\xa5" "\x4a\xa4\x7d\xa0\x2f\x88\x0a\x95\x87\xa8\x0a\x28\x20\x55\xa2\x15\xb0" "\xd5\x9c\xf3\xff\xff\x77\x66\x76\x76\x66\xd7\x3b\x5e\xcf\x9c\xf3\xf9" "\x48\xc9\x2f\x3b\x73\x66\xce\x99\x33\x67\x66\xf7\xbb\x9b\xef\x1c\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x80\x46\x77\xbe\x61\xf6\x53\xb5\x2c\xcb\x6a\xb5\x5a\x71\xc1\xa6" "\x2c\x7b\x51\x7d\xde\x30\xb1\x29\xbf\xe4\xb5\xd7\x77\xfb\x00\x00\x00" "\x80\xb5\xfb\x79\xfe\xef\x17\x6e\x4e\x17\x1c\x5a\xc1\x8d\x1a\x96\xf9" "\xe7\x3b\xbe\xfd\xd5\x85\x85\x85\x85\xec\x7d\xc3\x7f\x3a\xfa\xb9\x85" "\x85\x74\xc5\x44\x96\x8d\x6e\xc8\xb2\xfc\xba\xe8\xca\xf7\xdf\x5f\x6b" "\x5c\x26\x78\x22\x1b\xaf\x0d\x35\x7c\x3d\xd4\x65\xf5\xc3\x5d\xae\x1f" "\xe9\x72\xfd\x68\x97\xeb\xc7\xba\x5c\xbf\xa1\xcb\xf5\xe3\x5d\xae\x5f" "\xb2\x03\x96\xb8\x21\xab\xa5\x3b\xdb\x96\xff\xe7\xa6\x62\x97\x66\xb7" "\x64\xa3\xf9\x75\xdb\xda\xdc\xea\x89\xda\x86\xa1\xfa\xbe\x4b\xb7\xcd" "\x6a\xf9\x6d\x16\x46\x8f\x67\x73\xd9\xc9\x6c\x36\x9b\x6e\x5a\xbe\x58" "\xb6\x96\x2f\xff\xf5\x3b\xeb\xeb\x7a\x6b\x16\xd7\x35\xd4\xb0\xae\x2d" "\xf5\x23\xe4\xc7\x8f\x1d\x8b\xdb\x50\x0b\xfb\x78\x5b\xd3\xba\x16\xef" "\x33\xfa\xe1\xeb\xb3\x89\x9f\xfc\xf8\xb1\x63\x7f\x7d\xfe\xf9\xdb\xda" "\xcd\xae\xbb\xa1\xe9\xfe\x8a\xed\xdc\xbe\xb5\xbe\x9d\x9f\x08\x97\x14" "\xdb\x5a\xcb\x36\xa4\x7d\x12\xb7\x73\xa8\x61\x3b\xb7\xb4\x79\x4e\x86" "\x9b\xb6\xb3\x96\xdf\xae\xfe\xdf\xad\xdb\xf9\xc2\x0a\xb7\x73\x78\x71" "\x33\xd7\x55\xeb\x73\x3e\x9e\x0d\xe5\xff\xfd\x6c\xbe\x9f\x46\x6a\x59" "\x9b\xfd\xb4\x25\x5c\xf6\xd3\xbb\xb2\x2c\xbb\xb4\xb8\xd9\xad\xcb\x2c" "\x59\x57\x36\x94\x6d\x6c\xba\x64\x68\xf1\xf9\x19\x2f\x8e\xc8\xfa\x7d" "\xd4\x0f\xa5\x97\x66\x23\xab\x3a\x4e\xef\x5c\xc1\x71\x5a\x9f\x33\xdb" "\x9a\x8f\xd3\xd6\xd7\x44\x7c\xfe\xef\x0c\xb7\x1b\x59\x66\x1b\x1a\x9f" "\xa6\x1f\x3e\x3e\xd6\xf0\xbc\xff\x6c\xe1\x6a\x8e\xd3\xa8\xfe\xa8\x97" "\x7b\xad\xb4\x1e\x83\xbd\x7e\xad\xf4\xcb\x31\x18\x8f\x8b\x67\xf3\x07" "\xfd\x64\xdb\x63\x70\x5b\x78\xfc\x8f\xdd\xbd\xfc\x31\xd8\xf6\xd8\x69" "\x73\x0c\xa6\xc7\xdd\x70\x0c\x6e\xed\x76\x0c\x0e\x8d\x0d\xe7\xdb\x9c" "\x9e\x84\x5a\x7e\x9b\xc5\x63\x70\x67\xd3\xf2\xc3\xf9\x9a\x6a\xf9\x7c" "\xee\xee\xce\xc7\xe0\xd4\xf9\x53\x67\xa7\xe6\x3f\xf6\xf1\x7b\xe7\x4e" "\x1d\x3d\x31\x7b\x62\xf6\xf4\xee\x9d\x3b\xa7\x77\xef\xdd\xbb\x7f\xff" "\xfe\xa9\xe3\x73\x27\x67\xa7\x8b\x7f\x5f\xe5\xde\xee\x7f\x1b\xb3\xa1" "\xf4\x1a\xd8\x1a\xf6\x5d\x7c\x0d\xbc\xba\x65\xd9\xc6\x43\x75\xe1\x8b" "\x63\x4b\xde\x7f\xaf\xf6\x75\x38\xde\xe1\x75\xb8\xa9\x65\xd9\x5e\xbf" "\x0e\x47\x5a\x1f\x5c\x6d\x7d\x5e\x90\x4b\x8f\xe9\xe2\xb5\xf1\x9e\xfa" "\x4e\x1f\xbf\x3c\x94\x2d\xf3\x1a\xcb\x9f\x9f\x1d\x6b\x7f\x1d\xa6\xc7" "\xdd\xf0\x3a\x1c\x69\x78\x1d\xb6\xfd\x9e\xd2\xe6\x75\x38\xb2\x82\xd7" "\x61\x7d\x99\xb3\x3b\x56\xf6\x33\xcb\x48\xc3\x3f\xed\xb6\x61\xf9\xef" "\x05\x6b\x3b\x06\x37\x35\x1c\x83\xad\x3f\x8f\xb4\x1e\x83\xbd\xfe\x79" "\xa4\x5f\x8e\xc1\xf1\x70\x5c\x7c\x77\xc7\xf2\xdf\x0b\xb6\x84\xed\x7d" "\x72\x72\xb5\x3f\x8f\x0c\x2f\x39\x06\xd3\xc3\x0d\xef\x3d\xf5\x4b\xd2" "\xcf\xfb\xe3\xfb\xf3\xd1\xee\xb8\xbc\xbd\x7e\xc5\x8d\x63\xd9\x85\xf9" "\xd9\x73\xf7\x3d\x7a\xf4\xfc\xf9\x73\x3b\xb3\x30\xd6\xc5\xcb\x1a\x8e" "\x95\xd6\xe3\x75\x63\xc3\x63\xca\x96\x1c\xaf\x43\xab\x3e\x5e\x0f\xcd" "\xdd\xf1\xe4\xed\x6d\x2e\xdf\x14\xf6\xd5\xf8\xbd\xf5\x7f\x8d\x2f\xfb" "\x5c\xd5\x97\xd9\x73\x5f\xe7\xe7\x2a\xff\xee\xd6\x7e\x7f\x36\x5d\xba" "\x2b\x0b\xa3\xc7\xd6\x7b\x7f\xb6\xfb\x6e\x5e\xdf\x9f\x63\x59\xf6\xf9" "\x6f\x3d\xfe\xd0\x37\x1e\xfb\xfc\x1b\x96\xdd\x9f\xf5\xbc\xf9\x89\xa9" "\xb5\xff\x2c\x9e\x72\x69\xc3\xfb\xef\xe8\x32\xef\xbf\x31\xf7\xff\xa2" "\x58\x5f\xba\xab\x27\x86\x47\x47\x8a\xd7\xef\x70\xda\x3b\xa3\x4d\xef" "\xc7\xcd\x4f\xd5\x48\xfe\xde\x55\xcb\xd7\xfd\xc2\xd4\xca\xde\x8f\x47" "\xc3\x3f\xeb\xfd\x7e\x7c\x4b\x87\xf7\xe3\xcd\x2d\xcb\xf6\xfa\xfd\x78" "\xb4\xf5\xc1\xc5\xf7\xe3\x5a\xb7\xdf\x76\xac\x4d\xeb\xf3\x39\x9e\x1f" "\x27\xe1\xd7\x3d\x1d\xde\x8f\xeb\xcf\xe7\xe6\x5d\xab\x3d\x26\x47\x3a" "\xbe\x1f\xdf\x15\x66\x2d\xec\xff\xd7\x84\xa4\x90\x72\x51\xc3\xb1\xb3" "\xdc\x71\x9b\xd6\x35\x32\x32\x1a\x1e\xd7\x48\x5c\x43\xf3\x71\xba\xbb" "\x69\xf9\xd1\x90\xcd\xea\xeb\x7a\x7a\xd7\xd5\x1d\xa7\xdb\xef\x2a\xee" "\x6b\x38\x3d\xba\x45\xeb\x75\x9c\x4e\xb4\x2c\xdb\xeb\xe3\x34\xfd\xee" "\x6b\xb9\xe3\xb4\xd6\xed\xb7\x6f\x57\xa7\xf5\xf9\x1c\x0f\xc7\xc5\x2d" "\xbb\x3b\x1f\xa7\xf5\x65\x9e\xd9\xb3\xf6\xf7\xce\x1b\xe2\x7f\x36\xbc" "\x77\x8e\x75\x3b\x06\x47\x87\xc7\xea\xdb\x3c\x9a\x0e\xc2\xfc\xfd\x3e" "\x5b\xb8\x21\x1e\x83\xf7\x65\xc7\xb2\x33\xd9\xc9\x6c\x26\xbf\x76\x2c" "\x3f\x9e\x6a\xf9\xba\x26\xef\x5f\xd9\x31\x38\x16\xfe\x59\xef\xf7\xca" "\xcd\x1d\x8e\xc1\xed\x2d\xcb\xf6\xfa\x18\x4c\xdf\xc7\x96\x3b\xf6\x6a" "\x23\x4b\x1f\x7c\x0f\xb4\x3e\x9f\xe3\xe1\xb8\x78\xea\xfe\xce\xc7\x60" "\x7d\x99\x37\xee\xeb\xed\xcf\xae\xdb\xc3\x25\x69\x99\x86\x9f\x5d\x5b" "\x7f\xbf\xb6\xdc\xef\xbc\x6e\x6f\xd9\x4d\xd7\xea\x58\x19\x09\xdb\xf9" "\xad\x7d\x9d\x7f\x37\x5b\x5f\xe6\xe4\xfe\xd5\xe6\xcc\xce\xfb\xe9\x9e" "\x70\xc9\x8d\x6d\xf6\x53\xeb\xeb\x77\xb9\xd7\xd4\x4c\xb6\x3e\xfb\x69" "\x73\xd8\xce\xe7\xf7\x2f\xbf\x9f\xea\xdb\x53\x5f\xe6\x73\x07\x56\x78" "\x3c\x1d\xca\xb2\xec\xe2\x47\x1e\x78\x76\x6b\xfd\xa9\x2f\xfe\xbe\xf2" "\x77\x17\xbe\xf3\xd5\xa6\xbf\xbb\xb4\xfb\x9b\xce\xc5\x8f\x3c\xf0\xa3" "\x17\x1f\xff\xa7\xd5\x6c\x3f\x00\x83\xef\x17\xc5\xd8\x58\x7c\xaf\x6b" "\xf8\xcb\xd4\x4a\xfe\xfe\x0f\x00\x00\x00\x0c\x84\x98\xfb\x87\xc2\x4c" "\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xe3\xff\x15\x9e\xc8\xff\x00\x00" "\x00\x50\x1a\x31\xf7\x8f\x84\x99\x54\x24\xff\x6f\x7e\xe3\xf3\x73\xbf" "\xb8\x98\xa5\x66\xfe\x42\x10\xaf\x4f\xbb\xe1\xc1\x62\xb9\xd8\x71\x9d" "\x0e\x5f\x4f\x2c\x2c\xaa\x5f\xfe\xc0\x97\x67\xff\xe7\x1f\x2e\xae\x6c" "\xdd\x43\x59\x96\xfd\xec\xc1\x3f\x68\xbb\xfc\xe6\x07\xe3\x76\x15\x26" "\xc2\x76\x5e\x79\x53\xf3\xe5\x4b\x7c\xf5\xde\x15\xad\xfb\xc8\x23\x17" "\xd3\x7a\x1b\xfb\xeb\x5f\x08\xf7\x1f\x1f\xcf\x4a\x0f\x83\x76\x15\xdc" "\xe9\x2c\xcb\xbe\x7e\xf3\x67\xf2\xf5\x4c\xbc\xff\x72\x3e\x9f\x79\xf0" "\x48\x3e\x1f\xba\xf4\xe4\x13\xf5\x65\x5e\x38\x50\x7c\x1d\x6f\xff\xdc" "\xcb\x8a\xe5\xff\x22\x94\x7f\x0f\x1d\x3f\xda\x74\xfb\xe7\xc2\x7e\xf8" "\x41\x98\xd3\x6f\x6b\xbf\x3f\xe2\xed\xbe\x72\xf9\x35\x5b\xf6\xbd\x77" "\x71\x7d\xf1\x76\xb5\xad\x37\xe5\x0f\xfb\xa9\x0f\x14\xf7\x1b\x3f\x27" "\xe7\xb3\x4f\x14\xcb\xc7\xfd\xbc\xdc\xf6\x7f\xe3\xd3\x4f\x7f\xa5\xbe" "\xfc\xa3\xaf\x6a\xbf\xfd\x17\x87\xda\x6f\xff\xd3\xe1\x7e\xbf\x1c\xe6" "\xff\xbe\xa2\x58\xbe\xf1\x39\xa8\x7f\x1d\x6f\xf7\xc9\xb0\xfd\x71\x7d" "\xf1\x76\xf7\x7d\xe9\x9b\x6d\xb7\xff\xca\xa7\x8a\xe5\xcf\xbe\xb9\x58" "\xee\x48\x98\x71\xfd\xdb\xc3\xd7\xdb\xde\xfc\xfc\x5c\xe3\xfe\x7a\xb4" "\x76\xb4\xe9\x71\x65\x6f\x29\x96\x8b\xeb\x9f\xfe\xce\x1f\xe7\xd7\xc7" "\xfb\x8b\xf7\xdf\xba\xfd\xe3\x87\x2f\x37\xed\x8f\xd6\xe3\xe3\x99\x7f" "\x2f\xee\x67\xaa\x65\xf9\x78\x79\x5c\x4f\xf4\xf7\x2d\xeb\xaf\xdf\x4f" "\xe3\xf1\x19\xd7\xff\xf4\x1f\x1d\x69\xda\xcf\xdd\xd6\x7f\xe5\xa1\xe7" "\x5e\x51\xbf\xdf\xd6\xf5\xdf\xd3\xb2\xdc\xd9\x8f\xec\xc8\xd7\xbf\x78" "\x7f\xcd\x9f\xd8\xf4\x97\x9f\xfc\x4c\xdb\xf5\xc5\xed\x39\xf4\xb7\x67" "\x9b\x1e\xcf\xa1\x77\x87\xd7\x71\x58\xff\x53\x1f\x08\xc7\x63\xb8\xfe" "\xff\xae\x14\xf7\xd7\xfa\xe9\x0a\x47\xde\xdd\xfc\xfe\x13\x97\xff\xc2" "\xa6\x8b\x4d\x8f\x27\x7a\xeb\x4f\x8a\xf5\x5f\x79\xdd\x89\x7c\x6e\x18" "\xbf\x61\xe3\x8d\x2f\x7a\xf1\x4d\x97\x5e\x59\xdf\x77\x59\xf6\xec\x86" "\xe2\xfe\xba\xad\xff\xc4\x5f\x9d\x69\xda\xfe\x2f\xde\x5a\xec\x8f\x78" "\x7d\xec\xe8\xb7\xae\x7f\x39\x71\xfd\xe7\x3e\x3a\x79\xfa\xcc\xfc\x85" "\xb9\x99\xb4\x57\x1f\xbb\x39\xff\xec\x9c\xb7\x17\xdb\x13\xb7\xf7\xe6" "\xf0\xde\xda\xfa\xf5\xe1\x33\xe7\x3f\x38\x7b\x6e\x62\x7a\x62\x3a\xcb" "\x26\xca\xfb\x11\x7a\x57\xed\x4b\x61\xfe\xa8\x18\x97\x3a\x2f\xbd\xb0" "\xe4\x1d\x74\xc7\x23\xe1\xf9\xbc\xfd\xcf\xbf\xbe\xf1\xee\x7f\xfb\x74" "\xbc\xfc\x3f\xde\x53\x5c\x7e\xf9\x6d\xc5\xf7\xad\x57\x87\xe5\x3e\x1b" "\x2e\xdf\x14\x9e\xbf\xd5\xad\x7f\xa9\xa7\xee\xbc\x35\x7f\x7d\xd7\x9e" "\x09\x5b\xb8\xb0\xf4\xf3\x82\xd7\x62\xcb\xb6\xff\xde\xbf\xa2\x05\xc3" "\xe3\x6f\xfd\xb9\x20\x1e\xef\x67\x5f\xfe\xc1\x7c\x3f\xd4\xaf\xcb\xbf" "\x6f\xc4\xd7\xf5\x1a\xb7\xff\x7b\x33\xc5\xfd\x7c\x2d\xec\xd7\x85\xf0" "\x51\x3d\x5b\x6f\x5d\x5c\x5f\xe3\xf2\xf1\xb3\x11\x2e\x3f\x5c\xbc\xde" "\xd7\xbc\xff\xc2\xdb\x5c\x7c\x5e\xff\x26\x3c\xdf\xef\xf8\x41\x71\xff" "\x71\xbb\xe2\xe3\xfd\x5e\xf8\x39\xe6\x9b\x9b\x9b\xdf\xef\xe2\xf1\xf1" "\xb5\x8b\x43\xad\xf7\x9f\x7f\x8a\xc7\xa5\xf0\x7e\x92\x5d\x2a\xae\x8f" "\x4b\xc5\xfd\x7d\xf9\x85\x5b\xdb\x6e\x5e\xfc\x1c\x92\xec\xd2\x6d\xf9" "\xd7\x7f\x92\xee\xe7\xb6\x55\x3d\xcc\xe5\xcc\x7f\x6c\x7e\xea\xe4\xdc" "\xe9\x0b\x8f\x4e\x9d\x9f\x9d\x3f\x3f\x35\xff\xb1\x8f\x1f\x3e\x75\xe6" "\xc2\xe9\xf3\x87\xf3\xcf\xf2\x3c\xfc\xa1\x6e\xb7\x5f\x7c\x7f\xda\x98" "\xbf\x3f\xcd\xcc\xee\xdd\x93\xe5\xef\x56\x67\x8a\x71\x8d\x5d\xef\xed" "\x3f\xfb\xc8\xb1\x99\x7d\xd3\x77\xcf\xcc\x1e\x3f\x7a\xe1\xf8\xf9\x47" "\xce\xce\x9e\x3b\x71\x6c\x7e\xfe\xd8\xec\xcc\xfc\xdd\x47\x8f\x1f\x9f" "\xfd\x68\xb7\xdb\xcf\xcd\x1c\xdc\xb9\xeb\xc0\xee\x7d\xbb\x26\x4f\xcc" "\xcd\x1c\xdc\x7f\xe0\xc0\xee\x03\x93\x73\xa7\xcf\xd4\x37\xa3\xd8\xa8" "\x2e\xf6\x4e\x7f\x78\xf2\xf4\xb9\xc3\xf9\x4d\xe6\x0f\xee\x39\xb0\xf3" "\xfe\xfb\xf7\x4c\x4f\x9e\x3a\x33\x33\x7b\x70\xdf\xf4\xf4\xe4\x85\x6e" "\xb7\xcf\xbf\x37\x4d\xd6\x6f\xfd\xfb\x93\xe7\x66\x4f\x1e\x3d\x3f\x77" "\x6a\x76\x72\x7e\xee\xe3\xb3\x07\x77\x1e\xd8\xbb\x77\x57\xd7\x4f\x03" "\x3c\x75\xf6\xf8\xfc\xc4\xd4\xb9\x0b\xa7\xa7\x2e\xcc\xcf\x9e\x9b\x2a" "\x1e\xcb\xc4\xf9\xfc\xe2\xfa\xf7\xbe\x6e\xb7\xa7\x9c\xe6\xff\xb3\xf8" "\x79\xb6\x55\xad\xf8\x20\xbe\xec\x5d\xf7\xec\x4d\x9f\xcf\x5a\xf7\xe5" "\xc7\x97\xbd\xab\x62\x91\x96\x0f\x10\x7d\x3e\x7c\x16\xcd\xbf\xbc\xe4" "\xec\xfe\x95\x7c\x1d\x73\xff\x68\x98\x49\x45\xf2\x3f\x00\x00\x00\x54" "\x41\xcc\xfd\x63\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x1b\xc2" "\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xc7\xc3\x4c\x2a\x92\xff\x4b" "\xd7\xff\xdf\x7c\x71\x45\xeb\xd7\xff\xef\x49\xff\x7f\xe1\xa2\xfe\xbf" "\xfe\xff\x20\xf6\xff\x1f\xee\xb7\xfe\x7f\xf1\x7e\xa1\xff\xdf\x1b\x6b" "\xed\xdf\xeb\xff\x07\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xf4\x40" "\xbf\xf5\xff\x63\xee\xbf\x21\xcb\x2a\x99\xff\x01\x00\x00\xa0\x0a\x62" "\xee\xdf\x18\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x7f\x63\x98\x89" "\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x8b\xc2\x4c\x2a\x92\xff\xf5\xff" "\xf5\xff\x9d\xff\x5f\xff\x5f\xff\xbf\xfd\xfa\xf5\xff\x07\x93\xfe\x7f" "\x67\xfa\xff\x5d\xe8\xff\x4f\x65\xd5\xea\xff\x5f\xea\xe5\xf6\xeb\xff" "\xeb\xff\xb3\x54\xbf\xf5\xff\x63\xee\x7f\x71\x98\x49\x45\xf2\x3f\x00" "\x00\x00\x54\x41\xcc\xfd\x37\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31" "\xf7\xdf\x1c\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xbf\x29\xcc\xe4" "\x50\x96\xfd\xe3\xf5\xda\xa8\x75\xa4\xff\xaf\xff\xaf\xff\xaf\xff\xaf" "\xff\xdf\x7e\xfd\xfa\xff\x83\x49\xff\xbf\x33\xfd\xff\x2e\xf4\xff\x9d" "\xff\x5f\xff\x5f\xff\x9f\x9e\xea\xb7\xfe\x7f\xcc\xfd\x2f\x09\x33\xf1" "\xf7\x7f\x00\x00\x00\x28\x8d\x98\xfb\x5f\x1a\x66\x22\xff\x03\x00\x00" "\x40\xff\x19\xb9\xba\x9b\xc5\xdc\xff\xb2\x30\x93\x25\xf9\xff\x2a\x57" "\x00\x00\x00\x00\x5c\x77\x31\xf7\xdf\x92\xb5\x14\xc1\x2b\xf2\xf7\x7f" "\xfd\x7f\xfd\xff\xfe\xef\xff\x6f\x48\xd7\xe9\xff\xeb\xff\x67\x7d\xd9" "\xff\x1f\xce\xf4\xff\xfb\x87\xfe\x7f\x67\xfa\xff\x5d\xe8\xff\xeb\xff" "\xeb\xff\xeb\xff\xd3\x53\xfd\xd6\xff\xcf\x73\x7f\x36\x9e\xbd\x3c\xcc" "\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\x5b\xc3\x4c\xe4\x7f\x00" "\x00\x00\x28\x8d\x98\xfb\x7f\x29\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88" "\xb9\x7f\x73\x98\x49\x45\xf2\xbf\xfe\xbf\xfe\x7f\xff\xf7\xff\x9d\xff" "\x5f\xff\xbf\xdf\xfb\xff\xce\xff\xdf\x4f\xf4\xff\x3b\xd3\xff\xef\x42" "\xff\x5f\xff\x5f\xff\x5f\xff\x9f\x9e\xea\xb7\xfe\x7f\xcc\xfd\xb7\x85" "\x99\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\x7f\x7b\x98\x89\xfc\x0f" "\x00\x00\x00\xa5\x11\x73\xff\x2f\x87\x99\xc8\xff\x00\x00\x00\x50\x1a" "\x31\xf7\x6f\x09\x33\xa9\x48\xfe\xd7\xff\xef\xf3\xfe\x7f\x6c\x8e\xea" "\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xaf\x88\xfe\x7f\x67\xfa\xff\x5d" "\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x53\xfd\xd6\xff\x8f\xb9\xff\x15" "\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\xdf\x11\x66\x22\xff" "\x03\x00\x00\x40\x69\xc4\xdc\xff\xca\x30\x13\xf9\x1f\x00\x00\x00\x4a" "\x23\xe6\xfe\x89\x30\x93\x8a\xe4\x7f\xfd\xff\x3e\xef\xff\x17\x3d\xf8" "\x31\xe7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x5f\x19\xfd\xff\xce\xf4" "\xff\xbb\xd0\xff\xd7\xff\xef\x49\xff\x7f\xe1\x62\x9b\xfe\xff\x86\x6e" "\xb7\xd7\xff\xa7\x8c\xfa\xad\xff\x1f\x73\xff\x9d\x61\x26\x15\xc9\xff" "\x00\x00\x00\x50\x05\x31\xf7\x6f\x0d\x33\x91\xff\x01\x00\x00\xa0\x34" "\x62\xee\xbf\x2b\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\x7f\x5b\x98" "\x49\x45\xf2\xbf\xfe\xff\x40\xf4\xff\x33\xfd\x7f\xfd\x7f\xfd\x7f\xfd" "\x7f\xfd\xff\x95\xd1\xff\xef\x4c\xff\xbf\x0b\xfd\x7f\xfd\x7f\xe7\xff" "\xd7\xff\xa7\xa7\xfa\xad\xff\x1f\x73\xff\xab\xc2\x4c\x2a\x92\xff\x01" "\x00\x00\xa0\x0a\x62\xee\xbf\x3b\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88" "\xb9\xff\xd5\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xdb\xc3\x4c" "\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xdb\xaf\x5f\xff" "\x7f\x30\xad\xb5\x7f\x5f\xff\x51\x40\xff\x5f\xff\x5f\xff\x5f\xff\x5f" "\xff\x5f\xff\x9f\xde\xe8\xb7\xfe\x7f\xcc\xfd\xaf\x09\x33\xa9\x48\xfe" "\x07\x00\x00\x80\x2a\x88\xb9\x7f\x47\x98\x89\xfc\x0f\x00\x00\x00\xa5" "\x11\x73\xff\x3d\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x93\x61" "\x26\x15\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xed\xd7\xaf" "\xff\x3f\x98\x9c\xff\xbf\x33\xfd\xff\x2e\xf4\xff\xf5\xff\xf5\xff\xf5" "\xff\xe9\xa9\x7e\xeb\xff\xc7\xdc\x7f\x6f\x98\x49\x45\xf2\x3f\x00\x00" "\x00\x54\x41\xcc\xfd\xf7\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7" "\x4f\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x4f\x87\x99\x54\x24" "\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xaf\xaa\xff\xff\xca\xc5\xfb\xd5" "\xff\x2f\xe8\xff\xf7\x17\xfd\xff\xce\xf4\xff\xbb\x28\x49\xff\x7f\x74" "\x55\x0f\x7a\xd1\xf5\xee\xcf\xaf\xd5\xf5\xde\xfe\xde\xf4\xff\x47\xf5" "\xff\x29\x95\x7e\xeb\xff\xc7\xdc\xbf\x33\xcc\xa4\x22\xf9\x1f\x00\x00" "\x00\xaa\x20\xe6\xfe\x5d\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd" "\xbb\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xf7\x84\x99\x54\x24" "\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x3b\xff\x7f\xfb\xf5\xeb\xff\x0f" "\x26\xfd\xff\xce\x7a\xdf\xff\x8f\x0f\x51\xff\xbf\x9f\xfa\xff\x57\xeb" "\x7a\xf7\xe7\x07\x7d\xfb\x9d\xff\x5f\xff\x9f\xa5\xfa\xad\xff\x1f\x73" "\xff\xfd\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\xef\x0d\x33" "\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xdf\x17\x66\x22\xff\x03\x00\x00" "\x40\x69\xc4\xdc\xbf\x3f\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\xff\x7a\xf6" "\xff\xb3\xec\x92\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x4f\xe9\xff\x77\xe6" "\xfc\xff\x5d\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xb3\x46\x0f\xff\x61\xe3" "\x57\xfd\xd6\xff\x8f\xb9\xff\x40\x98\x49\x45\xf2\x3f\x00\x00\x00\x54" "\x41\xcc\xfd\xaf\x0d\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xff\x95" "\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x5f\x0d\x33\xa9\x48\xfe" "\xd7\xff\x6f\xea\x9e\xd7\x1f\xae\xfe\xbf\xf3\xff\xeb\xff\xeb\xff\xe7" "\xf4\xff\x07\x93\xfe\x7f\x67\xfa\xff\x5d\xe8\xff\xeb\xff\xeb\xff\xeb" "\xff\xd3\x53\xcb\xf6\xff\x43\xf4\x5e\xef\xfe\x7f\xcc\xfd\x07\xc3\x4c" "\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xff\xb5\x30\x13\xf9\x1f\x00" "\x00\x00\x4a\x23\xe6\xfe\xd7\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31" "\xf7\x1f\x0a\x33\xa9\x48\xfe\xd7\xff\x1f\xbc\xf3\xff\xc7\xfa\x8c\xfe" "\xbf\xfe\xbf\xfe\x7f\xb9\xfa\xff\x63\xf1\x7e\xf5\xff\xd7\x64\x0d\xfd" "\xfb\xfc\xa9\xd5\xff\x0f\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xe9" "\x81\x7e\x3b\xff\x7f\xcc\xfd\xaf\x0f\x33\xa9\x48\xfe\x07\x00\x00\x80" "\x2a\x88\xb9\xff\x81\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x37" "\x84\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xbf\x31\xcc\xa4\x22\xf9" "\x5f\xff\x7f\xf0\xfa\xff\xce\xff\xaf\xff\xaf\xff\x5f\x28\x5b\xff\xdf" "\xf9\xff\x7b\xc3\xf9\xff\x3b\xd3\xff\xef\x42\xff\x5f\xff\x5f\xff\x5f" "\xff\x9f\x9e\xea\xb7\xfe\x7f\xcc\xfd\x6f\x0a\x33\xa9\x48\xfe\x07\x00" "\x00\x80\x2a\x88\xb9\xff\xcd\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc" "\xfd\x6f\x09\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\x7f\x6b\x98\x49" "\x45\xf2\xff\xba\xf7\xff\x1b\x8a\xc2\xfa\xff\xfa\xff\xfa\xff\xfa\xff" "\xfa\xff\xfa\xff\xbd\xb6\xf6\xfe\xff\xcf\xc2\x9e\xd6\xff\xd7\xff\xd7" "\xff\xd7\xff\xd7\xff\xd7\xff\x67\xad\xfa\xad\xff\x1f\x73\xff\xaf\x87" "\x99\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\xff\x60\x98\x89\xfc\x0f" "\x00\x00\x00\xa5\x11\x73\xff\xdb\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d" "\x98\xfb\xdf\x1e\x66\x52\x91\xfc\xef\xfc\xff\xfa\xff\xfa\xff\xfa\xff" "\xfa\xff\xed\xd7\xaf\xff\x3f\x98\x9c\xff\xbf\xb3\x01\xeb\xff\xff\xfc" "\xa6\x70\xb9\xfe\x7f\x41\xff\xbf\xbf\xb7\x7f\xb5\xfd\xff\x91\x96\xaf" "\xaf\x49\xff\xff\xfb\xcb\xf5\xff\x17\x36\xb4\xde\x5e\xff\x9f\x6b\xa1" "\xdf\xfa\xff\x31\xf7\xbf\x23\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20" "\xe6\xfe\x77\x86\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xbf\x2b\xcc" "\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x37\xc2\x4c\x2a\x92\xff\xf5" "\xff\xeb\xdb\xb1\xd8\x5e\xd6\xff\x2f\x6b\xff\x7f\x48\xff\x5f\xff\x5f" "\xff\xbf\x22\xf4\xff\x3b\x1b\xb0\xfe\xff\x20\x9c\xff\x7f\x58\xff\x7f" "\x91\xfe\xbf\xf3\xff\xeb\xff\xd3\xaa\xdf\xfa\xff\x31\xf7\xbf\x3b\xcc" "\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\x87\xc2\x4c\xe4\x7f\x00" "\x00\x00\x28\x8d\x98\xfb\x1f\x0e\x33\x91\xff\x01\x00\x00\xa0\x34\x62" "\xee\x7f\x4f\x98\x49\x45\xf2\xbf\xfe\xbf\xf3\xff\x57\xa3\xff\xef\xfc" "\xff\x99\xfe\xbf\xfe\x7f\x45\xe8\xff\x77\xa6\xff\xdf\x85\xf3\xff\xaf" "\x67\x7f\xbe\xf5\xf4\xf7\x83\xb6\xfd\x4b\x5c\x93\xfe\xff\x7f\xe9\xff" "\x33\xd8\xfa\xad\xff\x1f\x73\xff\x23\x61\x26\x15\xc9\xff\x00\x00\x00" "\x50\x05\x31\xf7\xbf\x37\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff" "\x37\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xdf\x17\x66\x52\x91" "\xfc\xaf\xff\x3f\x28\xfd\xff\x89\x01\xed\xff\x3f\xae\xff\x7f\x0d\xfb" "\xff\x77\xdc\x54\x2c\xa7\xff\xaf\xff\xcf\x22\xfd\xff\xce\xf4\xff\xbb" "\xd0\xff\x77\xfe\xff\x73\x13\xd3\x1b\xfb\xa9\xff\xef\xfc\xff\x0c\xb8" "\x7e\xeb\xff\xc7\xdc\xff\xfe\x30\x93\x95\xe7\xff\xf1\x15\x2f\x09\x00" "\x00\x00\x5c\x17\x31\xf7\xff\x56\x98\x49\x45\xfe\xfe\x0f\x00\x00\x00" "\x55\x10\x73\xff\x6f\x87\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xff" "\x4e\x98\x49\x45\xf2\xbf\xfe\xff\xa0\xf4\xff\x9d\xff\x3f\xd3\xff\x77" "\xfe\xff\x96\xc7\xa3\xff\xaf\xff\xdf\xce\xfa\xf5\xff\xe3\x3b\x8f\xfe" "\xbf\xfe\xbf\xfe\x7f\x54\x96\xfe\x7f\x5f\x9d\xff\x5f\xff\x9f\x01\xd7" "\x6f\xfd\xff\x98\xfb\x7f\x37\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20" "\xe6\xfe\x0f\x84\x99\xc8\xff\x00\x00\x00\x30\x10\xda\xfd\x3f\xd9\xad" "\x62\xee\x3f\x1c\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x7f\x24\xcc" "\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\xbf\x4f\xfb\xff\x7f\xb6\xf5\x5f" "\xbf\xfb\xed\x77\x1e\xd9\xa9\xff\xaf\xff\xaf\xff\xbf\x2a\xeb\x7a\xfe" "\xff\xfa\x8b\xdf\xf9\xff\xf5\xff\xf5\xff\x13\xfd\x7f\xfd\x7f\xfd\x7f" "\x5a\xf5\x5b\xff\x3f\xe6\xfe\xa3\x61\x26\x15\xc9\xff\x00\x00\x00\x50" "\x05\x31\xf7\xff\x5e\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xb1" "\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x99\x30\x93\x8a\xe4\x7f" "\xfd\x7f\xfd\x7f\xfd\xff\x3e\xed\xff\x0f\xf0\xf9\xff\xe3\xfe\xd0\xff" "\x6f\xd6\xb3\xfe\x7f\x7c\xd3\xd5\xff\x6f\xab\xe8\xdf\xa7\xa3\xe8\xda" "\xf6\xff\xdf\xbb\xd8\x13\xd7\xff\x5f\x6d\xff\x7f\xac\xed\xa5\xfa\xff" "\xfa\xff\x83\xbc\xfd\xfa\xff\xfa\xff\x2c\xd5\x6f\xfd\xff\x98\xfb\x67" "\xc3\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x42\xee\x1f\x3a\x5e\xcc\xc5" "\x2b\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x4f\x84\x99\xc8\xff\x00\x00" "\x00\x50\x1a\x31\xf7\x7f\x30\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff" "\x5f\xff\xdf\xf9\xff\xdb\xaf\xbf\x53\xff\xbf\x36\xe2\xfc\xff\xfd\x2a" "\xf5\xef\x7f\x9a\xbf\x50\xf4\xff\x5b\xf4\x4f\xff\xbf\x3d\xfd\x7f\xfd" "\xff\x41\xde\x7e\xfd\x7f\xfd\x7f\x96\xea\xb7\xfe\x7f\xcc\xfd\x73\x61" "\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\x7f\x28\xcc\x44\xfe\x07" "\x00\x00\x80\xd2\x88\xb9\xff\xc3\x61\x26\xf2\x3f\x00\x00\x00\x94\x46" "\xcc\xfd\x27\xc3\x4c\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5" "\xff\xdb\xaf\xbf\x6f\xcf\xff\xaf\xff\xdf\xd1\x5a\xfb\xf7\xfa\xff\x81" "\xfe\xff\xff\xb3\x77\x67\x4f\x96\xd6\x77\x1d\xc7\x4f\xeb\xe0\xf4\x14" "\x96\xe5\x9d\x17\xde\x58\xe5\xa5\x7f\x02\x17\x7a\xad\x7f\x80\x17\xde" "\x78\x63\x95\x65\x95\xb8\xa0\xe2\x86\x0c\xe2\xbe\xa0\xa8\xb8\x2b\x82" "\x9a\x9d\x2c\x10\x08\x90\x04\xb2\x2f\x90\x8d\x84\x84\x2c\x90\x84\xec" "\xfb\x42\x16\xc8\x24\xd4\xa4\xe8\xfe\x7e\xbf\xd3\xcb\xd3\xcf\xe9\x9e" "\x3e\x7d\xfa\x79\x7e\xbf\xd7\xeb\x82\xaf\xb4\x34\xe7\x64\x6a\x6a\x86" "\xcf\xf4\xbc\xe7\xe9\xbb\xff\x7f\x5a\xff\xaf\xff\xd7\xff\xb3\x1a\x53" "\xeb\xff\x73\xf7\xff\x6a\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee" "\xbf\x3a\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x7f\x2d\x6e\xb1\xff" "\x01\x00\x00\xa0\x19\xb9\xfb\x7f\x3d\x6e\xe9\x64\xff\xeb\xff\x8f\xd3" "\xff\x5f\xaa\x94\xf5\xff\xbb\xdf\xff\x24\xfa\xff\x9f\xd6\xff\x1f\xf4" "\xfa\xfa\x7f\xfd\x7f\xcb\xf4\xff\xe3\xf4\xff\x4b\xe8\xff\x3d\xff\x5f" "\xff\xaf\xff\x67\xa5\xa6\xd6\xff\xe7\xee\xff\x8d\xb8\xa5\x93\xfd\x0f" "\x00\x00\x00\x3d\xc8\xdd\xff\x9b\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8" "\xdd\x7f\x4d\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x56\xdc\xd2" "\xc9\xfe\xdf\xd3\xff\x6f\x2c\xfa\xec\xff\x33\xe3\xf5\xfc\xff\x96\xfa" "\x7f\xcf\xff\x3f\xf0\xf5\xf5\xff\xfa\xff\x96\xad\xb7\xff\xbf\xe1\xb9" "\x1f\xf9\xf4\xff\xfa\x7f\xfd\x7f\xd0\xff\x1f\xaa\xff\x3f\x7b\xd0\xe7" "\xeb\xff\x69\xd1\xd4\xfa\xff\xdc\xfd\xbf\x1d\xb7\x74\xb2\xff\x01\x00" "\x00\xa0\x07\xb9\xfb\x7f\x27\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb" "\xaf\x8d\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xdf\x8d\x5b\x3a\xd9" "\xff\xab\x7b\xfe\xff\xb9\xad\x8f\xcf\xb4\xff\x2f\xfa\x7f\xfd\xff\xd6" "\x07\xf4\xff\xfa\x7f\xfd\xff\x6c\x79\xfe\xff\xb8\x9e\xfa\xff\x6b\x1e" "\xbd\xf2\xea\xa7\xee\xf9\xf1\x7b\x8f\xf2\xfa\xfa\x7f\xfd\xbf\xe7\xff" "\x1f\xad\xff\xdf\xf9\x87\x19\xe8\xff\x19\x32\xb5\xfe\x3f\x77\xff\xef" "\xc5\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xdf\x8f\x5b\xec\x7f" "\x00\x00\x00\x68\x46\xee\xfe\x3f\x88\x5b\xec\x7f\x00\x00\x00\x68\x46" "\xee\xfe\x3f\x8c\x5b\x3a\xd9\xff\xab\xeb\xff\x67\xfd\xfc\xff\xa2\xff" "\xd7\xff\x6f\x7d\x40\xff\xaf\xff\xd7\xff\xcf\x96\xfe\x7f\x5c\x4f\xfd" "\xff\xe5\xbc\xbe\xfe\x5f\xff\xaf\xff\xf7\xfc\x7f\x56\x6b\x6a\xfd\x7f" "\xee\xfe\xeb\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x1f\xc5" "\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xf5\x71\x8b\xfd\x0f\x00\x00" "\x00\xcd\xc8\xdd\x7f\x3e\x6e\xe9\x64\xff\xeb\xff\x4f\xbe\xff\x7f\x56" "\xff\xaf\xff\x8f\xab\xff\xd7\xff\xeb\xff\x4f\x9e\xfe\x7f\x9c\xfe\x7f" "\x09\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xa5\xa6\xd6\xff\xe7\xee\xbf\x21" "\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\xff\x71\xdc\x62\xff\x03" "\x00\x00\x40\x33\x72\xf7\xdf\x18\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc" "\xfd\x7f\x12\xb7\x74\xb2\xff\xf5\xff\x9e\xff\xaf\xff\xd7\xff\xeb\xff" "\x87\x5f\x5f\xff\x3f\x4f\xfa\xff\x71\xfa\xff\x25\xf4\xff\xc7\xed\xe7" "\xaf\xd0\xff\xeb\xff\xf5\xff\xec\x74\xc4\xfe\xff\xc2\xc8\x0f\xdb\x2b" "\xe9\xff\x73\xf7\xff\x69\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee" "\xff\xb3\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\xf3\xb8\xc5\xfe" "\x07\x00\x00\x80\x66\xe4\xee\xff\x8b\xb8\xa5\x93\xfd\xaf\xff\xd7\xff" "\xeb\xff\xf5\xff\x97\xdd\xff\xef\xff\xae\xb7\x45\xff\x3f\x4c\xff\xbf" "\x1e\xfa\xff\x71\x93\xe9\xff\x37\xce\x0c\x7e\x58\xff\x3f\xfb\xfe\xdf" "\xf3\xff\xf5\xff\xfa\x7f\x76\x99\xda\xf3\xff\x73\xf7\xff\x65\xdc\xd2" "\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xff\xab\xb8\x65\x64\xff\x1f\xf9" "\x17\xf3\x01\x00\x00\x80\x53\x95\xbb\xff\xaf\xe3\x16\x5f\xff\x07\x00" "\x00\x80\xd9\xcb\xea\x2c\x77\xff\xdf\xc4\x2d\x9d\xec\x7f\xfd\xbf\xfe" "\x5f\xff\xaf\xff\xf7\xfc\xff\xe1\xd7\x1f\xeb\xff\xef\xdd\xf1\xfe\xf4" "\xff\xd3\xa2\xff\x1f\x37\x99\xfe\xff\x00\xfa\x7f\xfd\xff\x9c\xdf\xbf" "\xfe\x5f\xff\xcf\x7e\x53\xeb\xff\x73\xf7\xff\x6d\xdc\xd2\xc9\xfe\x07" "\x00\x00\x80\x1e\xe4\xee\xbf\x29\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9" "\xfb\xff\x2e\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xff\x3e\x6e\xe9" "\x64\xff\x0f\xf7\xff\x97\xfe\xff\xfa\xff\xc3\xd1\xff\xef\x7e\xff\xfa" "\xff\xe1\xef\x1f\xab\xea\xff\xf3\xdf\xa8\xff\x1f\xed\xff\x7f\xc6\xf3" "\xff\xfb\xa4\xff\x1f\xb7\xfe\xfe\xff\xac\xfe\x7f\xf7\xbf\x5f\xff\x7f" "\x82\x4e\xfb\xfd\x37\xde\xff\x9f\x5b\xf6\xf9\xfa\x7f\x86\x4c\xad\xff" "\xcf\xdd\x7f\x73\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xff\x87" "\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\xc7\xb8\xc5\xfe\x07\x00" "\x00\x80\x66\xe4\xee\xff\xa7\xb8\xa5\x93\xfd\xef\xf9\xff\xfa\x7f\xfd" "\xff\xfc\xfa\x7f\xcf\xff\xdf\x76\x9a\xcf\xff\x5f\xac\xbd\xff\x3f\xa3" "\xff\x3f\x24\xfd\xff\x38\xcf\xff\x5f\x42\xff\xaf\xff\xd7\xff\x7b\xfe" "\x3f\x2b\x35\xb5\xfe\x3f\x77\xff\x2d\x71\x4b\x27\xfb\x1f\x00\x00\x00" "\x7a\x70\xcb\x33\x8b\xad\xdd\xff\xcf\x8b\x85\xfd\x0f\x00\x00\x00\x73" "\xb4\xf3\xf7\x0e\xec\xfd\x0d\xa5\x21\x77\xff\xbf\xc4\x2d\xf6\x3f\x00" "\x00\x00\x34\x23\x77\xff\xbf\xc6\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff" "\xaf\xff\xd7\xff\x0f\xbf\xfe\xb4\xfa\x7f\xcf\xff\x3f\x2c\xfd\xff\xb8" "\xb9\xf4\xff\xe7\xf4\xff\x83\x6f\x6f\xa6\xfd\xff\x99\xc6\xfa\xff\x5b" "\x0f\xfa\xfc\x29\xf4\xff\xd7\xeb\xff\x99\x98\x5d\xfd\xff\x03\x97\x3e" "\x7e\x5a\xfd\x7f\xee\xfe\x7f\x8b\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83" "\xdc\xfd\xff\x1e\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xff\x11\xb7" "\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xff\x19\xb7\x74\xb2\xff\x4f\xbc" "\xff\x3f\x77\xf0\x6b\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf" "\x6a\xfa\xff\x71\x73\xe9\xff\x3d\xff\xbf\xa9\xfe\xdf\xf3\xff\x3d\xff" "\x5f\xff\xdf\xb1\x4b\xfd\xff\xee\x1f\x0f\x4f\xab\xff\xcf\xdd\xff\x5f" "\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xbf\xe3\x16\xfb\x1f" "\x00\x00\x00\x9a\x91\xbb\xff\xd6\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4" "\xee\xff\x9f\xb8\xa5\x93\xfd\xef\xf9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\x3f\xfc\xfa\xfa\xff\x79\xd2\xff\x8f\xd3\xff\x2f\xa1\xff\xd7\xff\xeb" "\xff\xf5\xff\xac\xd4\xae\xe7\xff\xef\x70\xac\xfe\x7f\xc7\x9f\x31\x77" "\xd4\xfe\x3f\x77\xff\x6d\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb" "\xff\xf6\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\xdf\xb8\xc5\xfe" "\x07\x00\x00\x80\x66\xe4\xee\xff\xbf\xb8\xa5\x93\xfd\xaf\xff\x3f\xd9" "\xfe\x3f\x3f\xae\xff\xd7\xff\x2f\xf4\xff\xfa\x7f\xfd\xff\x5a\x74\xdb" "\xff\x6f\x0c\xfd\x4c\xb4\xdf\x01\xfd\xff\xc3\xbf\x7c\xfe\xe7\x76\x7f" "\x44\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xac\xc0\x89\xf4\xff\x3b\x1c" "\xaa\xff\xbf\x78\xe9\xbf\x2e\x73\xf7\xff\x7f\xdc\xd2\xc9\xfe\x07\x00" "\x00\x80\x1e\xe4\xee\x7f\x5e\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7" "\x3f\x3f\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x5f\x10\xb7\x1c\x71" "\xff\xff\xe8\x4a\xdf\xd5\xfa\xe8\xff\x3d\xff\x5f\xff\xaf\xff\xd7\xff" "\x0f\xbf\xbe\xfe\x7f\x9e\xba\xed\xff\x0f\xc9\xf3\xff\x97\xd0\xff\xeb" "\xff\xf5\xff\xfa\x7f\x56\x6a\x12\xfd\xff\x8e\xbf\xcf\xdd\xff\xc2\xb8" "\xc5\xd7\xff\x01\x00\x00\xa0\x19\xb9\xfb\x5f\x14\xb7\xd8\xff\x00\x00" "\x00\xd0\x8c\xdc\xfd\x2f\x8e\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe" "\x97\xc4\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x0f\xbf" "\xfe\xd1\xfb\xff\xed\xef\x89\x9b\x8b\x61\xfa\xff\xf5\xd0\xff\x8f\xd3" "\xff\x2f\xa1\xff\xd7\xff\xeb\xff\xf5\xff\xac\xd4\xd4\xfa\xff\xdc\xfd" "\x77\xc4\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x97\xc6\x2d\xf6" "\x3f\x00\x00\x00\x34\x23\x77\xff\xcb\xe2\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\xe5\x71\x4b\x27\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5" "\xff\xc3\xaf\xef\xf9\xff\xf3\xa4\xff\x1f\xa7\xff\x5f\x2c\x16\x77\x8e" "\xbc\x81\xa1\xfe\xff\xe2\x59\xfd\xbf\xfe\x5f\xff\xaf\xff\xe7\x32\x4d" "\xad\xff\xcf\xdd\xff\x8a\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd" "\x7f\x67\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xdf\x15\xb7\xd8\xff" "\x00\x00\x00\xd0\x8c\xdc\xfd\xaf\x8c\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\x1f\x7e\x7d\xfd\xff\x3c\xe9\xff\xc7\xe9\xff\x97" "\xf0\xfc\x7f\xfd\xbf\xfe\x5f\xff\xcf\x4a\x4d\xad\xff\xcf\xdd\x7f\x77" "\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xbf\x27\x6e\xb1\xff\x01" "\x00\x00\xa0\x19\xb9\xfb\x5f\x15\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc" "\xfd\xf7\xc6\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x3f\x91\xfe" "\xff\xbc\xfe\x7f\x2f\xfd\xff\x7a\x9c\x5c\xff\xbf\x58\x6d\xff\xff\x23" "\xc3\x1f\xd6\xff\xeb\xff\xf5\xff\xf3\x7d\xff\xfa\x7f\xfd\x3f\xfb\xad" "\xab\xff\xbf\x10\x3f\xde\x2f\xeb\xff\x73\xf7\xdf\x17\xb7\x74\xb2\xff" "\x01\x00\x00\xa0\x07\xb9\xfb\xef\x8f\x5b\xec\x7f\x00\x00\x00\x68\x46" "\xee\xfe\x57\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x6b\xe2\x96" "\x4e\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x7b\xfe\xff\xf0\xeb\xeb\xff" "\xe7\xc9\xf3\xff\xc7\xe9\xff\x97\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x56" "\x6a\x5d\xfd\xff\x41\xbd\xff\xde\xbf\xcf\xdd\xff\xda\xb8\xa5\x93\xfd" "\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x40\xdc\x62\xff\x03\x00\x00\x40\x33" "\x72\xf7\x3f\x18\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xaf\x8b\x5b" "\x3a\xd9\xff\xfa\x7f\xfd\xff\xee\xfe\x7f\xb1\xd0\xff\xeb\xff\xf5\xff" "\xdb\xd6\xd0\xff\x6f\x2e\xf4\xff\x2b\xa7\xff\x1f\xa7\xff\x5f\x42\xff" "\xdf\x66\xff\xff\x03\x8b\x86\xfa\xff\x73\x07\x7e\xbe\xfe\x9f\x29\x9a" "\x5a\xff\x9f\xbb\xff\xf5\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb" "\xff\x0d\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xc6\xb8\xc5\xfe" "\x07\x00\x00\x80\x66\xe4\xee\x7f\x53\xdc\xd2\xd2\xfe\x7f\xf6\xe0\xf4" "\x6d\xfe\xfd\xff\xd9\x3d\x9f\xa8\xff\x5f\x2c\x16\x8f\x5f\xeb\xf9\xff" "\xfa\xff\x91\xd7\xd7\xff\x4f\xa6\xff\xaf\x6f\x55\xfd\xff\xea\xe8\xff" "\xc7\xe9\xff\x97\xd0\xff\xb7\xd9\xff\x7b\xfe\xbf\xfe\x9f\x53\x33\xb5" "\xfe\x3f\x77\xff\x9b\xe3\x96\x96\xf6\x3f\x00\x00\x00\x74\x2e\x77\xff" "\x5b\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xad\x71\x8b\xfd\x0f" "\x00\x00\x00\xcd\xc8\xdd\xff\xb6\xb8\xa5\x93\xfd\x3f\xff\xfe\x7f\xef" "\x27\xea\xff\x17\xc7\x7a\xfe\xbf\xfe\x7f\xeb\x03\xfa\x7f\xfd\xbf\xfe" "\x7f\xb6\x8e\xdb\xdf\xdf\xb6\x19\x3f\xa7\xe9\xff\xf5\xff\xfa\xff\xc1" "\x7e\x7e\xe3\x80\xff\xee\x59\xe8\xff\xf5\xff\xfa\x7f\x06\x4c\xad\xff" "\xcf\xdd\xff\xf6\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x50" "\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x1c\xb7\xd8\xff\x00\x00" "\x00\xd0\x8c\xdc\xfd\xef\x88\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf\xfe\x7f" "\x9e\xfd\xff\xa6\xfe\x5f\xff\xaf\xff\x1f\x34\x95\xe7\xff\x5f\x75\xd5" "\xcf\x3e\xa2\xff\xd7\xff\xb7\xd8\xff\x8f\xd1\xff\xeb\xff\xf5\xff\xec" "\x35\xb5\xfe\x3f\x77\xff\x3b\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20" "\x77\xff\xbb\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xdd\x71\x8b" "\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x9e\xb8\xa5\x93\xfd\xbf\xbf\xff" "\xbf\x62\xb1\x5d\xa8\x6e\x1b\xea\xff\xa3\x51\xd3\xff\xef\xa0\xff\xdf" "\xfd\xfe\xf5\xff\xc3\xdf\x3f\x3c\xff\x5f\xff\xaf\xff\x3f\x79\x53\xe9" "\xff\xa7\xf1\xfc\xff\xfd\x3f\x3b\xe9\xff\x97\xd0\xff\xeb\xff\xd7\xd5" "\xff\xff\xc4\xfe\xcf\xd7\xff\xd3\xa2\xa9\xf5\xff\xb9\xfb\x1f\x89\x5b" "\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xef\x8d\x5b\xec\x7f\x00\x00" "\x00\x68\x46\xee\xfe\xf7\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff" "\xa3\x71\x4b\x27\xfb\xdf\xf3\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf8" "\xf5\xf5\xff\xf3\xa4\xff\x1f\xa7\xff\x5f\x42\xff\x7f\xfc\x7e\x3e\x7f" "\x54\xd5\xff\xcf\xf7\xf9\xff\x3f\xa8\xff\x67\x75\xa6\xd6\xff\xe7\xee" "\x7f\x7f\xdc\xb2\x35\xfc\x7e\xf2\x87\x2f\xf3\x7f\x26\x00\x00\x00\x30" "\x21\xb9\xfb\x3f\x10\xb7\x74\xf2\xf5\x7f\x00\x00\x00\xe8\x41\xee\xfe" "\xc7\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x83\x71\x4b\x27\xfb" "\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xc3\xaf\xaf\xff\x9f\x27\xfd" "\xff\x38\xfd\xff\x12\xfd\xf4\xff\x9b\x43\x1f\x3c\xed\x7e\xfe\xb8\x4e" "\xfb\xfd\x37\xd3\xff\x7b\xfe\x3f\x2b\x34\xb5\xfe\x3f\x77\xff\x87\xe2" "\x96\x4e\xf6\x3f\x00\x00\x00\xb4\xed\x99\xad\xbf\xe6\xee\xff\x70\xdc" "\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x24\x6e\xb1\xff\x01\x00\x00" "\xa0\x19\xb9\xfb\x1f\x8f\x5b\x3a\xd9\xff\xfa\x7f\xfd\x7f\xfb\xfd\xff" "\x2f\xea\xff\xf7\xbc\xbe\xfe\x7f\xed\xfd\xff\x8d\xf7\xe9\xff\xd7\x46" "\xff\x9f\x3f\xa3\x0f\xd3\xff\x2f\xd1\x4f\xff\x3f\xe8\xb4\xfb\xf9\xb9" "\xbf\x7f\xfd\xbf\xfe\x9f\xfd\xa6\xd6\xff\xe7\xee\x7f\x22\x6e\xe9\x64" "\xff\x03\x00\x00\x40\x0f\x72\xf7\x7f\x34\x6e\xb1\xff\x01\x00\x00\xa0" "\x19\xb9\xfb\x3f\x16\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x1f\x8f" "\x5b\x3a\xd9\xff\xfa\xff\xbe\xfa\xff\x8d\x45\x8f\xfd\xbf\xe7\xff\xeb" "\xff\x4f\xbd\xff\xdf\xa2\xff\x5f\x8f\xf9\xf4\xff\xb7\x9f\x19\xfa\xa8" "\xe7\xff\xeb\xff\xf5\xff\xf3\x7d\xff\xfa\x7f\xfd\x3f\xfb\x4d\xad\xff" "\xcf\xdd\xff\xe4\xc6\x99\x2e\xf7\x3f\x00\x00\x00\xcc\xd5\xcf\xff\xd4" "\xaf\x3c\x71\xd8\x7f\xf6\xc9\xad\xbf\x6e\x2e\x3e\x11\xb7\xd8\xff\x00" "\x00\x00\xd0\x8c\xdc\xfd\x9f\x8c\x5b\xec\x7f\x00\x00\x00\x68\x46\xee" "\xfe\x4f\xc5\x2d\x9d\xec\x7f\xfd\x7f\x5f\xfd\x7f\x9f\xcf\xff\xd7\xff" "\xeb\xff\xf5\xff\x3d\x99\x4f\xff\x3f\x4c\xff\xaf\xff\xd7\xff\xcf\xf7" "\xfd\xeb\xff\xf5\xff\xec\x37\xb5\xfe\x3f\x77\xff\xa7\xe3\x96\x1d\xc3" "\x6f\xf0\x0f\xe8\x01\x00\x00\x00\x4e\xcf\x0f\x1d\xed\x1f\xcf\xdd\xff" "\x99\xb8\xa5\x93\xaf\xff\x03\x00\x00\x40\x0f\x72\xf7\x7f\x36\x6e\xd9" "\xb7\xff\x2f\x1e\xf2\x77\xb5\x03\x00\x00\x00\x53\x93\xbb\xff\x73\x71" "\x4b\x27\x5f\xff\xd7\xff\x4f\xbc\xff\x5f\x9c\x50\xff\x1f\xff\x9c\xfe" "\x7f\x9b\xfe\x5f\xff\x3f\xf4\xfa\xfa\xff\x79\xd2\xff\x8f\x3b\x66\xff" "\x7f\x71\x43\xff\xaf\xff\x1f\xa1\xff\xd7\xff\xeb\xff\xd9\x6b\x6a\xfd" "\x7f\xee\xfe\xfb\xef\x5e\x74\xb9\xff\x01\x00\x00\xa0\x51\xbb\x7e\x45" "\xe1\xf3\x5b\x7f\xdd\x5c\x7c\x21\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9" "\xfb\xbf\x18\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x5f\x8a\x5b\x3a" "\xd9\xff\xfa\xff\x89\xf7\xff\x97\xf5\xfc\xff\x73\xf5\x7f\x79\xfe\x7f" "\xe7\xfd\xff\x4d\x9b\x83\xaf\xaf\xff\xd7\xff\xb7\x4c\xff\x3f\xce\xf3" "\xff\x97\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x56\xea\x08\xfd\xff\xd6\x20" "\x3d\xe9\xfe\x3f\x77\xff\x97\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20" "\x77\xff\x57\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xab\x71\x8b" "\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xb5\xb8\xa5\x93\xfd\xaf\xff\x3f" "\x85\xfe\xff\xe6\xb3\x8b\xc5\x89\xf6\xff\x87\x78\xfe\xbf\xfe\xbf\x8f" "\xfe\xff\x80\xd7\x6f\xa7\xff\xff\xb1\x2b\xcf\x3f\xf4\x0b\xbf\x74\xd7" "\x1d\xfa\x7f\x2e\x59\x67\xff\x9f\xdf\x17\xf4\xff\xfa\x7f\xfd\xff\x36" "\xfd\xbf\xfe\x5f\xff\xcf\x5e\x53\x7b\xfe\x7f\xee\xfe\xaf\xc7\x2d\x9d" "\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xa7\xe2\x16\xfb\x1f\x00\x00\x00" "\x9a\x91\xbb\xff\x1b\x71\xcb\x73\xfb\xff\xc1\xd3\x7a\x57\x00\x00\x00" "\xc0\x2a\xe5\xee\xff\x66\xdc\xd2\xc9\xd7\xff\xf5\xff\x2d\x3e\xff\x7f" "\x9e\xfd\x7f\x7e\x5b\x9f\x42\xff\x7f\x7e\x7e\xfd\x7f\x36\xc5\xbd\xf7" "\xff\x9e\xff\xaf\xff\xdf\xcf\xf3\xff\xc7\xe9\xff\x97\xd0\xff\xeb\xff" "\xf5\xff\xfa\x7f\x56\x6a\x6a\xfd\x7f\xee\xfe\x6f\xc5\x2d\x9d\xec\x7f" "\x00\x00\x00\xe8\x41\xee\xfe\x6f\xc7\x2d\xb9\xff\x37\x8e\xfc\x4b\xf7" "\x00\x00\x00\xc0\xc4\xe4\xee\x7f\x3a\x6e\xf1\xf5\x7f\x00\x00\x00\x68" "\x46\xee\xfe\x67\xe2\x96\x4e\xf6\xff\x1c\xfb\xff\x0b\x7b\xde\xe3\xee" "\x4f\xd4\xff\x2f\x66\xda\xff\x27\xcf\xff\xbf\xf4\x79\x9e\xff\xbf\x4d" "\xff\xaf\xff\x3f\x0a\xfd\xff\x38\xfd\xff\x12\xfa\x7f\xfd\xbf\xfe\x5f" "\xff\xcf\x4a\x4d\xad\xff\xcf\xdd\xff\x9d\xb8\xa5\x93\xfd\x0f\x00\x00" "\x00\x3d\xc8\xdd\x7f\x21\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xbf" "\x1b\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xdf\x8b\x5b\x3a\xd9\xff" "\x73\xec\xff\x3d\xff\x5f\xff\xaf\xff\xd7\xff\x2f\xf4\xff\xfa\xff\x03" "\xe8\xff\xc7\xe9\xff\x97\xd0\xff\xeb\xff\xe7\xda\xff\xdf\xbd\x7d\x1e" "\xbb\x2e\xbe\x2d\xf4\xff\x4c\xc4\xd4\xfa\xff\xdc\xfd\xdf\x0f\x00\x00" "\xff\xff\xca\xcc\x75\x51", 25217)); NONFAILING(syz_mount_image(/*fs=*/0x200000000000, /*dir=*/0x2000000000c0, /*flags=MS_REC*/ 0x4000, /*opts=*/0x200000000200, /*chdir=*/1, /*size=*/0x6281, /*img=*/0x200000006600)); break; case 1: // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0x42 (4 bytes) // mode: open_mode = 0x110 (2 bytes) // ] // returns fd NONFAILING(memcpy((void*)0x200000000040, "./file1\000", 8)); syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000040ul, /*flags=O_CREAT|O_RDWR*/ 0x42, /*mode=S_IWGRP|S_IRUSR*/ 0x110); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000, /*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=*/0x1000, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; install_segv_handler(); for (procid = 0; procid < 6; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }