// https://syzkaller.appspot.com/bug?id=0f2cf7b72ba525cc8d9f12a776ab45f440dadac4 // 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 31 00} (length 0x8) // } // flags: mount_flags = 0x1010006 (8 bytes) // opts: ptr[in, fs_options[jfs_options]] { // fs_options[jfs_options] { // elems: array[fs_opt_elem[jfs_options]] { // fs_opt_elem[jfs_options] { // elem: union jfs_options { // iocharset: fs_opt["iocharset", stringnoz[codepages_names]] { // name: buffer: {69 6f 63 68 61 72 73 65 74} (length 0x9) // eq: const = 0x3d (1 bytes) // val: buffer: {6b 6f 69 38 2d 75} (length 0x6) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // discard_size: fs_opt["discard", fmt[hex, int32]] { // name: buffer: {64 69 73 63 61 72 64} (length 0x7) // eq: const = 0x3d (1 bytes) // val: int32 = 0x4 (18 bytes) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // iocharset: fs_opt["iocharset", stringnoz[codepages_names]] { // name: buffer: {69 6f 63 68 61 72 73 65 74} (length 0x9) // eq: const = 0x3d (1 bytes) // val: buffer: {69 73 6f 38 38 35 39 2d 39} (length 0x9) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // errors_continue: buffer: {65 72 72 6f 72 73 3d 63 6f 6e 74 // 69 6e 75 65} (length 0xf) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // discard_size: fs_opt["discard", fmt[hex, int32]] { // name: buffer: {64 69 73 63 61 72 64} (length 0x7) // eq: const = 0x3d (1 bytes) // val: int32 = 0x8 (18 bytes) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // errors_remount: buffer: {65 72 72 6f 72 73 3d 72 65 6d 6f 75 // 6e 74 2d 72 6f} (length 0x11) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // errors_continue: buffer: {65 72 72 6f 72 73 3d 63 6f 6e 74 // 69 6e 75 65} (length 0xf) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // noquota: buffer: {6e 6f 71 75 6f 74 61} (length 0x7) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // quota: buffer: {71 75 6f 74 61} (length 0x5) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // errors_continue: buffer: {65 72 72 6f 72 73 3d 63 6f 6e 74 // 69 6e 75 65} (length 0xf) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // nointegrity: buffer: {6e 6f 69 6e 74 65 67 72 69 74 79} // (length 0xb) // } // comma: const = 0x2c (1 bytes) // } // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // chdir: int8 = 0x24 (1 bytes) // size: len = 0x628f (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x628f) // } // ] // returns fd_dir memcpy((void*)0x200000000240, "jfs\000", 4); memcpy((void*)0x200000000040, "./file1\000", 8); memcpy((void*)0x200000000300, "iocharset", 9); *(uint8_t*)0x200000000309 = 0x3d; memcpy((void*)0x20000000030a, "koi8-u", 6); *(uint8_t*)0x200000000310 = 0x2c; memcpy((void*)0x200000000311, "discard", 7); *(uint8_t*)0x200000000318 = 0x3d; sprintf((char*)0x200000000319, "0x%016llx", (long long)4); *(uint8_t*)0x20000000032b = 0x2c; memcpy((void*)0x20000000032c, "iocharset", 9); *(uint8_t*)0x200000000335 = 0x3d; memcpy((void*)0x200000000336, "iso8859-9", 9); *(uint8_t*)0x20000000033f = 0x2c; memcpy((void*)0x200000000340, "errors=continue", 15); *(uint8_t*)0x20000000034f = 0x2c; memcpy((void*)0x200000000350, "discard", 7); *(uint8_t*)0x200000000357 = 0x3d; sprintf((char*)0x200000000358, "0x%016llx", (long long)8); *(uint8_t*)0x20000000036a = 0x2c; memcpy((void*)0x20000000036b, "errors=remount-ro", 17); *(uint8_t*)0x20000000037c = 0x2c; memcpy((void*)0x20000000037d, "errors=continue", 15); *(uint8_t*)0x20000000038c = 0x2c; memcpy((void*)0x20000000038d, "noquota", 7); *(uint8_t*)0x200000000394 = 0x2c; memcpy((void*)0x200000000395, "quota", 5); *(uint8_t*)0x20000000039a = 0x2c; memcpy((void*)0x20000000039b, "errors=continue", 15); *(uint8_t*)0x2000000003aa = 0x2c; memcpy((void*)0x2000000003ab, "nointegrity", 11); *(uint8_t*)0x2000000003b6 = 0x2c; *(uint8_t*)0x2000000003b7 = 0; memcpy( (void*)0x2000000065c0, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xec\x9b\x5f\x4a\xdb" "\xa8\x87\xaa\x44\x08\xb9\x6d\x78\x29\xa5\x79\x2d\x21\x50\xa0\xed\x01" "\x0e\x5c\x38\xa0\x5c\x51\x22\xd7\xad\x22\x52\x40\x49\x40\x69\x15\x11" "\x57\xbe\x70\xe0\x8f\x00\x21\x71\x44\x88\x23\x27\xfe\x80\x1e\xb8\x72" "\xe3\x0f\x20\x92\x83\x04\xea\x01\x75\xd0\xd8\xcf\xe3\x8c\xa7\xbb\x5e" "\x3b\x89\x77\x76\x33\x9f\x8f\xe4\xcc\xfc\xe6\x99\xf1\x3e\x93\xef\x8e" "\x77\xd7\x33\xe3\x27\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x80\xf8\xe1\x0f\x7e\x7c\xae\x88\x88\x2b\xbf\x4a\x0b\x4e\x44" "\x7c\x2e\xfa\x11\xbd\x88\x95\xaa\x5e\x8b\x88\x95\xb5\x13\xf5\x6d\x5e" "\x88\x9d\xe6\x78\x3e\x22\x86\x4b\x11\xd5\xf6\x3b\xff\x3c\x1b\xf1\x7a" "\x44\x7c\xfc\x4c\xc4\xf6\xfd\x3b\xeb\xd5\xe2\xf3\x87\xec\xc7\xf7\xff" "\xfc\x8f\x3f\xfc\xe4\xa9\x1f\xfd\xfd\x4f\xc3\x33\xff\xfd\xcb\xad\xfe" "\x1b\x93\xd6\xbb\x7d\xfb\xb7\xff\xf9\xeb\xdd\x87\xdf\x5f\x00\x00\x00" "\xe8\xa2\xb2\x2c\xcb\x22\x7d\xcc\x3f\x19\x11\x83\xf4\xd9\x1e\x00\x78" "\xf2\xe5\xd7\xff\x32\xc9\xcb\xd5\x73\x57\x6f\xce\x59\x7f\xd4\x6a\xb5" "\x5a\xbd\x80\x75\x5d\x39\xde\xdd\x7a\x11\x11\x9b\xf5\x6d\xaa\xf7\x0c" "\x4e\xc7\x03\xc0\x82\xd9\x8c\x4f\xda\xee\x02\x2d\x92\x7f\xa7\x0d\x22" "\xe2\xa9\xb6\x3b\x01\xcc\xb5\xa2\xed\x0e\x70\x2c\xb6\xef\xdf\x59\x2f" "\x52\xbe\x45\xfd\xf5\x60\x6d\xb7\x3d\x5f\x0b\xb2\x2f\xff\xcd\x62\xef" "\xfe\x8e\x49\xd3\x69\x9a\xd7\x98\xcc\xea\xf9\xb5\x15\xfd\x78\x6e\x42" "\x7f\x56\x66\xd4\x87\x79\x92\xf3\xef\x35\xf3\xbf\xb2\xdb\x3e\x4a\xeb" "\x1d\x77\xfe\xb3\x32\x29\xff\xd1\xee\xad\x4f\x9d\x93\xf3\xef\x37\xf3" "\x6f\x78\x72\xf2\xef\x8d\xcd\xbf\xab\x72\xfe\x83\x23\xe5\xdf\x97\x3f" "\x00\x00\x00\x00\x00\xcc\xb1\xfc\xfb\xff\x13\x2d\x9f\xff\x5d\x7a\xf4" "\x5d\x39\x94\x83\xce\xff\xae\xcd\xa8\x0f\x00\x00\x00\x00\x00\x00\x00" "\xf0\xb8\x1d\x75\xfc\xbf\x41\x63\xfc\xbf\x3d\xc6\xff\x03\x00\x00\x80" "\xb9\x55\x7d\x56\xaf\xfc\xee\x99\x07\xcb\x26\xfd\x2d\xb6\x6a\xf9\xe5" "\x22\xe2\xe9\xc6\xfa\x40\xc7\xa4\x9b\x65\x56\xdb\xee\x07\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x74\xc9\x60\xf7\x1a\xde\xcb\x45\xc4\x30" "\x22\x9e\x5e\x5d\x2d\xcb\xb2\xfa\xaa\x6b\xd6\x47\xf5\xa8\xdb\x2f\xba" "\xae\xef\x3f\x74\x59\xdb\x3f\xe4\x01\x00\x60\xd7\xc7\xcf\x34\xee\xe5" "\x2f\x22\x96\x23\xe2\x72\xfa\x5b\x7f\xc3\xd5\xd5\xd5\xb2\x5c\x5e\x59" "\x2d\x57\xcb\x95\xa5\xfc\x7e\x76\xb4\xb4\x5c\xae\xd4\x3e\xd7\xe6\x69" "\xb5\x6c\x69\x74\x88\x37\xc4\x83\x51\x59\x7d\xb3\xe5\xda\x76\x75\xd3" "\x3e\x2f\x4f\x6b\x6f\x7e\xbf\xea\xb1\x46\x65\xff\x10\x1d\x9b\x8d\x16" "\x03\x07\x80\x88\xd8\x7d\x35\xda\x9e\xf4\x8a\xf4\x3f\xaf\x57\x8b\xa9" "\x2c\x9f\x8d\x96\xdf\xe4\xb0\x20\x0e\x38\xfe\x59\x50\x8e\x7f\x0e\xa3" "\xed\xe7\x29\x00\x00\x00\x70\xfc\xca\xb2\x2c\x8b\xf4\xe7\xbc\x4f\xa6" "\x73\xfe\xbd\xb6\x3b\x05\x00\xcc\x44\x7e\xfd\x6f\x9e\x17\x50\xab\xd5" "\x6a\xb5\x5a\xfd\xe4\xd5\x75\xe5\x78\x77\xeb\x45\x44\x6c\xd6\xb7\xa9" "\xde\x33\x18\x8e\x1f\x00\x16\xcc\x66\x7c\xd2\x76\x17\x68\x91\xfc\x3b" "\x6d\x10\x11\x2f\xb4\xdd\x09\x60\xae\x15\x6d\x77\x80\x63\xb1\x7d\xff" "\xce\x7a\x91\xf2\x2d\xea\xaf\x07\x69\x7c\xf7\x7c\x2d\xc8\xbe\xfc\x37" "\x8b\x9d\xed\xf2\xf6\xe3\xa6\xd3\x34\xaf\x31\x99\xd5\xf3\x6b\x2b\xfa" "\xf1\xdc\x84\xfe\x3c\x3f\xa3\x3e\xcc\x93\x9c\x7f\xaf\x99\xff\x95\xdd" "\xf6\x51\x5a\xef\xd1\xf3\x2f\xf7\xfd\x9a\xb0\xad\x6b\x8c\x26\xe5\x5f" "\xed\xe7\x89\x16\xfa\xd3\xb6\x9c\x7f\xbf\x99\x7f\xc3\x71\x1f\xff\xb3" "\xb2\x15\xbd\xb1\xf9\x77\x55\xce\x7f\x70\xa4\xfc\xfb\xf2\x07\x00\x00" "\x00\x00\x80\x39\x96\x7f\xff\x7f\x62\xae\xce\xff\x8e\x1e\x76\x77\xa6" "\x3a\xe8\xfc\xef\xda\xd8\x2d\x8e\xaf\x2f\x00\x00\x00\x00\x00\x00\x00" "\xf0\xb8\x6c\xdf\xbf\xb3\x9e\xef\x7b\xcd\xe7\xff\xbf\x30\x66\x3d\xf7" "\x7f\x3e\x99\x72\xfe\x85\xfc\x3b\x29\xe7\xdf\x6b\xe4\xff\xd5\xc6\x7a" "\xfd\xda\xfc\xbd\xb7\x1f\xe4\xff\xef\xfb\x77\xd6\xff\x78\xeb\x5f\x9f" "\xcf\xd3\xc3\xe6\xbf\x94\x67\x8a\xf4\xcc\x2a\xd2\x33\xa2\x48\x8f\x54" "\x0c\xd2\xf4\x51\xf6\xee\xb3\xb6\x86\xfd\x51\xf5\x48\xc3\xa2\xd7\x1f" "\xa4\x6b\x7e\xca\xe1\xbb\x71\x2d\xae\xc7\x46\x9c\xdd\xb7\x6e\x2f\xfd" "\x7f\x3c\x68\x3f\xb7\xaf\xbd\xea\xe9\x70\xa7\xbd\xec\xef\xb6\x9f\xdf" "\xd7\x3e\xd8\x6b\xcf\xdb\x5f\xd8\xd7\x3e\x4c\x57\x17\x95\x2b\xb9\xfd" "\x74\xac\xc7\xcf\xe3\x7a\xbc\xb3\xd3\x5e\xb5\x2d\x4d\xd9\xff\xe5\x29" "\xed\xe5\x94\xf6\x9c\x7f\xdf\xf1\xdf\x49\xdb\x69\x3a\x78\xf0\xf5\x6c" "\x55\xaf\xa6\xe5\x45\x63\x5a\xb9\xf7\x51\xef\x33\xc7\x7d\x7d\x3a\xee" "\x71\xde\xba\xf6\xc5\xdf\x9c\x3d\xd6\x3d\x39\x9c\xad\xe8\xef\xed\x5b" "\x5d\xb5\x7f\x2f\xb5\xd0\x9f\x9d\xff\x93\xa7\x46\xf1\xcb\x9b\x1b\x37" "\x4e\xdf\xbe\x7a\xeb\xd6\x8d\x73\x91\x26\xfb\x96\x9e\x8f\x34\x79\xcc" "\xf2\xf1\x3f\x4c\x5f\x7b\x3f\xff\x5f\xde\x6d\xcf\x3f\xf7\xeb\xc7\xeb" "\xbd\x8f\x46\x47\xce\x7f\x5e\x6c\xc5\x60\x62\xfe\x2f\xd7\xe6\xab\xfd" "\x7d\x65\xc6\x7d\x6b\x43\xce\x7f\x94\xbe\x72\xfe\xef\xa4\xf6\xf1\xc7" "\xff\x22\xe7\x3f\xf9\xf8\x7f\xb5\x85\xfe\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xc0\x41\xca\xb2\xdc\xb9\x45\xf4\xad\x88\xb8\x98" "\xee\xff\x69\xeb\xde\x4c\x00\x60\xb6\xf2\xeb\x7f\x99\xe4\xe5\xb3\xaa" "\xfb\x33\x7e\x3c\xb5\x7a\xc1\xeb\x62\xce\xfa\x33\xd3\xfa\xd3\x72\xbe" "\xfa\xa3\x56\x2f\x62\x5d\x57\x8e\xf7\x66\xbd\x88\x88\xbf\xd5\xb7\xa9" "\xde\x33\xfc\x7a\xdc\x37\x03\x00\xe6\xd9\xa7\x11\xf1\xcf\xb6\x3b\x41" "\x6b\xe4\xdf\x61\xf9\xef\xfd\x55\xd3\x53\x6d\x77\x06\x98\xa9\x9b\x1f" "\x7c\xf8\xd3\xab\xd7\xaf\x6f\xdc\xb8\xd9\x76\x4f\x00\x00\x00\x00\x00" "\x00\x00\x80\x87\x95\xc7\xff\x5c\xab\x8d\xff\x7c\xaa\x2c\xcb\xbb\x8d" "\xf5\xf6\x8d\xff\xfa\x76\xac\x3d\xea\xf8\x9f\x83\x3c\xb3\x37\xc0\xe8" "\x84\x81\xaa\xfb\x47\xdf\xa7\x83\x6c\xf5\x46\xfd\x5e\x6d\xb8\xf1\x17" "\x63\xd2\xf8\xdf\xc3\xbd\xb9\x83\xc6\xff\x1e\x4c\x79\xbc\xe1\x94\xf6" "\xd1\x94\xf6\xa5\x29\xed\xcb\x53\xda\xc7\xde\xe8\x51\x93\xf3\x7f\xb1" "\x36\xde\xf9\xa9\x88\x38\xd9\x18\x7e\xbd\x0b\xe3\xbf\x36\xc7\xbc\xef" "\x82\x9c\xff\x4b\xb5\xe7\x73\x95\xff\x57\x1a\xeb\xd5\xf3\x2f\x7f\xbf" "\xc8\xf9\xf7\xf6\xe5\x7f\xe6\xd6\xfb\xbf\x38\x73\xf3\x83\x0f\x5f\xbb" "\xf6\xfe\xd5\xf7\x36\xde\xdb\xf8\xd9\x85\x73\xe7\xce\x5e\xb8\x78\xf1" "\xd2\xa5\x4b\x67\xde\xbd\x76\x7d\xe3\xec\xee\xbf\x2d\xf6\xf8\x78\xe5" "\xfc\xf3\xd8\xd7\xae\x03\xed\x96\x9c\x7f\xce\x5c\xfe\xdd\x92\xf3\xff" "\x52\xaa\xe5\xdf\x2d\x39\xff\x2f\xa7\x5a\xfe\xdd\x92\xf3\xcf\xef\xf7" "\xe4\xdf\x2d\x39\xff\xfc\xd9\x47\xfe\xdd\x92\xf3\x7f\x25\xd5\xf2\xef" "\x96\x9c\xff\xd7\x52\x2d\xff\x6e\xc9\xf9\xbf\x9a\xea\xe9\xf9\x4f\xfb" "\x8d\x26\x8b\x24\xe7\xff\xf5\x54\x3b\xfe\xbb\x25\xe7\xff\x5a\xaa\xe5" "\xdf\x2d\x39\xff\xd3\xa9\x96\x7f\xb7\xe4\xfc\xcf\xa4\xfa\x90\xf9\xaf" "\x1c\x77\xbf\x98\x8d\x9c\x7f\x3e\xc3\xe5\xf8\xef\x96\x9c\x7f\xbe\xb2" "\x41\xfe\xdd\x92\xf3\x3f\x9f\x6a\xf9\x77\x4b\xce\xff\x42\xaa\xe5\xdf" "\x2d\x39\xff\xd7\x53\x2d\xff\x6e\xc9\xf9\x7f\x23\xd5\xf2\xef\x96\x9c" "\xff\xc5\x54\xcb\xbf\x5b\x72\xfe\xdf\x4c\xb5\xfc\xbb\x25\xe7\x7f\x29" "\xd5\xf2\xef\x96\x9c\xff\xb7\x52\x2d\xff\x6e\xc9\xf9\x7f\x3b\xd5\xf2" "\xef\x96\x9c\xff\x1b\xa9\x96\x7f\xb7\xe4\xfc\xbf\x93\x6a\xf9\x77\x4b" "\xce\xff\xbb\xa9\x96\x7f\xb7\xe4\xfc\xbf\x97\x6a\xf9\x77\x4b\xce\xff" "\xcd\x54\xcb\xbf\x5b\x1e\xfc\xfd\x7f\x33\x66\xcc\x98\xc9\x33\x6d\xff" "\x64\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9a\x66\x71\x39\x71" "\xdb\xfb\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfc\x9f\x1d" "\x38\x10\x00\x00\x00\x00\x00\xf2\x7f\x6d\x84\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x2a\xec\xc0\x81\x00\x00\x00\x00" "\x00\x90\xff\x6b\x23\x54\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x61\xef\xee\x62\xe4\x3a\xcb\x3b\x80\x9f\xfd\xf4\xda" "\x21\x89\x81\x90\x3a\xa9\x81\x8d\x63\x42\x48\x36\xd9\xb5\x9d\xf8\x83" "\x36\xc5\x84\xcf\x86\xaf\x12\x08\x85\x7e\x60\xbb\xde\xb5\x59\x70\x6c" "\xe3\xb5\x4b\xa0\x91\x6c\x1a\x28\x91\x30\x2a\xaa\x68\x1b\x2e\xda\x02" "\x42\x6d\x6e\x2a\x72\xc1\x05\xad\x00\xe5\x02\xb5\x42\x6a\x05\xed\x05" "\xed\x05\x02\xa1\x72\x11\x55\x01\x05\xa4\x4a\xb4\x02\xb6\x9a\x73\xde" "\xf7\xdd\x99\xd9\xd9\x99\x5d\xef\x78\xf7\xcc\x39\xbf\x9f\x64\x3f\xde" "\x33\x67\xe6\xbc\x73\xe6\x3d\x67\xe7\xd9\xf5\x7f\x0e\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x6e" "\x79\xcd\xdc\x27\x86\xb2\x2c\x6b\xfc\xc9\xff\xda\x9e\x65\xcf\x6b\xfc" "\x7b\xeb\xe4\xf6\x7c\xd9\x2b\x37\x7b\x84\x00\x00\x00\xc0\x7a\xfd\x22" "\xff\xfb\xb9\xeb\xd3\x82\xc3\xab\xb8\x53\xd3\x3a\xff\xfc\x92\x6f\x7d" "\x79\x71\x71\x71\x31\x7b\xf7\xc8\x9f\x8f\x7d\x66\x71\x31\xdd\x30\x99" "\x65\x63\x5b\xb2\x2c\xbf\x2d\x7a\xea\x07\xef\x19\x6a\x5e\x27\x78\x2c" "\x9b\x18\x1a\x6e\xfa\x7a\xb8\xc7\xe6\x47\x7a\xdc\x3e\xda\xe3\xf6\xb1" "\x1e\xb7\x8f\xf7\xb8\x7d\x4b\x8f\xdb\x27\x7a\xdc\xbe\x6c\x07\x2c\xb3" "\xb5\xf8\x79\x4c\xfe\x60\xbb\xf3\x7f\x6e\x2f\x76\x69\x76\x43\x36\x96" "\xdf\xb6\xbb\xc3\xbd\x1e\x1b\xda\x32\x3c\x1c\x7f\x96\x93\x1b\xca\xef" "\xb3\x38\x76\x22\x9b\xcf\x4e\x65\x73\xd9\x4c\xcb\xfa\xc5\xba\x43\xf9" "\xfa\x5f\xbd\xa5\xb1\xad\x37\x66\x71\x5b\xc3\x4d\xdb\xda\xd9\x98\x21" "\x3f\x79\xf4\x78\x1c\xc3\x50\xd8\xc7\xbb\x5b\xb6\xb5\xf4\x98\xd1\x8f" "\x5e\x9d\x4d\xfe\xf4\x27\x8f\x1e\xff\xdb\xf3\xcf\xde\xd4\xa9\xf6\xdc" "\x0d\x2d\x8f\x57\x8c\xf3\xf6\x5d\x8d\x71\x7e\x2c\x2c\x29\xc6\x3a\x94" "\x6d\x49\xfb\x24\x8e\x73\xb8\x69\x9c\x3b\x3b\xbc\x26\x23\x2d\xe3\x1c" "\xca\xef\xd7\xf8\x77\xfb\x38\x9f\x5b\xe5\x38\x47\x96\x86\xb9\xa1\xda" "\x5f\xf3\x89\x6c\x38\xff\xf7\xb7\xf3\xfd\x34\xda\xfc\x63\xbd\xb4\x9f" "\x76\x86\x65\x3f\xbb\x35\xcb\xb2\x4b\x4b\xc3\x6e\x5f\x67\xd9\xb6\xb2" "\xe1\x6c\x5b\xcb\x92\xe1\xa5\xd7\x67\xa2\x98\x91\x8d\xc7\x68\x4c\xa5" "\x17\x64\xa3\x6b\x9a\xa7\xb7\xac\x62\x9e\x36\xea\xec\xee\xd6\x79\xda" "\x7e\x4c\xc4\xd7\xff\x96\x70\xbf\xd1\x15\xc6\xd0\xfc\x32\xfd\xe8\xa3" "\xe3\x4d\xaf\xfb\xcf\x17\xaf\x64\x9e\x46\x8d\x67\xbd\xd2\xb1\xd2\x3e" "\x07\xfb\x7d\xac\x94\x65\x0e\xc6\x79\xf1\xed\xfc\x49\x3f\xde\x71\x0e" "\xee\x0e\xcf\xff\xd1\xdb\x56\x9e\x83\x1d\xe7\x4e\x87\x39\x98\x9e\x77" "\xd3\x1c\xdc\xd5\x6b\x0e\x0e\x8f\x8f\xe4\x63\x4e\x2f\xc2\x50\x7e\x9f" "\xa5\x39\xb8\xa7\x65\xfd\x91\x7c\x4b\x43\x79\x7d\xe6\xb6\xee\x73\x70" "\xfa\xfc\xc3\x67\xa7\x17\x3e\xfc\x91\xbb\xe6\x1f\x3e\x76\x72\xee\xe4" "\xdc\xe9\x7d\x7b\xf6\xcc\xec\xdb\xbf\xff\xe0\xc1\x83\xd3\x27\xe6\x4f" "\xcd\xcd\x14\x7f\x5f\xe1\xde\x2e\xbf\x6d\xd9\x70\x3a\x06\x76\x85\x7d" "\x17\x8f\x81\x97\xb7\xad\xdb\x3c\x55\x17\x3f\x3f\xbe\xec\xfc\x7b\xa5" "\xc7\xe1\x44\x97\xe3\x70\x7b\xdb\xba\xfd\x3e\x0e\x47\xdb\x9f\xdc\xd0" "\xc6\x1c\x90\xcb\xe7\x74\x71\x6c\xbc\xb3\xb1\xd3\x27\x2e\x0f\x67\x2b" "\x1c\x63\xf9\xeb\x73\xc7\xfa\x8f\xc3\xf4\xbc\x9b\x8e\xc3\xd1\xa6\xe3" "\xb0\xe3\xf7\x94\x0e\xc7\xe1\xe8\x2a\x8e\xc3\xc6\x3a\x67\xef\x58\xdd" "\x7b\x96\xd1\xa6\x3f\x9d\xc6\xb0\xf2\xf7\x82\xf5\xcd\xc1\xed\x4d\x73" "\xb0\xfd\xfd\x48\xfb\x1c\xec\xf7\xfb\x91\xb2\xcc\xc1\x89\x30\x2f\xbe" "\x7b\xc7\xca\xdf\x0b\x76\x86\xf1\x3e\x3e\xb5\xd6\xf7\x23\x23\xcb\xe6" "\x60\x7a\xba\xe1\xdc\xd3\x58\x92\xde\xef\x4f\x1c\xcc\x4b\xa7\x79\x79" "\x73\xe3\x86\x6b\xc6\xb3\x0b\x0b\x73\xe7\xee\x7e\xe4\xd8\xf9\xf3\xe7" "\xf6\x64\xa1\x6c\x88\x17\x36\xcd\x95\xf6\xf9\xba\xad\xe9\x39\x65\xcb" "\xe6\xeb\xf0\x9a\xe7\xeb\xe1\xf9\x97\x3c\x7e\x73\x87\xe5\xdb\xc3\xbe" "\x9a\xb8\xab\xf1\xd7\xc4\x8a\xaf\x55\x63\x9d\x7b\xee\xee\xfe\x5a\xe5" "\xdf\xdd\x3a\xef\xcf\x96\xa5\x7b\xb3\x50\xfa\x6c\xa3\xf7\x67\xa7\xef" "\xe6\x8d\xfd\x39\x9e\x65\x9f\xfd\xc6\x47\x1f\xfc\xda\xa3\x9f\x7d\xcd" "\x8a\xfb\xb3\xd1\x6f\x7e\x6c\x7a\xfd\xef\xc5\x53\x5f\xda\x74\xfe\x1d" "\x5b\xe1\xfc\x1b\xfb\xfe\x5f\x16\xdb\x4b\x0f\xf5\xd8\xc8\xd8\x68\x71" "\xfc\x8e\xa4\xbd\x33\xd6\x72\x3e\x6e\x7d\xa9\x46\xf3\x73\xd7\x50\xbe" "\xed\xe7\xa6\x57\x77\x3e\x1e\x0b\x7f\x36\xfa\x7c\x7c\x43\x97\xf3\xf1" "\x8e\xb6\x75\xfb\x7d\x3e\x1e\x6b\x7f\x72\xf1\x7c\x3c\xd4\xeb\xa7\x1d" "\xeb\xd3\xfe\x7a\x4e\x84\x79\x72\x6a\xa6\xfb\xf9\xb8\xb1\xce\x8e\xbd" "\x6b\x9d\x93\xa3\x5d\xcf\xc7\xb7\x86\x3a\x14\xf6\xff\x2b\x42\xa7\x90" "\xfa\xa2\xa6\xb9\xb3\xd2\xbc\x4d\xdb\x1a\x1d\x1d\x0b\xcf\x6b\x34\x6e" "\xa1\x75\x9e\xee\x6b\x59\x7f\x2c\xf4\x66\x8d\x6d\x3d\xb9\x37\xbc\x29" "\x4c\xa3\x5c\xdd\x3c\xbd\xfd\xd6\x62\xfd\x91\xa6\xfb\x45\x1b\x35\x4f" "\x27\xdb\xd6\xed\xf7\x3c\x4d\x3f\xfb\x5a\x69\x9e\x0e\xf5\xfa\xe9\xdb" "\x95\x69\x7f\x3d\x27\xc2\xbc\xb8\x61\x5f\xf7\x79\xda\x58\xe7\xe9\x7b" "\xd6\x7f\xee\xdc\x1a\xff\xd9\x74\xee\x1c\xef\x35\x07\xc7\x46\xc6\x1b" "\x63\x1e\x4b\x93\x30\x3f\xdf\x67\x8b\x5b\xe3\x1c\xbc\x3b\x3b\x9e\x9d" "\xc9\x4e\x65\xb3\xf9\xad\xe3\xf9\x7c\x1a\xca\xb7\x35\x75\xef\xea\xce" "\x95\xe3\xe1\xcf\x46\x9f\x2b\x77\x74\x99\x83\xb7\xb7\xad\xdb\xef\x39" "\x98\xbe\x8f\xad\x34\xf7\x86\x46\x97\x3f\xf9\x3e\x68\x7f\x3d\x27\xc2" "\xbc\x78\xe2\xde\xee\x73\xb0\xb1\xce\x6b\x0f\xf4\xf7\xbd\xeb\xed\x61" "\x49\x5a\xa7\xe9\xbd\x6b\xfb\xcf\xd7\x56\xfa\x99\xd7\xcd\x6d\xbb\xe9" "\x6a\xcd\x95\xd1\x30\xce\x6f\x1c\xe8\xfe\xb3\xd9\xc6\x3a\xa7\x0e\xae" "\xb5\xcf\xec\xbe\x9f\xee\x0c\x4b\xae\xe9\xb0\x9f\xda\x8f\xdf\x95\x8e" "\xa9\xd9\x6c\x63\xf6\xd3\x8e\x30\xce\x67\x0f\xae\xbc\x9f\x1a\xe3\x69" "\xac\xf3\x99\x43\xab\x9c\x4f\x87\xb3\x2c\xbb\xf8\xc1\xfb\xf3\x9f\xf7" "\x86\xdf\xaf\x5c\xbc\xf0\x9d\x2f\xb7\xfc\xde\xa5\xd3\xef\x74\x2e\x7e" "\xf0\xfe\x1f\x5f\x7b\xe2\x9f\xd6\x32\x7e\x00\x06\xdf\x2f\x8b\xb2\xad" "\xf8\x5e\xd7\xf4\x9b\xa9\xd5\xfc\xfe\x1f\x00\x00\x00\x18\x08\xb1\xef" "\x1f\x0e\x35\xd1\xff\x03\x00\x00\x40\x65\xc4\xbe\x3f\xfe\xaf\xf0\x44" "\xff\x0f\x00\x00\x00\x95\x11\xfb\xfe\xd1\x50\x93\x2a\xf4\xff\x7f\xdc" "\x7b\x95\x1d\xaf\x7d\x76\xfe\x97\x17\xb3\x94\xcc\x5f\x0c\xe2\xed\x69" "\x37\x3c\x50\xac\x17\x33\xae\x33\xe1\xeb\xc9\xc5\x25\x8d\xe5\xf7\x7f" "\x71\xee\x7f\xfe\xf1\xe2\xea\x86\x37\x9c\x65\xd9\xcf\x1f\xf8\xa3\x8e" "\xeb\xef\x78\x20\x8e\xab\x30\x19\xc6\xf9\xd4\xeb\x5a\x97\x2f\xf3\xe5" "\xbb\x56\xb5\xed\xa3\x0f\x5d\x4c\xdb\x6d\xce\xaf\x7f\x2e\x3c\x7e\x7c" "\x3e\xab\x9d\x06\x9d\x22\xb8\x33\x59\x96\x7d\xf5\xfa\x4f\xe5\xdb\x99" "\x7c\xcf\xe5\xbc\x3e\xfd\xc0\xd1\xbc\x3e\x78\xe9\xf1\xc7\x1a\xeb\x3c" "\x77\xa8\xf8\x3a\xde\xff\x99\x17\x16\xeb\xff\x55\x08\xff\x1e\x3e\x71" "\xac\xe5\xfe\xcf\x84\xfd\xf0\xc3\x50\x67\xde\xd4\x79\x7f\xc4\xfb\x7d" "\xe9\xf2\x2b\x76\x1e\x78\xd7\xd2\xf6\xe2\xfd\x86\x76\x5d\x97\x3f\xed" "\x27\xde\x5b\x3c\x6e\xfc\x9c\x9c\x4f\x3f\x56\xac\x1f\xf7\xf3\x4a\xe3" "\xff\xda\x27\x9f\xfc\x52\x63\xfd\x47\x5e\xd6\x79\xfc\x17\x87\x3b\x8f" "\xff\xc9\xf0\xb8\x5f\x0c\xf5\x7f\x5f\x5c\xac\xdf\xfc\x1a\x34\xbe\x8e" "\xf7\xfb\x78\x18\x7f\xdc\x5e\xbc\xdf\xdd\x5f\xf8\x7a\xc7\xf1\x3f\xf5" "\x89\x62\xfd\xb3\xaf\x2f\xd6\x3b\x1a\x6a\xdc\xfe\xed\xe1\xeb\xdd\xaf" "\x7f\x76\xbe\x79\x7f\x3d\x32\x74\xac\xe5\x79\x65\x6f\x28\xd6\x8b\xdb" "\x9f\xf9\xce\x9f\xe6\xb7\xc7\xc7\x8b\x8f\xdf\x3e\xfe\x89\x23\x97\x5b" "\xf6\x47\xfb\xfc\x78\xfa\xdf\x8b\xc7\x99\x6e\x5b\x3f\x2e\x8f\xdb\x89" "\xfe\xa1\x6d\xfb\x8d\xc7\x69\x9e\x9f\x71\xfb\x4f\xfe\xc9\xd1\x96\xfd" "\xdc\x6b\xfb\x4f\x3d\xf8\xcc\x8b\x1b\x8f\xdb\xbe\xfd\x3b\xdb\xd6\x3b" "\xfb\xc1\x3b\xf2\xed\x2f\x3d\x5e\xeb\x27\x36\xfd\xf5\xc7\x3f\xd5\x71" "\x7b\x71\x3c\x87\xff\xfe\x6c\xcb\xf3\x39\xfc\xf6\x70\x1c\x87\xed\x3f" "\xf1\xde\x30\x1f\xc3\xed\xff\xf7\x54\xf1\x78\xed\x9f\xae\x70\xf4\xed" "\xad\xe7\x9f\xb8\xfe\xe7\xb6\x5f\x6c\x79\x3e\xd1\x1b\x7f\x5a\x6c\xff" "\xa9\x57\x9d\xcc\xeb\x96\x89\xad\xdb\xae\x79\xde\xb5\xd7\x5d\x7a\x69" "\x63\xdf\x65\xd9\xb7\xb7\x14\x8f\xd7\x6b\xfb\x27\xff\xe6\x4c\xcb\xf8" "\x3f\x7f\x63\xb1\x3f\xe2\xed\x31\xa3\xdf\xbe\xfd\x95\xc4\xed\x9f\xfb" "\xd0\xd4\xe9\x33\x0b\x17\xe6\x67\xd3\x5e\x7d\xf4\xfa\xfc\xb3\x73\xde" "\x5c\x8c\x27\x8e\xf7\xfa\x70\x6e\x6d\xff\xfa\xc8\x99\xf3\xef\x9b\x3b" "\x37\x39\x33\x39\x93\x65\x93\xd5\xfd\x08\xbd\x2b\xf6\x85\x50\x7f\x5c" "\x94\x4b\xdd\xd7\x5e\x5c\x76\x06\xbd\xe3\xa1\xf0\x7a\xde\xfc\x97\x5f" "\xdd\x76\xdb\xbf\x7d\x32\x2e\xff\x8f\x77\x16\xcb\x2f\xbf\xa9\xf8\xbe" "\xf5\xf2\xb0\xde\xa7\xc3\xf2\xed\xe1\xf5\x5b\xdb\xf6\x97\x7b\xe2\x96" "\x1b\xf3\xe3\x7b\xe8\xe9\x30\xc2\xc5\xe5\x9f\x17\xbc\x1e\x3b\x77\xff" "\xf7\xc1\x5e\x9f\xef\x9b\x0b\xcf\xbf\xfd\x7d\x41\x9c\xef\x67\x5f\xf4" "\xbe\x7c\x3f\x34\x6e\xcb\xbf\x6f\xc4\xe3\x7a\x9d\xe3\xff\xde\x6c\xf1" "\x38\x5f\x09\xfb\x75\x31\x7c\x32\xf3\xae\x1b\x97\xb6\xd7\xbc\x7e\xfc" "\x6c\x84\xcb\xef\x28\x8e\xf7\x75\xef\xbf\x70\x9a\x8b\xaf\xeb\xdf\x85" "\xd7\xfb\x2d\x3f\x2c\x1e\x3f\x8e\x2b\x3e\xdf\xef\x85\xf7\x31\x5f\xdf" "\xd1\x7a\xbe\x8b\xf3\xe3\x2b\x17\x87\xdb\x1f\x3f\xff\x14\x8f\x4b\xe1" "\x7c\x92\x5d\x2a\x6e\x8f\x6b\xc5\xfd\x7d\xf9\xb9\x1b\x3b\x0e\x2f\x7e" "\x0e\x49\x76\xe9\xa6\xfc\xeb\x3f\x4b\x8f\x73\xd3\x9a\x9e\xe6\x4a\x16" "\x3e\xbc\x30\x7d\x6a\xfe\xf4\x85\x47\xa6\xcf\xcf\x2d\x9c\x9f\x5e\xf8" "\xf0\x47\x8e\x3c\x7c\xe6\xc2\xe9\xf3\x47\xf2\xcf\xf2\x3c\xf2\xfe\x5e" "\xf7\x5f\x3a\x3f\x6d\xcb\xcf\x4f\xb3\x73\xfb\xef\xc9\xf2\xb3\xd5\x99" "\xa2\x5c\x65\x9b\x3d\xfe\xb3\x0f\x1d\x9f\x3d\x30\x73\xdb\xec\xdc\x89" "\x63\x17\x4e\x9c\x7f\xe8\xec\xdc\xb9\x93\xc7\x17\x16\x8e\xcf\xcd\x2e" "\xdc\x76\xec\xc4\x89\xb9\x0f\xf5\xba\xff\xfc\xec\x7d\x7b\xf6\x1e\xda" "\x77\x60\xef\xd4\xc9\xf9\xd9\xfb\x0e\x1e\x3a\xb4\xef\xd0\xd4\xfc\xe9" "\x33\x8d\x61\x14\x83\xea\x61\xff\xcc\x07\xa6\x4e\x9f\x3b\x92\xdf\x65" "\xe1\xbe\x7b\x0e\xed\xb9\xf7\xde\x7b\x66\xa6\x1e\x3e\x33\x3b\x77\xdf" "\x81\x99\x99\xa9\x0b\xbd\xee\x9f\x7f\x6f\x9a\x6a\xdc\xfb\x0f\xa7\xce" "\xcd\x9d\x3a\x76\x7e\xfe\xe1\xb9\xa9\x85\xf9\x8f\xcc\xdd\xb7\xe7\xd0" "\xfe\xfd\x7b\x7b\x7e\x1a\xe0\xc3\x67\x4f\x2c\x4c\x4e\x9f\xbb\x70\x7a" "\xfa\xc2\xc2\xdc\xb9\xe9\xe2\xb9\x4c\x9e\xcf\x17\x37\xbe\xf7\xf5\xba" "\x3f\xd5\xb4\xf0\xfd\xe2\xfd\x6c\xbb\xa1\xe2\x83\xf8\xb2\xb7\xdd\xb9" "\x3f\x7d\x3e\x6b\xc3\x17\x3f\xba\xe2\x43\x15\xab\xb4\x7d\x80\xe8\xb3" "\xe1\xb3\x68\xbe\xf9\xfc\xb3\x07\x57\xf3\x75\xec\xfb\xc7\x42\x4d\xaa" "\xd0\xff\x03\x00\x00\x00\xb9\xd8\xf7\x8f\x87\x9a\xe8\xff\x01\x00\x00" "\xa0\x32\x62\xdf\xbf\x25\xd4\x44\xff\x0f\x00\x00\x00\x95\x11\xfb\xfe" "\x89\x50\xd3\x7f\x09\xa8\x49\xff\x5f\xb9\xfc\xff\x8e\x8b\xab\xda\xbe" "\xfc\xbf\xfc\x7f\xf3\xfe\x92\xff\xaf\x59\xfe\xff\x1d\x65\xcb\xff\x17" "\xe7\x0b\xf9\xff\xfe\x58\x6f\xfe\xbe\x0e\xf9\xff\x55\xad\x28\xff\x2f" "\xff\x2f\xff\x2f\xff\x2f\xff\x4f\x1f\x94\x2d\xff\x1f\xfb\xfe\xad\x59" "\xe6\xf7\xff\x00\x00\x00\x50\x51\xb1\xef\xdf\x16\x6a\xa2\xff\x07\x00" "\x00\x80\xca\x88\x7d\xff\x35\xa1\x26\xfa\x7f\x00\x00\x00\xa8\x8c\xd8" "\xf7\x3f\x2f\xd4\xa4\x26\xfd\xbf\xfc\xbf\xfc\xbf\xfc\xbf\xfc\xbf\xfc" "\x7f\xe7\xed\xcb\xff\x0f\x26\xf9\xff\xee\x4a\x96\xff\x9f\x68\x5f\x20" "\xff\xbf\xf9\xf9\xff\xac\x5e\xf9\xff\x4b\xfd\x1c\xff\x26\xe4\xff\xb7" "\x36\x7f\x21\xff\x4f\x19\x95\x2d\xff\x1f\xfb\xfe\x6b\x43\x4d\x6a\xd2" "\xff\x03\x00\x00\x40\x1d\xc4\xbe\xff\xba\x50\x13\xfd\x3f\x00\x00\x00" "\x54\x46\xec\xfb\xaf\x0f\x35\xd1\xff\x03\x00\x00\x40\x65\xc4\xbe\x7f" "\x7b\xa8\x49\x4d\xfa\x7f\xf9\xff\x75\xe5\xff\x53\xe6\x6a\x70\xf3\xff" "\xc5\x96\xe5\xff\xe5\xff\xe5\xff\xe5\xff\xab\x42\xfe\xbf\xbb\x92\xe5" "\xff\x97\x91\xff\xdf\xfc\xfc\xbf\xeb\xff\x0f\x54\xfe\xbf\x85\xfc\x3f" "\x65\x54\xb6\xfc\x7f\xec\xfb\x9f\x1f\x6a\x52\x93\xfe\x1f\x00\x00\x00" "\xea\x20\xf6\xfd\x2f\x08\x35\xd1\xff\x03\x00\x00\x40\xf9\x8c\x5e\xd9" "\xdd\x62\xdf\xff\xc2\x50\x93\x65\xfd\xff\x15\x6e\x00\x00\x00\x00\xd8" "\x74\xb1\xef\xbf\x21\x6b\x0b\x82\xd7\xe4\xf7\xff\xf2\xff\xae\xff\x5f" "\xda\xeb\xff\x8f\xc9\xff\xcb\xff\x17\xca\x9f\xff\x1f\xc9\xe4\xff\xcb" "\x43\xfe\xbf\x3b\xf9\xff\x1e\xfa\x91\xff\xbf\x24\xff\x2f\xff\x2f\xff" "\x2f\xff\x4f\x54\xb6\xfc\x7f\xde\xf7\x67\x13\xd9\x8b\x42\x4d\x6a\xd2" "\xff\x03\x00\x00\x40\x1d\xc4\xbe\xff\xc6\x50\x13\xfd\x3f\x00\x00\x00" "\x54\x46\xec\xfb\x7f\x25\xd4\x44\xff\x0f\x00\x00\x00\x95\x11\xfb\xfe" "\x1d\xa1\x26\x35\xe9\xff\xe5\xff\x2b\x93\xff\xff\x59\xf3\x4b\x57\x89" "\xfc\xbf\xeb\xff\xcb\xff\x07\xe5\xcf\xff\xbb\xfe\x7f\x99\xc8\xff\x77" "\x27\xff\xdf\x83\xeb\xff\xcb\xff\xcb\xff\xcb\xff\xd3\x57\x0b\x1d\x3b" "\xa5\xcd\xcb\xff\xc7\xbe\xff\xa6\x50\x93\x9a\xf4\xff\x00\x00\x00\x50" "\x07\xb1\xef\xbf\x39\xd4\x44\xff\x0f\x00\x00\x00\x95\x11\xfb\xfe\x5f" "\x0d\x35\xd1\xff\x03\x00\x00\x40\x65\xc4\xbe\x7f\x67\xa8\x49\x4d\xfa" "\x7f\xf9\xff\x92\xe7\xff\x63\x72\xb4\x8e\xd7\xff\x97\xff\x97\xff\x0f" "\xca\x9c\xff\x9f\x90\xff\x2f\x1d\xf9\xff\xee\xe4\xff\x7b\x90\xff\x97" "\xff\x97\xff\x97\xff\xa7\xaf\x16\xbe\x5f\xbc\x9f\x6d\xb7\x59\xf9\xff" "\xd8\xf7\xbf\x38\xd4\xa4\x26\xfd\x3f\x00\x00\x00\xd4\x41\xec\xfb\x5f" "\x12\x6a\xa2\xff\x07\x00\x00\x80\xca\x88\x7d\xff\x4b\x43\x4d\xf4\xff" "\x00\x00\x00\x50\x19\xb1\xef\x9f\x0c\x35\xa9\x49\xff\xbf\x96\xfc\xff" "\xd0\x25\xf9\xff\x95\x5c\xe5\xeb\xff\x8f\xaf\xe2\xfa\xff\x2d\xe4\xff" "\x37\x25\xff\x3f\x2a\xff\x5f\xa8\x53\xfe\x3f\x93\xff\x2f\x1d\xf9\xff" "\xee\xe4\xff\x7b\x90\xff\x97\xff\x97\xff\x97\xff\xa7\xaf\xca\x96\xff" "\x8f\x7d\xff\x2d\xa1\x26\x35\xe9\xff\x01\x00\x00\xa0\x0e\x62\xdf\xbf" "\x2b\xd4\x44\xff\x0f\x00\x00\x00\x95\x11\xfb\xfe\x5b\x43\x4d\xf4\xff" "\x00\x00\x00\x50\x19\xb1\xef\xdf\x1d\x6a\x52\x93\xfe\xdf\xf5\xff\x07" "\x22\xff\x9f\xc9\xff\x0f\x44\xfe\xdf\xf5\xff\x03\xf9\xff\xce\xe4\xff" "\x37\x86\xfc\x7f\x77\xf2\xff\x3d\xc8\xff\xcb\xff\xcb\xff\xcb\xff\xd3" "\x57\x65\xcb\xff\xc7\xbe\xff\x65\xa1\x26\x35\xe9\xff\x01\x00\x00\xa0" "\x0e\x62\xdf\x7f\x5b\xa8\x89\xfe\x1f\x00\x00\x00\x2a\x23\xf6\xfd\x2f" "\x0f\x35\xd1\xff\x03\x00\x00\x40\x65\xc4\xbe\xff\xf6\x50\x93\x9a\xf4" "\xff\xf2\xff\xf2\xff\xf2\xff\xf2\xff\xf2\xff\x9d\xb7\xbf\xe1\xf9\xff" "\x4b\xf2\xff\xfd\x20\xff\xdf\x9d\xfc\x7f\x0f\xf2\xff\xf2\xff\xf2\xff" "\xf2\xff\xf4\x55\xd9\xf2\xff\xb1\xef\x7f\x45\xa8\x49\x4d\xfa\x7f\x00" "\x00\x00\xa8\x83\xd8\xf7\xdf\x11\x6a\xa2\xff\x07\x00\x00\x80\xca\x88" "\x7d\xff\x9d\xa1\x26\xfa\x7f\x00\x00\x00\xa8\x8c\xd8\xf7\x4f\x85\x9a" "\xd4\xa4\xff\x97\xff\x97\xff\xaf\x66\xfe\xff\x3f\xe5\xff\xbb\x6c\x5f" "\xfe\xbf\xa4\xf9\x7f\xd7\xff\xef\x0b\xf9\xff\xee\xe4\xff\x7b\x90\xff" "\x97\xff\xef\x47\xfe\x7f\x2c\x2c\x90\xff\x97\xff\x67\xd3\xf3\xff\xf1" "\xfd\x5a\xfc\x3a\xf6\xfd\x77\x85\x9a\xd4\xa4\xff\x07\x00\x00\x80\x3a" "\x88\x7d\xff\xdd\xa1\x26\xfa\x7f\x00\x00\x00\xa8\x8c\xd8\xf7\x4f\x87" "\x9a\xe8\xff\x01\x00\x00\xa0\x32\x62\xdf\x3f\x13\x6a\x52\x93\xfe\x5f" "\xfe\x5f\xfe\xbf\x9a\xf9\x7f\xd7\xff\xef\xb6\xfd\x75\xe5\xff\x5f\xba" "\xf4\xb8\xf2\xff\x05\xf9\xff\x72\x91\xff\xef\x4e\xfe\xbf\x87\x7e\xe6" "\xff\xb7\xc8\xff\xd7\x36\xff\xbf\xae\xeb\xff\x8f\xc9\xff\x53\x29\x9b" "\x9d\xff\x6f\xff\x3a\xf6\xfd\x7b\x42\x4d\x6a\xd2\xff\x03\x00\x00\x40" "\x1d\xc4\xbe\x7f\x6f\xa8\x89\xfe\x1f\x00\x00\x00\x2a\x23\xf6\xfd\xfb" "\x42\x4d\xf4\xff\x00\x00\x00\x50\x19\xb1\xef\xbf\x27\xd4\xa4\x26\xfd" "\xbf\xfc\xbf\xfc\xbf\xfc\xbf\xfc\xbf\xeb\xff\x77\xde\xbe\xfc\xff\x60" "\x92\xff\xef\xae\xff\xf9\xff\xf8\x14\xe5\xff\x5d\xff\x5f\xfe\xbf\x3f" "\xf9\x7f\xd7\xff\xa7\x5a\xca\x96\xff\x8f\x7d\xff\xbd\xa1\x26\x35\xe9" "\xff\x01\x00\x00\xa0\x0e\x62\xdf\xbf\x3f\xd4\x44\xff\x0f\x00\x00\x00" "\x95\x11\xfb\xfe\x03\xa1\x26\xfa\x7f\x00\x00\x00\xa8\x8c\xd8\xf7\x1f" "\x0c\x35\xa9\x49\xff\x2f\xff\x2f\xff\x2f\xff\x2f\xff\x2f\xff\xdf\x79" "\xfb\xf2\xff\x83\x49\xfe\xbf\x3b\xd7\xff\xef\x41\xfe\x5f\xfe\x7f\x80" "\xf3\xff\x8d\xb9\x25\xff\x4f\xd9\x94\x2d\xff\x1f\xfb\xfe\x43\xa1\x26" "\x35\xe9\xff\x01\x00\x00\xa0\x0e\x62\xdf\xff\xca\x50\x13\xfd\x3f\x00" "\x00\x00\x54\x46\xec\xfb\x7f\x2d\xd4\x44\xff\x0f\x00\x00\x00\x95\x11" "\xfb\xfe\x5f\x0f\x35\xa9\x49\xff\x2f\xff\x2f\xff\x2f\xff\x2f\xff\xbf" "\xc9\xf9\xff\xb1\x5e\xf9\xff\x71\xf9\x7f\xf9\xff\x35\x90\xff\xef\x4e" "\xfe\xbf\x07\xf9\x7f\xf9\xff\x01\xce\xff\xaf\x70\xfd\xff\x6b\xc3\xcd" "\xf2\xff\x6c\x8a\xb2\xe5\xff\x63\xdf\x7f\x5f\xa8\x49\x4d\xfa\x7f\x00" "\x00\x00\xa8\x83\xd8\xf7\xff\x46\xa8\x89\xfe\x1f\x00\x00\x00\x2a\x23" "\xf6\xfd\xaf\x0a\x35\xd1\xff\x03\x00\x00\x40\x65\xc4\xbe\xff\x70\xa8" "\x49\x4d\xfa\x7f\xf9\xff\x0d\xca\xff\xc7\x85\xf2\xff\xf2\xff\xf2\xff" "\xae\xff\x2f\xff\x7f\x55\xc9\xff\x77\x27\xff\xdf\x83\xfc\xbf\xfc\x7f" "\xf5\xf2\xff\xfd\xbe\xfe\x7f\xfb\xb7\xe9\x44\xfe\x9f\x4e\xca\x96\xff" "\x8f\x7d\xff\xab\x43\x4d\x6a\xd2\xff\x03\x00\x00\x40\x1d\xc4\xbe\xff" "\xfe\x50\x13\xfd\x3f\x00\x00\x00\x54\x46\xec\xfb\x5f\x13\x6a\xa2\xff" "\x07\x00\x00\x80\xca\x88\x7d\xff\x6b\x43\x4d\x6a\xd2\xff\xcb\xff\xbb" "\xfe\xff\xe6\xe7\xff\xc7\x5a\xc6\x2e\xff\xbf\x74\x3f\xf9\xff\x82\xfc" "\xbf\xfc\xff\x5a\xc8\xff\x77\x27\xff\xdf\x83\xfc\xbf\xfc\xbf\xfc\xbf" "\xeb\xff\xd3\x57\x65\xcb\xff\xc7\xbe\xff\x75\xa1\x26\x35\xe9\xff\x01" "\x00\x00\xa0\x0e\x62\xdf\xff\xfa\x50\x13\xfd\x3f\x00\x00\x00\x54\x46" "\xec\xfb\xdf\x10\x6a\xa2\xff\x07\x00\x00\x80\xca\x88\x7d\xff\x1b\x43" "\x4d\x6a\xd2\xff\xcb\xff\xcb\xff\x6f\x7e\xfe\xdf\xf5\xff\xe5\xff\x0b" "\xf2\xff\xf2\xff\xfd\x20\xff\xdf\x9d\xfc\x7f\x0f\xf2\xff\xf2\xff\xf2" "\xff\xf2\xff\xf4\x55\xd9\xf2\xff\xb1\xef\xff\xcd\x50\x93\x9a\xf4\xff" "\x00\x00\x00\x50\x07\xb1\xef\x7f\x20\xd4\x44\xff\x0f\x00\x00\x00\x95" "\x11\xfb\xfe\x37\x85\x9a\xe8\xff\x01\x00\x00\xa0\x32\x62\xdf\xff\xe6" "\x50\x93\x9a\xf4\xff\xf2\xff\xf2\xff\xf2\xff\xf2\xff\xf2\xff\x9d\xb7" "\x2f\xff\x3f\x98\xe4\xff\xbb\x1b\xb0\xfc\xff\x2f\xae\x0b\xcb\xe5\xff" "\x0b\xf2\xff\xe5\x1e\xff\x5a\xf3\xff\xa3\x6d\x5f\x5f\x95\xfc\xff\x0f" "\x56\xca\xff\x2f\x6e\x69\xbf\xbf\xfc\x3f\x57\x43\xd9\xf2\xff\xb1\xef" "\x7f\x4b\xa8\x49\x4d\xfa\x7f\x00\x00\x00\xa8\x83\xd8\xf7\xbf\x35\xd4" "\x44\xff\x0f\x00\x00\x00\x95\x11\xfb\xfe\xb7\x85\x9a\xe8\xff\x01\x00" "\x00\xa0\x32\x62\xdf\xff\x5b\xa1\x26\x35\xe9\xff\xe5\xff\x1b\xe3\x58" "\x4a\x2f\xcb\xff\xcb\xff\xe7\x0b\xe4\xff\xe5\xff\xe5\xff\x07\x96\xfc" "\x7f\x77\x03\x96\xff\x77\xfd\xff\x36\xf2\xff\xe5\x1e\xbf\xeb\xff\xcb" "\xff\xb3\x5c\xd9\xf2\xff\xb1\xef\x7f\x7b\xa8\x49\x4d\xfa\x7f\x00\x00" "\x00\xa8\x83\xd8\xf7\x3f\x18\x6a\xa2\xff\x07\x00\x00\x80\xca\x88\x7d" "\xff\x3b\x42\x4d\xf4\xff\x00\x00\x00\x50\x19\xb1\xef\x7f\x67\xa8\x49" "\x4d\xfa\x7f\xf9\x7f\xd7\xff\x97\xff\x97\xff\x97\xff\xef\xbc\x7d\xf9" "\xff\xc1\x24\xff\xdf\x9d\xfc\x7f\x0f\xf2\xff\xf2\xff\x65\xcb\xff\xff" "\x97\xfc\x3f\x83\xad\x6c\xf9\xff\xd8\xf7\x3f\x14\x6a\x52\x93\xfe\x1f" "\x00\x00\x00\xea\x20\xf6\xfd\xef\x0a\x35\xd1\xff\x03\x00\x00\x40\x65" "\xc4\xbe\xff\xb7\x43\x4d\xf4\xff\x00\x00\x00\x50\x19\xb1\xef\x7f\x77" "\xa8\x49\x4d\xfa\x7f\xf9\xff\x41\xc9\xff\x4f\xca\xff\xaf\x31\xff\x3f" "\x1e\x96\xc9\xff\xcb\xff\xcb\xff\xd7\x8b\xfc\x7f\x77\xf2\xff\x3d\xc8" "\xff\xcb\xff\x97\x2d\xff\xef\xfa\xff\x0c\xb8\xb2\xe5\xff\x63\xdf\xff" "\x9e\x50\x93\xd5\xf7\xff\x13\xab\x5e\x13\x00\x00\x00\xb8\x9a\xda\x7f" "\x9d\x94\xc4\xbe\xff\x77\x42\x4d\x6a\xf2\xfb\x7f\x00\x00\x00\xa8\x83" "\xd8\xf7\xff\x6e\xa8\x89\xfe\x1f\x00\x00\x00\x2a\x23\xf6\xfd\xbf\x17" "\x6a\x52\x93\xfe\x5f\xfe\x7f\x50\xf2\xff\xae\xff\x9f\xb9\xfe\xbf\xfc" "\x7f\xdb\xf3\x91\xff\x97\xff\xef\x64\xe3\xf2\xff\xf1\xcc\xb3\xa6\xfc" "\xff\x96\x5e\xdb\x97\xff\x97\xff\x97\xff\x1f\xdc\xf1\xcb\xff\xcb\xff" "\xb3\x5c\xd9\xf2\xff\xb1\xef\xff\xfd\x50\x93\x9a\xf4\xff\x00\x00\x00" "\x50\x07\xb1\xef\x7f\x6f\xa8\x89\xfe\x1f\x00\x00\x00\x06\x42\xa7\xff" "\x93\xdd\x2e\xf6\xfd\x47\x42\x4d\xf4\xff\x00\x00\x00\x50\x19\xb1\xef" "\x3f\x1a\x6a\x52\x93\xfe\x5f\xfe\x5f\xfe\x5f\xfe\xbf\xa4\xf9\xff\xbf" "\xd8\xf5\x2f\xdf\xfd\xd6\x5b\x8f\xee\x91\xff\x97\xff\x97\xff\x5f\x93" "\x0d\xbd\xfe\x7f\xe3\xe0\x77\xfd\x7f\xf9\x7f\xf9\xff\x44\xfe\x5f\xfe" "\x5f\xfe\x9f\x76\x65\xcb\xff\xc7\xbe\xff\x58\xa8\xc9\x52\xe3\xf7\x66" "\x17\xf8\x07\x00\x00\x80\xc1\x16\xfb\xfe\x3f\x08\x35\xa9\xc9\xef\xff" "\x01\x00\x00\xa0\x0e\x62\xdf\x7f\x3c\xd4\x44\xff\x0f\x00\x00\x00\x95" "\x11\xfb\xfe\xd9\x50\x93\x9a\xf4\xff\xf2\xff\x9b\x98\xff\x1f\xcd\xb2" "\x4c\xfe\x5f\xfe\xbf\x82\xd7\xff\x8f\xfb\x63\x90\xf2\xff\x53\x5b\x06" "\x28\xff\x1f\x4f\xba\xf2\xff\x1d\x6d\x68\xfe\xff\x5d\x4b\x39\x71\xf9" "\xff\xb5\xe6\xff\xc7\x3b\x2e\x6d\xcf\xff\x0f\xc9\xff\xb7\x90\xff\x5f" "\xf3\xf8\xbf\x99\x65\xd9\x86\x8d\xff\xe2\xbf\xca\xff\xcb\xff\xd3\xae" "\x6c\xf9\xff\xd8\xf7\xcf\x85\x9a\xd4\xa4\xff\x07\x00\x00\x80\x3a\x08" "\x7d\xff\xf0\x89\xa2\x2e\xdd\xa0\xff\x07\x00\x00\x80\xca\x88\x7d\xff" "\xc9\x50\x13\xfd\x3f\x00\x00\x00\x54\x46\xec\xfb\xdf\x17\x6a\x52\x93" "\xfe\x5f\xfe\xdf\xf5\xff\xe5\xff\xe5\xff\x5d\xff\xbf\xf3\xf6\x4b\x9b" "\xff\x77\xfd\xff\xae\xe4\xff\xbb\x2b\x4f\xfe\xbf\x33\xd7\xff\x97\xff" "\x1f\xe4\xf1\xbb\xfe\xbf\xfc\x3f\xcb\x95\x2d\xff\x1f\xfb\xfe\xf9\x50" "\x93\x9a\xf4\xff\x00\x00\x00\x50\x07\xb1\xef\x7f\x7f\xa8\x89\xfe\x1f" "\x00\x00\x00\x2a\x23\xf6\xfd\x1f\x08\x35\xd1\xff\x03\x00\x00\xff\xcf" "\xde\x7d\x3c\x59\x5e\x97\x7b\x1c\x3f\x0d\x4d\xcd\x4c\x51\xb7\xea\xee" "\xee\xe2\x2e\xee\xdd\xbb\x72\xcd\x42\x56\x2e\xf4\x0f\x70\xc1\x86\x85" "\x96\xa1\x14\x54\xcc\x89\xc1\x1c\x31\xe7\x80\x96\x8a\x18\x30\x80\x22" "\x26\xcc\x09\x4c\x28\x62\x44\xc5\x2c\x62\xc2\x84\xa8\x8c\xc5\xf4\xf3" "\x3c\xd3\x3d\xfd\xeb\xdf\xe9\x9e\x39\xdd\xe7\x77\xbe\xdf\xd7\x6b\xe1" "\x23\x2d\xe3\x69\x2d\x04\x3e\x8c\x6f\xbe\x40\x33\x72\xf7\x3f\x3c\x6e" "\xe9\x64\xff\xeb\xff\xf5\xff\x4d\xf6\xff\x87\xf4\xff\x63\x9f\xaf\xff" "\xd7\xff\xb7\x4c\xff\x3f\x4e\xff\x3f\x87\xfe\x5f\xff\xaf\xff\xd7\xff" "\xb3\x50\x53\xeb\xff\x73\xf7\x3f\x22\x6e\xe9\x64\xff\x03\x00\x00\x40" "\x0f\x72\xf7\x5f\x10\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x17\xc6" "\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x23\xe3\x96\x4e\xf6\xbf\xfe" "\x5f\xff\xdf\x64\xff\x7f\xdf\xdb\x1f\x7a\xf7\x7d\xf4\xff\x3b\x7d\xbe" "\xfe\x5f\xff\xdf\x32\xfd\xff\x38\xfd\xff\x1c\xfa\x7f\xfd\xbf\xfe\x5f" "\xff\xcf\x42\x4d\xad\xff\xcf\xdd\xff\xa8\xb8\xa5\x93\xfd\x0f\x00\x00" "\x00\x3d\xc8\xdd\xff\xe8\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xbf" "\x28\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x1f\x13\xb7\x74\xb2\xff" "\x4f\xea\xff\xd7\x66\x7d\xf6\xff\x99\xf1\xea\xff\x5b\xea\xff\xbd\xff" "\xbf\xe3\xe7\xeb\xff\xf5\xff\x2d\x3b\xd8\xfe\xff\x92\x7b\x7e\xcf\xa7" "\xff\xd7\xff\xeb\xff\x83\xfe\x5f\xff\xaf\xff\xe7\x64\x53\xeb\xff\x73" "\xf7\x3f\x36\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x3f\x2e\x6e" "\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x1f\x1f\xb7\xd8\xff\x00\x00\x00" "\xd0\x8c\xdc\xfd\x4f\x88\x5b\x3a\xd9\xff\xde\xff\xf7\xfe\xbf\xfe\x5f" "\xff\xaf\xff\x1f\xfe\x7c\xfd\xff\x6a\xf2\xfe\xff\xb8\x9e\xfa\xff\x8b" "\x6e\x3a\xfb\x82\x3b\xae\xf9\xdf\x6b\xf7\xf2\xf9\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\xcf\x62\x4d\xad\xff\xcf\xdd\xff\xc4\xb8\xa5\x93\xfd\x0f\x00" "\x00\x00\x3d\xc8\xdd\xff\xa4\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee" "\x7f\x72\xdc\x62\xff\x03\x00\x00\xc0\x0a\x3a\x32\xf8\xd5\xdc\xfd\x4f" "\x89\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf\xfe\x3f\xfa\xff\xc3\xfa\x7f\xfd" "\xbf\xfe\xbf\x05\xfa\xff\x71\x3d\xf5\xff\xa7\xf2\xf9\xfa\x7f\xfd\xbf" "\xfe\x5f\xff\xcf\x62\x4d\xad\xff\xcf\xdd\xff\xd4\xb8\xa5\x93\xfd\x0f" "\x00\x00\x00\x3d\xc8\xdd\xff\xb4\xb8\xc5\xfe\x07\x00\x00\x80\xe9\x1a" "\xfa\x3f\x62\x8f\xc8\xdd\x7f\x71\xdc\x62\xff\x03\x00\x00\x40\x33\x72" "\xf7\x1f\x8d\x5b\x3a\xd9\xff\xfa\xff\xfd\xef\xff\xff\xad\xff\x5f\x8d" "\xfe\xdf\xfb\xff\xfa\x7f\xfd\x7f\x13\xf4\xff\xe3\xf4\xff\x73\xe8\xff" "\xf5\xff\xfa\x7f\xfd\x3f\x0b\x35\xb5\xfe\x3f\x77\xff\x25\x71\x4b\x27" "\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xe9\x71\x8b\xfd\x0f\x00\x00\x00" "\xcd\xc8\xdd\xff\x8c\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x66" "\xdc\xd2\xc9\xfe\xd7\xff\x7b\xff\x5f\xff\xaf\xff\x3f\xf8\xfe\x7f\xe3" "\x77\xb6\xfa\xff\x13\xff\xad\xea\xff\x17\x47\xff\x3f\x4e\xff\x3f\x87" "\xfe\xff\x74\xfb\xf9\xb3\xf4\xff\xfa\x7f\xfd\x3f\x9b\xed\xb1\xff\xbf" "\x6b\xe4\x77\xdb\x0b\xe9\xff\x73\xf7\x3f\x2b\x6e\xe9\x64\xff\x03\x00" "\x00\x40\x0f\x72\xf7\x3f\x3b\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb" "\x9f\x13\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xcf\x8d\x5b\x3a\xd9" "\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x7f\xca\xfd\xff\xf6\xdf\xf4\x8e\xf3" "\xfe\xff\x30\xfd\xff\xc1\xd0\xff\x8f\x9b\x4c\xff\xbf\xb6\x3e\xf8\x65" "\xfd\xff\xca\xf7\xff\xde\xff\xd7\xff\xeb\xff\xd9\x62\x6a\xef\xff\xe7" "\xee\x7f\x5e\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x7e\xdc" "\x32\xb2\xff\xf7\xfc\x17\xf3\x01\x00\x00\x80\xa5\xca\xdd\xff\x82\xb8" "\xc5\xcf\xff\x03\x00\x00\xc0\xca\xcb\xea\x2c\x77\xff\x0b\xe3\x96\x4e" "\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x1f\xfc\xfb\xff\xab\xdf\xff\x5f" "\xbb\xe9\xfb\xd3\xff\x4f\x8b\xfe\x7f\xdc\x64\xfa\xff\x1d\xe8\xff\xf5" "\xff\xab\xfc\xfd\xeb\xff\xf5\xff\x6c\x37\xb5\xfe\x3f\x77\xff\x8b\xe2" "\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\xa5\x71\x8b\xfd\x0f\x00" "\x00\x00\xcd\xc8\xdd\xff\xe2\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee" "\x7f\x49\xdc\xd2\xc9\xfe\x1f\xee\xff\x4f\xfc\xeb\x93\xee\xff\x4f\x8e" "\x84\x67\xfa\xff\xa4\xff\x6f\xbb\xff\xcf\x7f\x47\xfd\xff\x68\xff\x7f" "\xae\xf7\xff\xfb\xa4\xff\x1f\xa7\xff\x9f\x43\xff\xaf\xff\xd7\xff\xef" "\xd4\xff\x1f\x99\xf7\xe3\xf5\xff\x0c\x99\x5a\xff\x9f\xbb\xff\xa5\x71" "\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x65\x71\x8b\xfd\x0f\x00" "\x00\x00\xcd\xc8\xdd\xff\xf2\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee" "\x7f\x45\xdc\xd2\xc9\xfe\xf7\xfe\xbf\xfe\x5f\xff\xbf\x7a\xfd\xbf\xf7" "\xff\x37\x2c\xf3\xfd\xff\xd9\x81\xf7\xff\xeb\xfa\xff\x5d\x5a\x6e\xff" "\xbf\x76\x77\xfe\x11\x54\xff\x7f\x6a\xdf\xbf\xfe\x5f\xff\xbf\xca\xdf" "\x7f\x93\xfd\xff\x59\xb3\xad\xef\xff\x8f\xfc\x5d\x00\xf4\xff\x0c\x99" "\x5a\xff\x9f\xbb\xff\x95\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb" "\xff\x55\x71\x8b\xfd\x0f\x00\x00\x00\xab\x61\xf3\xff\x77\x60\xe8\xad" "\xb8\xd9\xac\x76\xff\xab\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff" "\x35\x71\x4b\x3b\xfb\x7f\xf4\xad\x4e\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7" "\xff\x0f\x7f\xfe\x83\x2f\x5b\x9f\x4d\xa7\xff\xf7\xfe\xff\x6e\x79\xff" "\x7f\x9c\xfe\x7f\x0e\xfd\xff\x7e\xf4\xf3\xeb\x8d\xf5\xff\x97\xed\xf4" "\xe3\xa7\xd0\xff\x5f\xbc\x7f\xef\xff\xdf\x7b\xde\x8f\xd7\xff\x33\x64" "\x4b\xff\x7f\xdd\x89\xaf\x2f\xab\xff\xcf\xdd\xff\xda\xb8\xa5\x9d\xfd" "\x0f\x00\x00\x00\xdd\xcb\xdd\xff\xba\xb8\xc5\xfe\x07\x00\x00\x80\x66" "\xe4\xee\x7f\x7d\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xbf\x21\x6e" "\xe9\x64\xff\xef\x7b\xff\x3f\xf2\x77\x1f\xd0\xff\xeb\xff\xf5\xff\xfa" "\xff\x69\xf7\xff\x53\x7a\xff\x5f\xff\xbf\x5b\xfa\xff\x71\xfa\xff\x39" "\xf4\xff\xde\xff\xf7\xfe\xbf\xfe\x9f\xd3\xb7\xe9\x4f\x19\xb7\xf4\xff" "\x9b\x2c\xab\xff\xcf\xdd\xff\xc6\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d" "\xc8\xdd\xff\xa6\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xbf\x2c\x6e" "\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xdf\x1c\xb7\x74\xb2\xff\xbd\xff" "\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xc3\x9f\xaf\xff\x5f\x4d\xa7\xd5\xdf" "\x9f\xa1\xff\x2f\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\x01\xa6\xd6" "\xff\x6f\xdd\xfd\xfd\xed\x7f\x00\x00\x00\xe8\xc1\x5b\x8e\xff\xe3\xe1" "\xf8\xeb\xf5\xf6\x3f\x00\x00\x00\xb4\x28\x77\xff\x5b\xe3\x16\xfb\x1f" "\x00\x00\x00\x9a\x91\xbb\xff\x6d\x71\x4b\x27\xfb\x5f\xff\xbf\xbf\xfd" "\x7f\x7e\x5d\xff\xaf\xff\x9f\xe9\xff\xf5\xff\xfa\xff\x03\xd1\xed\xfb" "\xff\x6b\x43\x7f\x24\xda\x6e\x87\xfe\xff\x86\x87\x1c\xbd\xff\xd6\xaf" "\xe8\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x9f\x5d\xfa\xef\x91\x7f\x6d\x12" "\xfd\xff\xb1\x13\x7f\x76\x99\xbb\xff\xed\x71\x4b\x27\xfb\x1f\x00\x00" "\x00\x7a\x90\xbb\xff\xf2\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f" "\x47\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x5f\x11\xb7\xec\x71\xff" "\x8f\x35\x0f\x53\xa6\xff\xf7\xfe\xbf\xfe\x5f\xff\xaf\xff\x1f\xfe\x7c" "\xfd\xff\x6a\xea\xb6\xff\xdf\x25\xef\xff\xcf\xa1\xff\xd7\xff\xeb\xff" "\xf5\xff\x2c\xd4\x24\xfa\xff\x4d\xbf\x9c\xbb\xff\x9d\x71\x8b\x9f\xff" "\x07\x00\x00\x80\x66\xe4\xee\x7f\x57\xdc\x62\xff\x03\x00\x00\x40\x33" "\x72\xf7\xbf\x3b\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xdf\x13\xb7" "\x74\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x3f\xfc\xf9\xfa\xff" "\xd5\xa4\xff\x1f\xa7\xff\x9f\x63\x95\xfa\xff\x2b\x4e\xa3\xff\x5f\x1f" "\xfe\xf2\xb2\xfb\xf9\xd3\xb5\xec\xef\x5f\xff\xaf\xff\x67\xbb\xa9\xf5" "\xff\xb9\xfb\xaf\x8c\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xef" "\x8d\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xf7\xc5\x2d\xf6\x3f\x00" "\x00\x00\x34\x23\x77\xff\xfb\xe3\x96\x4e\xf6\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\xeb\xff\x87\x3f\x5f\xff\xbf\x9a\xf4\xff\xe3\xf4\xff\xb3\xd9" "\xec\xaa\x91\x6f\x60\xa8\xff\x3f\x76\x68\x9a\xfd\xbf\xf7\xff\x27\xf7" "\xfd\xeb\xff\xf5\xff\x6c\x37\xb5\xfe\x3f\x77\xff\x07\xe2\x96\x4e\xf6" "\x3f\x00\x00\x00\xf4\x20\x77\xff\x55\x71\x8b\xfd\x0f\x00\x00\x00\xcd" "\xc8\xdd\x7f\x75\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x30\x6e" "\xe9\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf8\xf3\xf5\xff" "\xab\x49\xff\x3f\x4e\xff\x3f\xc7\x2a\xbd\xff\xaf\xff\x9f\xdc\xf7\xaf" "\xff\xd7\xff\xb3\xdd\xd4\xfa\xff\xdc\xfd\x1f\x8a\x5b\x3a\xd9\xff\x00" "\x00\x00\xd0\x83\xdc\xfd\xd7\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77" "\xff\x87\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xda\xb8\xa5\x93" "\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x03\xfd\xff\xf1\xff\xa9\xeb\xff" "\xf5\xff\xab\x68\xff\xfa\xff\x99\xfe\x5f\xff\xaf\xff\x9f\x43\xff\xaf" "\xff\xd7\xff\x73\xb2\xa9\xf5\xff\xb9\xfb\x3f\x12\xb7\x74\xb2\xff\x01" "\x00\x00\xa0\x07\xb9\xfb\x3f\x1a\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc" "\xfd\x1f\x8b\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x8f\xc7\x2d\x9d" "\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xf7\xfe\xff\xf0\xe7\xeb\xff\x57" "\x93\xf7\xff\xc7\xe9\xff\xe7\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x16\x6a" "\xb8\xff\xbf\x78\x69\xfd\x7f\xee\xfe\x4f\xc4\x2d\x9d\xec\x7f\x00\x00" "\x00\xe8\x41\xee\xfe\xeb\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff" "\x93\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xa9\xb8\xa5\x93\xfd" "\xaf\xff\xd7\xff\x6f\xed\xff\x67\x33\xfd\xbf\xfe\x5f\xff\xbf\x61\xa0" "\xff\xbf\xf9\xce\xcb\xff\xab\x7e\x79\x01\xfd\xff\xe1\x99\xfe\x7f\xe1" "\xf4\xff\xe3\xf4\xff\x73\xe8\xff\xdb\xec\xff\xcf\x98\x35\xd4\xff\x1f" "\xd9\xf1\xc7\xeb\xff\x99\xa2\xa9\xbd\xff\x9f\xbb\xff\xd3\x71\x4b\x27" "\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x33\x71\x8b\xfd\x0f\x00\x00\x00" "\xcd\xc8\xdd\xff\xd9\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x5c" "\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\x17\xfc\xfe\xff\x6d\xe7\x0f\x7c\x1f" "\xfa\xff\x0d\xfa\xff\x95\xef\xff\xbd\xff\xbf\x02\xf4\xff\xe3\xf4\xff" "\x73\xe8\xff\xdb\xec\xff\xbd\xff\xaf\xff\x67\x69\xa6\xd6\xff\xe7\xee" "\xff\x7c\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xff\x42\xdc\x62" "\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x31\x6e\xb1\xff\x01\x00\x00\xa0" "\x19\xb9\xfb\xbf\x14\xb7\x74\xb2\xff\xf5\xff\xfa\xff\x05\xf7\xff\xde" "\xff\xd7\xff\xeb\xff\x77\xa0\xff\x3f\x18\xfa\xff\x71\xfa\xff\x39\xf4" "\xff\xcd\xf5\xff\xf9\x67\xf7\xfa\x7f\xfd\x3f\xcb\x31\xb5\xfe\x3f\x77" "\xff\x97\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\xf5\x71\x8b" "\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\x7f\x43\xdc\x62\xff\x03\x00\x00\x40" "\x33\x72\xf7\x7f\x25\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xfa\xff\xd5\xec" "\xff\x0f\x6f\xe9\xff\xcf\x9c\xe9\xff\x4f\xfc\xfa\xfa\xff\xbe\x4d\xa5" "\xff\x3f\xe7\x9c\xfb\xdd\xa8\xff\xd7\xff\xeb\xff\x97\xdf\xff\x7b\xff" "\x5f\xff\xcf\x72\x4d\xad\xff\xcf\xdd\xff\xd5\xb8\xa5\x93\xfd\x0f\x00" "\x00\x00\x3d\xc8\xdd\xff\xb5\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee" "\xff\x7a\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x23\x6e\xe9\x64" "\xff\x6f\xef\xff\xcf\x9a\x6d\x14\xaa\x1b\x86\xfa\xff\x68\xd4\xf4\xff" "\x9b\xe8\xff\xb7\x7e\xff\xfa\xff\xe1\xdf\x3e\xbc\xff\xaf\xff\xd7\xff" "\xef\xbf\xa9\xf4\xff\xde\xff\x3f\xb5\xef\x5f\xff\xaf\xff\x5f\xe5\xef" "\x7f\x4f\xfd\xff\xff\x6f\xff\xf1\xfa\x7f\x5a\x34\xb5\xfe\x3f\x77\xff" "\x8d\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x9b\x71\x8b\xfd" "\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xad\xb8\xc5\xfe\x07\x00\x00\x80\x66" "\xe4\xee\xbf\x29\x6e\xe9\x64\xff\x7b\xff\x5f\xff\xaf\xff\xd7\xff\xeb" "\xff\x87\x3f\x5f\xff\xbf\x9a\xf4\xff\xe3\xf4\xff\x73\xe8\xff\xf5\xff" "\xde\xff\xbf\xf0\x81\x67\xea\xff\x59\x9c\xa9\xf5\xff\xb9\xfb\xbf\x1d" "\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x6f\x8e\x5b\xec\x7f\x00" "\x00\x00\x68\x46\xee\xfe\xef\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77" "\xff\x77\xe3\x96\x4e\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x87" "\x3f\x5f\xff\xbf\x9a\xf4\xff\xe3\xf4\xff\xe5\xe4\xff\x68\x1b\xfa\xe9" "\xff\x0f\x0f\x7d\x71\xd9\xfd\xfc\xe9\x5a\xf6\xf7\xdf\x4c\xff\xef\xfd" "\x7f\x16\x68\x6a\xfd\x7f\xee\xfe\xef\xc5\x2d\x9d\xec\x7f\x00\x00\x00" "\xe8\x41\xee\xfe\xef\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x0f" "\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x87\x71\x4b\x27\xfb\x5f" "\xff\xaf\xff\x6f\xbf\xff\x3f\x5f\xff\x7f\xd2\xe7\xeb\xff\xf5\xff\x2d" "\xd3\xff\xe7\x1f\xd1\x87\xe9\xff\xe7\xe8\xa7\xff\x1f\xb4\xec\x7e\x7e" "\xd5\xbf\x7f\xfd\xbf\xfe\x9f\xed\xa6\xd6\xff\xe7\xee\xbf\x25\x6e\xe9" "\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\xff\x28\x6e\xb1\xff\x01\x00\x00" "\xa0\x19\xb9\xfb\x7f\x1c\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x3f" "\x89\x5b\x3a\xd9\xff\xfa\xff\xbe\xfa\xff\xb5\x59\x8f\xfd\xbf\xf7\xff" "\xf5\xff\xfa\xff\x9e\xe8\xff\xc7\xe9\xff\xe7\xd0\xff\xeb\xff\xf5\xff" "\xfa\x7f\x16\x6a\x6a\xfd\x7f\xee\xfe\x5b\xd7\xd6\xbb\xdc\xff\x00\x00" "\x00\xb0\xaa\x1e\x70\xaf\x87\xdd\xb2\xdb\x5f\xf7\xd6\xe3\xff\x78\x78" "\xf6\xd3\xb8\xe5\xdc\xd9\xb1\x5d\xfe\x34\x36\x00\x00\x00\x30\x71\xf7" "\xec\xfe\xb5\xf5\xd9\xec\x67\xc7\x7f\xc9\xcf\xff\x03\x00\x00\x40\x8b" "\x72\xf7\xff\x3c\x6e\xe9\x64\xff\xeb\xff\xfb\xea\xff\xfb\x7c\xff\x5f" "\xff\xaf\xff\xd7\xff\xf7\x44\xff\x3f\x4e\xff\x3f\x87\xfe\x5f\xff\xaf" "\xff\xd7\xff\xb3\x50\x53\xeb\xff\x73\xf7\xff\x22\x6e\xd9\x34\xfc\xd6" "\xf7\xfc\x9f\x12\x00\x00\x00\x98\x92\xdc\xfd\xbf\x8c\x5b\x3a\xf9\xf9" "\x7f\x00\x00\x00\xe8\x41\xee\xfe\x5f\xc5\x2d\xdb\xf6\xbf\xbf\x1d\x20" "\x00\x00\x00\xac\xaa\xdc\xfd\xbf\x8e\x5b\x3a\xf9\xf9\x7f\xfd\xff\xc4" "\xfb\xff\xd9\x3e\xf5\xff\xf1\xeb\xe9\xff\x37\xe8\xff\xf5\xff\x43\x9f" "\xaf\xff\x5f\x4d\xfa\xff\x71\xa7\xd9\xff\x1f\x5b\xd3\xff\xeb\xff\x47" "\xe8\xff\xf5\xff\xfa\x7f\x4e\x36\xb5\xfe\x3f\x77\xff\x6f\xe2\x96\x4e" "\xf6\x3f\x00\x00\x00\x34\x6a\xcb\x5f\x51\xc8\xdd\x7f\x5b\xdc\x62\xff" "\x03\x00\x00\x40\x33\x72\xf7\xff\x36\x6e\xb1\xff\x01\x00\x00\xa0\x19" "\xb9\xfb\x6f\x8f\x5b\x3a\xd9\xff\xfa\xff\x03\xef\xff\x33\x55\xdf\xc7" "\xf7\xff\x8f\xd4\x3f\xf3\xfe\x7f\xe7\xfd\xff\xa5\x87\x07\x3f\x5f\xff" "\xaf\xff\x6f\x99\xfe\x7f\x9c\xf7\xff\xe7\xd0\xff\xb7\xd2\xff\x1f\xd2" "\xff\xeb\xff\x99\x86\xa9\xf5\xff\xb9\xfb\x7f\x17\xb7\x74\xb2\xff\x01" "\x00\x00\xa0\x07\xb9\xfb\x7f\x1f\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc" "\xfd\x7f\x88\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x3f\xc6\x2d\x9d" "\xec\x7f\xfd\xff\xc4\xdf\xff\x3f\xa5\xfe\x7f\x17\xef\xff\xeb\xff\xfb" "\xe8\xff\x77\xf8\xfc\x76\xfa\xff\xff\x39\xfb\xe8\xf5\xe7\x3d\xe8\xea" "\x2b\xf5\xff\x9c\x70\x90\xfd\x7f\xfe\xb6\x70\xc0\xfd\xff\xa1\xbd\xfe" "\x7b\x6e\xa6\xff\x9f\x43\xff\xdf\x4a\xff\xef\xfd\x7f\xfd\x3f\x13\xb1" "\xf8\xfe\x7f\x7d\xcb\x17\xf7\xda\xff\xe7\xee\xff\x53\xdc\xd2\xc9\xfe" "\x07\x00\x00\x80\x1e\xe4\xee\xbf\x23\x6e\xb1\xff\x01\x00\x00\xa0\x19" "\xb9\xfb\xff\x1c\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x7f\x89\x5b" "\x3a\xd9\xff\xfa\x7f\xfd\xff\x54\xfa\xff\xfc\xef\x7a\x09\xfd\xff\xd1" "\x53\xee\xff\x8f\xcc\x66\xb3\xa5\xf4\xff\xd9\x14\xf7\xde\xff\x7b\xff" "\x5f\xff\xbf\x9d\xf7\xff\xc7\xe9\xff\xe7\xd0\xff\xeb\xff\xf5\xff\xfa" "\x7f\x16\x6a\xf1\xfd\xff\xd6\x2f\xee\xb5\xff\xcf\xdd\xff\xd7\xb8\xa5" "\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xb7\xb8\x25\xf7\xff\xda\x9e" "\xff\xd2\x3d\x00\x00\x00\x30\x31\xb9\xfb\xff\x1e\xb7\xf8\xf9\x7f\x00" "\x00\x00\x68\x46\xee\xfe\x3b\xe3\x96\x4e\xf6\xbf\xfe\x5f\xff\x3f\x95" "\xfe\x3f\x79\xff\xff\xc4\x8f\x6b\xeb\xfd\xff\xf3\x2a\x4e\xed\xb3\xff" "\xff\xbf\xfa\x67\xfa\xff\xfd\xa5\xff\x1f\xa7\xff\x9f\x43\xff\xaf\xff" "\xd7\xff\xeb\xff\x59\xa8\xa9\xf5\xff\xb9\xfb\xff\x11\xb7\x74\xb2\xff" "\x01\x00\x00\xa0\x07\xb9\xfb\xef\x8a\x5b\xec\x7f\x00\x00\x00\x68\x46" "\xee\xfe\x7f\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xbf\xe2\x96" "\x4e\xf6\xbf\xfe\xbf\xd5\xfe\x3f\x8b\x78\xfd\xbf\xfe\x7f\x2a\xfd\xbf" "\xf7\xff\xbd\xff\x7f\x30\xf4\xff\xe3\xf4\xff\x73\xe8\xff\xf5\xff\xfa" "\x7f\xfd\x3f\x0b\x35\xb5\xfe\x3f\x77\xff\x7f\x02\x00\x00\xff\xff\x92" "\xb6\x5d\x45", 25231); syz_mount_image( /*fs=*/0x200000000240, /*dir=*/0x200000000040, /*flags=MS_POSIXACL|MS_STRICTATIME|MS_NOSUID|MS_NODEV*/ 0x1010006, /*opts=*/0x200000000300, /*chdir=*/0x24, /*size=*/0x628f, /*img=*/0x2000000065c0); 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; for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }