// https://syzkaller.appspot.com/bug?id=3887482187ee08305b88747978f564c0ab606fd3 // 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 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 < 1; 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 // 00} (length 0xfb) // } // flags: mount_flags = 0x2000000 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYRES16: ANYRES16 (resource) // } // union ANYUNION { // ANYRESDEC: ANYRES64 (resource) // } // union ANYUNION { // ANYRESHEX: ANYRES64 (resource) // } // union ANYUNION { // ANYRES16: ANYRES16 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {af a9 5f 9c ab 97 20 40 eb 9f c4 6c e5 66 bc // 44 86 ba 9a 69 89 c0 bc bc 79 53 94 ff 2d 89 96 81 db d0 ed 51 // 85 53 fd d7 37 cf 7c ab 81 a4 8d b6 f3 7c eb 75 1a 42 15 75 5d // fa 88 1b 23 65 3a 6a de e0 22 80 71 3c 97 c4 c2 33 7a cc 38 d8 // db a2 77 7d 97 f0 f3 a7 d4 e2 af 5e 3e 3d 1b a6 b3 b7 29 b1 08 // 2f 1d 55 cd 2d 18 3b 78 46 d0 af 75 0e ad 5f 28 77 c4 fd 37 0b // b6 2e f8 82 b9 e0 dd 6a ed 80 29 5d 4b 2b a6 a0 82 89 bf cf b5 // 5e 32 0c b2 ca f5 a6 f9 12 28 a8 73 08 7a 9e 00 e2 f5 ad 60 2a // 07 c1 8d e2 58 a0 4d 36 d2 e3 b0 f0 b8 70 e5 91 83 d6 3f b1 15 // b8 71 bc 6a 89 20 7f 58 8d 94 9b 52 ff ac 44 12 8b a0 19 11 3a // 77 f2 fa c9 87 60 34 80 36 30 31 eb 80 05 cd 60 c1 58 37 35 4e // 5e f4 ae 09 86 36 32 1e 48 b4 19 f8 ba 3e db 23 18 af 88 fb f1 // 8a b5 1a 52 3a 32 38 63 46 8c 45 71 47 43 cd b0 d6 de ca ed ff // 7a 9b 47 ff 12 31 40 86 32 fd ff bf cf 40 3c b2 7b b7 38 5e be // 81 05 8d 44 94 0d a7 da 7a ff e0 20 e4 11 51 6c 82 9e e6 98 85 // c3 a1 03 67 f0 f7 b3 cc bd 05 e1 ff 9c a5 70 ba 15 a1 66 be 4a // fa 64 df 7d 8b dd d1 9c bf 2f 0f 21 17 b1 35 69 fe 5a c1 2c 82 // ca aa 31 02 20 9f 48 eb 20 40 bc 5e 20 0e ca 17 6b f2 19 e7 a7 // 45 b5 d2 5c a0 c8 99 bc 8b 56 95 b1 5d 6c c8 3c 89 66 f7 7d 35 // c9 0c 81 9d 46 5e ad 79 bb 58 46 90 d6 8e a0 83 e6 d7 a1 b6 d2 // c3 93 c2 1a 1d 60 1f 98 b6 d4 5f 59 16 0e 61 0d 9c b3 f8 4d 15 // 20 61 ab 13 6f 8c a7 ce 57 58 7a 69 f1 57 6b 05 39 ca 96 94 da // 65 de 32 38 61 c2 62 39 5d 71 06 c0 8f 5c 1f da 6b 3d f6 76 f0 // 9d 73 11 79 1e 1b d5 92 72 29 fa f9 b0 47 db 8a fa b5 69 a9 ca // 31 98 88 e4 b4 69 00 54 c0 e0 ca f8 86 f7 77 3e d7 45 3b b8 a1 // 3e 85 75 24 ef 57 d5 4b 40 57 51 f2 60 90 ab 90 66 25 b4 3e fb // de 3f 9e 46 a9 d1 1c 93 cf 01 21 f4 10 bb 0f 09 08 3c 7f 71 18 // d7 c7 f0 57 b5 7f 80 0a 8d 36 b4 f2 14 d6 94 bc de 03 30 b2 7a // de a2 bc 02 09 5f 9e b1 94 1c 0f 3b 5c d0 fe 68 2f 3e e7 84 cf // 04 cc 45 a2 3a 86 31 38 6a c7 2f 62 03 51 fa d5 e4 c1 7e 70 09 // 85 45 9a 8c e1 5c 05 64 74 d4 bc 8c aa a5 4c f2 3b e0 6a 6d fb // 42 8c 0a 2c 1d 73 1a 60 18 0c 88 2e 48 e2 e2 7f 9e db 54 78 be // e5 30 e6 d8 b1 3d 8d 9c 3c ca 83 27 9a 50 d3 fd b3 0f 7a 91 74 // 3a 11 59 0a 10 08 f4 7b 65 33 9e 97 32 b4 15 c5 c6 64 00 7c 33 // 76 2f d8 2c ab 04 ee 9f 07 ce 89 17 50 80 e3 ca 37 01 a1 4b 08 // 5d 60 eb 19 3e 2c 4f ba 87 cf 51 eb 36 fd a2 64 2b 0d ab d5 23 // aa 26 dc 6e c4 15 e8 bb 1a 9d 03 73 4f 47 be 7f a8 15 93 b1 8c // bf 7b e0 85 01 9f d3 37 71 d0 82 69 6b 89 fa 14 17 f7 50 70 13 // fb ef fe 45 6e b0 62 df db aa 51 9e a5 a2 36 30 80 37 ee b5 ee // d8 09 26 a6 dd 51 52 c4 00 ec a2 fa de 1c d0 61 40 72 cd cf 0c // 85 d1 77 8e e7 9d c8 bf a6 2e 6f 30 f0 fa ac 6c 67 ff 22 3d 2f // f8 f4 f7 34 41 c2 e5 3e da 8d 57 7e 2a 81 d4 47 fa 2c e7 ff 6a // 4c cc 57 d3 7b 0d 63 35 6a 86 ff a2 3f 03 75 8d 1d 1f 3c f2 0e // 12 89 2f 99 88 37 7f 63 54 f4 a0 9e fc 11 cf 90 21 79 ef 30 9d // 46 f4 fa 24 d0 40 d7 65 fa 0c 25 d4 b9 9c f8 20 05 9a 9f 72 22 // c4 ad 71 b5 82 d9 4d cb 4b ec 9b d8 d0 ba d2 58 75 3c fc 5c 1f // 6b 14 7a aa 59 f3 14 bb 22 91 bf a5 fd cc 80 b8 e0 4c a8 c2 e8 // 48 8c 79 f4 44 c1 79 f5 9d 7f e6 84 19 bc 6c 31 2e 7f d7 14 15 // df fd 31 78 ec a6 0b 13 ce 5f 28 79 d7 80 88 3c cd c3 7e 98 b6 // 6c 40 f9 ce e4 ae 9e 8f 79 f6 19 82 b1 54 5b 33 a0 63 a9 d2 ed // 6a 8e 50 11 a9 6d 2b 90 eb 3a 74 c1 d7 8f 34 df ad 8c 2a d6 f1 // 2d 27 60 07 d1 e9 c0 51 e1 6a e1 fb c5 7d a2 6e 76 ad df 52 61 // ea 82 44 c2 b3 e3 c5 ed fb e5 53 41 b9 a6 ca 17 a9 1c 97 01 a4 // 0d b6 2b f7 e8 f1 88 9f 71 27 f5 28 68 38 83 b2 a2 b8 c4 7b b4 // 6e 19 e7 8c 17 0d 25 96 2b 7f b8 0e d5 11 3a 6c ae 6a e2 dd aa // ea 13 01 a4 97 a1 33 36 8c 7b 10 5e 4e 0c 7e ca 9c 90 55 ca d6 // 03 e1 e4 18 08 42 0d 9a 09 e7 b5 74 90 ce ad 94 52 2b 6a 0f 3f // 03 f6 04 83 6f f1 6c 82 09 47 82 a4 b7 05 28 5f ec 1e 6e 77 ef // 0a 4f ab 3c b4 11 b8 92 7b 4e 9e 29 cb 8f b6 19 f3 ad 05 e2 65 // 06 a0 5b 07 5e 57 88 90 de 1e 6a 4b 49 be bc 98 4a b9 a3 05 75 // 53 b8 96 67 5f 21 92 01 25 ae 2f 66 fc 3b 0b 0d 83 f8 95 f9 45 // c5 d5 e2 b5 7a 42 47 de 51 86 c3 ca aa 7e 3c 4c 47 55 f3 d2 c7 // c6 4a 0a d6 d8 29 04 c3 18 8e 4c 37 c7 1a 22 97 a1 e0 dc 48 1d // 43 ba fc 16 97 0d 33 5f 75 52 c5 41 bb 59 6b e1 4e d7 33 34 51 // 18 41 9e 34 20 a4 47 20 33 55 17 f8 67 e2 cd 7c 22 82 02 fc 87 // c6 f1 09 d8 9b 9f df 8a fe 59 a3 88 78 26 72 2d 3c ce 23 c1 1f // ee 3b 2d 97 bc 29 f9 70 f4 91 61 b1 63 4d 9b a9 f3 28 d7 76 a3 // 6c 5e 55 3c 79 ec 00 41 7d 1e 5d b1 0c 42 bb a3 9d 1f d0 b5 b3 // 11 b9 df f6 ea 65 33 23 2f 75 ee 7a 1e 6e be 3c 69 5f 61 4f a7 // 7a 6f cc b6 d0 01 b3 c9 78 17 a6 6e 3c 3a 15 94 74 68 99 08 34 // fb 2a 45 45 54 30 46 10 60 c6 ac 25 8b 4d 22 8b d3 1e d9 c3 bc // 61 22 26 4a 17 47 22 19 7b f1 dd 2d 40 1c d3 39 30 a0 14 f4 ee // 35 3a e3 3e de bb dd 85 7f bc 66 5c 18 4f dd 12 3a ea 41 4b 69 // 4d dd 66 a8 37 87 8c 0d 4b 82 e8 03 f4 5c 11 a7 22 6b b8 be f2 // 37 8b 65 8e c8 0e 93 ca ec 5f 94 84 7c d7 b1 88 44 b2 12 3e dc // 40 f5 63 c9 ed e5 26 54 d7 33 49 03 47 d2 02 e4 49 a2 c4 91 a9 // bc ae 41 d7 11 02 d0 df 5b d6 de fd 27 8b 9a 60 25 eb 48 13 4f // 4a b9 8b db 2c b7 15 80 5b cf ee 79 f0 1e 9a 3f a0 1b b9 69 c7 // c0 bf ed 86 39 2e 59 81 18 dc 54 dd d4 59 13 90 e6 a0 11 2c ae // 3f 4d d7 05 e8 ba e5 aa 68 52 39 40 98 2c 48 35 1e ff c8 a4 cb // cd 66 26 26 39 3e e2 ab 5e 1a 23 2f ae b1 32 51 7d 71 32 a0 35 // 55 7c 92 da af 53 2f 09 83 b6 a8 21 e9 86 67 59 01 61 06 5d 5d // a6 66 b5 a7 59 a0 25 f0 6e 3f 0e a7 c0 ed b8 4c 38 e4 4d 76 4d // e2 b6 5c 53 7a c7 71 90 18 d5 81 37 c6 b9 d0 f5 b6 fb 83 ae cf // 63 c7 be eb 4b 7e af 94 8b 4f 2c 3a bf e6 70 c9 85 6a eb f7 cf // 1a 52 ec 80 eb 55 e7 6c 34 31 f6 2b c6 e4 2f 3d a4 f9 80 4e 5f // 51 60 d6 99 a3 0a 96 55 cd 27 9f 09 1c bb fd c6 91 e3 a8 c8 42 // e3 c7 19 a0 80 a0 0e 18 8b 89 5f 13 33 f1 a5 36 4a 94 78 45 7c // 9b fc c1 21 76 75 04 73 42 7e 93 c2 03 6a 4d 9e ed a7 39 e4 62 // 52 16 a0 f9 a3 04 f6 8d 8a 3d da 39 33 98 1d 59 bb e5 8e d9 25 // 2d 6e 06 1e 74 95 67 07 1e 99 99 f8 2c 6a e2 94 94 ed 81 30 12 // ca 96 c5 af 3d f1 71 10 64 13 1b f7 f6 f1 b4 70 c2 e9 2f 6f 68 // 3b 64 6f 12 1b 19 5a fc 2d 93 f4 9a 04 0d 97 0c 52 33 1a bd 0c // 6c 9b 47 ca 81 5e 15 01 76 12 8a 11 7c 2d 55 d4 7f 6e b9 67 26 // 5e 54 2d 79 8f de 2d 63 26 3e 21 47 5c b3 a4 27 25 22 25 4c 99 // d3 fd 72 d1 53 10 19 81 d0 f1 72 f5 5b 96 ab 75 0f 5b f1 e3 ac // 37 f3 d6 3f 7a 08 ee ae 76 86 8e 79 82 5d 6d 14 87 b1 36 c0 89 // 42 be a9 50 7e a1 de 09 7a ca 4b a9 7d 23 d9 29 e7 ba 92 72 3f // e7 08 bd 81 9e 1e 5f 83 da a0 33 66 db 78 a4 a6 3e 01 b4 49 8a // 97 a6 2a ca e9 1a f7 1b 79 4d 2b 56 3f 46 d1 e5 6a a7 65 2a 65 // 0a 12 31 e8 a3 b9 89 09 68 b6 a0 30 07 2a d5 d6 5f 89 66 7a b6 // 7f 3b 9f dd 53 fa 83 30 a8 db ac 11 e1 7d 87 88 2e f2 a2 32 3f // b9 be d8 81 30 12 41 10 73 40 ce 96 44 40 40 c5 74 a3 80 10 b0 // 93 fd ce 2c 07 5f 54 66 b2 1d 16 d0 dd f3 26 46 a7 2c 5d 70 08 // 2d 60 b3 95 63 46 49 43 ae 16 63 c9 f8 d5 fe 12 86 7a d9 2c 17 // 7c 3b 80 14 eb f8 b6 d3 0c 91 1c 25 9e 6e bd f8 9b 47 69 07 c6 // f7 77 74 82 97 df 71 d0 64 8c 7a 2f 16 6c f6 ef 39 d8 81 27 e6 // 4c da 67 a8 e8 60 46 3f 7a 1c f5 a0 6f 43 8a c8 37 4e d3 8b e7 // aa 02 5a 8b 38 bb 82 d4 09 31 0a 21 a4 cc c9 74 d8 ff bc b0 12 // 5e 19 10 7d 5c b3 4d c9 99 b5 3c 2a b4 af ea 86 b9 51 6c 15 06 // d4 98 59 a4 ae ab 61 c0 23 ec 34 2f e5 7d db 8a ed 17 f0 18 a6 // 9c b0 16 22 c3 0f ce c3 e9 47 f3 53 94 c5 dc 8b 8b 78 02 2c 41 // f4 f9 a4 91 5b aa 0f f0 fb 84 f2 10 0f 3c 88 e0 ed 56 34 8d 2c // c8 fd 7c 66 53 4e 15 59 95 f1 5f 17 77 f4 5b 40 4a 81 36 95 09 // 6c bb 8b 32 3a 66 b8 61 9e 06 72 f6 10 bb 2c 82 af 41 02 84 9f // 8f 58 7b 8b c6 67 0f 37 13 49 eb 51 42 07 d1 a8 1c 6c c3 f3 78 // ad 9d 4f cd 15 78 df f0 12 31 49 c1 82 2a 71 db 1f 71 da 0c 05 // ef 82 29 0a 68 ba 8b c2 41 d9 67 34 45 73 eb ba c0 5f 3b 7e 2d // 1d 35 24 19 e2 85 41 10 e6 cb 4f bd bc c8 79 de 29 20 8e 35 35 // fe 95 e8 17 fe e6 90 6a fe 84 a6 9a f8 01 8a dc bb 08 94 f1 7d // 11 8a a5 9a 59 70 aa 53 95 13 eb 91 24 b4 4d b1 66 be 3c c6 4b // 19 15 76 a4 93 b8 af 67 fd cb 0e 2f 3b d8 1c a8 f2 bc c9 1c ae // a6 e4 91 dc 72 b5 c3 db 24 c7 b8 57 09 83 6a f5 73 b8 92 74 5a // 02 12 e8 82 db 0e 88 ff 44 33 91 e2 8a a4 01 ac 13 64 8a ec a4 // 0f 81 6a 33 dd 91 9e b4 5b 3c 4f e9 3f 3b ec e6 7c 5b ae 64 34 // cb 39 1f 99 4a 59 86 77 8a fe 74 6e 7d 51 0f 91 23 16 be cf ea // 72 4e fb 08 31 57 8f 24 e0 9a dc 3a 50 1d 42 fb dd f3 76 7c 12 // 29 3c 2a 51 9a ea 93 01 d1 6d 4e 6f b4 61 6a 84 63 8b 8c 1c 45 // ba 23 65 a6 bd 83 89 84 3e a0 2a 98 14 ec 3b 4f 82 96 28 fd 8a // de 85 f3 86 9e 82 48 a7 b2 62 50 ec 58 00 d0 64 86 ec 90 8c 40 // 8f 5f 7d 05 ec ea 33 9e ee ea 48 b1 cd fc 19 ac 63 92 7b 37 ec // f5 b7 54 2c 23 95 b5 51 b5 61 94 fe fc 8d ed 81 aa 30 3f c9 32 // cd c1 ef 77 53 4d 43 88 14 54 84 8e 1f 47 31 09 18 79 9c 1f de // c5 1f 09 e1 a3 b4 59 69 f9 dd e4 67 22 c6 d4 2c 3f ea 53 43 87 // 9a 2a 62 9c 4a 8b bc f9 1a f1 ad 9e f8 d1 b7 ef 5c c4 90 14 25 // 1a 66 29 bb e3 86 28 68 9e f6 cf c4 00 72 a4 cd f4 e0 79 c0 35 // 69 ba d1 e2 21 4d 02 1b 39 d4 00 26 15 6d 38 fb e6 ef 71 96 a7 // 69 0d a2 ee 5f 65 a8 e6 66 5e f4 b5 09 b0 c5 e6 39 0b c1 c2 4e // db b6 7c 4d 97 22 20 2c c6 28 29 1d 68 d7 c8 e3 8f 2b c4 a3 83 // cb f2 a9 b3 93 17 b2 10 14 c9 c2 b8 2c a7 2f 13 ce 0b 1c 19 c2 // 40 5f ed 61 69 ad 7d 49 c5 c0 e2 34 91 ed f6 fc 65 b7 cd 10 3f // 5f b4 c1 50 cd 73 85 09 30 b0 3a d4 9c cd 28 a5 b6 23 54 c6 88 // 5b ec 47 d4 b4 dc dd 98 11 79 c7 e0 b4 41 1a e5 bc 81 9a f9 fb // 1a 92 b7 6c a5 4b d2 a5 60 e1 59 6c f9 7f c8 ee 65 17 1b c7 45 // 71 42 1b 93 33 cd c8 9b a0 b3 d7 05 cd 35 0a ee 6d 24 b8 76 d0 // 1d 8f 04 f0 32 3d 55 ba 5e 16 06 b8 90 23 50 7b f2 86 a1 0f 61 // ee 2a 71 9b 2e 76 9a 42 60 11 29 db 0e 80 94 8b 7b 69 81 61 bc // be 43 44 22 8c 9c a2 c4 69 af 69 66 71 af e0 0f eb fa c5 12 ba // 02 7e 28 a2 73 f0 26 ec 45 91 c8 c5 8a 4f 5f d5 88 d2 f7 d2 bf // 0e 55 2a 53 cc a0 98 2f 25 66 25 da 62 1e 9f b9 23 b6 bc b0 bc // e0 b1 36 a6 0f cd a6 b1 74 8d 2f 8e 25 59 b7 a2 03 27 6f 69 33 // 6d 93 ef 02 5a fe 44 f3 7f 80 33 a0 d3 cc 3b 9c 22 a0 1e a5 95 // b4 74 85 c1 1c 17 f7 44 a6 ac 4c 5d 2e 53 42 77 58 f7 c0 28 44 // aa 92 cb f2 08 62 d9 85 15 aa 22 70 7e d3 73 58 14 1b 02 db 78 // 7e 4e 0b a9 54 eb 0f 07 a5 1e b8 25 ab 5f 4c bb 75 f3 3f 39 d6 // 57 f5 79 2c 43 00 be 32 ee b4 18 fd f6 3c f8 d8 32 fd ac 23 38 // 44 e4 52 57 38 4d a4 12 af 50 0e ce 64 04 2c 79 f2 33 61 81 68 // d7 e9 d8 16 bc 51 07 3b cb 4c ec f2 09 84 8c 84 95 22 43 55 56 // 11 15 a3 72 7b e4 07 1c af 02 5f b9 61 87 d6 67 83 13 e2 9f c0 // 6b 30 5e 85 62 14 88 2d a8 c3 f7 d7 28 2d f7 1e f6 a1 6e 57 74 // 13 6f 68 b8 41 ee 57 26 fe ad 65 f3 5f 31 8a 40 2a c3 f8 df 7c // f2 f6 7b ef b7 79 3b 41 c9 20 e7 0d bb 58 78 4f 25 f1 d5 97 df // 17 36 ce 07 25 0a 91 0c 09 cd 48 a1 37 4a df a4 77 fa 43 4b e6 // 42 4e 81 32 cb c7 c0 a2 22 2b 28 60 dc 48 14 67 93 3b 95 83 9a // 96 4f d2 88 82 66 e2 ea 4e 44 33 13 77 9a 30 7d 9c 61 54 0f 50 // 85 57 a7 0f 1f 32 31 18 a6 d2 62 ca 66 4f 29 66 c9 8e 67 92 51 // 4d 80 2a 58 b0 48 3f e4 09 60 2c 20 43 b9 ac 63 d5 de 51 b7 2f // fb 9b a2 cc 74 17 d5 30 ce 3b 20 fd 74 42 dc e7 39 97 c2 05 c9 // 00 a8 0c 44 f6 11 d3 fc b0 6c 45 a5 26 4f c6 e4 4f 16 6f 64 98 // 32 45 bb 05 b6 96 6a d2 92 85 a0 bb 5a 01 92 31 bf 43 a0 e0 1c // 98 39 a6 8a 41 5a 38 ec 06 21 88 bf 32 2a 43 a8 ea e9 cb b0 43 // 58 ea 58 4f 59 7c 18 95 77 e3 13 fa 7b 6c 93 e8 1e 0c de b9 53 // 23 9d 03 d0 35 ba e9 0f 01 30 f0 57 f1 1c 5c 35 11 68 b3 c8 b6 // 2e 03 9b 85 0a 8a f8 da d6 b3 33 28 69 1f f7 65 e2 3a c9 fd 0b // f7 e7 ae 2c 0c 33 9a 57 cf d8 78 30 0c d3 6b d5 c7 01 37 85 09 // 89 d1 fd 7d c0 4d f1 1e 33 a8 56 22 cb d6 5b 0d f8 5b 00 09 2a // 87 71 0d cf 6d 8b 2a 52 8b 92 9a 0f bd 58 ff 62 59 4e 50 86 19 // be f1 46 79 a9 53 28 7c 17 0a bd 62 d7 70 b9 4f 94 33 14 1d a5 // b0 aa 73 b0 b7 61 56 7e cc ac c4 e8 06 08 4d 1d 86 3f 24 72 03 // 84 27 39 26 56 f9 b4 71 39 ee 52 79 fb 5c af 8b 44 47 84 24 c2 // ea 9d fd ca b9 0b 55 b0 02 dc f4 ca b0 df ff 87 58 3c 58 b9 3e // 86 6a 29 5b ed 55 79 a8 fd c9 73 f9 69 c6 1e dc 10 3f b4 0f 2a // fd 38 c4 67 8f 1b 7f 7d b5 f5 1e 8f cd 59 a6 4d c2 1f 18 5f 6a // a3 e3 fb 75 51 62 dd 0a be 47 34 1e 7f e6 b8 9b 29 22 a2 07 38 // d1 17 9b 50 17 ae 06 4a 90 e1 0a 36 73 45 c6 e6 ca 2f 16 fe 37 // 76 f4 3c 1e d9 cc 99 5f 10 fe 55 5b 1d 96 4f 68 72 ea 1b a0 a0 // 07 1a 58 d7 11 c6 c3 26 c2 a5 3c ad f6 a4 8d 87 26 8f 1f 0e 21 // 9b 59 29 10 13 4f 49 5a 2f 91 d9 b7 e3 3b ef e8 a9 a0 f7 f1 3a // e7 57 5f 92 49 7b 9a e1 2a 80 7e 4f c3 f5 51 ae 66 b2 74 1c 99 // ef 29 4f bd c5 b2 29 ff f1 85 fa 40 47 99 29 25 51 2d cc 79 0f // 39 e0 fd f2 e4 94 f1 9c fe 18 79 bb 4f bf de 41 69 cb f3 35 dc // 7f b2 99 bb 49 6e 60 4b 14 4d fb 33 e6 ad c4 17 ca 8a 0a b4 51 // 05 59 04 ed 16 9c d6 9d 62 4e 2e c2 0f c4 43 c7 da cb 1e bb 12 // bd 26 80 30 9c f6 a3 f5 35 ef 6b 64 e0 5c 9c e9 ac 4c a8 3f 95 // 2d 79 48 8e 1e 6d 20 7a 5f 93 da 48 93 2d e8 6b 78 d1 05 5c ab // 28 90 74 af ce 00 89} (length 0x1000) // } // union ANYUNION { // ANYRES64: ANYRES64 (resource) // } // union ANYUNION { // ANYRES64: ANYRES64 (resource) // } // union ANYUNION { // ANYRES64: ANYRES64 (resource) // } // union ANYUNION { // ANYRESOCT: ANYRES64 (resource) // } // } // } // chdir: int8 = 0x41 (1 bytes) // size: len = 0x5e97 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x5e97) // } // ] // returns fd_dir memcpy((void*)0x200000000380, "jfs\000", 4); memcpy((void*)0x2000000006c0, "./" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 251); *(uint16_t*)0x20000000bcc0 = 0; sprintf((char*)0x20000000bcc2, "%020llu", (long long)-1); sprintf((char*)0x20000000bcd6, "0x%016llx", (long long)-1); *(uint16_t*)0x20000000bce8 = -1; memcpy( (void*)0x20000000bcea, "\xaf\xa9\x5f\x9c\xab\x97\x20\x40\xeb\x9f\xc4\x6c\xe5\x66\xbc\x44\x86" "\xba\x9a\x69\x89\xc0\xbc\xbc\x79\x53\x94\xff\x2d\x89\x96\x81\xdb\xd0" "\xed\x51\x85\x53\xfd\xd7\x37\xcf\x7c\xab\x81\xa4\x8d\xb6\xf3\x7c\xeb" "\x75\x1a\x42\x15\x75\x5d\xfa\x88\x1b\x23\x65\x3a\x6a\xde\xe0\x22\x80" "\x71\x3c\x97\xc4\xc2\x33\x7a\xcc\x38\xd8\xdb\xa2\x77\x7d\x97\xf0\xf3" "\xa7\xd4\xe2\xaf\x5e\x3e\x3d\x1b\xa6\xb3\xb7\x29\xb1\x08\x2f\x1d\x55" "\xcd\x2d\x18\x3b\x78\x46\xd0\xaf\x75\x0e\xad\x5f\x28\x77\xc4\xfd\x37" "\x0b\xb6\x2e\xf8\x82\xb9\xe0\xdd\x6a\xed\x80\x29\x5d\x4b\x2b\xa6\xa0" "\x82\x89\xbf\xcf\xb5\x5e\x32\x0c\xb2\xca\xf5\xa6\xf9\x12\x28\xa8\x73" "\x08\x7a\x9e\x00\xe2\xf5\xad\x60\x2a\x07\xc1\x8d\xe2\x58\xa0\x4d\x36" "\xd2\xe3\xb0\xf0\xb8\x70\xe5\x91\x83\xd6\x3f\xb1\x15\xb8\x71\xbc\x6a" "\x89\x20\x7f\x58\x8d\x94\x9b\x52\xff\xac\x44\x12\x8b\xa0\x19\x11\x3a" "\x77\xf2\xfa\xc9\x87\x60\x34\x80\x36\x30\x31\xeb\x80\x05\xcd\x60\xc1" "\x58\x37\x35\x4e\x5e\xf4\xae\x09\x86\x36\x32\x1e\x48\xb4\x19\xf8\xba" "\x3e\xdb\x23\x18\xaf\x88\xfb\xf1\x8a\xb5\x1a\x52\x3a\x32\x38\x63\x46" "\x8c\x45\x71\x47\x43\xcd\xb0\xd6\xde\xca\xed\xff\x7a\x9b\x47\xff\x12" "\x31\x40\x86\x32\xfd\xff\xbf\xcf\x40\x3c\xb2\x7b\xb7\x38\x5e\xbe\x81" "\x05\x8d\x44\x94\x0d\xa7\xda\x7a\xff\xe0\x20\xe4\x11\x51\x6c\x82\x9e" "\xe6\x98\x85\xc3\xa1\x03\x67\xf0\xf7\xb3\xcc\xbd\x05\xe1\xff\x9c\xa5" "\x70\xba\x15\xa1\x66\xbe\x4a\xfa\x64\xdf\x7d\x8b\xdd\xd1\x9c\xbf\x2f" "\x0f\x21\x17\xb1\x35\x69\xfe\x5a\xc1\x2c\x82\xca\xaa\x31\x02\x20\x9f" "\x48\xeb\x20\x40\xbc\x5e\x20\x0e\xca\x17\x6b\xf2\x19\xe7\xa7\x45\xb5" "\xd2\x5c\xa0\xc8\x99\xbc\x8b\x56\x95\xb1\x5d\x6c\xc8\x3c\x89\x66\xf7" "\x7d\x35\xc9\x0c\x81\x9d\x46\x5e\xad\x79\xbb\x58\x46\x90\xd6\x8e\xa0" "\x83\xe6\xd7\xa1\xb6\xd2\xc3\x93\xc2\x1a\x1d\x60\x1f\x98\xb6\xd4\x5f" "\x59\x16\x0e\x61\x0d\x9c\xb3\xf8\x4d\x15\x20\x61\xab\x13\x6f\x8c\xa7" "\xce\x57\x58\x7a\x69\xf1\x57\x6b\x05\x39\xca\x96\x94\xda\x65\xde\x32" "\x38\x61\xc2\x62\x39\x5d\x71\x06\xc0\x8f\x5c\x1f\xda\x6b\x3d\xf6\x76" "\xf0\x9d\x73\x11\x79\x1e\x1b\xd5\x92\x72\x29\xfa\xf9\xb0\x47\xdb\x8a" "\xfa\xb5\x69\xa9\xca\x31\x98\x88\xe4\xb4\x69\x00\x54\xc0\xe0\xca\xf8" "\x86\xf7\x77\x3e\xd7\x45\x3b\xb8\xa1\x3e\x85\x75\x24\xef\x57\xd5\x4b" "\x40\x57\x51\xf2\x60\x90\xab\x90\x66\x25\xb4\x3e\xfb\xde\x3f\x9e\x46" "\xa9\xd1\x1c\x93\xcf\x01\x21\xf4\x10\xbb\x0f\x09\x08\x3c\x7f\x71\x18" "\xd7\xc7\xf0\x57\xb5\x7f\x80\x0a\x8d\x36\xb4\xf2\x14\xd6\x94\xbc\xde" "\x03\x30\xb2\x7a\xde\xa2\xbc\x02\x09\x5f\x9e\xb1\x94\x1c\x0f\x3b\x5c" "\xd0\xfe\x68\x2f\x3e\xe7\x84\xcf\x04\xcc\x45\xa2\x3a\x86\x31\x38\x6a" "\xc7\x2f\x62\x03\x51\xfa\xd5\xe4\xc1\x7e\x70\x09\x85\x45\x9a\x8c\xe1" "\x5c\x05\x64\x74\xd4\xbc\x8c\xaa\xa5\x4c\xf2\x3b\xe0\x6a\x6d\xfb\x42" "\x8c\x0a\x2c\x1d\x73\x1a\x60\x18\x0c\x88\x2e\x48\xe2\xe2\x7f\x9e\xdb" "\x54\x78\xbe\xe5\x30\xe6\xd8\xb1\x3d\x8d\x9c\x3c\xca\x83\x27\x9a\x50" "\xd3\xfd\xb3\x0f\x7a\x91\x74\x3a\x11\x59\x0a\x10\x08\xf4\x7b\x65\x33" "\x9e\x97\x32\xb4\x15\xc5\xc6\x64\x00\x7c\x33\x76\x2f\xd8\x2c\xab\x04" "\xee\x9f\x07\xce\x89\x17\x50\x80\xe3\xca\x37\x01\xa1\x4b\x08\x5d\x60" "\xeb\x19\x3e\x2c\x4f\xba\x87\xcf\x51\xeb\x36\xfd\xa2\x64\x2b\x0d\xab" "\xd5\x23\xaa\x26\xdc\x6e\xc4\x15\xe8\xbb\x1a\x9d\x03\x73\x4f\x47\xbe" "\x7f\xa8\x15\x93\xb1\x8c\xbf\x7b\xe0\x85\x01\x9f\xd3\x37\x71\xd0\x82" "\x69\x6b\x89\xfa\x14\x17\xf7\x50\x70\x13\xfb\xef\xfe\x45\x6e\xb0\x62" "\xdf\xdb\xaa\x51\x9e\xa5\xa2\x36\x30\x80\x37\xee\xb5\xee\xd8\x09\x26" "\xa6\xdd\x51\x52\xc4\x00\xec\xa2\xfa\xde\x1c\xd0\x61\x40\x72\xcd\xcf" "\x0c\x85\xd1\x77\x8e\xe7\x9d\xc8\xbf\xa6\x2e\x6f\x30\xf0\xfa\xac\x6c" "\x67\xff\x22\x3d\x2f\xf8\xf4\xf7\x34\x41\xc2\xe5\x3e\xda\x8d\x57\x7e" "\x2a\x81\xd4\x47\xfa\x2c\xe7\xff\x6a\x4c\xcc\x57\xd3\x7b\x0d\x63\x35" "\x6a\x86\xff\xa2\x3f\x03\x75\x8d\x1d\x1f\x3c\xf2\x0e\x12\x89\x2f\x99" "\x88\x37\x7f\x63\x54\xf4\xa0\x9e\xfc\x11\xcf\x90\x21\x79\xef\x30\x9d" "\x46\xf4\xfa\x24\xd0\x40\xd7\x65\xfa\x0c\x25\xd4\xb9\x9c\xf8\x20\x05" "\x9a\x9f\x72\x22\xc4\xad\x71\xb5\x82\xd9\x4d\xcb\x4b\xec\x9b\xd8\xd0" "\xba\xd2\x58\x75\x3c\xfc\x5c\x1f\x6b\x14\x7a\xaa\x59\xf3\x14\xbb\x22" "\x91\xbf\xa5\xfd\xcc\x80\xb8\xe0\x4c\xa8\xc2\xe8\x48\x8c\x79\xf4\x44" "\xc1\x79\xf5\x9d\x7f\xe6\x84\x19\xbc\x6c\x31\x2e\x7f\xd7\x14\x15\xdf" "\xfd\x31\x78\xec\xa6\x0b\x13\xce\x5f\x28\x79\xd7\x80\x88\x3c\xcd\xc3" "\x7e\x98\xb6\x6c\x40\xf9\xce\xe4\xae\x9e\x8f\x79\xf6\x19\x82\xb1\x54" "\x5b\x33\xa0\x63\xa9\xd2\xed\x6a\x8e\x50\x11\xa9\x6d\x2b\x90\xeb\x3a" "\x74\xc1\xd7\x8f\x34\xdf\xad\x8c\x2a\xd6\xf1\x2d\x27\x60\x07\xd1\xe9" "\xc0\x51\xe1\x6a\xe1\xfb\xc5\x7d\xa2\x6e\x76\xad\xdf\x52\x61\xea\x82" "\x44\xc2\xb3\xe3\xc5\xed\xfb\xe5\x53\x41\xb9\xa6\xca\x17\xa9\x1c\x97" "\x01\xa4\x0d\xb6\x2b\xf7\xe8\xf1\x88\x9f\x71\x27\xf5\x28\x68\x38\x83" "\xb2\xa2\xb8\xc4\x7b\xb4\x6e\x19\xe7\x8c\x17\x0d\x25\x96\x2b\x7f\xb8" "\x0e\xd5\x11\x3a\x6c\xae\x6a\xe2\xdd\xaa\xea\x13\x01\xa4\x97\xa1\x33" "\x36\x8c\x7b\x10\x5e\x4e\x0c\x7e\xca\x9c\x90\x55\xca\xd6\x03\xe1\xe4" "\x18\x08\x42\x0d\x9a\x09\xe7\xb5\x74\x90\xce\xad\x94\x52\x2b\x6a\x0f" "\x3f\x03\xf6\x04\x83\x6f\xf1\x6c\x82\x09\x47\x82\xa4\xb7\x05\x28\x5f" "\xec\x1e\x6e\x77\xef\x0a\x4f\xab\x3c\xb4\x11\xb8\x92\x7b\x4e\x9e\x29" "\xcb\x8f\xb6\x19\xf3\xad\x05\xe2\x65\x06\xa0\x5b\x07\x5e\x57\x88\x90" "\xde\x1e\x6a\x4b\x49\xbe\xbc\x98\x4a\xb9\xa3\x05\x75\x53\xb8\x96\x67" "\x5f\x21\x92\x01\x25\xae\x2f\x66\xfc\x3b\x0b\x0d\x83\xf8\x95\xf9\x45" "\xc5\xd5\xe2\xb5\x7a\x42\x47\xde\x51\x86\xc3\xca\xaa\x7e\x3c\x4c\x47" "\x55\xf3\xd2\xc7\xc6\x4a\x0a\xd6\xd8\x29\x04\xc3\x18\x8e\x4c\x37\xc7" "\x1a\x22\x97\xa1\xe0\xdc\x48\x1d\x43\xba\xfc\x16\x97\x0d\x33\x5f\x75" "\x52\xc5\x41\xbb\x59\x6b\xe1\x4e\xd7\x33\x34\x51\x18\x41\x9e\x34\x20" "\xa4\x47\x20\x33\x55\x17\xf8\x67\xe2\xcd\x7c\x22\x82\x02\xfc\x87\xc6" "\xf1\x09\xd8\x9b\x9f\xdf\x8a\xfe\x59\xa3\x88\x78\x26\x72\x2d\x3c\xce" "\x23\xc1\x1f\xee\x3b\x2d\x97\xbc\x29\xf9\x70\xf4\x91\x61\xb1\x63\x4d" "\x9b\xa9\xf3\x28\xd7\x76\xa3\x6c\x5e\x55\x3c\x79\xec\x00\x41\x7d\x1e" "\x5d\xb1\x0c\x42\xbb\xa3\x9d\x1f\xd0\xb5\xb3\x11\xb9\xdf\xf6\xea\x65" "\x33\x23\x2f\x75\xee\x7a\x1e\x6e\xbe\x3c\x69\x5f\x61\x4f\xa7\x7a\x6f" "\xcc\xb6\xd0\x01\xb3\xc9\x78\x17\xa6\x6e\x3c\x3a\x15\x94\x74\x68\x99" "\x08\x34\xfb\x2a\x45\x45\x54\x30\x46\x10\x60\xc6\xac\x25\x8b\x4d\x22" "\x8b\xd3\x1e\xd9\xc3\xbc\x61\x22\x26\x4a\x17\x47\x22\x19\x7b\xf1\xdd" "\x2d\x40\x1c\xd3\x39\x30\xa0\x14\xf4\xee\x35\x3a\xe3\x3e\xde\xbb\xdd" "\x85\x7f\xbc\x66\x5c\x18\x4f\xdd\x12\x3a\xea\x41\x4b\x69\x4d\xdd\x66" "\xa8\x37\x87\x8c\x0d\x4b\x82\xe8\x03\xf4\x5c\x11\xa7\x22\x6b\xb8\xbe" "\xf2\x37\x8b\x65\x8e\xc8\x0e\x93\xca\xec\x5f\x94\x84\x7c\xd7\xb1\x88" "\x44\xb2\x12\x3e\xdc\x40\xf5\x63\xc9\xed\xe5\x26\x54\xd7\x33\x49\x03" "\x47\xd2\x02\xe4\x49\xa2\xc4\x91\xa9\xbc\xae\x41\xd7\x11\x02\xd0\xdf" "\x5b\xd6\xde\xfd\x27\x8b\x9a\x60\x25\xeb\x48\x13\x4f\x4a\xb9\x8b\xdb" "\x2c\xb7\x15\x80\x5b\xcf\xee\x79\xf0\x1e\x9a\x3f\xa0\x1b\xb9\x69\xc7" "\xc0\xbf\xed\x86\x39\x2e\x59\x81\x18\xdc\x54\xdd\xd4\x59\x13\x90\xe6" "\xa0\x11\x2c\xae\x3f\x4d\xd7\x05\xe8\xba\xe5\xaa\x68\x52\x39\x40\x98" "\x2c\x48\x35\x1e\xff\xc8\xa4\xcb\xcd\x66\x26\x26\x39\x3e\xe2\xab\x5e" "\x1a\x23\x2f\xae\xb1\x32\x51\x7d\x71\x32\xa0\x35\x55\x7c\x92\xda\xaf" "\x53\x2f\x09\x83\xb6\xa8\x21\xe9\x86\x67\x59\x01\x61\x06\x5d\x5d\xa6" "\x66\xb5\xa7\x59\xa0\x25\xf0\x6e\x3f\x0e\xa7\xc0\xed\xb8\x4c\x38\xe4" "\x4d\x76\x4d\xe2\xb6\x5c\x53\x7a\xc7\x71\x90\x18\xd5\x81\x37\xc6\xb9" "\xd0\xf5\xb6\xfb\x83\xae\xcf\x63\xc7\xbe\xeb\x4b\x7e\xaf\x94\x8b\x4f" "\x2c\x3a\xbf\xe6\x70\xc9\x85\x6a\xeb\xf7\xcf\x1a\x52\xec\x80\xeb\x55" "\xe7\x6c\x34\x31\xf6\x2b\xc6\xe4\x2f\x3d\xa4\xf9\x80\x4e\x5f\x51\x60" "\xd6\x99\xa3\x0a\x96\x55\xcd\x27\x9f\x09\x1c\xbb\xfd\xc6\x91\xe3\xa8" "\xc8\x42\xe3\xc7\x19\xa0\x80\xa0\x0e\x18\x8b\x89\x5f\x13\x33\xf1\xa5" "\x36\x4a\x94\x78\x45\x7c\x9b\xfc\xc1\x21\x76\x75\x04\x73\x42\x7e\x93" "\xc2\x03\x6a\x4d\x9e\xed\xa7\x39\xe4\x62\x52\x16\xa0\xf9\xa3\x04\xf6" "\x8d\x8a\x3d\xda\x39\x33\x98\x1d\x59\xbb\xe5\x8e\xd9\x25\x2d\x6e\x06" "\x1e\x74\x95\x67\x07\x1e\x99\x99\xf8\x2c\x6a\xe2\x94\x94\xed\x81\x30" "\x12\xca\x96\xc5\xaf\x3d\xf1\x71\x10\x64\x13\x1b\xf7\xf6\xf1\xb4\x70" "\xc2\xe9\x2f\x6f\x68\x3b\x64\x6f\x12\x1b\x19\x5a\xfc\x2d\x93\xf4\x9a" "\x04\x0d\x97\x0c\x52\x33\x1a\xbd\x0c\x6c\x9b\x47\xca\x81\x5e\x15\x01" "\x76\x12\x8a\x11\x7c\x2d\x55\xd4\x7f\x6e\xb9\x67\x26\x5e\x54\x2d\x79" "\x8f\xde\x2d\x63\x26\x3e\x21\x47\x5c\xb3\xa4\x27\x25\x22\x25\x4c\x99" "\xd3\xfd\x72\xd1\x53\x10\x19\x81\xd0\xf1\x72\xf5\x5b\x96\xab\x75\x0f" "\x5b\xf1\xe3\xac\x37\xf3\xd6\x3f\x7a\x08\xee\xae\x76\x86\x8e\x79\x82" "\x5d\x6d\x14\x87\xb1\x36\xc0\x89\x42\xbe\xa9\x50\x7e\xa1\xde\x09\x7a" "\xca\x4b\xa9\x7d\x23\xd9\x29\xe7\xba\x92\x72\x3f\xe7\x08\xbd\x81\x9e" "\x1e\x5f\x83\xda\xa0\x33\x66\xdb\x78\xa4\xa6\x3e\x01\xb4\x49\x8a\x97" "\xa6\x2a\xca\xe9\x1a\xf7\x1b\x79\x4d\x2b\x56\x3f\x46\xd1\xe5\x6a\xa7" "\x65\x2a\x65\x0a\x12\x31\xe8\xa3\xb9\x89\x09\x68\xb6\xa0\x30\x07\x2a" "\xd5\xd6\x5f\x89\x66\x7a\xb6\x7f\x3b\x9f\xdd\x53\xfa\x83\x30\xa8\xdb" "\xac\x11\xe1\x7d\x87\x88\x2e\xf2\xa2\x32\x3f\xb9\xbe\xd8\x81\x30\x12" "\x41\x10\x73\x40\xce\x96\x44\x40\x40\xc5\x74\xa3\x80\x10\xb0\x93\xfd" "\xce\x2c\x07\x5f\x54\x66\xb2\x1d\x16\xd0\xdd\xf3\x26\x46\xa7\x2c\x5d" "\x70\x08\x2d\x60\xb3\x95\x63\x46\x49\x43\xae\x16\x63\xc9\xf8\xd5\xfe" "\x12\x86\x7a\xd9\x2c\x17\x7c\x3b\x80\x14\xeb\xf8\xb6\xd3\x0c\x91\x1c" "\x25\x9e\x6e\xbd\xf8\x9b\x47\x69\x07\xc6\xf7\x77\x74\x82\x97\xdf\x71" "\xd0\x64\x8c\x7a\x2f\x16\x6c\xf6\xef\x39\xd8\x81\x27\xe6\x4c\xda\x67" "\xa8\xe8\x60\x46\x3f\x7a\x1c\xf5\xa0\x6f\x43\x8a\xc8\x37\x4e\xd3\x8b" "\xe7\xaa\x02\x5a\x8b\x38\xbb\x82\xd4\x09\x31\x0a\x21\xa4\xcc\xc9\x74" "\xd8\xff\xbc\xb0\x12\x5e\x19\x10\x7d\x5c\xb3\x4d\xc9\x99\xb5\x3c\x2a" "\xb4\xaf\xea\x86\xb9\x51\x6c\x15\x06\xd4\x98\x59\xa4\xae\xab\x61\xc0" "\x23\xec\x34\x2f\xe5\x7d\xdb\x8a\xed\x17\xf0\x18\xa6\x9c\xb0\x16\x22" "\xc3\x0f\xce\xc3\xe9\x47\xf3\x53\x94\xc5\xdc\x8b\x8b\x78\x02\x2c\x41" "\xf4\xf9\xa4\x91\x5b\xaa\x0f\xf0\xfb\x84\xf2\x10\x0f\x3c\x88\xe0\xed" "\x56\x34\x8d\x2c\xc8\xfd\x7c\x66\x53\x4e\x15\x59\x95\xf1\x5f\x17\x77" "\xf4\x5b\x40\x4a\x81\x36\x95\x09\x6c\xbb\x8b\x32\x3a\x66\xb8\x61\x9e" "\x06\x72\xf6\x10\xbb\x2c\x82\xaf\x41\x02\x84\x9f\x8f\x58\x7b\x8b\xc6" "\x67\x0f\x37\x13\x49\xeb\x51\x42\x07\xd1\xa8\x1c\x6c\xc3\xf3\x78\xad" "\x9d\x4f\xcd\x15\x78\xdf\xf0\x12\x31\x49\xc1\x82\x2a\x71\xdb\x1f\x71" "\xda\x0c\x05\xef\x82\x29\x0a\x68\xba\x8b\xc2\x41\xd9\x67\x34\x45\x73" "\xeb\xba\xc0\x5f\x3b\x7e\x2d\x1d\x35\x24\x19\xe2\x85\x41\x10\xe6\xcb" "\x4f\xbd\xbc\xc8\x79\xde\x29\x20\x8e\x35\x35\xfe\x95\xe8\x17\xfe\xe6" "\x90\x6a\xfe\x84\xa6\x9a\xf8\x01\x8a\xdc\xbb\x08\x94\xf1\x7d\x11\x8a" "\xa5\x9a\x59\x70\xaa\x53\x95\x13\xeb\x91\x24\xb4\x4d\xb1\x66\xbe\x3c" "\xc6\x4b\x19\x15\x76\xa4\x93\xb8\xaf\x67\xfd\xcb\x0e\x2f\x3b\xd8\x1c" "\xa8\xf2\xbc\xc9\x1c\xae\xa6\xe4\x91\xdc\x72\xb5\xc3\xdb\x24\xc7\xb8" "\x57\x09\x83\x6a\xf5\x73\xb8\x92\x74\x5a\x02\x12\xe8\x82\xdb\x0e\x88" "\xff\x44\x33\x91\xe2\x8a\xa4\x01\xac\x13\x64\x8a\xec\xa4\x0f\x81\x6a" "\x33\xdd\x91\x9e\xb4\x5b\x3c\x4f\xe9\x3f\x3b\xec\xe6\x7c\x5b\xae\x64" "\x34\xcb\x39\x1f\x99\x4a\x59\x86\x77\x8a\xfe\x74\x6e\x7d\x51\x0f\x91" "\x23\x16\xbe\xcf\xea\x72\x4e\xfb\x08\x31\x57\x8f\x24\xe0\x9a\xdc\x3a" "\x50\x1d\x42\xfb\xdd\xf3\x76\x7c\x12\x29\x3c\x2a\x51\x9a\xea\x93\x01" "\xd1\x6d\x4e\x6f\xb4\x61\x6a\x84\x63\x8b\x8c\x1c\x45\xba\x23\x65\xa6" "\xbd\x83\x89\x84\x3e\xa0\x2a\x98\x14\xec\x3b\x4f\x82\x96\x28\xfd\x8a" "\xde\x85\xf3\x86\x9e\x82\x48\xa7\xb2\x62\x50\xec\x58\x00\xd0\x64\x86" "\xec\x90\x8c\x40\x8f\x5f\x7d\x05\xec\xea\x33\x9e\xee\xea\x48\xb1\xcd" "\xfc\x19\xac\x63\x92\x7b\x37\xec\xf5\xb7\x54\x2c\x23\x95\xb5\x51\xb5" "\x61\x94\xfe\xfc\x8d\xed\x81\xaa\x30\x3f\xc9\x32\xcd\xc1\xef\x77\x53" "\x4d\x43\x88\x14\x54\x84\x8e\x1f\x47\x31\x09\x18\x79\x9c\x1f\xde\xc5" "\x1f\x09\xe1\xa3\xb4\x59\x69\xf9\xdd\xe4\x67\x22\xc6\xd4\x2c\x3f\xea" "\x53\x43\x87\x9a\x2a\x62\x9c\x4a\x8b\xbc\xf9\x1a\xf1\xad\x9e\xf8\xd1" "\xb7\xef\x5c\xc4\x90\x14\x25\x1a\x66\x29\xbb\xe3\x86\x28\x68\x9e\xf6" "\xcf\xc4\x00\x72\xa4\xcd\xf4\xe0\x79\xc0\x35\x69\xba\xd1\xe2\x21\x4d" "\x02\x1b\x39\xd4\x00\x26\x15\x6d\x38\xfb\xe6\xef\x71\x96\xa7\x69\x0d" "\xa2\xee\x5f\x65\xa8\xe6\x66\x5e\xf4\xb5\x09\xb0\xc5\xe6\x39\x0b\xc1" "\xc2\x4e\xdb\xb6\x7c\x4d\x97\x22\x20\x2c\xc6\x28\x29\x1d\x68\xd7\xc8" "\xe3\x8f\x2b\xc4\xa3\x83\xcb\xf2\xa9\xb3\x93\x17\xb2\x10\x14\xc9\xc2" "\xb8\x2c\xa7\x2f\x13\xce\x0b\x1c\x19\xc2\x40\x5f\xed\x61\x69\xad\x7d" "\x49\xc5\xc0\xe2\x34\x91\xed\xf6\xfc\x65\xb7\xcd\x10\x3f\x5f\xb4\xc1" "\x50\xcd\x73\x85\x09\x30\xb0\x3a\xd4\x9c\xcd\x28\xa5\xb6\x23\x54\xc6" "\x88\x5b\xec\x47\xd4\xb4\xdc\xdd\x98\x11\x79\xc7\xe0\xb4\x41\x1a\xe5" "\xbc\x81\x9a\xf9\xfb\x1a\x92\xb7\x6c\xa5\x4b\xd2\xa5\x60\xe1\x59\x6c" "\xf9\x7f\xc8\xee\x65\x17\x1b\xc7\x45\x71\x42\x1b\x93\x33\xcd\xc8\x9b" "\xa0\xb3\xd7\x05\xcd\x35\x0a\xee\x6d\x24\xb8\x76\xd0\x1d\x8f\x04\xf0" "\x32\x3d\x55\xba\x5e\x16\x06\xb8\x90\x23\x50\x7b\xf2\x86\xa1\x0f\x61" "\xee\x2a\x71\x9b\x2e\x76\x9a\x42\x60\x11\x29\xdb\x0e\x80\x94\x8b\x7b" "\x69\x81\x61\xbc\xbe\x43\x44\x22\x8c\x9c\xa2\xc4\x69\xaf\x69\x66\x71" "\xaf\xe0\x0f\xeb\xfa\xc5\x12\xba\x02\x7e\x28\xa2\x73\xf0\x26\xec\x45" "\x91\xc8\xc5\x8a\x4f\x5f\xd5\x88\xd2\xf7\xd2\xbf\x0e\x55\x2a\x53\xcc" "\xa0\x98\x2f\x25\x66\x25\xda\x62\x1e\x9f\xb9\x23\xb6\xbc\xb0\xbc\xe0" "\xb1\x36\xa6\x0f\xcd\xa6\xb1\x74\x8d\x2f\x8e\x25\x59\xb7\xa2\x03\x27" "\x6f\x69\x33\x6d\x93\xef\x02\x5a\xfe\x44\xf3\x7f\x80\x33\xa0\xd3\xcc" "\x3b\x9c\x22\xa0\x1e\xa5\x95\xb4\x74\x85\xc1\x1c\x17\xf7\x44\xa6\xac" "\x4c\x5d\x2e\x53\x42\x77\x58\xf7\xc0\x28\x44\xaa\x92\xcb\xf2\x08\x62" "\xd9\x85\x15\xaa\x22\x70\x7e\xd3\x73\x58\x14\x1b\x02\xdb\x78\x7e\x4e" "\x0b\xa9\x54\xeb\x0f\x07\xa5\x1e\xb8\x25\xab\x5f\x4c\xbb\x75\xf3\x3f" "\x39\xd6\x57\xf5\x79\x2c\x43\x00\xbe\x32\xee\xb4\x18\xfd\xf6\x3c\xf8" "\xd8\x32\xfd\xac\x23\x38\x44\xe4\x52\x57\x38\x4d\xa4\x12\xaf\x50\x0e" "\xce\x64\x04\x2c\x79\xf2\x33\x61\x81\x68\xd7\xe9\xd8\x16\xbc\x51\x07" "\x3b\xcb\x4c\xec\xf2\x09\x84\x8c\x84\x95\x22\x43\x55\x56\x11\x15\xa3" "\x72\x7b\xe4\x07\x1c\xaf\x02\x5f\xb9\x61\x87\xd6\x67\x83\x13\xe2\x9f" "\xc0\x6b\x30\x5e\x85\x62\x14\x88\x2d\xa8\xc3\xf7\xd7\x28\x2d\xf7\x1e" "\xf6\xa1\x6e\x57\x74\x13\x6f\x68\xb8\x41\xee\x57\x26\xfe\xad\x65\xf3" "\x5f\x31\x8a\x40\x2a\xc3\xf8\xdf\x7c\xf2\xf6\x7b\xef\xb7\x79\x3b\x41" "\xc9\x20\xe7\x0d\xbb\x58\x78\x4f\x25\xf1\xd5\x97\xdf\x17\x36\xce\x07" "\x25\x0a\x91\x0c\x09\xcd\x48\xa1\x37\x4a\xdf\xa4\x77\xfa\x43\x4b\xe6" "\x42\x4e\x81\x32\xcb\xc7\xc0\xa2\x22\x2b\x28\x60\xdc\x48\x14\x67\x93" "\x3b\x95\x83\x9a\x96\x4f\xd2\x88\x82\x66\xe2\xea\x4e\x44\x33\x13\x77" "\x9a\x30\x7d\x9c\x61\x54\x0f\x50\x85\x57\xa7\x0f\x1f\x32\x31\x18\xa6" "\xd2\x62\xca\x66\x4f\x29\x66\xc9\x8e\x67\x92\x51\x4d\x80\x2a\x58\xb0" "\x48\x3f\xe4\x09\x60\x2c\x20\x43\xb9\xac\x63\xd5\xde\x51\xb7\x2f\xfb" "\x9b\xa2\xcc\x74\x17\xd5\x30\xce\x3b\x20\xfd\x74\x42\xdc\xe7\x39\x97" "\xc2\x05\xc9\x00\xa8\x0c\x44\xf6\x11\xd3\xfc\xb0\x6c\x45\xa5\x26\x4f" "\xc6\xe4\x4f\x16\x6f\x64\x98\x32\x45\xbb\x05\xb6\x96\x6a\xd2\x92\x85" "\xa0\xbb\x5a\x01\x92\x31\xbf\x43\xa0\xe0\x1c\x98\x39\xa6\x8a\x41\x5a" "\x38\xec\x06\x21\x88\xbf\x32\x2a\x43\xa8\xea\xe9\xcb\xb0\x43\x58\xea" "\x58\x4f\x59\x7c\x18\x95\x77\xe3\x13\xfa\x7b\x6c\x93\xe8\x1e\x0c\xde" "\xb9\x53\x23\x9d\x03\xd0\x35\xba\xe9\x0f\x01\x30\xf0\x57\xf1\x1c\x5c" "\x35\x11\x68\xb3\xc8\xb6\x2e\x03\x9b\x85\x0a\x8a\xf8\xda\xd6\xb3\x33" "\x28\x69\x1f\xf7\x65\xe2\x3a\xc9\xfd\x0b\xf7\xe7\xae\x2c\x0c\x33\x9a" "\x57\xcf\xd8\x78\x30\x0c\xd3\x6b\xd5\xc7\x01\x37\x85\x09\x89\xd1\xfd" "\x7d\xc0\x4d\xf1\x1e\x33\xa8\x56\x22\xcb\xd6\x5b\x0d\xf8\x5b\x00\x09" "\x2a\x87\x71\x0d\xcf\x6d\x8b\x2a\x52\x8b\x92\x9a\x0f\xbd\x58\xff\x62" "\x59\x4e\x50\x86\x19\xbe\xf1\x46\x79\xa9\x53\x28\x7c\x17\x0a\xbd\x62" "\xd7\x70\xb9\x4f\x94\x33\x14\x1d\xa5\xb0\xaa\x73\xb0\xb7\x61\x56\x7e" "\xcc\xac\xc4\xe8\x06\x08\x4d\x1d\x86\x3f\x24\x72\x03\x84\x27\x39\x26" "\x56\xf9\xb4\x71\x39\xee\x52\x79\xfb\x5c\xaf\x8b\x44\x47\x84\x24\xc2" "\xea\x9d\xfd\xca\xb9\x0b\x55\xb0\x02\xdc\xf4\xca\xb0\xdf\xff\x87\x58" "\x3c\x58\xb9\x3e\x86\x6a\x29\x5b\xed\x55\x79\xa8\xfd\xc9\x73\xf9\x69" "\xc6\x1e\xdc\x10\x3f\xb4\x0f\x2a\xfd\x38\xc4\x67\x8f\x1b\x7f\x7d\xb5" "\xf5\x1e\x8f\xcd\x59\xa6\x4d\xc2\x1f\x18\x5f\x6a\xa3\xe3\xfb\x75\x51" "\x62\xdd\x0a\xbe\x47\x34\x1e\x7f\xe6\xb8\x9b\x29\x22\xa2\x07\x38\xd1" "\x17\x9b\x50\x17\xae\x06\x4a\x90\xe1\x0a\x36\x73\x45\xc6\xe6\xca\x2f" "\x16\xfe\x37\x76\xf4\x3c\x1e\xd9\xcc\x99\x5f\x10\xfe\x55\x5b\x1d\x96" "\x4f\x68\x72\xea\x1b\xa0\xa0\x07\x1a\x58\xd7\x11\xc6\xc3\x26\xc2\xa5" "\x3c\xad\xf6\xa4\x8d\x87\x26\x8f\x1f\x0e\x21\x9b\x59\x29\x10\x13\x4f" "\x49\x5a\x2f\x91\xd9\xb7\xe3\x3b\xef\xe8\xa9\xa0\xf7\xf1\x3a\xe7\x57" "\x5f\x92\x49\x7b\x9a\xe1\x2a\x80\x7e\x4f\xc3\xf5\x51\xae\x66\xb2\x74" "\x1c\x99\xef\x29\x4f\xbd\xc5\xb2\x29\xff\xf1\x85\xfa\x40\x47\x99\x29" "\x25\x51\x2d\xcc\x79\x0f\x39\xe0\xfd\xf2\xe4\x94\xf1\x9c\xfe\x18\x79" "\xbb\x4f\xbf\xde\x41\x69\xcb\xf3\x35\xdc\x7f\xb2\x99\xbb\x49\x6e\x60" "\x4b\x14\x4d\xfb\x33\xe6\xad\xc4\x17\xca\x8a\x0a\xb4\x51\x05\x59\x04" "\xed\x16\x9c\xd6\x9d\x62\x4e\x2e\xc2\x0f\xc4\x43\xc7\xda\xcb\x1e\xbb" "\x12\xbd\x26\x80\x30\x9c\xf6\xa3\xf5\x35\xef\x6b\x64\xe0\x5c\x9c\xe9" "\xac\x4c\xa8\x3f\x95\x2d\x79\x48\x8e\x1e\x6d\x20\x7a\x5f\x93\xda\x48" "\x93\x2d\xe8\x6b\x78\xd1\x05\x5c\xab\x28\x90\x74\xaf\xce\x00\x89", 4096); *(uint64_t*)0x20000000ccea = -1; *(uint64_t*)0x20000000ccf2 = 0; *(uint64_t*)0x20000000ccfa = -1; sprintf((char*)0x20000000cd02, "%023llo", (long long)-1); memcpy( (void*)0x200000005e00, "\x78\x9c\xec\xdd\x4b\x8f\x14\xd7\xd9\x07\xf0\xa7\x2f\xd3\x73\xe1\x35" "\x8c\x2c\xbd\x96\x85\xb2\x18\x63\xe7\x42\x30\x30\x5c\x0c\xb9\xdb\xde" "\x24\x52\x56\x91\x22\x36\x59\x81\xc6\x63\x0b\x05\x27\x11\x90\x28\xb6" "\x50\x18\x6b\x16\xf9\x06\x51\xb2\x48\x94\xec\xb3\xca\x27\xc8\x1e\x3e" "\x84\x17\x59\x06\x09\x92\x8d\x57\xa9\xa8\x66\xce\x81\x9a\x4a\x0f\xcd" "\x00\xd3\xd5\x33\xe7\xf7\x93\x9a\xaa\xa7\x4e\x55\xf7\x29\xfe\x7d\x9d" "\xae\xea\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x40\xfc\xf0\xfb\x3f\x3e\xd7\x8b\x88\xab\xbf\x4a\x0b\x96\x23\xfe\x2f" "\x06\x11\xfd\x88\xc5\xba\x5e\x89\x88\xc5\x95\xe5\xbc\xfe\x30\x22\x5e" "\x8f\xad\xe6\x78\xad\x5e\x7d\x3e\xa2\xde\x7e\xeb\x9f\x63\x11\x17\x23" "\xe2\xfe\xd1\x88\x87\x8f\xee\xac\xd5\x8b\xcf\x3f\x63\x3f\xfe\x7d\xe4" "\xff\x8f\xfd\xf3\xaf\x3f\x38\xfd\xfb\xbf\xfd\xee\xde\xc9\x3f\x9e\x7a" "\xbb\xdd\xfe\xa7\xf5\x7f\xdc\xfb\xc9\xdd\x74\x5b\x00\x00\x00\xc0\x9e" "\x54\x55\x55\xf5\xd2\xc7\xfc\xe3\xe9\xf3\x7d\xbf\xeb\x4e\x01\x00\x53" "\x91\x5f\xff\xab\x24\x2f\x57\xab\xd5\x6a\xb5\x5a\x7d\xf8\xea\xa6\x6a" "\xbc\xbb\xcd\x22\x22\x36\x9a\xdb\xd4\xef\x19\xee\x8e\xbb\x32\x00\x60" "\x76\x6d\xc4\x17\x5d\x77\x81\x0e\xc9\xbf\x68\xc3\x88\x38\xd2\x75\x27" "\x80\x99\xe6\xb8\xfb\xc3\xe9\xe1\xa3\x3b\x6b\xbd\x94\x6f\xaf\xf9\x7a" "\xb0\xb2\xdd\x9e\x8f\x05\xd9\x91\xff\x46\xef\xf1\xf9\x1d\xbb\x4d\x27" "\x69\x1f\x63\x32\xad\xfb\xd7\x66\x0c\xe2\xd5\x5d\xfa\xb3\x38\xa5\x3e" "\xcc\x92\x9c\x7f\xbf\x9d\xff\xd5\xed\xf6\x51\x5a\x6f\xbf\xf3\x9f\x96" "\xdd\xf2\x1f\x6d\x9f\xfa\x54\x9c\x9c\xff\xa0\x9d\x7f\xcb\xe1\xc9\xbf" "\x3f\x36\xff\x52\xe5\xfc\x87\x7b\xca\x7f\x20\x7f\x00\x00\x00\x00\x00" "\x98\x61\xf9\xef\xff\xcb\x53\xfb\xfe\xb7\xb7\xe3\x7a\xb3\xf9\x97\xb3" "\x3b\x13\x3d\xed\xfb\xdf\x95\x29\xf5\x01\x00\x00\x00\x00\x00\x00\x00" "\x5e\xb6\x17\x1d\xff\xef\x31\xe3\xff\x01\x00\x00\xc0\xcc\xaa\x3f\xab" "\xd7\xfe\x7c\xf4\xc9\xb2\xdd\x3e\x63\xd7\xcb\xaf\xf4\x22\x5e\x69\xad" "\x0f\x14\x26\x9d\x2c\xb3\xd4\x75\x3f\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xa0\x24\xc3\xed\x63\x78\xaf\xf4\x22\xe6\x22\xe2\x95\xa5\xa5" "\xaa\xaa\xea\x4b\x53\xbb\xde\xab\x17\xdd\xfe\xa0\x2b\x7d\xff\xa1\x64" "\x5d\x3f\xc9\x03\x00\xc0\xb6\xfb\x47\x5b\xe7\xf2\xf7\x22\x16\x22\xe2" "\x4a\xfa\xad\xbf\xb9\xa5\xa5\xa5\xaa\x5a\x58\x5c\xaa\x96\xaa\xc5\xf9" "\xfc\x7e\x76\x34\xbf\x50\x2d\x36\x3e\xd7\xe6\x69\xbd\x6c\x7e\xf4\x0c" "\x6f\x88\x87\xa3\xaa\xbe\xb2\x85\xc6\x76\x4d\x93\x3e\x2f\x4f\x6a\x6f" "\x5f\x5f\x7d\x5b\xa3\x6a\xf0\x0c\x1d\x9b\x8e\x0e\x03\x07\x80\x88\xd8" "\x7e\x35\x7a\xe8\x15\xe9\x90\xa9\xaa\x63\xd1\xf5\xbb\x1c\x0e\x06\x8f" "\xff\xc3\xc7\xe3\x9f\x67\xd1\xf5\xfd\x14\x00\x00\x00\xd8\x7f\x55\x55" "\x55\xbd\xf4\x73\xde\xc7\xd3\x77\xfe\xfd\xae\x3b\x05\x00\x4c\x45\x7e" "\xfd\x6f\x7f\x2f\xa0\x56\xab\xd5\x6a\xb5\xfa\xf0\xd5\x4d\xd5\x78\x77" "\x9b\x45\x44\x6c\x34\xb7\xa9\xdf\x33\xdc\x1d\x77\x65\x00\xc0\xec\xda" "\x88\x2f\xba\xee\x02\x1d\x92\x7f\xd1\x86\x11\xf1\x7a\xd7\x9d\x00\x66" "\x5a\xaf\xeb\x0e\xb0\x2f\x1e\x3e\xba\xb3\xd6\x4b\xf9\xf6\x9a\xaf\x07" "\x69\x7c\xf7\x7c\x2c\xc8\x8e\xfc\x37\x7a\x5b\xdb\xe5\xed\xc7\x4d\x27" "\x69\x1f\x63\x32\xad\xfb\xd7\x66\x0c\xe2\xd5\x5d\xfa\xf3\xda\x94\xfa" "\x30\x4b\x72\xfe\xfd\x76\xfe\x57\xb7\xdb\x47\x69\xbd\xfd\xce\x7f\x5a" "\x76\xcb\xbf\xde\xcf\xe5\x0e\xfa\xd3\xb5\x9c\xff\xa0\x9d\x7f\xcb\xe1" "\xc9\xbf\x3f\x36\xff\x52\xe5\xfc\x87\x7b\xca\x7f\x20\x7f\x00\x00\x00" "\x00\x00\x98\x61\xf9\xef\xff\xcb\xbe\xff\xcd\xbb\x0c\x00\x00\x00\x00" "\x00\x00\x00\x07\xce\xc3\x47\x77\xd6\xf2\x79\xaf\xf9\xfb\xff\x2f\x8d" "\x59\xcf\xf9\x9f\x87\x53\xce\xbf\x27\xff\x22\xe5\xfc\xfb\xad\xfc\xbf" "\xd6\x5a\x6f\xd0\x98\x7f\xf0\xfe\x93\xfc\xff\xf5\xe8\xce\xda\x8f\xfe" "\xf0\xf9\xf1\x3c\x7d\xd6\xfc\xe7\xf3\x4c\x2f\xdd\xb3\x7a\xe9\x1e\xd1" "\x4b\xb7\xd4\x1b\xa6\xe9\x73\xef\xda\xfc\xb8\x85\x9b\x73\x83\x51\x7d" "\x4b\x73\xbd\xfe\x60\x98\x8e\xf9\xa9\xe6\x3e\x8c\xeb\x71\x23\xd6\x63" "\x75\xc7\xba\xfd\xf4\xff\xf1\xa4\xfd\xdc\x8e\xf6\xba\xa7\x73\xe9\xae" "\xbc\xdd\x7e\x7e\x47\xfb\x70\xbb\xbd\xb1\xfd\x85\x1d\xed\x73\xe9\x77" "\x07\xaa\xc5\xdc\x7e\x26\xd6\xe2\xe7\x71\x23\x3e\xd8\x6a\xaf\xdb\xe6" "\x27\xec\xff\xc2\x84\xf6\x6a\x42\x7b\xce\x7f\xe0\xf1\x5f\xa4\x9c\xff" "\xb0\x71\xa9\xf3\x5f\x4a\xed\xbd\xd6\xb4\xf6\xe0\xb3\xfe\xff\x3c\xee" "\x9b\xd3\x71\xb7\xf3\xde\x6f\xef\xdd\x5f\xdd\xff\xdd\x99\x68\x33\x06" "\x8f\xf7\xad\xa9\xde\xbf\x13\x1d\xf4\x67\xeb\xff\xe4\xc8\x28\x7e\x79" "\x6b\xfd\xe6\x99\x5f\x5f\xbb\x7d\xfb\xe6\xb9\x48\x93\x1d\x4b\xcf\x47" "\x9a\xbc\x64\x39\xff\xb9\x74\x79\xfc\xfc\xff\xe6\x76\x7b\x7e\xde\x6f" "\x3e\x5e\x1f\x7c\x36\xda\x73\xfe\xb3\x62\x33\x86\xbb\xe6\xff\x66\x63" "\xbe\xde\xdf\x93\x53\xee\x5b\x17\x72\xfe\xa3\x74\xc9\xf9\x7f\x90\xda" "\xc7\x3f\xfe\x0f\x72\xfe\xbb\x3f\xfe\x4f\x75\xd0\x1f\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x78\x9a\xaa\xaa\xb6\x4e\x11\x7d\x2f" "\x22\x2e\xa5\xf3\x7f\xba\x3a\x37\x13\x00\x98\xae\xfc\xfa\x5f\x25\x79" "\xb9\x5a\xad\x56\xab\xd5\xea\xc3\x57\x37\x55\xe3\xbd\xdb\x2c\x22\xe2" "\xef\xcd\x6d\xea\xf7\x0c\xbf\x19\x77\x65\x00\xc0\x2c\xfb\x4f\x44\x7c" "\xde\x75\x27\xe8\x8c\xfc\x0b\x96\x7f\xef\xaf\x9e\xbe\xd5\x75\x67\x80" "\xa9\xba\xf5\xc9\xa7\x3f\xbd\x76\xe3\xc6\xfa\xcd\x5b\x5d\xf7\x04\x00" "\x00\x00\x00\x00\x00\x00\x78\x5e\x79\xfc\xcf\x95\xc6\xf8\xcf\x6f\x45" "\xc4\x72\x6b\xbd\x1d\xe3\xbf\xbe\x1f\x2b\x2f\x3a\xfe\xe7\x30\xcf\x3c" "\x1e\x60\xf4\xf9\x07\xfa\xde\x8b\xcd\xfe\x68\xd0\x6f\x0c\x37\xfe\x46" "\x3c\x7d\xfc\xef\x13\xf1\xf4\xf1\xbf\x87\x13\x6e\x6f\x6e\x42\xfb\x68" "\x42\xfb\xd8\x41\xcc\x1b\x16\x26\xb4\x8f\x3d\xd1\xa3\x21\xe7\xff\x46" "\x63\xbc\xf3\x3a\xff\xe3\xad\xe1\xd7\x4b\x18\xff\xb5\x3d\xe6\x7d\x09" "\x72\xfe\x27\x1a\xf7\xe7\x3a\xff\xaf\xb6\xd6\x6b\xe6\x5f\xfd\xe5\x20" "\xe7\xdf\xdf\x91\xff\xd9\xdb\x1f\xff\xe2\xec\xad\x4f\x3e\x3d\x7d\xfd" "\xe3\x6b\x1f\xad\x7f\xb4\xfe\xb3\x8b\xab\xab\x97\x2e\x5c\x7e\x67\xf5" "\xf2\xea\xd9\x0f\xaf\xdf\x58\x4f\xff\x76\xd8\xe3\xfd\x95\xf3\xcf\x63" "\x5f\x3b\x0e\xb4\x2c\x39\xff\x9c\xb9\xfc\xcb\x92\xf3\xff\x72\xaa\xe5" "\x5f\x96\x9c\xff\x57\x52\x2d\xff\xb2\xe4\xfc\xf3\xfb\x3d\xf9\x97\x25" "\xe7\x9f\x3f\xfb\xc8\xbf\x2c\x39\xff\x93\xa9\x96\x7f\x59\x72\xfe\x5f" "\x4f\xb5\xfc\xcb\x92\xf3\x3f\x95\x6a\xf9\x97\x25\xe7\xff\x76\xaa\xe5" "\x5f\x96\x9c\xff\xe9\x54\xcb\xbf\x2c\x39\xff\x33\xa9\x96\x7f\x59\x72" "\xfe\x67\x53\x2d\xff\xb2\xe4\xfc\xf3\x37\x5c\xf2\x2f\x4b\xce\x3f\x1f" "\xd9\x20\xff\xb2\xe4\xfc\xcf\xa7\x5a\xfe\x65\xc9\xf9\x5f\x48\xb5\xfc" "\xcb\x92\xf3\xbf\x98\x6a\xf9\x97\x25\xe7\xff\x4e\xaa\xe5\x5f\x96\x9c" "\xff\xa5\x54\xcb\xbf\x2c\x39\xff\xcb\xa9\x96\x7f\x59\x72\xfe\xdf\x48" "\xb5\xfc\xcb\x92\xf3\xff\x66\xaa\xe5\x5f\x96\x9c\xff\xb7\x52\x2d\xff" "\xb2\xe4\xfc\xbf\x9d\x6a\xf9\x97\x25\xe7\xff\x9d\x54\xcb\xbf\x2c\x39" "\xff\xef\xa6\x5a\xfe\x65\xc9\xf9\x7f\x2f\xd5\xf2\x2f\x4b\xce\xff\xdd" "\x54\xcb\xbf\x2c\x4f\x7e\xff\xdf\x8c\x19\x33\x66\xf2\x4c\xd7\xcf\x4c" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\xdb\x34\x0e\x27\xee\x7a" "\x1f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xf8\x2f\x3b\x70\x20\x00\x00\x00\x00\x00\xe4\xff\xda" "\x08\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\xd8\x81\x03\x01\x00\x00\x00\x00\x20\xff\xd7\x46\xa8\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xc2\xde\xbd\xc6\xc8\x75" "\x96\x77\x00\x3f\x7b\x73\xd6\x0e\x97\x2d\x84\xe0\x86\x00\x1b\xc7\x04" "\x93\x2c\xd9\xf5\x3d\xa6\x35\x98\x5b\x49\x13\xd2\x52\x20\xb4\xa5\x17" "\xe3\xda\x6b\x63\xf0\xad\x5e\x9b\x5b\x23\xc5\x28\xb4\x44\x6a\xd4\x46" "\x2a\x1f\xe0\x43\xb9\x15\xa9\x7c\xa9\x88\x00\x55\x54\xa5\xc8\x95\x5a" "\x81\x04\x12\xf9\x44\x2b\xb5\x0d\xa9\x02\x55\x44\xa1\x35\xb4\x1f\xa0" "\x22\x6c\x35\x33\xef\xf3\xee\xcc\x78\xaf\x67\x36\xf6\xcc\x39\xbf\x9f" "\x14\x3f\xf6\xec\x99\x99\x77\xce\xbc\x33\xbb\xff\x75\xfe\x6b\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xa0\xdd\x4d\xaf\x9d\xfd\xf0\x50\x51" "\x14\x8d\xff\x9a\xbf\x4c\x14\xc5\x33\x1a\xbf\xdf\x38\x39\xd1\xf8\xe3" "\xd6\x57\x5c\xed\x15\x02\x00\x00\x00\xbd\x7a\xaa\xf9\xeb\xa5\x67\xe7" "\x0b\x0e\xac\xe2\x4a\x6d\xc7\x7c\xf5\x45\xdf\xfc\xe2\xfc\xfc\xfc\x7c" "\xf1\xd8\x77\x5f\xf6\xfc\x8f\xcc\xcf\xe7\x0f\x4c\x16\xc5\xc4\x35\x45" "\xd1\xfc\x58\x78\xf2\x9e\xbf\xdd\xda\x7e\x4c\xf2\x40\x31\x3e\x34\xdc" "\xf6\xe7\xe1\x15\xee\x7e\x64\x85\x8f\x8f\xae\xf0\xf1\xb1\x15\x3e\xbe" "\x61\x85\x8f\x5f\xb3\xc2\xc7\xc7\x57\xf8\xf8\x65\x27\xe0\x32\x1b\x5b" "\xdf\x8f\x69\xde\xd8\xd6\xe6\x6f\x27\x5a\xa7\xb4\xb8\xae\x18\x6b\x7e" "\x6c\xeb\x22\xd7\x7a\x60\xe8\x9a\xe1\xe1\xf8\x5e\x4e\xd3\x50\xf3\x3a" "\xf3\x63\x47\x8b\xe3\xc5\x89\x62\xb6\x98\xe9\x38\xbe\x75\xec\x50\xf3" "\xf8\x2f\xdf\xd4\xb8\xaf\x3b\x8b\xb8\xaf\xe1\xb6\xfb\xba\xb1\xb1\x43" "\x7e\x78\xdf\xe1\x58\xc3\x50\x3a\xc7\x5b\x3b\xee\x6b\xe1\x36\xc3\x0f" "\x5e\x5d\x4c\xfe\xe8\x87\xf7\x1d\x7e\xd3\xc7\x1e\xbf\x61\xb1\xb9\xe2" "\x69\xe8\xb8\xbd\xd6\x3a\xb7\x6d\x69\xac\xf3\x43\xe9\x92\xd6\x5a\x87" "\x8a\x6b\xf2\x39\x89\x75\x0e\xb7\xad\xf3\xc6\x45\x9e\x93\x91\x8e\x75" "\x0e\x35\xaf\xd7\xf8\x7d\xf7\x3a\x2f\xad\x72\x9d\x23\x0b\xcb\xbc\xa2" "\xba\x9f\xf3\xf1\x62\xb8\xf9\xfb\x47\x9b\xe7\x69\xb4\xfd\xdb\x7a\xf9" "\x3c\xdd\x98\x2e\xfb\xf1\xcd\x45\x51\x5c\x58\x58\x76\xf7\x31\x97\xdd" "\x57\x31\x5c\x6c\xea\xb8\x64\x78\xe1\xf9\x19\x6f\xed\xc8\xc6\x6d\x34" "\xb6\xd2\x73\x8a\xd1\x35\xed\xd3\x9b\x56\xb1\x4f\x1b\xf3\xc8\xd6\xce" "\x7d\xda\xfd\x9a\x88\xe7\xff\xa6\x74\xbd\xd1\x25\xd6\xd0\xfe\x34\xfd" "\xe0\x83\x1b\x2e\x7b\xde\xd7\xba\x4f\x43\xe3\x51\x2f\xf5\x5a\xe9\xde" "\x83\xeb\xfd\x5a\xe9\x97\x3d\x18\xfb\xe2\xd1\xe6\x83\x7e\x70\xd1\x3d" "\xb8\x35\x3d\xfe\xfb\x6e\x59\x7a\x0f\x2e\xba\x77\x16\xd9\x83\xf9\x71" "\xb7\xed\xc1\x2d\x2b\xed\xc1\xe1\x0d\x23\xcd\x35\xe7\x27\x61\xa8\x79" "\x9d\x85\x3d\xb8\xbd\xe3\xf8\x91\xe6\x3d\x0d\x35\xe7\x93\xb7\x2c\xbf" "\x07\xa7\xcf\x9d\x3c\x33\x3d\xf7\xfe\x0f\xbc\xfc\xf8\xc9\x43\xc7\x66" "\x8f\xcd\x9e\xda\x35\x33\xb3\x67\xe7\xde\xdd\x33\x7b\x67\xa6\x8f\x1e" "\x3f\x31\x9b\x7e\x2d\x79\xb6\xfb\xdf\xa6\x62\x38\xbf\x06\xb6\xa4\x73" "\x17\xaf\x81\x97\x76\x1d\xdb\xbe\x55\xe7\x3f\xb5\x7e\xaf\xc3\xf1\x65" "\x5e\x87\x13\x5d\xc7\xae\xf7\xeb\x70\xb4\xfb\xc1\x0d\x5d\x99\x17\xe4" "\xe5\x7b\xba\xf5\xda\x78\x6b\xe3\xa4\x8f\x3f\x34\x5c\x2c\xf1\x1a\x6b" "\x3e\x3f\xb7\xf6\xfe\x3a\xcc\x8f\xbb\xed\x75\x38\xda\xf6\x3a\x5c\xf4" "\x73\xca\x22\xaf\xc3\xd1\x55\xbc\x0e\x1b\xc7\x9c\xb9\x75\x75\x5f\xb3" "\x8c\xb6\xfd\xb7\xd8\x1a\x9e\xae\xcf\x05\x13\x6d\x7b\xb0\xfb\xeb\x91" "\xee\x3d\xb8\xde\x5f\x8f\xf4\xcb\x1e\x1c\x4f\xfb\xe2\x5f\x6f\x5d\xfa" "\x73\xc1\x8d\x69\xbd\x0f\x4e\xad\xf5\xeb\x91\x91\xcb\xf6\x60\x7e\xb8" "\xe9\xbd\xa7\x71\x49\xfe\x7a\x7f\xfc\x8e\xe6\x58\x6c\x5f\xde\xd0\xf8" "\xc0\xb5\x1b\x8a\xf3\x73\xb3\x67\x6f\x7f\xdf\xa1\x73\xe7\xce\x6e\x2f" "\xd2\xb8\x22\x9e\xdb\xb6\x57\xba\xf7\xeb\xa6\xb6\xc7\x54\x5c\xb6\x5f" "\x87\xd7\xbc\x5f\x0f\x7c\xf8\xeb\xdf\xb8\x61\x91\xcb\x27\xd2\xb9\x1a" "\x7f\x79\xe3\x97\xf1\x25\x9f\xab\xc6\x31\xbb\x6e\x5f\xfe\xb9\x6a\x7e" "\x76\x5b\xfc\x7c\x76\x5c\xba\xa3\x48\x63\x9d\x5d\xe9\xf3\xb9\xd8\x67" "\xf3\xc6\xf9\xcc\x59\x72\x99\xf3\xd9\x38\xe6\x43\xd3\xbd\x7f\x2d\x9e" "\x73\x69\xdb\xfb\xef\xd8\x12\xef\xbf\x91\xfb\x7f\xd6\xbc\x9f\xad\xf9" "\xa6\x1e\x18\x19\x1b\x6d\xbd\x7e\x47\xf2\xd9\x19\xeb\x78\x3f\xee\x7c" "\xaa\x46\x9b\xef\x5d\x43\xcd\xfb\xbe\x34\xbd\xba\xf7\xe3\xb1\xf4\xdf" "\x95\x7e\x3f\xbe\x6e\x99\xf7\xe3\xcd\x5d\xc7\xae\xf7\xfb\xf1\x58\xf7" "\x83\x8b\xf7\xe3\xa1\x95\xbe\xdb\xd1\x9b\xee\xe7\x73\x3c\xed\x93\x13" "\x33\xcb\xbf\x1f\x37\x8e\xd9\xbc\x63\xad\x7b\x72\x74\xd9\xf7\xe3\x9b" "\xd3\x1c\x4a\xe7\xff\x65\x29\x29\xe4\x5c\xd4\xb6\x77\x96\xda\xb7\xf9" "\xbe\x46\x47\xc7\xd2\xe3\x1a\x8d\x7b\xe8\xdc\xa7\x3b\x3b\x8e\x1f\x4b" "\xd9\xac\x71\x5f\x9f\xdd\x51\x6e\x9f\x6e\xbb\xb9\x75\x5b\x23\xf9\xd1" "\x2d\xb8\x52\xfb\x74\xb2\xeb\xd8\xf5\xde\xa7\xf9\xfd\x6a\xa9\x7d\x3a" "\xb4\xd2\x77\xdf\xca\xe9\x7e\x3e\xc7\xd3\xbe\xb8\x6e\xe7\xf2\xfb\xb4" "\x71\xcc\xc5\x5d\xbd\xbf\x77\x6e\x8c\xdf\xb6\xbd\x77\x6e\x58\x69\x0f" "\x8e\x8d\x6c\x68\xac\x79\x2c\x6f\xc2\xd6\xfb\xfd\xfc\xc6\xd8\x83\xb7" "\x17\x87\x8b\xd3\xc5\x89\xe2\x48\xf3\xa3\x1b\x9a\xfb\x69\xa8\x79\x5f" "\x53\xbb\x57\xb7\x07\x37\xa4\xff\xae\xf4\x7b\xe5\xe6\x65\xf6\xe0\xb6" "\xae\x63\xd7\x7b\x0f\xe6\xcf\x63\x4b\xed\xbd\xa1\xd1\xcb\x1f\xfc\x3a" "\xe8\x7e\x3e\xc7\xd3\xbe\xf8\xe8\xee\xe5\xf7\x60\xe3\x98\xd7\xed\x5d" "\xdf\xaf\x5d\xb7\xa5\x4b\xf2\x31\x6d\x5f\xbb\x76\x7f\x7f\x6d\xa9\xef" "\x79\xdd\xd0\x75\x9a\x9e\xce\xef\x79\x35\xd6\xf9\x0f\x7b\x97\xff\xde" "\x6c\xe3\x98\x13\x77\xac\x35\x67\x2e\x7f\x9e\x6e\x4b\x97\x5c\xbb\xc8" "\x79\xea\x7e\xfd\x2e\xf5\x9a\x3a\x52\x5c\x99\xf3\xb4\x39\xad\xf3\xfb" "\x77\x2c\x7d\x9e\x1a\xeb\x69\x1c\xf3\x91\x7d\xab\xdc\x4f\x07\x8a\xa2" "\xf8\xc2\xdd\x07\x9a\xdf\xef\x4d\x7f\xbf\xf2\xf9\xf3\xdf\xfa\x62\xc7" "\xdf\xbb\x1c\x68\x7d\xec\x4b\xfb\x16\x6e\xeb\xb2\xaf\x3a\x16\xfb\x7b" "\x9f\x2f\xdc\x7d\xe0\xe2\x3f\xdf\xf5\x93\xb5\x3c\x46\x00\xfa\xdb\xcf" "\x9a\xbf\x6e\xdd\xd4\xfa\x5c\xd7\xf6\x37\x53\xab\xf9\xfb\x7f\x00\x00" "\x00\x60\x20\x44\xee\x1f\x4e\x33\x93\xff\x01\x00\x00\xa0\x32\x22\xf7" "\xc7\xff\x15\x9e\xc9\xff\x00\x00\x00\x50\x19\x91\xfb\x47\xd3\xcc\x6a" "\x92\xff\x1f\xfc\xb7\xe7\xbd\xfb\xa7\xf7\x17\xb9\x99\x3f\x9f\xc4\xc7" "\xe3\x34\x9c\x79\xa2\x75\x5c\x74\x5c\x3f\x99\xfe\x3c\x39\xbf\xa0\x71" "\xf9\x6b\x3e\xf3\x8f\x5f\x7f\xfb\xfd\xab\xbb\xef\xe1\xa2\x28\x7e\x7a" "\xd7\xbf\x2c\x7a\xfc\x83\x4f\xc4\xba\x5a\x1e\x4e\xeb\x9c\xfc\x76\xe7" "\xe5\x97\xd9\xfc\xed\x55\xdd\xff\x3b\xee\x5d\x38\xae\xbd\x03\x38\x91" "\x6e\x3f\x1e\x4f\xf7\x36\xf8\xf2\x7f\x3f\xd1\xbc\xde\xe4\xbe\xd6\xbc" "\x78\xd7\xc5\xe6\x7c\xf3\x85\x07\x1f\x68\x7c\xfc\xd2\xbe\xd6\x9f\xa3" "\x3b\xf9\xe4\xff\xb4\x8e\xfb\xf3\x54\xe6\x3d\x70\xf4\xef\x3b\xae\xbf" "\xed\xb1\xd6\xfd\x6d\x7d\x6c\xf9\xc7\x15\xd7\xfb\xdc\x1b\x37\xde\xfd" "\x82\xb7\x2d\xdc\x5f\x5c\x6f\x68\xcb\xb3\x9a\x0f\xe3\xa3\xaf\x6c\xdd" "\x6e\xfc\xdc\x9b\x87\x5f\xdb\x3a\xfe\x52\x3a\x6e\xa9\xf5\xff\xdd\x1f" "\x7f\xf6\x73\x8d\xe3\xdf\xf7\x92\xc5\xd7\x7f\xff\xf0\xe2\xeb\x7f\x32" "\xdd\xee\x77\xd2\xfc\xc9\x53\xad\xcb\xdb\xcf\x69\xe3\xcf\x71\xbd\x3f" "\x4c\xeb\x8f\xfb\x8b\xeb\xdd\xfe\xe9\xaf\x2c\xba\xfe\x47\xde\xd0\x3a" "\xfe\x91\xf4\xbc\x7c\x32\xcd\xee\xf5\xbf\xfa\x4f\x5f\xf8\x54\xfb\xf9" "\x8a\xf5\xc7\xfd\x1c\x78\xbc\x75\xbd\xb8\xff\x99\xbf\xfe\x8f\xe6\xf5" "\xe2\xf6\xe2\xf6\xbb\xd7\x3f\xfe\xaa\x27\x3a\xce\x47\xf7\xed\x5f\xfc" "\x7c\xeb\x76\xf6\xbf\xe7\x7f\x47\xda\x8f\x8f\xcb\xe3\x7e\xf2\xbe\x7b" "\xbc\xf3\x79\x6e\xdc\x4e\xfb\x7e\x0b\x9f\xfd\xa3\x8b\x1d\xe7\xb9\xf8" "\xf7\xd6\xf5\xfe\xa6\x6b\xfd\x71\x7b\x67\x1e\x5f\x7c\xfd\xb7\x75\xad" "\xf3\xcc\xf6\x4d\xcd\xeb\x2f\x55\x19\xff\xf8\xec\x77\x16\x7d\xbc\xb1" "\x9e\x03\x7f\xf5\x68\xc7\xe3\x79\xe4\x7b\xe9\xfc\xbd\xe6\x9e\xe6\xed" "\x8e\xff\x38\xed\xc7\xf4\xf1\xff\x7b\xb8\x75\x7b\xdd\x3f\x2d\xe1\xd1" "\xef\x75\xbe\x9f\xc4\xf1\x9f\x9c\x68\xbd\x2e\xe3\xf6\xa6\xbb\xd6\xff" "\x70\xd7\xfa\x2f\xbc\xb8\x71\xee\x56\x5e\xff\x9d\x3f\x6a\xad\xff\x91" "\x57\x7d\xb5\xf3\xf9\xf8\xcf\xd6\x3a\x0e\xfc\xa0\x35\x57\x5a\xff\xb1" "\x4f\x7c\xb3\xe3\xfa\x9f\xfa\x56\xeb\xf9\x38\xfb\xde\xa9\x53\xa7\xe7" "\xce\x1f\x8f\x0e\xf5\x44\xfa\xd9\x3f\x67\xbe\xdb\xba\xbd\x6b\xc6\x37" "\x6e\xba\xf6\x19\xcf\x7c\xd6\xb3\xd3\x7b\x65\xf7\x9f\x0f\x9e\x3e\xf7" "\xce\xd9\xb3\x93\x33\x93\x33\x45\x31\x39\x80\x3f\x12\xef\xe9\x5e\xff" "\xa7\xd3\xfc\xaf\xd6\xb8\xb0\xde\xb7\x7f\x5f\x51\x14\xef\x6d\xfb\xbc" "\x76\xeb\xeb\x5b\xfb\xaf\x78\xd1\xa5\x3f\x79\xf1\x9d\x9f\x79\x67\x1c" "\xf7\x4f\xaf\x6b\x5d\xfe\xd0\xdd\xad\xcf\x5b\x2f\x4d\xc7\x3d\x9c\x2e" "\xbf\x90\x9e\xef\xb8\x9d\x8f\x7f\xac\xf5\xf9\xb0\xd7\xf5\xc7\xfd\x2c" "\x35\xf3\x7a\x57\xe9\xfc\xd7\x3e\xbc\x67\x55\x07\xa6\xc7\xff\xd1\x9b" "\xae\x6f\xbe\xca\x86\x2e\xb6\x2e\xee\x7e\xbf\x2a\x2b\x5e\xe7\x8f\x3f" "\xaf\xf3\x75\xff\xd8\x5b\x5b\xf3\x4b\xe9\xbc\xce\xa7\x9f\xcc\xbc\xe5" "\xfa\xaf\x35\x8f\xeb\xbe\xff\xf8\xd9\x08\x0f\xbd\xa5\xf5\xfa\x8e\xaf" "\xe4\xe2\xfa\xbd\xae\xff\x2f\xd3\xf3\x7d\xcf\x77\x5a\xb7\x1f\xb7\x9b" "\xd7\x9b\xbe\x8e\xf9\xca\xe6\xce\xf7\xc7\x78\x7e\xbe\x74\x7f\xd7\x4f" "\x1a\x98\x68\xfd\x14\x8f\x0b\xe9\xfd\xa3\xb8\xd0\xfa\x78\x1c\x15\x5f" "\x53\x3d\x74\xe9\xfa\xb5\x2c\x73\x49\x73\xef\x9f\x9b\x3e\x71\xfc\xd4" "\xf9\xf7\x4d\x9f\x9b\x9d\x3b\x37\x3d\xf7\xfe\x0f\x1c\x3c\x79\xfa\xfc" "\xa9\x73\x07\x9b\x3f\x9b\xf3\xe0\xbb\x56\xba\xfe\xc2\xeb\x7b\x53\xf3" "\xf5\x7d\x64\x76\xcf\xae\xa2\xf9\x6a\x3f\xdd\x1a\x4f\xb3\xab\xbd\xfe" "\x33\xf7\x1e\x3e\xb2\x77\xe6\x96\x23\xb3\x47\x0f\x9d\x3f\x7a\xee\xde" "\x33\xb3\x67\x8f\x1d\x9e\x9b\x3b\x3c\x7b\x64\xee\x96\x43\x47\x8f\xce" "\xbe\x77\xa5\xeb\x1f\x3f\xb2\x7f\xfb\x8e\x7d\x3b\xf7\xee\x98\x3a\x76" "\xfc\xc8\xfe\x3b\xf6\xed\xdb\xb9\x6f\xea\xf8\xa9\xd3\x8d\x65\xb4\x16" "\xb5\x82\x3d\x33\xef\x9e\x3a\x75\xf6\x60\xf3\x2a\x73\xfb\x77\xed\xdb" "\xbe\x7b\xf7\xae\x99\xa9\x93\xa7\x8f\xcc\xee\xdf\x3b\x33\x33\x75\x7e" "\xa5\xeb\x37\x3f\x37\x4d\x35\xae\xfd\x9e\xa9\xb3\xb3\x27\x0e\x9d\x3b" "\x7e\x72\x76\x6a\xee\xf8\x07\x66\xf7\x6f\xdf\xb7\x67\xcf\x8e\x15\x7f" "\xba\xdf\xc9\x33\x47\xe7\x26\xa7\xcf\x9e\x3f\x35\x7d\x7e\x6e\xf6\xec" "\x74\xeb\xb1\x4c\x9e\x6b\x5e\xdc\xf8\xdc\xb7\xd2\xf5\xa1\x61\xee\x13" "\x1b\x17\xfd\x3c\x35\x94\xbe\x7a\xdf\x7e\xdb\x9e\xfc\xf3\x59\x1b\x3e" "\xf3\xc1\x25\x6f\xaa\x75\x48\xd7\x0f\x10\xfd\x7e\xfa\x59\x34\xdf\xf8" "\x8b\x3f\xdb\xbd\x9a\x3f\x47\xee\x1f\x4b\x33\xab\x49\xfe\x07\x00\x00" "\x80\x3a\x88\xdc\xbf\x21\xcd\x4c\xfe\x07\x00\x00\x80\xca\x88\xdc\x7f" "\x4d\x9a\x99\xfc\x0f\x00\x00\x00\x95\x11\xb9\x7f\x3c\xcd\xac\x26\xf9" "\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x3f\xe8\xff\xeb\xff\x97\xa1\xff\xaf" "\xff\x5f\x86\xfe\xbf\xfe\xff\x20\xac\x5f\xff\x5f\xff\x9f\xde\xf5\x5b" "\xff\x3f\x72\xff\xc6\xa2\xa8\x65\xfe\x07\x00\x00\x80\x3a\x88\xdc\xbf" "\x29\xcd\x4c\xfe\x07\x00\x00\x80\xca\x88\xdc\x7f\x6d\x9a\x99\xfc\x0f" "\x00\x00\x00\x95\x11\xb9\xff\x19\x69\x66\x35\xc9\xff\xfa\xff\xfa\xff" "\xfa\xff\xfa\xff\x41\xff\x5f\xff\xbf\x0c\xfd\x7f\xfd\xff\x32\xf4\xff" "\xf5\xff\x07\x61\xfd\xfa\xff\xfa\xff\xf4\xae\xdf\xfa\xff\x91\xfb\x9f" "\x99\x66\x56\x93\xfc\x0f\x00\x00\x00\x75\x10\xb9\xff\x59\x69\x66\xf2" "\x3f\x00\x00\x00\x54\x46\xe4\xfe\x67\xa7\x99\xc9\xff\x00\x00\x00\x50" "\x19\x91\xfb\x27\xd2\xcc\x6a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff" "\x83\xfe\xbf\xfe\x7f\x19\xfa\xff\xfa\xff\x65\xe8\xff\xeb\xff\x0f\xc2" "\xfa\xf5\xff\xf5\xff\xe9\x5d\xbf\xf5\xff\x23\xf7\xff\x5c\x9a\x59\x4d" "\xf2\x3f\x00\x00\x00\xd4\x41\xe4\xfe\xe7\xa4\x99\xc9\xff\x00\x00\x00" "\x50\x19\x91\xfb\x9f\x9b\x66\x26\xff\x03\x00\x00\x40\x65\x44\xee\xbf" "\x2e\xcd\xac\x26\xf9\x5f\xff\x5f\xff\xbf\x7f\xfa\xff\x0b\xb5\x58\xfd" "\x7f\xfd\x7f\xfd\xff\xc1\xa1\xff\xaf\xff\x5f\x86\xfe\xbf\xfe\xff\x20" "\xac\x5f\xff\x5f\xff\x9f\xde\xf5\x5b\xff\x3f\x72\xff\xf3\xd2\xcc\x6a" "\x92\xff\x01\x00\x00\xa0\x0e\x22\xf7\x5f\x9f\x66\x26\xff\x03\x00\x00" "\x40\x65\x44\xee\x7f\x7e\x9a\x99\xfc\x0f\x00\x00\x00\x95\x11\xb9\x7f" "\x73\x9a\x59\x4d\xf2\xbf\xfe\xbf\xfe\x7f\xff\xf4\xff\xfd\xfb\xff\x41" "\xff\x5f\xff\x7f\x90\xe8\xff\xeb\xff\x97\xa1\xff\xaf\xff\x3f\x08\xeb" "\xd7\xff\xd7\xff\xa7\x77\xfd\xd6\xff\x8f\xdc\xff\xf3\x69\x66\x35\xc9" "\xff\x00\x00\x00\x50\x07\x91\xfb\x6f\x48\x33\x93\xff\x01\x00\x00\xa0" "\x32\x22\xf7\xbf\x20\xcd\x4c\xfe\x07\x00\x00\x80\xca\x88\xdc\x7f\x63" "\x9a\x59\x4d\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xd0\xff\xd7\xff" "\x2f\x43\xff\x5f\xff\xbf\x0c\xfd\x7f\xfd\xff\x41\x58\xbf\xfe\xbf\xfe" "\x3f\xbd\xeb\xb7\xfe\x7f\xe4\xfe\x17\xa6\x99\xd5\x24\xff\x03\x00\x00" "\x40\x1d\x44\xee\x7f\x51\x9a\x99\xfc\x0f\x00\x00\x00\x95\x11\xb9\xff" "\xc5\x69\x66\xf2\x3f\x00\x00\x00\x54\x46\xe4\xfe\xc9\x34\xb3\x9a\xe4" "\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xa0\xff\xaf\xff\x5f\x86\xfe\xbf" "\xfe\x7f\x19\xfa\xff\xfa\xff\x83\xb0\x7e\xfd\x7f\xfd\x7f\x7a\xd7\x6f" "\xfd\xff\xc8\xfd\x37\xa5\x99\xd5\x24\xff\x03\x00\x00\x40\x1d\x44\xee" "\xdf\x92\x66\x26\xff\x03\x00\x00\x40\x65\x44\xee\xbf\x39\xcd\x4c\xfe" "\x07\x00\x00\x80\xca\x88\xdc\xbf\x35\xcd\xac\x26\xf9\x5f\xff\x5f\xff" "\x5f\xff\x5f\xff\x3f\xe8\xff\xeb\xff\x97\xa1\xff\xaf\xff\x5f\x86\xfe" "\xbf\xfe\xff\x20\xac\x5f\xff\x5f\xff\x9f\xde\xf5\x5b\xff\x3f\x72\xff" "\x4b\xd2\xcc\x6a\x92\xff\x01\x00\x00\xa0\x0e\x22\xf7\xdf\x92\x66\x26" "\xff\x03\x00\x00\x40\x65\x44\xee\x7f\x69\x9a\x99\xfc\x0f\x00\x00\x00" "\x95\x11\xb9\x7f\x5b\x9a\x59\x4d\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe" "\x7f\xd0\xff\xd7\xff\x2f\x43\xff\x5f\xff\xbf\x0c\xfd\x7f\xfd\xff\x41" "\x58\xbf\xfe\xbf\xfe\x3f\xbd\xeb\xb7\xfe\x7f\xe4\xfe\x97\xa5\x99\xd5" "\x24\xff\x03\x00\x00\x40\x1d\x44\xee\xbf\x35\xcd\x4c\xfe\x07\x00\x00" "\x80\xca\x88\xdc\x7f\x5b\x9a\x99\xfc\x0f\x00\x00\x00\x95\x11\xb9\x7f" "\x2a\xcd\xac\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x3f\xe8\xff\xeb" "\xff\x97\xa1\xff\xaf\xff\x5f\x86\xfe\xbf\xfe\xff\x20\xac\x5f\xff\x5f" "\xff\x9f\xde\xf5\x5b\xff\x3f\x72\xff\xcb\xd3\xcc\x6a\x92\xff\x01\x00" "\x00\xa0\x0e\x22\xf7\xdf\x9e\x66\x26\xff\x03\x00\x00\x40\x65\x44\xee" "\x9f\x4e\x33\x93\xff\x01\x00\x00\xa0\x32\x22\xf7\xcf\xa4\x99\xd5\x24" "\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x07\xfd\x7f\xfd\xff\x32\xf4\xff" "\xf5\xff\xcb\xd0\xff\xd7\xff\x1f\x84\xf5\xeb\xff\xeb\xff\xd3\xbb\x7e" "\xeb\xff\x47\xee\xdf\x9e\x66\x56\x93\xfc\x0f\x00\x00\x00\x75\x10\xb9" "\x7f\x47\x9a\x99\xfc\x0f\x00\x00\x00\x95\x11\xb9\x7f\x67\x9a\x99\xfc" "\x0f\x00\x00\x00\x95\x11\xb9\x7f\x57\x9a\x59\x4d\xf2\xbf\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\x7f\xd0\xff\xd7\xff\x2f\x43\xff\x5f\xff\xbf\x0c\xfd" "\x7f\xfd\xff\x41\x58\xbf\xfe\xbf\xfe\x3f\xbd\xeb\xb7\xfe\x7f\xe4\xfe" "\xdd\x69\x66\x35\xc9\xff\x00\x00\x00\x50\x07\x91\xfb\xf7\xa4\x99\xc9" "\xff\x00\x00\x00\x50\x19\x91\xfb\xf7\xa6\x99\xc9\xff\x00\x00\x00\x50" "\x19\x91\xfb\xef\x48\x33\xab\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff" "\x0f\xfa\xff\xfa\xff\x65\xe8\xff\xeb\xff\x97\xa1\xff\xaf\xff\x3f\x08" "\xeb\xbf\x22\xfd\xff\x07\x96\xfe\x31\x00\xfa\xff\x54\x41\xbf\xf5\xff" "\x23\xf7\xef\x4b\x33\xab\x49\xfe\x07\x00\x00\x80\x3a\x88\xdc\xff\x8a" "\x34\x33\xf9\x1f\x00\x00\x00\x2a\x23\x72\xff\x2f\xa4\x99\xc9\xff\x00" "\x00\x00\x50\x19\x91\xfb\x7f\x31\xcd\xac\x26\xf9\x5f\xff\x5f\xff\x5f" "\xff\x5f\xff\x3f\xe8\xff\xeb\xff\x97\xa1\xff\xaf\xff\x5f\x86\xfe\xbf" "\xfe\xff\x20\xac\xdf\xbf\xff\xaf\xff\x4f\xef\xfa\xad\xff\x1f\xb9\x7f" "\x7f\x9a\x59\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xe4\xfe\x57\xa6\x99\xc9" "\xff\x00\x00\x00\x50\x19\x91\xfb\x5f\x95\x66\x26\xff\x03\x00\x00\x40" "\x65\x44\xee\x3f\x90\x66\x56\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff" "\x1f\xf4\xff\x07\xa4\xff\xff\x07\xab\x38\xe6\x0a\xd2\xff\xd7\xff\x2f" "\x43\xff\x5f\xff\x7f\x10\xd6\xaf\xff\xaf\xff\x4f\xef\xfa\xad\xff\x1f" "\xb9\xff\xd5\x69\x66\x35\xc9\xff\x00\x00\x00\x50\x07\x91\xfb\x5f\x93" "\x66\x26\xff\x03\x00\x00\x40\x65\x44\xee\x7f\x6d\x9a\x99\xfc\x0f\x00" "\x00\x00\x95\x11\xb9\xff\x75\x69\x66\x35\xc9\xff\xfa\xff\xfa\xff\xfa" "\xff\xfa\xff\x41\xff\x7f\x40\xfa\xff\x7d\x46\xff\x5f\xff\xbf\x0c\xfd" "\x7f\xfd\xff\x41\x58\xbf\xfe\xbf\xfe\x3f\xbd\xeb\xb7\xfe\x7f\xe4\xfe" "\xd7\xa7\x99\xd5\x24\xff\x03\x00\x00\x40\x1d\x44\xee\xff\xa5\x34\x33" "\xf9\x1f\x00\x00\x00\x2a\x23\x72\xff\x1b\xd2\xcc\xe4\x7f\x00\x00\x00" "\xa8\x8c\xc8\xfd\x77\xa6\x99\xd5\x24\xff\xeb\xff\xeb\xff\x3f\x5d\xfd" "\xff\x0d\xe9\x36\xf4\xff\xdb\xf6\x9d\xfe\x7f\x93\xfe\xbf\xfe\xff\x5a" "\xe8\xff\xeb\xff\x17\x6b\xe9\xff\x0f\xa5\x57\xb0\xfe\x7f\xd3\xd5\xee" "\xcf\x0f\xfa\xfa\xf5\xff\xf5\xff\xe9\x5d\xbf\xf5\xff\x23\xf7\xff\x72" "\x9a\x59\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xe4\xfe\xbb\xd2\xcc\xe4\x7f" "\x00\x00\x00\xa8\x8c\xc8\xfd\x77\xa7\x99\xc9\xff\x00\x00\x00\x50\x19" "\x91\xfb\xdf\x98\x66\x56\x93\xfc\xdf\xf7\xfd\xff\x74\x87\xfa\xff\x4b" "\xf6\xff\x9f\xd9\x98\xfd\xd8\xff\x0f\xfa\xff\x6d\xfb\x4e\xff\xbf\x49" "\xff\x5f\xff\x7f\x2d\xf4\xff\xf5\xff\x0b\xff\xfe\x7f\x69\x57\xbb\x3f" "\x3f\xe8\xeb\xd7\xff\xd7\xff\xa7\x77\xfd\xd6\xff\x8f\xdc\x7f\x4f\x9a" "\x59\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xe4\xfe\x5f\x49\x33\x6b\xcf\xff" "\x4b\xfd\x65\x19\x00\x00\x00\x30\x10\x22\xf7\xff\x6a\x9a\x99\xbf\xff" "\x07\x00\x00\x80\xca\x88\xdc\xff\xa6\x34\xb3\x9a\xe4\xff\xbe\xef\xff" "\x27\xfa\xff\x83\xf7\xef\xff\x07\xfd\xff\xb6\x7d\xa7\xff\xdf\xa4\xff" "\xaf\xff\xbf\x16\xfa\xff\xfa\xff\x85\xfe\x7f\x69\x57\xbb\x3f\x3f\xe8" "\xeb\xd7\xff\xd7\xff\xa7\x77\xfd\xd6\xff\x8f\xdc\xff\x6b\x69\x66\x35" "\xc9\xff\x00\x00\x00\x50\x07\x91\xfb\xdf\x9c\x66\x26\xff\x03\x00\x00" "\x40\x65\x44\xee\x7f\x4b\x9a\x99\xfc\x0f\x00\x00\x00\x95\x11\xb9\xff" "\xad\x69\x66\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x41\xff\x5f" "\xff\xbf\x0c\xfd\x7f\xfd\xff\x32\xf4\xff\xf5\xff\x07\x61\xfd\xfa\xff" "\xfa\xff\xf4\xae\xdf\xfa\xff\x91\xfb\xef\x4d\x33\xab\x49\xfe\x07\x00" "\x00\x80\x3a\x88\xdc\xff\xb6\x34\x33\xf9\x1f\x00\x00\x00\x2a\x23\x72" "\xff\xaf\xa7\x99\xc9\xff\x00\x00\x00\x50\x19\x91\xfb\x7f\x23\xcd\xac" "\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x3f\xe8\xff\xeb\xff\x97\xa1" "\xff\xaf\xff\x5f\x86\xfe\xbf\xfe\xff\x20\xac\x5f\xff\x5f\xff\x9f\xde" "\xf5\x5b\xff\x3f\x72\xff\x6f\xa6\x99\xd5\x24\xff\x03\x00\x00\x40\x1d" "\x44\xee\x7f\x7b\x9a\x99\xfc\x0f\x00\x00\x00\x95\x11\xb9\xff\xb7\xd2" "\xcc\xe4\x7f\x00\x00\x00\xa8\x8c\xc8\xfd\xbf\x9d\x66\x56\x93\xfc\xaf" "\xff\xaf\xff\xaf\xff\xaf\xff\x1f\xf4\xff\xf5\xff\xcb\xd0\xff\xd7\xff" "\x2f\x43\xff\x5f\xff\x7f\x10\xd6\xaf\xff\xaf\xff\x4f\xef\xfa\xad\xff" "\x1f\xb9\xff\x77\xd2\xcc\x6a\x92\xff\x01\x00\x00\xa0\x0e\x22\xf7\xff" "\x6e\x9a\x99\xfc\x0f\x00\x00\x00\x95\x11\xb9\xff\x60\x9a\x99\xfc\x0f" "\x00\x00\x00\x95\x11\xb9\xff\x1d\x69\x66\x35\xc9\xff\xfa\xff\xfa\xff" "\xfa\xff\xfa\xff\x41\xff\x5f\xff\xbf\x0c\xfd\x7f\xfd\xff\x32\xf4\xff" "\xf5\xff\x07\x61\xfd\xfa\xff\xfa\xff\xf4\xae\xdf\xfa\xff\x91\xfb\x0f" "\xa5\x99\xd5\x24\xff\x03\x00\x00\x40\x1d\x44\xee\xff\xbd\x34\x33\xf9" "\x1f\x00\x00\x00\x2a\x23\x72\xff\xe1\x34\x33\xf9\x1f\x00\x00\x00\x2a" "\x23\x72\xff\x91\x34\xb3\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff" "\xa0\xff\xaf\xff\x5f\x86\xfe\xbf\xfe\x7f\x19\xfa\xff\xfa\xff\x61\xb9" "\x27\xe4\x6a\xaf\x7f\xbd\xfa\xff\x23\x85\xfe\x3f\xf5\xd5\x6f\xfd\xff" "\xc8\xfd\xb3\x69\x66\x35\xc9\xff\x00\x00\x00\x50\x07\x91\xfb\x8f\xa6" "\x99\xc9\xff\x00\x00\x00\x50\x19\x91\xfb\x8f\xa5\x99\xc9\xff\x00\x00" "\x00\x50\x19\x91\xfb\xdf\x99\x66\x56\x93\xfc\xaf\xff\xaf\xff\xaf\xff" "\xaf\xff\x1f\xf4\xff\xf5\xff\xcb\xd0\xff\xd7\xff\x2f\x43\xff\x5f\xff" "\x7f\x10\xd6\xef\xdf\xff\xd7\xff\xa7\x77\xfd\xd6\xff\x8f\xdc\x7f\x3c" "\xcd\xac\x26\xf9\x1f\x00\x00\x00\xea\x20\x72\xff\xbb\xd2\xcc\xe4\x7f" "\x00\x00\x00\xa8\x8c\xc8\xfd\xef\x4e\x33\x93\xff\x01\x00\x00\xa0\x32" "\x22\xf7\x9f\x48\x33\xab\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x0f" "\xfa\xff\xfa\xff\x65\xe8\xff\xeb\xff\x97\xa1\xff\xaf\xff\x3f\x08\xeb" "\xd7\xff\xd7\xff\xa7\x77\xfd\xd6\xff\x8f\xdc\x7f\x32\xcd\xac\x26\xf9" "\x1f\x00\x00\x00\xea\x20\x72\xff\xa9\x34\x33\xf9\x1f\x00\x00\x00\x2a" "\x23\x72\xff\xe9\x34\x33\xf9\x1f\x00\x00\x00\x2a\x23\x72\xff\x99\x34" "\xb3\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xa0\xff\xaf\xff\x5f" "\x86\xfe\xbf\xfe\x7f\x19\xfa\xff\xfa\xff\x83\xb0\x7e\xfd\x7f\xfd\x7f" "\x7a\xd7\x6f\xfd\xff\xc8\xfd\xbf\x9f\x66\x56\x93\xfc\x0f\x00\x00\x00" "\x75\x10\xb9\xff\x6c\x9a\x99\xfc\x0f\x00\x00\x00\x95\x11\xb9\x7f\x2e" "\xcd\x4c\xfe\x07\x00\x00\x80\xca\x88\xdc\x7f\x2e\xcd\xac\x26\xf9\x5f" "\xff\x5f\xff\x5f\xff\x5f\xff\x3f\xe8\xff\xeb\xff\x97\xa1\xff\xff\xff" "\xec\xdd\xd5\x8b\x60\xd9\x11\xc7\xf1\x26\x24\xd0\x4f\xf9\x6f\xe3\xee" "\xee\xee\xee\xbe\x71\x77\x77\x77\x77\x77\xcf\x43\x48\xba\xaa\x42\xb2" "\x9b\x84\x3d\x77\x66\xf7\xdc\xaa\xcf\xe7\xa5\xa0\x17\x96\xc3\xd0\x0f" "\xf3\x63\xf8\x72\xf5\xff\x2b\xf4\xff\xfa\xff\x33\xbc\x5f\xff\xaf\xff" "\xe7\xb8\xdd\xfa\xff\xdc\xfd\x77\x88\x5b\x86\xec\x7f\x00\x00\x00\x98" "\x20\x77\xff\x1d\xe3\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\x7f\xa7\xb8" "\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\xdf\x39\x6e\x19\xb2\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xfe\x3f\xe9\xff\xf5\xff\x2b\xf4\xff\xfa\xff\x15\xfa" "\x7f\xfd\xff\x19\xde\xaf\xff\xd7\xff\x73\xdc\x6e\xfd\x7f\xee\xfe\xbb" "\xc4\x2d\x43\xf6\x3f\x00\x00\x00\x4c\x90\xbb\xff\xae\x71\x8b\xfd\x0f" "\x00\x00\x00\x6d\xe4\xee\xbf\x5b\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9" "\xfb\xef\x1e\xb7\x0c\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x9f\xf4\xff" "\xfa\xff\x15\xfa\x7f\xfd\xff\x0a\xfd\xbf\xfe\xff\x0c\xef\xd7\xff\xeb" "\xff\x39\x6e\xb7\xfe\x3f\x77\xff\x3d\xe2\x96\x21\xfb\x1f\x00\x00\x00" "\x26\xc8\xdd\x7f\xcf\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\xdf\x2b" "\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd\xf7\x8e\x5b\x86\xec\x7f\xfd" "\xbf\xfe\x5f\xff\xaf\xff\x4f\xfa\x7f\xfd\xff\x0a\xfd\xbf\xfe\x7f\x85" "\xfe\x5f\xff\x7f\x86\xf7\xeb\xff\xf5\xff\x1c\xb7\x5b\xff\x9f\xbb\xff" "\x3e\x71\xcb\x90\xfd\x0f\x00\x00\x00\x13\xe4\xee\xbf\x6f\xdc\x62\xff" "\x03\x00\x00\x40\x1b\xb9\xfb\xef\x17\xb7\xd8\xff\x00\x00\x00\xd0\x46" "\xee\xfe\xfb\xc7\x2d\x43\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x27\xfd" "\xbf\xfe\x7f\x85\xfe\x5f\xff\xbf\x42\xff\xaf\xff\x3f\xc3\xfb\xf5\xff" "\xfa\x7f\x8e\xdb\xad\xff\xcf\xdd\xff\x80\xb8\x65\xc8\xfe\x07\x00\x00" "\x80\x09\x72\xf7\x3f\x30\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd\x0f" "\x8a\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\x83\xe3\x96\x21\xfb\x5f" "\xff\xaf\xff\xd7\xff\xeb\xff\x93\xfe\x5f\xff\xbf\x42\xff\xaf\xff\x5f" "\xa1\xff\xd7\xff\x9f\xe1\xfd\xfa\x7f\xfd\x3f\xc7\xed\xd6\xff\xe7\xee" "\x7f\x48\xdc\x32\x64\xff\x03\x00\x00\xc0\x04\xb9\xfb\x1f\x1a\xb7\xd8" "\xff\x00\x00\x00\xd0\x46\xee\xfe\x87\xc5\x2d\xf6\x3f\x00\x00\x00\xb4" "\x91\xbb\xff\xe1\x71\xcb\x90\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x49" "\xff\xaf\xff\x5f\xa1\xff\xd7\xff\xaf\xd0\xff\xeb\xff\xcf\xf0\x7e\xfd" "\xbf\xfe\x9f\xe3\x76\xeb\xff\x73\xf7\x3f\x22\x6e\x19\xb2\xff\x01\x00" "\x00\x60\x82\xdc\xfd\x8f\x8c\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff" "\xa3\xe2\x96\xff\xdc\xff\x97\xb7\xe4\xab\x00\x00\x00\x80\x6b\x29\x77" "\xff\xa3\xe3\x96\x21\xff\xfe\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x49\xff" "\xaf\xff\x5f\xa1\xff\xd7\xff\xaf\xd0\xff\xeb\xff\xcf\xf0\x7e\xfd\xbf" "\xfe\x9f\xe3\x76\xeb\xff\x73\xf7\x3f\x26\x6e\x19\xb2\xff\x01\x00\x00" "\x60\x82\xdc\xfd\x8f\x8d\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\xe3" "\xe2\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xf8\xb8\x65\xc8\xfe\xd7" "\xff\xeb\xff\xf5\xff\xfa\xff\xa4\xff\xd7\xff\xaf\xd0\xff\xeb\xff\x57" "\xe8\xff\xf5\xff\x67\x78\xbf\xfe\x5f\xff\xcf\x71\xbb\xf5\xff\xb9\xfb" "\x9f\x10\xb7\x0c\xd9\xff\x00\x00\x00\x30\x41\xee\xfe\x27\xc6\x2d\xf6" "\x3f\x00\x00\x00\xb4\x91\xbb\xff\x49\x71\x8b\xfd\x0f\x00\x00\x00\x6d" "\xe4\xee\x7f\x72\xdc\x32\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\x7f\xd2" "\xff\xeb\xff\x57\xe8\xff\xf5\xff\x2b\xf4\xff\xfa\xff\x33\xbc\x5f\xff" "\xaf\xff\xe7\xb8\xdd\xfa\xff\xdc\xfd\x4f\x89\x5b\x86\xec\x7f\x00\x00" "\x00\x98\x20\x77\xff\x53\xe3\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff" "\xb4\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\x3f\x3d\x6e\x19\xb2\xff" "\xf5\xff\xfa\x7f\xfd\xbf\xfe\x3f\xe9\xff\xf5\xff\x2b\xf4\xff\xfa\xff" "\x15\xfa\x7f\xfd\xff\x19\xde\xaf\xff\xd7\xff\x73\xdc\x6e\xfd\x7f\xee" "\xfe\x67\xc4\x2d\x43\xf6\x3f\x00\x00\x00\x4c\x90\xbb\xff\x99\x71\x8b" "\xfd\x0f\x00\x00\x00\x6d\xe4\xee\x7f\x56\xdc\x62\xff\x03\x00\x00\x40" "\x1b\xb9\xfb\x9f\x1d\xb7\x0c\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x9f" "\xf4\xff\xfa\xff\x15\x0d\xfb\xff\xab\x5f\x01\xfd\xbf\xfe\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\x39\x6c\xb7\xfe\x3f\x77\xff\x73\xe2\x96\x21\xfb" "\x1f\x00\x00\x00\x26\xc8\xdd\xff\xdc\xb8\xc5\xfe\x07\x00\x00\x80\x36" "\x72\xf7\x3f\x2f\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd\xcf\x8f\x5b" "\x86\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x4f\xfa\x7f\xfd\xff\x8a\x86" "\xfd\xbf\xef\xff\x5f\x5c\xeb\xfe\xff\xf2\x46\x3f\xd1\xff\xeb\xff\xcf" "\xf0\x7e\xfd\xbf\xfe\x9f\xe3\x76\xeb\xff\x73\xf7\xbf\x20\x6e\x19\xb2" "\xff\x01\x00\x00\x60\x82\xdc\xfd\x2f\x8c\x5b\xec\x7f\x00\x00\x00\x68" "\x23\x77\xff\x8b\xe2\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xe2\xb8" "\x65\xc8\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xa4\xff\xd7\xff\xaf\xd0" "\xff\x37\xed\xff\x6f\x73\xe1\xfb\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf" "\x61\xbb\xf5\xff\xb9\xfb\x5f\x12\xb7\x0c\xd9\xff\x00\x00\x00\x30\x41" "\xee\xfe\x97\xc6\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x65\x71\x8b" "\xfd\x0f\x00\x00\x00\x6d\xe4\xee\x7f\x79\xdc\x32\x64\xff\xeb\xff\xf5" "\xff\xfa\x7f\xfd\x7f\xd2\xff\xeb\xff\x57\xe8\xff\x9b\xf6\xff\xd7\xf4" "\xfb\xff\x37\xa6\xff\xd7\xff\x9f\xe1\xfd\xfa\x7f\xfd\x3f\xc7\xed\xd6" "\xff\xe7\xee\x7f\x45\xdc\x32\x64\xff\x03\x00\x00\xc0\x69\xdd\x8c\xed" "\x9e\xbb\xff\x95\x71\x57\xfe\x1f\x00\x00\x00\xc0\xde\x72\xf7\xbf\x2a" "\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd\xaf\x8e\x5b\x86\xec\x7f\xfd" "\xbf\xfe\x7f\x8f\xfe\xff\x86\x8b\x9b\x7a\xbf\xfe\x5f\xff\x7f\xa1\xff" "\xdf\x9e\xfe\x5f\xff\xbf\x42\xff\xaf\xff\x3f\xc3\xfb\xaf\x53\xff\x9f" "\xbf\xa6\xfa\x7f\x46\xd8\xad\xff\xcf\xdd\xff\x9a\xb8\x65\xc8\xfe\x07" "\x00\x00\x80\x09\x72\xf7\xdf\x10\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee" "\xfe\xd7\xc6\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x75\x71\xcb\x90" "\xfd\xaf\xff\xd7\xff\xef\xd1\xff\xcf\xfc\xfe\xff\xa5\xfe\xff\xdf\xfe" "\x3c\xf5\xff\xfa\xff\x9b\xa2\xff\xd7\xff\x5f\xe8\xff\x97\xdd\xda\xfd" "\xfc\xd9\xdf\xef\xfb\xff\xfa\x7f\x8e\xdb\xad\xff\xcf\xdd\xff\xfa\xb8" "\x65\xc8\xfe\x07\x00\x00\x80\x09\x72\xf7\xbf\x21\x6e\xb1\xff\x01\x00" "\x00\xa0\x8d\xdc\xfd\x6f\x8c\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff" "\x9b\xe2\x96\x21\xfb\x5f\xff\xaf\xff\xd7\xff\xfb\xfe\x7f\xd2\xff\xeb" "\xff\x57\xe8\xff\xf5\xff\x2b\xf4\xff\xfa\xff\x33\xbc\x5f\xff\xaf\xff" "\xe7\xb8\xdd\xfa\xff\xdc\xfd\x6f\x8e\x5b\x86\xec\x7f\x00\x00\x00\x98" "\x20\x77\xff\x5b\xe2\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xd6\xb8" "\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\xbf\x2d\x6e\x19\xb2\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xfe\x3f\xe9\xff\xf5\xff\x2b\xf4\xff\xfa\xff\x15\xfa" "\x7f\xfd\xff\x19\xde\xaf\xff\xd7\xff\x73\xdc\x6e\xfd\x7f\xee\xfe\xb7" "\xc7\x2d\x43\xf6\x3f\x00\x00\x00\x4c\x90\xbb\xff\x1d\x71\x8b\xfd\x0f" "\x00\x00\x00\x6d\xe4\xee\x7f\x67\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9" "\xfb\xdf\x15\xb7\x0c\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x9f\xf4\xff" "\xfa\xff\x15\xfa\x7f\xfd\xff\x0a\xfd\xbf\xfe\xff\x0c\xef\xd7\xff\xeb" "\xff\x39\x6e\xb7\xfe\x3f\x77\xff\xbb\xe3\x96\x21\xfb\x1f\x00\x00\x00" "\x26\xc8\xdd\xff\x9e\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\xbf\x37" "\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd\xef\x8b\x5b\x86\xec\x7f\xfd" "\xbf\xfe\x5f\xff\xaf\xff\x4f\xfa\x7f\xfd\xff\x0a\xfd\xbf\xfe\x7f\x85" "\xfe\x5f\xff\x7f\x86\xf7\xeb\xff\xf5\xff\x1c\xb7\x5b\xff\x9f\xbb\xff" "\xfd\x71\xcb\x90\xfd\x0f\x00\x00\x00\x13\xe4\xee\xff\x40\xdc\x62\xff" "\x03\x00\x00\x40\x1b\xb9\xfb\x3f\x18\xb7\xd8\xff\x00\x00\x00\xd0\x46" "\xee\xfe\x0f\xc5\x2d\x43\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x27\xfd" "\xbf\xfe\x7f\x85\xfe\x5f\xff\xbf\x42\xff\xaf\xff\x3f\xc3\xfb\xf5\xff" "\xfa\x7f\x8e\xdb\xad\xff\xcf\xdd\xff\xe1\xb8\x65\xc8\xfe\x07\x00\x00" "\x80\x09\x72\xf7\x7f\x24\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd\x1f" "\x8d\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\xc7\xe2\x96\x21\xfb\x5f" "\xff\xaf\xff\xd7\xff\xeb\xff\x93\xfe\x5f\xff\xbf\x42\xff\xaf\xff\x5f" "\xa1\xff\xd7\xff\x9f\xe1\xfd\xfa\x7f\xfd\x3f\xc7\xed\xd6\xff\xe7\xee" "\xff\x78\xdc\x32\x64\xff\x03\x00\x00\xc0\x04\xb9\xfb\x3f\x11\xb7\xd8" "\xff\x00\x00\x00\xd0\x46\xee\xfe\x4f\xc6\x2d\xf6\x3f\x00\x00\x00\xb4" "\x91\xbb\xff\x53\xff\xbc\xb7\xfd\xd7\x7f\x18\xb2\xff\xf5\xff\xfa\x7f" "\xfd\xbf\xfe\x3f\xe9\xff\xf5\xff\x2b\xf4\xff\xfa\xff\x15\xfa\x7f\xfd" "\xff\x19\xde\xaf\xff\xd7\xff\x73\xdc\x6e\xfd\xff\xd5\xee\xbf\xbc\xf8" "\x74\xdc\x32\x64\xff\x03\x00\x00\xc0\x04\xb9\xfb\x3f\x13\xb7\xd8\xff" "\x00\x00\x00\xd0\x46\xee\xfe\xcf\xc6\x2d\xf6\x3f\x00\x00\x00\xb4\x91" "\xbb\xff\x73\x71\xcb\x90\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x49\xff" "\xaf\xff\x5f\xa1\xff\xd7\xff\xaf\xd0\xff\xeb\xff\xcf\xf0\x7e\xfd\xbf" "\xfe\x9f\xe3\x76\xeb\xff\x73\xf7\x7f\x3e\x6e\x19\xb2\xff\x01\x00\x00" "\x60\x82\xdc\xfd\x5f\x88\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\x17" "\xe3\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xa5\xb8\x65\xc8\xfe\xd7" "\xff\xeb\xff\x7b\xf5\xff\x57\x29\x9e\xfe\xff\x8a\xfe\xff\x8a\xfe\xff" "\xfa\xd2\xff\xeb\xff\x57\xe8\xff\xf5\xff\x67\x78\xbf\xfe\x5f\xff\xcf" "\x71\xbb\xf5\xff\xb9\xfb\xbf\x1c\xb7\x0c\xd9\xff\x00\x00\x00\x30\x41" "\xee\xfe\xaf\xc4\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\xab\x71\x8b" "\xfd\x0f\x00\x00\x00\x6d\xe4\xee\xff\x5a\xdc\x32\x64\xff\xeb\xff\xf5" "\xff\xbd\xfa\xff\x2b\xfa\xff\x2b\xfa\xff\x2b\xfa\xff\xeb\x4b\xff\xaf" "\xff\x5f\xa1\xff\xd7\xff\x9f\xe1\xfd\xfa\x7f\xfd\x3f\xc7\xed\xd6\xff" "\xe7\xee\xff\x7a\xdc\x32\x64\xff\x03\x00\x00\xc0\x04\xb9\xfb\xbf\x11" "\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\x6f\xc6\x2d\xf6\x3f\x00\x00" "\x00\xb4\x91\xbb\xff\x5b\x71\xcb\x90\xfd\xaf\xff\xd7\xff\xeb\xff\xf5" "\xff\x49\xff\xaf\xff\x5f\xa1\xff\xd7\xff\xaf\xd0\xff\xeb\xff\xff\x9b" "\xdb\x6f\xf4\x7e\xfd\xbf\xfe\x9f\xe3\x76\xeb\xff\x73\xf7\x7f\x3b\x6e" "\x19\xb2\xff\x01\x00\x00\x60\x82\xdc\xfd\xdf\x89\x5b\xec\x7f\x00\x00" "\x00\x68\x23\x77\xff\x77\xe3\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff" "\xbd\xb8\x65\xc8\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xa4\xff\xd7\xff" "\xaf\xd0\xff\xeb\xff\x57\xe8\xff\xf5\xff\x67\x78\xbf\xfe\x5f\xff\xcf" "\x71\xbb\xf5\xff\xb9\xfb\xbf\x1f\xb7\x0c\xd9\xff\x00\x00\x00\x30\x41" "\xee\xfe\x1f\xc4\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x87\x71\x8b" "\xfd\x0f\x00\x00\x00\x6d\xe4\xee\xff\x51\xdc\x32\x64\xff\xeb\xff\xf5" "\xff\xfa\x7f\xfd\x7f\xd2\xff\xeb\xff\x57\xe8\xff\xf5\xff\x2b\xf4\xff" "\xfa\xff\x33\xbc\x5f\xff\xaf\xff\xe7\xb8\xdd\xfa\xff\xdc\xfd\x3f\x8e" "\x5b\x86\xec\x7f\x00\x00\x00\x98\x20\x77\xff\x4f\xe2\x16\xfb\x1f\x00" "\x00\x00\xda\xc8\xdd\xff\xd3\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7" "\xff\x2c\x6e\x19\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x3f\xe9\xff\xf5" "\xff\x2b\xf4\xff\xfa\xff\x15\xfa\x7f\xfd\xff\x19\xde\xaf\xff\xd7\xff" "\x73\xdc\xff\xea\xff\xe3\xef\xfc\xb7\x68\xff\x9f\xbb\xff\xe7\x71\xcb" "\x90\xfd\x0f\x00\x00\x00\x13\xe4\xee\xff\x45\xdc\x62\xff\x03\x00\x00" "\x40\x1b\xb9\xfb\x7f\x19\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\x5f" "\xc5\x2d\x43\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x27\xfd\xbf\xfe\x7f" "\x85\xfe\x5f\xff\xbf\x42\xff\xaf\xff\x3f\xc3\xfb\xf5\xff\xfa\x7f\x8e" "\xdb\xed\xfb\xff\xb9\xfb\x7f\x1d\xb7\x0c\xd9\xff\x00\x00\x00\x30\x41" "\xee\xfe\xdf\xc4\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\xb7\x71\x8b" "\xfd\x0f\x00\x00\x00\x6d\xe4\xee\xff\x5d\xdc\x32\x64\xff\xff\xbf\xfe" "\xff\x76\x71\x6f\xc5\xfe\x3f\x9f\xa0\xff\xd7\xff\xeb\xff\xf5\xff\xfa" "\xff\x0d\xe9\xff\xf5\xff\x2b\xf4\xff\xfa\xff\x33\xbc\x5f\xff\xaf\xff" "\xe7\xb8\xdd\xfa\xff\xdc\xfd\xbf\x8f\x5b\x86\xec\x7f\x00\x00\x00\x98" "\x20\x77\xff\x1f\xe2\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xc7\xb8" "\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\xff\x29\x6e\x19\xb2\xff\x7d\xff" "\x5f\xff\xaf\xff\xd7\xff\x27\xfd\xbf\xfe\x7f\x85\xfe\x5f\xff\xbf\x62" "\x7c\xff\xff\x8f\x1f\xeb\xff\xb7\x7f\xbf\xfe\x5f\xff\xcf\x71\xbb\xf5" "\xff\xb9\xfb\xff\x1c\xb7\x0c\xd9\xff\x00\x00\x00\x30\x41\xee\xfe\xbf" "\xc4\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\xaf\x71\x8b\xfd\x0f\x00" "\x00\x00\x6d\xe4\xee\xff\x5b\xdc\x32\x64\xff\xeb\xff\xf5\xff\xfa\x7f" "\xfd\x7f\xd2\xff\xeb\xff\x57\xe8\xff\xf5\xff\x2b\xc6\xf7\xff\xbe\xff" "\x7f\x8a\xf7\xeb\xff\xf5\xff\x1c\xb7\x5b\xff\x9f\xbb\xff\xef\x01\x00" "\x00\xff\xff\x12\x81\x65\xed", 24215); syz_mount_image(/*fs=*/0x200000000380, /*dir=*/0x2000000006c0, /*flags=MS_LAZYTIME*/ 0x2000000, /*opts=*/0x20000000bcc0, /*chdir=*/0x41, /*size=*/0x5e97, /*img=*/0x200000005e00); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; use_temporary_dir(); loop(); return 0; }