// https://syzkaller.appspot.com/bug?id=39d53f25932055b9d820c085ed7456604111aa03 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_fsconfig #define __NR_fsconfig 431 #endif #ifndef __NR_fspick #define __NR_fspick 433 #endif #ifndef __NR_getpid #define __NR_getpid 172 #endif #ifndef __NR_memfd_create #define __NR_memfd_create 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif #ifndef __NR_openat #define __NR_openat 56 #endif #ifndef __NR_prlimit64 #define __NR_prlimit64 261 #endif #ifndef __NR_recvmmsg #define __NR_recvmmsg 243 #endif #ifndef __NR_sched_setscheduler #define __NR_sched_setscheduler 119 #endif #ifndef __NR_sendmmsg #define __NR_sendmmsg 269 #endif #ifndef __NR_socketpair #define __NR_socketpair 199 #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 < 11; 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); } } uint64_t r[4] = {0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; 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 37 00} (length 0x8) // } // flags: mount_flags = 0x803 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYRES8: ANYRES8 (resource) // } // union ANYUNION { // ANYRESDEC: ANYRES64 (resource) // } // union ANYUNION { // ANYRES32: ANYRES32 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {d7 76 68 d5 c4 ae 49 c8 c2 b7 0f 72 fa 6c 1c // 49 c4 07 54 b9 e0 fd 09 27 38 e8 1f fb 6e b1 ee fe ac 3d 85 85 // 52 e9 5c 2d ca 86 be 4c f4 65 f5 24 a0 c7 2a fb 63 90 bf d3 eb // 2d 65 00 88 ba 98 1a 85 db 0c a4} (length 0x44) // } // union ANYUNION { // ANYRES16: ANYRES16 (resource) // } // union ANYUNION { // ANYRES32: ANYRES32 (resource) // } // union ANYUNION { // ANYRES64: ANYRES64 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {23 c1 b8 15 94 cc 32 7d f5 86 68 3b 21 b7 39 // b1 e3 c8 b8 36 8c a7 5e 21 63 af 26 60 97 75 70 09 09 ef 44 79 // 12 aa 2b 0b 8e 9f 8b 0b 94 f9 00 c7 b2 65 35 53 7d bc 40 49 fa // 77 6e 4a 4a 71 18 42 67 60 ce ba 48 1a 25 08 07 6f 39 2d 43 79 // 5d b3 53 dd 07 f7 fe 51 d4 17 51 26 79 2c} (length 0x5c) // } // } // } // chdir: int8 = 0x2 (1 bytes) // size: len = 0x6035 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x6035) // } // ] // returns fd_dir memcpy((void*)0x20000040, "jfs\000", 4); memcpy((void*)0x20000240, "./file7\000", 8); *(uint8_t*)0x20000280 = 0; sprintf((char*)0x20000281, "%020llu", (long long)-1); *(uint32_t*)0x20000295 = 0; memcpy( (void*)0x20000299, "\xd7\x76\x68\xd5\xc4\xae\x49\xc8\xc2\xb7\x0f\x72\xfa\x6c\x1c\x49\xc4" "\x07\x54\xb9\xe0\xfd\x09\x27\x38\xe8\x1f\xfb\x6e\xb1\xee\xfe\xac\x3d" "\x85\x85\x52\xe9\x5c\x2d\xca\x86\xbe\x4c\xf4\x65\xf5\x24\xa0\xc7\x2a" "\xfb\x63\x90\xbf\xd3\xeb\x2d\x65\x00\x88\xba\x98\x1a\x85\xdb\x0c\xa4", 68); *(uint16_t*)0x200002dd = 0; *(uint32_t*)0x200002df = -1; *(uint64_t*)0x200002e3 = 0; memcpy((void*)0x200002eb, "\x23\xc1\xb8\x15\x94\xcc\x32\x7d\xf5\x86\x68\x3b\x21\xb7\x39\xb1" "\xe3\xc8\xb8\x36\x8c\xa7\x5e\x21\x63\xaf\x26\x60\x97\x75\x70\x09" "\x09\xef\x44\x79\x12\xaa\x2b\x0b\x8e\x9f\x8b\x0b\x94\xf9\x00\xc7" "\xb2\x65\x35\x53\x7d\xbc\x40\x49\xfa\x77\x6e\x4a\x4a\x71\x18\x42" "\x67\x60\xce\xba\x48\x1a\x25\x08\x07\x6f\x39\x2d\x43\x79\x5d\xb3" "\x53\xdd\x07\xf7\xfe\x51\xd4\x17\x51\x26\x79\x2c", 92); memcpy( (void*)0x200151c0, "\x78\x9c\xec\xdd\x5b\x6f\x1c\x67\xfd\x07\xf0\xdf\x1e\xbc\x3e\xf4\xdf" "\xd4\xea\x45\x95\x7f\xc4\x21\x4d\x39\xb4\x94\x26\x8d\x93\x36\x2d\xa7" "\xa6\x42\xe2\x02\x04\x54\xaa\x72\x9f\xc8\xb8\x55\x44\x0a\x28\x09\x15" "\xad\x2c\xe2\x2a\x12\xf7\x48\x5c\xa3\xf2\x22\xb8\x06\xa1\xde\x20\x15" "\x89\x97\xc0\x1b\x88\x64\xf7\x86\x08\x44\x06\x8d\xf7\x79\x9c\xf1\x78" "\xed\xb5\x49\xbc\xb3\xf6\x7c\x3e\x92\x33\xfb\xdb\x67\xc6\xfb\x4c\xbe" "\x1e\xcf\xae\xe7\xf0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x10\xdf\xff\xde\xdb\xe7\x3b\x11\x71\xf5\xfd\xf4\xc4\x62" "\xc4\xff\x45\x2f\xa2\x1b\x31\x5f\xd6\xa7\xe3\xaf\x11\x77\xee\xe7\xf9" "\xfb\x11\x71\x32\x36\x9b\xe3\x99\x88\x38\x31\x1b\x51\x2e\xbf\xf9\xcf" "\x53\x11\x17\x23\xe2\xd3\x13\x11\xeb\x1b\xab\xcb\xe5\xd3\x4b\xfb\xec" "\xc7\x2b\x6f\xdd\xfb\xdb\x0f\xdf\xfe\xd1\xda\x6f\xbf\xf8\x97\xbf\xff" "\xfb\x93\xdf\xff\xa9\xde\xfe\xd6\x27\xdf\xfd\xc1\x1f\xef\x44\x2c\x9e" "\xfc\xcd\xef\xfe\x73\xe7\xf1\xac\x3b\x00\x00\x00\xb4\x45\x51\x14\x45" "\x67\xf3\x63\x7e\xc4\xa9\xf4\xf9\xbe\xdb\x74\xa7\x00\x80\x89\xc8\xfb" "\xff\x22\xc9\xcf\xab\xd5\x8f\x52\xf7\x63\xbb\xa6\xfb\xa3\x56\xab\xd5" "\xea\x9d\x8a\xd1\xee\x54\x8b\x88\x58\xab\x2e\x53\xbe\x67\x70\x38\x1e" "\x00\x8e\x98\xb5\xb8\xdf\x74\x17\x68\x90\xfc\x5b\xad\x1f\x11\x4f\x34" "\xdd\x09\x60\xaa\x75\x9a\xee\x00\x87\x62\x7d\x63\x75\xb9\x93\xf2\xed" "\x54\xf7\x07\xa7\x87\xed\xf9\x5c\x90\x6d\xf9\xaf\x75\xb6\xae\xef\xd8" "\x6d\x3a\x4e\xfd\x1c\x93\x49\xfd\x7c\xdd\x8d\x5e\x3c\xbd\x4b\x7f\xe6" "\x27\xd4\x87\x69\x92\xf3\xef\xd6\xf3\xbf\x3a\x6c\x1f\xa4\xf9\x0e\x3b" "\xff\x49\xd9\x2d\xff\xc1\xf0\xd2\xa7\xd6\xc9\xf9\xf7\xea\xf9\xd7\x1c" "\x9f\xfc\xbb\x23\xf3\x6f\xab\x9c\x7f\xff\x40\xf9\xf7\xe4\x0f\x00\x00" "\x00\x00\x00\x53\x2c\xff\xfd\x7f\xb1\xe1\xe3\xbf\xb3\x8f\xbe\x2a\xfb" "\xb2\xd7\xf1\xdf\xd3\x13\xea\x03\x00\x00\x00\x00\x00\x00\x00\x3c\x6e" "\xfb\x18\xff\xaf\x7c\x70\x39\xcf\x5f\x1f\xff\x6f\x8b\xf1\xff\x00\x00" "\x00\x60\x6a\x95\x9f\xd5\x4b\x1f\x9f\x78\xf8\xdc\x6e\xf7\x62\x2b\x9f" "\xbf\xd2\x89\x78\xb2\x36\x3f\xd0\x32\xe9\x62\x99\x85\xa6\xfb\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6d\xd2\x1f\x9e\xc3\x7b\xa5\x13" "\x31\x13\x11\x4f\x2e\x2c\x14\x45\x51\x7e\x55\xd5\xeb\x83\x7a\xd4\xe5" "\x8f\xba\xb6\xaf\x3f\xb4\x59\xd3\xbf\xe4\x01\x00\x60\xe8\xd3\x13\xb5" "\x6b\xf9\x3b\x11\x73\x11\x71\x25\xdd\xeb\x6f\x66\x61\x61\xa1\x28\xe6" "\xe6\x17\x8a\x85\x62\x7e\x36\xbf\x9f\x1d\xcc\xce\x15\xf3\x95\xcf\xb5" "\x79\x5a\x3e\x37\x3b\xd8\xc7\x1b\xe2\xfe\xa0\x28\xbf\xd9\x5c\x65\xb9" "\xaa\x71\x9f\x97\xc7\xb5\xd7\xbf\x5f\xf9\x5a\x83\xa2\xb7\x8f\x8e\x4d" "\x46\x83\x81\x03\x40\x44\x0c\xf7\x46\xeb\xf6\x48\xc7\x4c\x51\x3c\x15" "\x4d\xbf\xcb\xe1\x68\xb0\xfd\x1f\x3f\xb6\x7f\xf6\xa3\xe9\x9f\x53\x00" "\x00\x00\xe0\xf0\x15\x45\x51\x74\xd2\xed\xbc\x4f\xa5\x63\xfe\xdd\xa6" "\x3b\x05\x00\x4c\x44\xde\xff\xd7\x8f\x0b\xa8\xd5\x6a\xb5\x5a\xad\x3e" "\x7e\x75\x55\x31\xda\x9d\x6a\x11\x11\x6b\xd5\x65\xca\xf7\x0c\x86\xe3" "\x07\x80\x23\x66\x2d\xee\x37\xdd\x05\x1a\x24\xff\x56\xeb\x47\xc4\xc9" "\xa6\x3b\x01\x4c\xb5\x4e\xd3\x1d\xe0\x50\xac\x6f\xac\x2e\x77\x52\xbe" "\x9d\xea\xfe\x20\x8d\xef\x9e\xcf\x05\xd9\x96\xff\x5a\x67\x73\xb9\xbc" "\xfc\xa8\xe9\x38\xf5\x73\x4c\x26\xf5\xf3\x75\x37\x7a\xf1\xf4\x2e\xfd" "\x79\x66\x42\x7d\x98\x26\x39\xff\x6e\x3d\xff\xab\xc3\xf6\x41\x9a\xef" "\xb0\xf3\x9f\x94\xdd\xf2\x2f\xd7\x73\xb1\x81\xfe\x34\x2d\xe7\xdf\xab" "\xe7\x5f\x73\x7c\xf2\xef\x8e\xcc\xbf\xad\x72\xfe\xfd\x03\xe5\xdf\x93" "\x3f\x00\x00\x00\x00\x00\x4c\xb1\xfc\xf7\xff\x45\xc7\x7f\xf3\x2a\x03" "\x00\x00\x00\x00\x00\x00\xc0\x91\xb3\xbe\xb1\xba\x9c\xaf\x7b\xcd\xc7" "\xff\x3f\x37\x62\x3e\xd7\x7f\x1e\x4f\x39\xff\x8e\xfc\x5b\x29\xe7\xdf" "\xad\xe7\x5f\x3b\x21\xa7\x57\x79\x7c\xef\xcd\x87\xf9\x7f\xb6\xb1\xba" "\xfc\xf1\xff\x5f\xfa\x42\x9e\x4e\x7d\xfe\x33\xbd\x41\xf9\xda\x33\x9d" "\x6e\xaf\x3f\x3c\xe7\xe7\x9f\xf9\xd6\xa6\x2b\xf1\xf2\x8e\xf9\xcb\x79" "\x8a\x99\x77\xe2\x7a\xdc\x88\x95\x38\xbf\xa3\x7d\x66\x5b\xfb\xd2\x98" "\xf6\x0b\x3b\xda\x07\x65\xfb\x7c\x6e\x3f\x1b\xcb\xf1\xf3\xb8\x11\x3f" "\xd9\x6a\x9f\x1d\x73\x62\xd4\xdc\x98\xf6\x62\x4c\x7b\xce\xbf\x67\xfb" "\x6f\xa5\x9c\x7f\xbf\xf2\x55\xe6\xbf\x90\xda\x3b\xb5\x69\xe9\xde\x47" "\xdd\x1d\xdb\x7d\x75\x3a\xea\x75\x2e\xff\xf8\xc1\xa5\x9d\x5b\xd7\xe4" "\xdd\x8d\xde\xd6\xba\x55\x95\xeb\x77\xa6\x81\xfe\x6c\xfe\x9f\x3c\x31" "\x88\x5f\xde\x5a\xb9\x79\xf6\x57\xd7\x6e\xdf\xbe\x79\x3e\xd2\x64\xdb" "\xb3\x4b\x91\x26\x8f\x59\xce\x7f\x26\x7d\xe5\xfc\x9f\x7f\x6e\xd8\x9e" "\x7f\xef\x57\xb7\xd7\x7b\x1f\x0d\x0e\x9c\xff\xb4\xb8\x1b\xfd\x5d\xf3" "\x7f\xae\xf2\xb8\x5c\xdf\x17\x26\xdc\xb7\x26\xe4\xfc\x07\xe9\x2b\xe7" "\x9f\xf7\x40\xa3\xb7\xff\xa3\x9c\xff\xee\xdb\xff\x8b\x0d\xf4\x07\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf6\x52\x14\xc5\xe6\x25" "\xa2\x97\x23\xe2\xd5\x74\xfd\x4f\x53\xd7\x66\x02\x00\x93\x95\xf7\xff" "\x45\xbe\x19\x46\xa2\x56\xab\xd5\x6a\xb5\xfa\xf8\xd5\x55\xc5\x68\x6f" "\x54\x8b\x88\xf8\x73\x75\x99\xf2\x3d\xc3\xaf\x47\x7d\x33\x00\x60\x9a" "\x3d\x88\x88\x7f\x34\xdd\x09\x1a\x23\xff\x16\xcb\xf7\xfb\x2b\xa7\x5f" "\x6a\xba\x33\xc0\x44\xdd\xfa\xe0\xc3\x9f\x5e\xbb\x71\x63\xe5\xe6\xad" "\xff\x65\xe9\xa2\xf7\xf8\x7b\x04\x00\x00\x00\x00\x00\x00\x00\x1c\x54" "\x1e\xff\xf3\x74\x65\xfc\xe7\xcd\xf3\x80\x6a\xe3\x46\x6f\x1b\xff\xf5" "\xcd\x38\xfd\xd9\xc6\xea\xf2\xfb\x8b\xff\xfa\xfc\x91\x1b\xff\xb3\x3b" "\xe8\x6d\x8e\x75\x9e\x56\xe8\xd9\xa8\x8e\xcf\xbd\x73\x84\xe2\x33\xb1" "\xf7\xf8\xdf\xfd\x31\xaf\x37\x33\xa6\x7d\x30\xa6\x7d\x76\x4c\xfb\xdc" "\x98\xf6\x91\x17\x7a\x54\xe4\xfc\x9f\x4d\x19\xe7\xfc\x4f\xa5\x15\xdb" "\x6b\xfc\xd7\x9c\x7f\x7d\x3a\xe6\x25\x1b\xb5\xd7\xf8\xaf\xcf\x37\xd0" "\x9f\xa6\xe5\xfc\xcf\xa4\xb1\x9e\x73\xfe\x5f\xad\xcd\x57\xcd\xbf\xf8" "\xc3\x51\x1e\xff\xb7\xbb\x2d\xff\x73\xb7\xdf\xfb\xc5\xb9\x5b\x1f\x7c" "\xf8\xd2\xf5\xf7\xae\xbd\xbb\xf2\xee\xca\xcf\x2e\x5c\x5c\x7a\xfd\xfc" "\xd2\xa5\x8b\xaf\xbd\x7c\xee\x9d\xeb\x37\x56\xd2\xbf\x0d\xf6\xf8\x70" "\xe5\xfc\x87\x63\x5f\xf7\x9c\x07\xda\x32\x39\xff\x9c\xb9\xfc\xdb\x25" "\xe7\xff\xe5\x54\xcb\xbf\x5d\x72\xfe\x5f\x49\xb5\xfc\xdb\x25\xe7\x9f" "\xdf\xef\xc9\xbf\x5d\x72\xfe\xf9\xb3\xcf\x56\xfe\x0f\x9a\xed\x17\x93" "\x91\xf3\x7f\x21\xd5\xb6\xff\x76\xc9\xf9\x7f\x2d\xd5\xf2\x6f\x97\x9c" "\xff\x8b\xa9\x96\x7f\xbb\xe4\xfc\xbf\x9e\x6a\xf9\xb7\x4b\xce\xff\xa5" "\x54\xcb\xbf\x5d\x72\xfe\x67\x53\x2d\xff\x76\xc9\xf9\x9f\x4b\xb5\xfc" "\xdb\x25\xe7\x9f\x8f\x70\xc9\xbf\x5d\x72\xfe\xf9\xcc\x06\xf9\xb7\x4b" "\xce\x7f\x29\xd5\xf2\x6f\x97\x9c\xff\x85\x54\xcb\xbf\x5d\x72\xfe\x17" "\x53\x2d\xff\x76\xc9\xf9\xbf\x92\x6a\xf9\xb7\x4b\xce\xff\xd5\x54\x1f" "\x20\x7f\xf7\xfe\x3a\x06\x72\xfe\x97\x52\x6d\xfb\x6f\x97\x9c\xff\x6b" "\xa9\x96\x7f\xbb\xe4\xfc\x5f\x4f\xb5\xfc\xdb\x25\xe7\xff\x8d\x54\xcb" "\xbf\x5d\x72\xfe\xdf\x4c\xb5\xfc\xdb\x25\xe7\xff\xad\x54\xcb\xbf\x5d" "\x72\xfe\xdf\x4e\xb5\xfc\xdb\x25\xe7\xff\x9d\x78\x78\x31\xa9\xfc\xdb" "\x23\xe7\xff\x46\xaa\x6d\xff\xed\xf2\xf0\xfe\xff\x1e\x78\xe0\x81\x07" "\xf9\x41\xd3\xbf\x99\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xba" "\x49\x9c\x4e\xdc\xf4\x3a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xc0\x7f\xd9\x81\x03\x01\x00\x00\x00\x00" "\x20\xff\xd7\x46\xa8\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xc2\x0e\x1c\x08\x00\x00\x00\x00\x00\xf9\xbf\x36\x42\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x15\xf6\xee" "\x2e\x46\xae\xf2\x3e\x03\xf8\xd9\x2f\x7b\x6d\x88\xbd\x49\x1c\x02\xc4" "\xc0\xda\x18\x30\xb0\x78\xd7\x1f\xf8\xa3\xad\x83\x81\x90\x52\x68\x1b" "\x42\x02\xe9\x07\xa9\x71\xed\xb5\x71\xe2\xaf\x7a\x6d\x02\x08\x89\x8d" "\xa0\x29\x12\x48\xe5\x82\x0b\x5a\x29\x29\x20\x54\xe5\x22\x55\x50\x9b" "\xa8\x41\xa2\x11\x95\x2a\xb5\xe9\x4d\x7b\xd5\xde\x54\x69\xa5\x46\x15" "\x8a\x42\xe5\x44\xbd\x29\x2a\x6c\x75\xe6\xbc\xef\xeb\x99\xd9\xd9\x99" "\xb5\x77\xd7\x3b\x73\xce\xef\x87\xf0\xdf\x3b\x73\x66\xe6\xdd\x33\x67" "\x66\xf7\x19\xeb\x99\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x80\x7a\x1b\xee\x9e\xfc\xa3\xbe\x2c\xcb\xf2\xff\x6b\x7f\x8c\x64\xd9" "\xe5\xf9\xdf\x57\x65\xfb\xf2\x2f\xa7\x77\x2e\xf7\x0a\x01\x00\x00\x80" "\x85\xfa\xa0\xf6\xe7\x77\xd6\xa6\x13\xf6\xcd\xe3\x42\x75\xdb\xfc\xfd" "\xb5\xff\xf4\xbd\x99\x99\x99\x99\x2c\xfb\xd3\x75\x9f\x7c\x39\x9f\xc1" "\x68\x96\xad\x59\x99\x65\xc5\x79\xc1\xf0\x4f\x4f\x35\x6c\x13\x3c\x9b" "\x0d\xf7\xf5\xd7\x7d\xdd\xdf\xe1\xe6\x07\x3a\x9c\x3f\xd8\xe1\xfc\xa1" "\x0e\xe7\xaf\xe8\x70\xfe\xca\x0e\xe7\x0f\x77\x38\x7f\xd6\x0e\x98\x65" "\x55\xf1\x7a\x4c\xed\xca\x36\xd5\xfe\x3a\x52\xec\xd2\x6c\x5d\x36\x54" "\x3b\x6f\x53\x8b\x4b\x3d\xdb\xb7\xb2\xbf\x3f\xbe\x96\x53\xd3\x57\xbb" "\xcc\xcc\xd0\xe1\xec\x68\x76\x2c\x9b\xcc\x26\x66\x5d\xa6\xaf\xf6\x5f" "\x96\xbd\xbd\x21\xbf\xad\x7b\xb3\x78\x5b\xfd\x75\xb7\xb5\x3e\xcb\xb2" "\x73\x3f\x7f\xfa\x60\x5c\x43\x5f\xd8\xc7\x9b\xb2\x86\x1b\xab\xa9\xbf" "\xef\xde\xbb\x33\x1b\xfd\xc5\xcf\x9f\x3e\xf8\xf8\xc8\xfb\xd7\xb4\x9a" "\x1d\x77\xc3\xac\x95\x66\xd9\xe6\x8d\xf9\x3a\x9f\xcb\xb2\xf3\x2f\x57" "\x65\x7d\xd9\xca\xb4\x4f\xe2\x3a\xfb\xeb\xd6\xb9\xbe\xc5\x3a\x07\x1a" "\xd6\xd9\x57\xbb\x5c\xfe\xf7\xe6\x75\x9e\x9b\xe7\x3a\xe3\xf7\x3d\x1c" "\xd6\xf9\xcf\x6d\xd6\xb9\x3e\x9c\xf6\xc4\xf5\x59\x96\x4d\x67\x73\x6e" "\xd3\xec\xd9\xac\x3f\x5b\xdd\x74\xab\x69\x7f\x0f\x17\x47\x44\x7e\x1d" "\xf9\x5d\xf9\xb1\x6c\xf0\x82\x8e\x93\x0d\xf3\x38\x4e\xf2\xcb\xfc\xe4" "\xfa\xc6\xe3\xa4\xf9\x98\x8c\xfb\x7f\x43\xd8\x27\x83\x73\xac\xa1\xfe" "\xee\x78\xef\xeb\x2b\x66\xed\xf7\x8b\x3d\x4e\xf2\xef\xba\x1b\x8e\xd5" "\xfc\xba\x1f\xc8\x6f\x74\x78\xb8\xfe\xa5\xd5\x86\x63\x35\xdf\xe6\xe9" "\x1b\xe6\x3e\x06\x5a\xde\x77\x2d\x8e\x81\x74\x2c\xd7\x1d\x03\x1b\x3b" "\x1d\x03\xfd\x2b\x06\x6a\xc7\x40\xff\xf9\x35\x6f\x6c\x38\x06\xb6\xce" "\xba\x4c\x7f\xd6\x57\xbb\xad\x77\x6f\x68\x7f\x0c\x8c\x9f\x39\x7e\x6a" "\x7c\xea\xc9\xa7\x6e\x3b\x7a\xfc\xc0\x91\xc9\x23\x93\x27\xb6\xef\xd8" "\xb6\x67\xeb\xb6\x5d\x3b\x76\x4f\x8c\x1f\x3e\x7a\x6c\x32\xfc\x79\x61" "\xbb\xb4\x87\xac\xce\xfa\xd3\x31\xb8\x31\x3c\xd7\xc4\x63\xf0\xa6\xa6" "\x6d\xeb\x0f\xc9\x99\xd7\x8a\xc7\xc1\xab\x57\xed\xba\xb6\xd5\xbc\x90" "\x35\x0c\x2f\xd2\xe3\x60\x21\x6b\xc8\xc2\xf1\xf2\xc5\x1b\xf3\x05\x5d" "\xde\x9f\xcd\x71\x8c\xe7\xdb\x3c\xb7\x79\xe1\x8f\x83\xf4\x73\xbf\xee" "\x71\x30\x58\xf7\x38\x68\xf9\x9c\xda\xe2\x71\x30\x38\x8f\xc7\x41\xbe" "\xcd\xb9\xcd\xf3\xfb\x99\x39\x58\xf7\x7f\xab\x35\xb4\x7a\x2e\x5c\x8c" "\x63\x60\xa4\xee\x18\x58\xc8\xcf\xc3\xfa\x35\x5c\xcc\xcf\xc3\xfc\x36" "\x1f\xb9\x79\xee\xe7\xc2\xf5\x61\x5d\xcf\xdf\x72\xa1\x3f\x0f\x07\x66" "\x1d\x03\xf1\xdb\xea\x0b\x8f\xbd\xfc\x94\xf4\xfb\xde\xf0\xee\xb0\x5f" "\x66\x1f\x17\x57\xe7\x67\x5c\xb6\x22\x3b\x3b\x35\x79\x7a\xcb\x13\x07" "\xce\x9c\x39\xbd\x35\x0b\xe3\x92\xf8\x78\xdd\x7d\xd5\x7c\xbc\xac\xae" "\xfb\x9e\xb2\x59\xc7\x4b\xff\x05\x1f\x2f\xfb\x3e\xf7\xe1\xae\xab\x5b" "\x9c\x3e\x12\xf6\xd5\xf0\xad\xed\xef\xab\x7c\x9b\x1d\x63\xed\xef\xab" "\xda\xb3\x7b\xeb\xfd\xd9\x70\xea\xb6\x2c\x8c\x45\x76\xa9\xf7\x67\xab" "\x9f\x66\xf9\xfe\x4c\x59\xa2\xcd\xfe\xcc\xb7\x79\xee\xb6\x85\xff\x2e" "\x98\x72\x49\xdd\xf3\xdf\x50\xa7\xe7\xbf\x81\xa1\xc1\xe2\xf9\x6f\x20" "\xed\x8d\xa1\x86\xe7\xbf\xd9\x77\xcd\x40\x6d\x65\x59\x76\xee\xb6\xf9" "\x3d\xff\x0d\x85\xff\x2f\xf5\xf3\xdf\xba\x2e\x79\xfe\xcb\xf7\xd5\x23" "\x5b\xda\x1f\x03\xf9\x36\xcf\x8f\x5f\xe8\x31\x30\xd8\xf6\xf9\xef\xfa" "\x30\xfb\xc2\x7a\x6e\x0e\x89\x61\xb8\x2e\xf7\x7f\x58\x3b\x7f\xba\x38" "\x4c\xeb\xee\xcb\x8e\xc7\xcd\xe0\xe0\x50\x38\x6e\x06\xe3\x2d\x36\x1e" "\x37\xdb\x67\x5d\x26\xbf\xb6\xfc\xb6\x37\x4f\x5c\xdc\x71\xb3\xf9\xfa" "\xc6\xfb\xaa\xe1\xf7\x96\x12\x1e\x37\xf9\xbe\x7a\x79\xa2\xfd\x71\x93" "\x6f\xf3\xce\xd6\x85\x3f\x77\xac\x8a\x7f\xad\x7b\xee\x58\xd1\xe9\x18" "\x18\x1a\x58\x91\xaf\x77\x28\x1d\x04\xc5\xf3\xdd\xcc\xaa\x78\x0c\x6c" "\xc9\x0e\x66\x27\xb3\x63\xd9\xa1\x74\x99\xfc\x5e\xce\x6f\x6b\x6c\xdb" "\xfc\x8e\x81\x15\xe1\xff\x4b\xfd\xdc\x71\x65\x97\x1c\x03\xf9\xbe\x7a" "\x65\x5b\xfb\x63\x20\xdf\xe6\xef\xb6\x2f\xee\xef\x4e\x9b\xc3\x29\x69" "\x9b\xba\xdf\x9d\x9a\x5f\x5f\x98\x2b\xf3\x5f\x3d\x78\xfe\xfa\x9a\x77" "\xdb\x62\x67\xfe\x7c\x9d\x9f\xd9\xd1\xfe\xb5\xa1\x7c\x9b\x9f\xed\xb8" "\xd0\x9c\xd1\x7e\x3f\xdd\x1a\x4e\xb9\xac\xc5\x7e\x6a\x7e\xfc\xcc\x75" "\x4c\x1f\xca\x3a\xef\xa7\xc5\x3a\xa6\xf3\x75\x1e\xbb\xbd\xfd\x6b\x53" "\xf9\x36\xeb\x76\xce\xf3\x78\xda\x97\x65\xd9\x5b\x2f\xbc\x51\xbc\xde" "\x55\xbc\xbe\xfb\x97\x67\xff\xe5\x7b\x0d\xaf\xfb\xb6\x7a\x4d\xf9\xad" "\x17\xde\xf8\xfc\x55\x3f\xfa\xd1\x85\xac\x1f\x00\x80\x8b\xf7\x61\xed" "\xcf\xe9\x15\xc5\xef\x9a\x75\xff\x62\x3d\x9f\x7f\xff\x07\x00\x00\x00" "\x7a\x42\xcc\xfd\xfd\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x03" "\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x83\x61\x26\xfb\x3a\xbd" "\x3b\x5e\x39\x3c\xd6\xf7\x8d\x97\x3f\x78\x26\x4b\xef\x06\x38\x13\xc4" "\xf3\xe3\xcb\x20\x0f\xac\x2c\xb6\x8b\x1d\xef\xe9\xf0\xf5\xe8\xcc\x79" "\xf9\xe9\x77\xbd\x31\x74\xff\xf7\x9f\x99\xdf\x6d\xf7\x67\x59\xf6\x7f" "\xf7\x7d\xaa\xe5\xf6\x8f\xad\x8c\xeb\x2a\x9c\x8a\xeb\x1c\x68\x3c\x7d" "\x96\x2b\xaf\x9b\xd7\xed\x3f\xfa\xd0\xf9\xed\xea\xdf\x3f\xe1\x5c\x7f" "\x71\xfd\xf1\xfb\x99\xef\xcb\x40\xb1\xab\xfc\xf6\xbf\xdf\x55\xbb\xde" "\xd1\x9b\x8b\xf9\xce\x7d\x59\x6d\x3e\x38\xfd\xfc\xb3\xb5\xeb\xdf\x53" "\x7c\x1d\xb7\x7f\xf7\x3f\x8b\xed\xbe\x19\xde\xb4\x64\xdf\xe1\xbe\x86" "\xcb\x6f\x0e\xeb\xd9\x14\xe6\x68\x78\x4f\x99\x07\x56\x9d\xdf\x0f\xf9" "\x8c\x97\xfb\xee\xdb\x47\xfe\xe1\xd3\x0f\x9f\xbf\xbd\x78\xb9\xbe\x8d" "\x6b\x6a\xdf\xe6\x2b\x5b\x8a\xeb\x8d\xef\x11\xf5\xd2\x5f\x15\xdb\xc7" "\xef\x7b\xae\xf5\xff\xcd\x0b\xdf\xfe\x6e\xbe\xfd\x13\x37\xb4\x5e\xff" "\x33\xfd\xad\xd7\xff\x6e\xb8\xde\x9f\x84\xf9\xbf\xef\x15\xa7\xd7\xef" "\xf3\xef\xd7\xad\xff\x0f\xc3\xfa\xe3\xed\xc5\xcb\x6d\x79\xfd\x87\x2d" "\xd7\xff\xe6\x5f\x17\xdb\xbf\x19\x8e\x8b\x57\xc3\x6c\x5e\xff\x9d\x7f" "\x7c\xcd\x07\xad\xee\xaf\x78\x3b\xfb\x06\x8b\xcb\xc5\xdb\x9f\xf8\xf3" "\x7b\x6a\x97\x8b\xd7\x17\xaf\xbf\x79\xfd\xc3\xe3\x77\x35\xec\x8f\xe6" "\xeb\x7f\xe7\xf5\xe2\x7a\xf6\x3e\xfe\x3f\x03\xf5\xdb\xc7\xd3\xe3\xed" "\x44\x8f\x0e\x36\x1e\xdf\x7d\xe1\xfe\x6d\xe8\x91\x67\x59\xf6\xed\x6f" "\x64\x0d\xfb\x39\x1b\x2a\x2e\xf7\x56\xd3\xfa\xe3\xf5\x9d\x1a\x6c\xbd" "\xfe\x5b\x9b\xd6\x79\xea\xb5\xc7\x6a\x97\x6f\xfe\x7e\xa2\x6f\x3d\x74" "\x77\xcb\xef\x37\xae\x67\xdf\x5f\x8c\x34\x7c\x3f\x2f\xad\x09\xfb\xaf" "\x7f\xd5\x3f\xe6\xd7\xfb\xee\xa7\xc2\xf1\x18\xce\x7f\x7f\xba\xb8\xbe" "\xe6\xf7\x32\x7d\x73\x4d\xe3\xf3\x4d\xdc\xfe\xd5\x91\xe2\x71\x1b\xaf" "\x6f\xbc\x69\xfd\x2f\x35\xad\x7f\xfa\xba\x7c\xdf\x75\x5e\xff\xbd\xbf" "\x28\xd6\xff\xe6\x1d\x2b\x1b\xd6\xbf\x6f\x6d\x38\x9e\x3e\x5a\xcc\x4e" "\xeb\x3f\xf2\x67\x6b\x1b\x2e\xff\xda\x67\x8b\xf5\x9c\xfe\xda\xd8\x89" "\x93\x53\x67\x8f\xc6\xf7\x38\x18\x69\x7a\x1c\xaf\x1c\x5e\xb5\xfa\xb2" "\xcb\x3f\xb2\x66\x6d\x78\x2e\x6d\xfe\x7a\xff\xc9\x33\x8f\x4d\x9e\x1e" "\x9d\x18\x9d\xc8\xb2\xd1\x1e\x7c\xcb\xc0\xa5\x5e\xff\xeb\x61\xfe\x77" "\x31\xa6\x17\xff\x16\x0a\xff\x3a\x58\x1c\x77\x2f\xde\x5f\xfc\xdc\xba" "\x69\xa8\xf8\xfa\xa5\x70\xfa\xa3\xe1\xfe\x8c\x3f\x1f\xbf\xf5\x27\x43" "\x0d\xc7\x6b\xf3\xfd\x3e\x3d\x5c\xcc\x85\xae\xff\x96\xb0\x8e\xf9\x5a" "\xbf\xe9\xa7\xbb\xe7\xb5\xe1\x7f\xed\x78\xf3\xe5\x7f\x7b\xf0\xcb\xcd" "\xbf\x17\xc4\xef\xe7\xd4\x27\x86\x6b\xdf\xdf\x2b\x1b\xae\xa8\x9d\xd7" "\xf7\x4e\x71\x7e\xf3\xf3\x55\x27\xff\xf1\x89\xc6\xc7\xf5\x8f\xd7\x15" "\xf3\x07\x61\xbf\xce\x84\x77\x66\xde\x78\x45\x71\x7b\xcd\xd7\x1f\xdf" "\x9b\xe4\xc5\x2f\x14\x8f\xdf\xf8\x9b\x5c\xbc\x7c\xd6\xf4\x7e\x22\x23" "\x03\x8d\xdf\xc7\x42\xd7\xff\xe3\xf0\x7b\xcc\x0f\xaf\x6c\x7c\xfe\x8b" "\xc7\xc7\x0f\x9e\x69\x7a\x37\xe7\x91\xac\x2f\x5f\xc2\x74\x78\x7e\xc8" "\xa6\x8b\xf3\xe3\x56\x71\x7f\xbf\x78\xee\x8a\x96\xb7\x17\xdf\x87\x27" "\x9b\xbe\xea\x42\x96\x39\xa7\xa9\x27\xa7\xc6\x8f\x1d\x3d\x71\xf6\x89" "\xf1\x33\x93\x53\x67\xc6\xa7\x9e\x7c\x6a\xff\xf1\x93\x67\x4f\x9c\xd9" "\x5f\x7b\xef\xd2\xfd\x5f\xe9\x74\xf9\xf3\x8f\xef\xd5\xb5\xc7\xf7\xa1" "\xc9\x9d\x3b\xb2\xda\xa3\xfd\x64\x31\x96\xd8\x72\xaf\xff\xd4\x43\x07" "\x0f\xed\x9a\xb8\xf1\xd0\xe4\xe1\x03\x67\x0f\x9f\x79\xe8\xd4\xe4\xe9" "\x23\x07\xa7\xa6\x0e\x4e\x1e\x9a\xba\xf1\xc0\xe1\xc3\x93\x5f\xeb\x74" "\xf9\xa3\x87\xf6\x6e\xdd\xb6\x67\xfb\xae\x6d\x63\x47\x8e\x1e\xda\xbb" "\x7b\xcf\x9e\xed\x7b\xc6\x8e\x9e\x38\x99\x2f\xa3\x58\x54\x07\x3b\x27" "\xbe\x3a\x76\xe2\xf4\xfe\xda\x45\xa6\xf6\xee\xd8\xb3\xf5\xf6\xdb\x77" "\x4c\x8c\x1d\x3f\x79\x68\x72\xef\xae\x89\x89\xb1\xb3\x9d\x2e\x5f\xfb" "\xd9\x34\x96\x5f\xfa\xf1\xb1\xd3\x93\xc7\x0e\x9c\x39\x7a\x7c\x72\x6c" "\xea\xe8\x53\x93\x7b\xb7\xee\xd9\xb9\x73\x5b\xc7\x77\x7f\x3c\x7e\xea" "\xf0\xd4\xe8\xf8\xe9\xb3\x27\xc6\xcf\x4e\x4d\x9e\x1e\x2f\xbe\x97\xd1" "\x33\xb5\x93\xf3\x9f\x7d\x9d\x2e\x4f\x35\x4c\xad\x0d\xcf\x77\x4d\xfa" "\xc2\x6f\xe7\xf7\xdc\xba\x33\xbd\x3f\x6e\xee\x8d\xaf\xcf\x79\x55\xc5" "\x26\x23\x8d\x27\xfe\x2c\xbc\x17\xd4\x37\x87\xb7\xef\x9e\xcf\xd7\x31" "\xf7\x0f\x85\x99\xf8\xf7\x7f\x00\x00\x00\x28\x8d\x98\xfb\xc3\xe7\x53" "\x9c\x7f\xdd\x5d\xfe\x07\x00\x00\x80\xd2\x08\x1f\xf8\x17\x3e\x33\xd2" "\xbf\xff\x03\x00\x00\x40\x19\xc5\xdc\x3f\x1c\x66\x52\x91\xfc\xaf\xff" "\xaf\xff\x7f\x11\xfd\xff\x54\xd7\xd6\xff\xd7\xff\xcf\xf4\xff\xf5\xff" "\x3b\xd0\xff\xd7\xff\x6f\x47\xff\x5f\xff\xbf\x97\xd7\xaf\xff\xaf\xff" "\x4f\x67\xdd\xd6\xff\x8f\xb9\x7f\x55\x96\x55\x32\xff\x03\x00\x00\x40" "\x15\xc4\xdc\xbf\x3a\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\xb2" "\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xcb\xc3\x4c\x2a\x92\xff" "\xf5\xff\xf5\xff\x7d\xfe\x7f\xf9\xfa\xff\x7d\x59\x36\xad\xff\xaf\xff" "\xdf\x2d\xf4\xff\xf5\xff\xdb\xd1\xff\xd7\xff\xef\xe5\xf5\xeb\xff\xeb" "\xff\xd3\x59\xb7\xf5\xff\x63\xee\xff\x48\x98\x49\x45\xf2\x3f\x00\x00" "\x00\x54\x41\xcc\xfd\x6b\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb" "\xd7\x86\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x8f\x84\x99\x94\x29" "\xff\xdf\x31\xf7\x59\xfa\xff\x55\xef\xff\x0f\x54\xb1\xff\xff\x7e\x3c" "\xc0\xcb\xda\xff\xf7\xf9\xff\x05\xfd\xff\xee\xa0\xff\xaf\xff\xdf\x8e" "\xfe\xbf\xfe\x7f\x2f\xaf\x5f\xff\x5f\xff\x9f\xce\xba\xad\xff\x1f\x73" "\xff\x47\xc3\x4c\xca\x94\xff\x01\x00\x00\xa0\xe2\x62\xee\xff\x58\x98" "\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xc7\xc3\x4c\xe4\x7f\x00\x00" "\x00\x28\x8d\x98\xfb\xd7\x85\x99\x54\x24\xff\xeb\xff\x57\xbd\xff\xef" "\xf3\xff\x33\xfd\xff\x25\xec\xff\xc7\x2d\xf5\xff\xf5\xff\xf5\xff\x7b" "\xbd\xff\xbf\x2a\x9c\xac\xff\xdf\x48\xff\x5f\xff\x5f\xff\x5f\xff\x9f" "\xf6\xba\xad\xff\x1f\x73\xff\x27\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0" "\x0a\x62\xee\xbf\x22\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x93" "\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x57\x86\x99\x54\x24\xff" "\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xfb\xfc\x7f\xfd\xff\xa5\xa4\xff\x5f" "\x8e\xfe\x7f\x3c\x59\xff\xbf\x91\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\xed" "\x75\x5b\xff\x3f\xe6\xfe\xab\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a" "\x62\xee\xbf\x3a\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x53\x61" "\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xeb\xc3\x4c\x2a\x92\xff\xf5" "\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x97\x92\xfe\xbf\xfe\x7f" "\x3b\xfa\xff\xfa\xff\xbd\xbc\x7e\xfd\x7f\xfd\x7f\x3a\xeb\xb6\xfe\x7f" "\xcc\xfd\xd7\x84\x99\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\x7f\x6d" "\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x75\x61\x26\xf2\x3f\x00" "\x00\x00\x94\x46\xcc\xfd\xa3\x61\x26\x15\xc9\xff\xfa\xff\xfa\xff\xfa" "\xff\xfa\xff\xfa\xff\xfa\xff\x4b\x49\xff\x5f\xff\xbf\x1d\xfd\x7f\xfd" "\xff\x5e\x5e\xbf\xfe\xbf\xfe\x3f\x9d\x75\x5b\xff\x3f\xe6\xfe\x0d\x61" "\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\x6f\x0c\x33\x91\xff\x01" "\x00\x00\xa0\x34\x62\xee\xbf\x3e\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88" "\xb9\x7f\x53\x98\x49\x45\xf2\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x59\xfb\xff" "\x03\xfa\xff\xe5\xec\xff\x37\xef\xae\xae\xa7\xff\xdf\xa6\xff\x5f\x77" "\x30\xea\xff\xeb\xff\x67\xfa\xff\x3d\xb7\x7e\xfd\x7f\xfd\x7f\x3a\xeb" "\xb6\xfe\x7f\xcc\xfd\x37\x84\x99\x54\x24\xff\x03\x00\x00\x40\x15\xc4" "\xdc\x7f\x63\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x4d\x61\x26" "\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x9b\xc3\x4c\x2a\x92\xff\xf5\xff" "\xf5\xff\xf5\xff\xcb\xda\xff\xf7\xf9\xff\x25\xed\xff\xf7\x1c\xfd\x7f" "\x9f\xff\xdf\x8e\xfe\xbf\xfe\x7f\x2f\xaf\x5f\xff\x5f\xff\x9f\xce\xba" "\xad\xff\x1f\x73\xff\xcd\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31" "\xf7\xdf\x12\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x7f\x6b\x98\x89" "\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x58\x98\x49\x45\xf2\xbf\xfe\xbf" "\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xff\x52\xd2\xff\xd7\xff\x6f\x47" "\xff\x5f\xff\xbf\x97\xd7\xaf\xff\xaf\xff\x4f\x67\xdd\xd6\xff\x8f\xb9" "\xff\xb6\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\xb7\x84\x99" "\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x8f\x87\x99\xc8\xff\x00\x00\x00" "\x50\x1a\x31\xf7\x4f\x84\x99\x54\x24\xff\x97\xac\xff\xff\xa5\x8f\x64" "\x99\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x8d\xfe\x7f\x77\xd0\xff\xd7\xff" "\x6f\x47\xff\x5f\xff\xbf\x97\xd7\xaf\xff\xaf\xff\x4f\x67\xdd\xd6\xff" "\x8f\xb9\x7f\x6b\x98\x49\x45\xf2\x3f\x00\x00\x00\xf4\xa8\x6b\x2e\x64" "\xe3\x98\xfb\xb7\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x6f\x0f" "\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xdf\x11\x66\x52\x91\xfc\xdf" "\xb2\xff\x5f\xdf\x7f\x0d\xb3\x47\xfa\xff\x3e\xff\x5f\xff\x5f\xff\x5f" "\xff\x5f\xff\xbf\xcb\xe8\xff\xeb\xff\xb7\x53\xdf\xff\xcf\x2f\xa9\xff" "\x5f\x95\xfe\xff\x5c\x3f\x69\x7a\x65\xfd\x05\xfd\x7f\xfd\x7f\x3a\xeb" "\xb6\xfe\x7f\xcc\xfd\xb7\x87\x99\x54\x24\xff\x03\x00\x00\x40\x15\xc4" "\xdc\xbf\x33\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\x7f\x57\x98\xc9" "\xec\xfc\xff\xb7\x97\x6e\x55\x00\x00\x00\xc0\x62\x8a\xb9\x7f\x77\x98" "\x49\xcf\xff\xfb\xff\xfc\x7a\x55\x25\xfb\xfc\xff\xf6\xfd\xff\x03\xf7" "\xa6\xbf\xea\xff\x17\xf4\xff\xf5\xff\x33\xfd\x7f\xfd\xff\x25\xa6\xff" "\xaf\xff\xdf\x8e\xcf\xff\xaf\x6a\xff\x7f\x71\x2c\xf7\xfa\xf5\xff\xf5" "\xff\xe9\xac\xdb\xfa\xff\x31\xf7\xef\x09\x33\xe9\xf9\xfc\x0f\x00\x00" "\x00\x44\x31\xf7\xff\x52\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff" "\x2f\x87\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xff\x4a\x98\x49\x45" "\xf2\x7f\xa5\xfa\xff\x75\xf4\xff\x0b\xfa\xff\xfa\xff\x99\xfe\xbf\xfe" "\xff\x12\xd3\xff\xd7\xff\x6f\x47\xff\x5f\xff\xbf\x97\xd7\xdf\xbd\xfd" "\xff\xef\xac\xce\x32\xfd\x7f\xba\x43\xb7\xf5\xff\x63\xee\xdf\x1b\x66" "\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\xa7\xc3\x4c\xe6\xce\xff" "\xc3\x4b\xbf\x2a\x00\x00\x00\x60\x31\xc5\xdc\x7f\x47\x98\x89\x7f\xff" "\x07\x00\x00\x80\xd2\x88\xb9\x7f\x5f\x98\x49\x45\xf2\xbf\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xff\x52\xd2\xff\xd7\xff\x6f\x67\x61" "\xfd\xff\x51\xfd\xff\x05\x5a\xee\xfe\x7c\xaf\xaf\xbf\x7b\xfb\xff\x3e" "\xff\x9f\xee\xb1\x5c\xfd\xff\xbe\x39\xce\x8f\xb9\xff\xce\x30\x93\x8a" "\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\xef\x0a\x33\x91\xff\x01\x00\x00" "\xa0\x34\x62\xee\xbf\x3b\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff" "\x33\x61\x26\x15\xc9\xff\x97\xac\xff\xdf\xa2\x50\xac\xff\xaf\xff\x9f" "\xe9\xff\xeb\xff\xeb\xff\xeb\xff\x2f\x90\xfe\x7f\x95\xfb\xff\x3e\xff" "\x7f\xa1\x96\xbb\x3f\xbf\x08\xeb\xcf\xef\x72\xfd\x7f\xfd\x7f\xba\xd8" "\x72\xf5\xff\xe7\xfa\x3a\xe6\xfe\x7b\xc2\x4c\x2a\x92\xff\x01\x00\x00" "\xa0\x0a\x62\xee\xff\x6c\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff" "\xaf\x86\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xdf\x1b\x66\x52\x91" "\xfc\xef\xf3\xff\xf5\xff\xf5\xff\x4b\xdd\xff\xaf\x2d\x45\xff\xbf\xfd" "\xfa\xf5\xff\x97\x96\xfe\xff\xa5\xee\xff\xb7\xff\xc9\xa5\xff\xdf\xf8" "\x7d\xe8\xff\xf7\x7c\xff\xdf\xe7\xff\xeb\xff\xd3\xe5\xba\xad\xff\x1f" "\x73\xff\xaf\x85\x99\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\x7f\x5f" "\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xfd\x61\x26\xf2\x3f\x00" "\x00\x00\x94\x46\xcc\xfd\xbf\x1e\x66\x52\x91\xfc\xaf\xff\xaf\xff\xaf" "\xff\x5f\xea\xfe\xbf\xcf\xff\xd7\xff\x5f\x76\xfa\xff\x3e\xff\xbf\x1d" "\xfd\x7f\xfd\xff\x5e\x5e\xbf\xfe\xbf\xfe\x3f\x9d\x75\x5b\xff\x3f\xe6" "\xfe\xdf\x08\x33\xa9\x48\xfe\x07\x00\x00\x80\x52\x98\xfb\xf5\x83\x9a" "\x98\xfb\x7f\x33\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x73\x61" "\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x0f\x84\x99\x54\x24\xff\xeb" "\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x2f\x25\xfd\x7f\xfd\xff" "\x76\xf4\xff\xf5\xff\x7b\x79\xfd\xfa\xff\xfa\xff\x74\xd6\x6d\xfd\xff" "\x98\xfb\x3f\x1f\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\x83" "\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x5f\x08\x33\x91\xff\x01" "\x00\x00\xa0\x07\x9c\x9b\xd7\x56\x31\xf7\x7f\x31\xcc\xa4\x22\xf9\x5f" "\xff\x5f\xff\x5f\xff\x5f\xff\x7f\x11\xfb\xff\x2b\x32\xfd\xff\x44\xff" "\x7f\x55\xed\x4f\xfd\x7f\xfd\xff\x76\x7a\xa9\xff\xdf\xea\x1c\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\x7f\xda\xeb\xb6\xfe\x7f\xcc\xfd\x0f\x85\x99\x54" "\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\xff\x70\x98\x89\xfc\x0f\x00\x00" "\x00\xa5\x11\x73\xff\x97\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb" "\x7f\x2b\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xdf\xe7\xff" "\xeb\xff\x2f\x25\xfd\x7f\xfd\xff\x76\x7a\xa9\xff\xdf\x8a\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\x3f\xed\x75\x5b\xff\x3f\xe6\xfe\xdf\x0e\x33\xa9\x48" "\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\x77\xc2\x4c\xe4\x7f\x00\x00\x00" "\x28\x8d\x98\xfb\x7f\x37\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff" "\x91\x30\x93\x8a\xe4\xff\xa2\xff\xff\xf0\x41\xfd\xff\x82\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\x7f\xa4\xff\xbf\x38\xf4\xff\xf5\xff\xdb\xd1\xff\xd7" "\xff\xef\xe5\xf5\xeb\xff\xeb\xff\xd3\x59\xb7\xf5\xff\x63\xee\xff\x72" "\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\xbf\x17\x66\x22\xff" "\x03\x00\x00\x40\x69\xc4\xdc\xbf\x3f\xcc\x44\xfe\x07\x00\x00\x80\xd2" "\x88\xb9\xff\xd1\x30\x93\x8a\xe4\x7f\x9f\xff\xaf\xff\xaf\xff\xaf\xff" "\x7f\x21\xfd\xff\x55\x2d\x4e\xd7\xff\x2f\xe8\xff\xb7\xa6\xff\xaf\xff" "\xdf\x8e\xfe\x7f\x99\xfb\xff\x2b\x16\x65\x8d\xcb\xb7\xfe\xb9\x9e\xb0" "\x06\xd3\xdf\xf4\xff\xf5\xff\xe9\xac\xdb\xfa\xff\x31\xf7\x1f\x08\x33" "\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\xf7\xc3\x4c\xe4\x7f\x00" "\x00\x00\x28\x8d\x98\xfb\x0f\x86\x99\xc8\xff\x00\x00\x00\x50\x1a\x31" "\xf7\x1f\x0a\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\x91" "\xcf\xff\x1f\xca\x96\xa2\xff\x3f\xad\xff\xbf\xd4\x4a\xd2\xff\x7f\x47" "\xff\xbf\xa0\xff\xdf\x48\xff\xdf\xe7\xff\xeb\xff\xeb\xff\xd3\x5e\xb7" "\xf5\xff\x63\xee\x9f\x0c\x33\xa9\x48\xfe\x07\x00\x00\x80\x5e\x37\x9f" "\x77\x1d\x8d\xb9\xff\x70\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff" "\x91\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xc7\xc2\x4c\x2a\x92" "\xff\xbb\xb1\xff\x7f\x9d\xfe\xbf\xfe\xbf\xfe\x7f\xba\x1e\xfd\x7f\x9f" "\xff\xaf\xff\xdf\x9e\xcf\xff\xd7\xff\xcf\xf4\xff\x2f\xda\x72\xf7\xe7" "\x7b\x7d\xfd\xfa\xff\xfa\xff\x74\xd6\x6d\xfd\xff\x98\xfb\x8f\x86\x99" "\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\xff\x95\x30\x13\xf9\x1f\x00" "\x00\x00\x4a\x23\xe6\xfe\xaf\x86\x99\xc8\xff\x00\x00\x00\xd0\x73\x56" "\xce\x71\x7a\xcc\xfd\xc7\xc2\x4c\x2a\x92\xff\xbb\xb1\xff\x9f\xe9\xff" "\xeb\xff\xeb\xff\xa7\xeb\xd1\xff\xd7\xff\xd7\xff\x6f\x4f\xff\x5f\xff" "\x3f\xd3\xff\xbf\x68\xcb\xdd\x9f\xef\xf5\xf5\x2f\x6a\xff\x7f\x85\xfe" "\x3f\xe5\xd4\x6d\xfd\xff\x98\xfb\x8f\x87\x99\x54\x24\xff\x03\x00\x00" "\x40\x15\xc4\xdc\x7f\x22\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff" "\x64\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xa9\x30\x93\x9e\xcc" "\xff\x7d\x73\xf6\x76\xe7\xa2\xff\xaf\xff\xdf\x6d\xfd\xff\xfa\xe6\x65" "\xa9\xfb\xff\x2b\xf5\xff\xf5\xff\xf5\xff\x17\x83\xfe\xbf\xfe\x7f\xa6" "\xff\x7f\xd1\x6a\xfd\xf9\x0f\x67\x66\x66\xf4\xff\x97\xbf\xff\xef\xf3" "\xff\x29\xa9\x6e\xeb\xff\xc7\xdc\xff\x07\x61\x26\x3d\x99\xff\x01\x00" "\x00\x80\x56\x62\xee\x3f\x1d\x66\x22\xff\x03\x00\x00\xff\xcf\xde\x7d" "\xf6\xd8\x71\x57\x71\x1c\xbf\xb6\x12\x3b\x11\x10\x9e\x23\x5e\x0b\x20" "\xde\x07\x8f\x79\x01\xf4\x96\x98\xde\x42\xaf\xa1\x85\x1a\x7a\xef\xbd" "\x85\x0e\xa1\xd7\xd0\x7b\x6f\xa1\x84\x22\x05\x69\xf7\x9c\x93\x6c\x6c" "\xcf\x78\x2f\xbe\xbe\x33\xff\xf3\xf9\x3c\x39\x2c\xd9\xf5\x4e\xb0\x49" "\xf4\xd3\xea\xab\x01\x86\x91\xbb\xff\x01\x71\x8b\xfd\x0f\x00\x00\x00" "\xc3\xc8\xdd\xff\xc0\xb8\x65\x7a\xff\x9f\xdc\xed\x53\x5d\x3a\xfa\x7f" "\xfd\xff\xd2\xfa\xff\xb6\xef\xff\xbf\x4c\xff\x9f\xf4\xff\xfa\xff\xe3" "\xd0\xff\xeb\xff\x37\xfa\xff\xad\xed\xbb\x9f\x5f\xfb\xf3\xeb\xff\xf5" "\xff\xcc\x5b\x5a\xff\x9f\xbb\xff\x41\x71\x8b\x9f\xff\x03\x00\x00\xc0" "\x30\x72\xf7\x3f\x38\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x1f\x12" "\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x0f\x8d\x5b\x9a\xec\xff\x4b" "\xdb\xff\xdf\xf7\xc8\x47\xfa\x7f\xfd\xff\x66\xab\xfe\xff\x74\x7d\xed" "\x50\xfd\xbf\xf7\xff\xdf\xfe\xfb\xaa\xff\xd7\xff\x1f\x43\xd7\xfe\x3f" "\xff\x49\xa8\xff\x3f\xa4\xff\xdf\xce\xbe\xfb\xf9\xb5\x3f\xbf\xfe\x5f" "\xff\xcf\xbc\xa5\xf5\xff\xb9\xfb\x1f\x16\xb7\x34\xd9\xff\x00\x00\x00" "\xd0\x41\xee\xfe\x87\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x23" "\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x91\x71\x4b\x93\xfd\xef" "\xfd\xff\xfa\xff\xf5\xf5\xff\x83\xbe\xff\x5f\xff\x5f\xf4\xff\xfa\xff" "\xe3\xe8\xda\xff\x27\xfd\xff\x21\xfd\xff\x76\xf6\xdd\xcf\xaf\xfd\xf9" "\xf5\xff\xfa\x7f\xe6\x2d\xad\xff\xcf\xdd\xff\xa8\xb8\xa5\xc9\xfe\x07" "\x00\x00\x80\x0e\x72\xf7\x5f\x1d\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc" "\xfd\xd7\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x99\xb8\xa5\xc9" "\xfe\x1f\xb7\xff\x3f\x3d\xf9\xbd\xf5\xff\x87\xf4\xff\xfa\xff\x8d\xfe" "\x5f\xff\xbf\x63\xfa\x7f\xfd\xff\x14\xfd\xff\x72\xfb\xff\xdb\xf4\xff" "\xb3\xdf\x5f\xff\xaf\xff\x67\xde\xd2\xfa\xff\x33\xd7\x6e\x0e\x76\xff" "\xe1\xb7\xe9\xb7\xff\x01\x00\x00\xa0\x83\xdc\xfd\x8f\x89\x5b\xec\x7f" "\x00\x00\x00\x18\x46\xee\xfe\xc7\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23" "\x77\xff\xe3\xe2\x96\x26\xfb\x7f\xdc\xfe\x7f\x9a\xfe\xff\x90\xfe\x5f" "\xff\xbf\xd1\xff\xeb\xff\x77\x4c\xff\xaf\xff\x9f\xa2\xff\x5f\x6e\xff" "\xef\xfd\xff\xfa\xff\xb9\xaf\xd7\xff\x73\x21\x96\xd6\xff\xe7\xee\x7f" "\x7c\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x9f\x10\xb7\xd8\xff" "\x00\x00\x00\x30\x8c\xdc\xfd\x4f\x8c\x5b\xec\x7f\x00\x00\x00\x18\x46" "\xee\xfe\x27\xc5\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff" "\xf5\xff\xbb\xa4\xff\xd7\xff\x4f\x59\x49\xff\x1f\xbf\xc4\xd9\xbf\x3d" "\xfa\xff\xa1\xfb\xff\xfb\xdf\x73\xe6\xeb\xcf\xdb\xff\x9f\xd8\xe8\xff" "\xf5\xff\x84\xa5\xf5\xff\xb9\xfb\x9f\x1c\xb7\x34\xd9\xff\x00\x00\x00" "\xd0\x41\xee\xfe\xa7\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x53" "\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xda\xb8\xa5\xc9\xfe\xd7" "\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\x97\xf4\xff\xfa\xff\x29" "\x2b\xe9\xff\xcf\x4b\xff\x3f\x74\xff\x3f\xfb\xfd\xbd\xff\x5f\xff\xcf" "\xbc\xa5\xf5\xff\xb9\xfb\x9f\x16\xb7\x1c\x19\x7e\xa7\x8f\xf9\x77\x09" "\x00\x00\x00\x2c\x49\xee\xfe\xa7\xc7\x2d\x4d\x7e\xfe\x0f\x00\x00\x00" "\x1d\xe4\xee\x7f\x46\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f\x33" "\x6e\x69\xb2\xff\xf5\xff\xf3\xfd\xff\xd5\x77\x9b\xff\xf5\xf4\xff\xe7" "\x7e\x7e\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xaf\xa0\xff\xbf\xe1\x1c" "\x9f\xa8\xff\xbf\x20\xfa\xff\x46\xfd\xff\x95\x67\x7f\xbd\xfe\x5f\xff" "\xcf\xbc\xa5\xf5\xff\xb9\xfb\x9f\x15\xb7\x34\xd9\xff\x00\x00\x00\xd0" "\x41\xee\xfe\x67\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x73\xe2" "\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xb9\x71\xcb\x7d\x36\x9b\x0b" "\xcc\xd8\x57\x4d\xff\xef\xfd\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\x4b" "\xfa\xff\x15\xf4\xff\xe7\xa2\xff\xbf\x20\xfa\xff\x46\xfd\xff\x39\xe8" "\xff\xf5\xff\xcc\x5b\x5a\xff\x9f\xbb\xff\x79\x71\x8b\x9f\xff\x03\x00" "\x00\xc0\x30\x72\xf7\x3f\x3f\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb" "\x5f\x10\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x2f\x8c\x5b\x9a\xec" "\x7f\xfd\xff\x7a\xfa\xff\xcb\xf4\xff\x23\xf4\xff\xf7\xb8\xf1\xfa\xfb" "\xe9\xff\xe3\xaf\xeb\xff\xf5\xff\x17\x83\xfe\x5f\xff\xbf\xd1\xff\x6f" "\x6d\xdf\xfd\xfc\xda\x9f\x5f\xff\xaf\xff\x67\xde\xd2\xfa\xff\xdc\xfd" "\xd7\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x45\x71\x8b\xfd" "\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xe2\xb8\xc5\xfe\x07\x00\x00\x80\x61" "\xe4\xee\x7f\x49\xdc\xd2\x64\xff\xeb\xff\xd7\xd3\xff\x7b\xff\xff\x10" "\xfd\xbf\xf7\xff\x2f\xb8\xff\x7f\x74\xfc\x79\x4c\xfa\xff\x8b\x63\xf0" "\xfe\xff\xe6\xcd\x66\xa3\xff\xdf\x6f\xff\x7f\xdd\x55\xfa\xff\xad\xed" "\xbb\x9f\xdf\xd3\xf3\x9f\xbc\x58\xcf\xaf\xff\xd7\xff\x33\x6f\x69\xfd" "\x7f\xee\xfe\x97\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x65" "\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\x7f\x7d\xdc\x62\xff\x03\x00" "\x00\xc0\x30\x72\xf7\xbf\x3c\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf" "\xfe\x5f\xff\xef\xfd\xff\xbb\x34\x78\xff\xef\xfd\xff\xfb\xef\xff\x0f" "\xe8\xff\xb7\xd3\xb4\xff\xbf\x68\xcf\xaf\xff\xd7\xff\x33\x6f\x69\xfd" "\x7f\xee\xfe\x57\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x95" "\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xaa\xb8\xc5\xfe\x07\x00" "\x00\x80\x55\xbb\x63\x07\x96\xbb\xff\xd5\x71\x4b\x93\xfd\xaf\xff\xd7" "\xff\xeb\xff\xcf\xd7\xff\x5f\xaf\xff\xbf\x13\xfd\xbf\xfe\x7f\x1b\xfa" "\x7f\xfd\xff\x14\xfd\xbf\xfe\x7f\xcd\xcf\xaf\xff\xd7\xff\x33\x6f\x69" "\xfd\x7f\xee\xfe\xd7\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff" "\x86\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x6d\xdc\x62\xff\x03" "\x00\x00\xc0\x30\x72\xf7\xbf\x2e\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd" "\xbf\xf7\xff\xeb\xff\x57\xd5\xff\xdf\x76\xe7\xff\xbd\x96\x4e\xff\xaf" "\xff\x9f\xa2\xff\xd7\xff\xaf\xf9\xf9\xf5\xff\xfa\x7f\xe6\x2d\xad\xff" "\xcf\xdd\xff\xfa\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xbf\x21" "\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xdf\x18\xb7\xd8\xff\x00\x00" "\x00\x30\x8c\xdc\xfd\x6f\x8a\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf" "\xff\xd7\xff\xaf\xaa\xff\x5f\x1d\xfd\xbf\xfe\x7f\x8a\xfe\x5f\xff\xbf" "\xe6\xe7\xd7\xff\xeb\xff\x99\xb7\xb4\xfe\x3f\x77\xff\x9b\xe3\x96\x26" "\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x96\xb8\xc5\xfe\x07\x00\x00\x80" "\x61\xe4\xee\x7f\x6b\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xbf\x2d" "\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf\x25" "\xfd\xbf\xfe\x7f\x8a\xfe\x5f\xff\xbf\xe6\xe7\xd7\xff\xeb\xff\x99\xb7" "\xb4\xfe\x3f\x77\xff\xdb\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd" "\xff\x8e\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x67\xdc\x62\xff" "\x03\x00\x00\xc0\x30\x72\xf7\xbf\x2b\x6e\x69\xb2\xff\xf5\xff\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf\x25\xfd\xbf\xfe\x7f\xca\xfa\xfa\xff" "\xcb\x8f\x7c\xa4\xff\xd7\xff\xeb\xff\xf5\xff\x4c\x5b\x5a\xff\x9f\xbb" "\xff\xdd\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x4f\xdc\x62" "\xff\x03\x00\x00\xc0\x30\x72\xf7\xbf\x37\x6e\xb1\xff\x01\x00\x00\x60" "\x18\xb9\xfb\xdf\x17\xb7\x34\xd9\xff\xfa\xff\xce\xfd\xff\x89\x33\x9b" "\x8d\xfe\x7f\xa3\xff\xd7\xff\xeb\xff\x77\x4a\xff\xaf\xff\x9f\xb2\xbe" "\xfe\xff\x28\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xda\xd2\xfa\xff\xdc\xfd" "\xef\x8f\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x07\xe2\x16\xfb" "\x1f\x00\x00\x00\x86\x91\xbb\xff\x83\x71\x8b\xfd\x0f\x00\x00\x00\xc3" "\xc8\xdd\xff\xa1\xb8\xa5\xc9\xfe\xdf\xb2\xff\xbf\x57\x7e\x9a\xfe\xff" "\xd0\x3a\xfb\x7f\xef\xff\xd7\xff\x1f\x7d\x4e\xfd\xbf\xfe\x7f\x17\xf4" "\xff\xfa\xff\x29\xfa\x7f\xfd\xff\x9a\x9f\x7f\xc9\xfd\xff\x49\xfd\x3f" "\x0b\xb1\xf7\xfe\x3f\x3f\x31\x3e\xce\xdd\xff\xe1\xb8\xa5\xc9\xfe\x07" "\x00\x00\x80\x0e\x72\xf7\x7f\x24\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9" "\xfb\x3f\x1a\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x1f\x8b\x5b\x9a" "\xec\x7f\xef\xff\xd7\xff\xeb\xff\xf5\xff\x77\xec\xff\x4f\x9d\xfb\x8f" "\xf8\x01\xfd\xbf\xfe\x7f\x1b\xfa\x7f\xfd\xff\x14\xfd\xbf\xfe\x7f\xcd" "\xcf\xbf\xe4\xfe\xdf\xfb\xff\x59\x8a\xbd\xf7\xff\x77\xfa\x38\x77\xff" "\xc7\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x89\xb8\xc5\xfe" "\x07\x00\x00\x80\x61\xe4\xee\xff\x64\xdc\x62\xff\x03\x00\x00\xc0\x30" "\x72\xf7\xdf\x18\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xef\xfd" "\xff\xfa\xff\x5d\xd2\xff\xeb\xff\xa7\xe8\xff\x57\xd7\xff\x5f\x76\xc7" "\x0f\xf4\xff\xfa\x7f\xfd\x3f\x73\x96\xd6\xff\xe7\xee\xff\x54\xdc\xd2" "\x64\xff\x03\x00\x00\xc0\xca\x5d\x79\x21\x9f\x94\xbb\xff\xd3\x71\x8b" "\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x99\xb8\xc5\xfe\x07\x00\x00\x80" "\x61\xe4\xee\xff\x6c\xdc\xd2\x64\xff\x6f\xd3\xff\x9f\xd6\xff\x9f\x45" "\xff\x7f\xee\xe7\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x85\xf5\xff\x57\x6c" "\xfb\x7d\xf4\xff\x87\xf4\xff\x47\x35\xec\xff\x8f\xd0\xff\xeb\xff\xf5" "\xff\xcc\x59\x5a\xff\x9f\xbb\xff\x73\x71\x4b\x93\xfd\x0f\x00\x00\x00" "\x1d\xe4\xee\xff\x7c\xdc\x62\xff\x03\x00\x00\xc0\x3a\xdc\x65\xfe\x53" "\x72\xf7\x7f\x21\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xbf\x18\xb7" "\x34\xd9\xff\xde\xff\xaf\xff\xd7\xff\x1f\xab\xff\xbf\x46\xff\xaf\xff" "\xd7\xff\x1f\xcf\xc2\xfa\xff\xad\xe9\xff\x0f\xed\xae\xff\xbf\xf7\xa6" "\x47\xff\x7f\x79\xfc\x07\xfd\xff\x08\xcf\xaf\xff\xd7\xff\x33\x6f\x69" "\xfd\x7f\xee\xfe\x2f\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff" "\xa6\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x72\xdc\x62\xff\x03" "\x00\x00\xc0\x30\x72\xf7\x7f\x25\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd" "\xbf\xf7\xff\xeb\xff\xf5\xff\xbb\xa4\xff\x3f\x6e\xff\x7f\xea\x58\xcf" "\x35\x4e\xff\xef\xfd\xff\x1b\xfd\xff\xea\x9e\x5f\xff\xaf\xff\x67\xde" "\xd2\xfa\xff\xdc\xfd\x5f\x8d\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77" "\xff\xd7\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xeb\x71\x8b\xfd" "\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x8d\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff" "\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\x97\xf4\xff\xde\xff\x3f\x45\xff\xaf" "\xff\x5f\xf3\xf3\xeb\xff\xf5\xff\xcc\x5b\x5a\xff\x9f\xbb\xff\x9b\x71" "\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x56\xdc\x62\xff\x03\x00" "\x00\xc0\x30\x72\xf7\x7f\x3b\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb" "\xbf\x13\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x5f\x48" "\xff\x7f\xe2\x8c\xfe\x7f\x0b\xfa\x7f\xfd\xff\x46\xff\xbf\xb5\x7d\xf7" "\xf3\x6b\x7f\x7e\xfd\xbf\xfe\x9f\x79\x4b\xeb\xff\x73\xf7\x7f\x37\x6e" "\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xdf\x8b\x5b\xec\x7f\x00\x00" "\x00\x18\x46\xee\xfe\x9b\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff" "\xfb\x71\x4b\x93\xfd\x3f\xd3\xff\x57\x03\xa7\xff\x9f\xa6\xff\xdf\x1c" "\xfc\xff\x47\xff\x7f\xf4\xd7\xd7\xff\xeb\xff\xbd\xff\x5f\xff\xaf\xff" "\x9f\xa6\xff\xd7\xff\x5f\xc4\xe7\xcf\xdf\x7e\xfd\xbf\xfe\x9f\x05\x59" "\x5a\xff\x9f\xbb\xff\x07\x71\xcb\xed\xc3\xef\xd4\xf1\xff\x2e\x01\x00" "\x00\x80\x25\xc9\xdd\xff\xc3\xb8\xa5\xc9\xcf\xff\x01\x00\x00\xa0\x83" "\xdc\xfd\x3f\x8a\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x1f\xc7\x2d" "\x4d\xf6\xbf\xf7\xff\xeb\xff\xbd\xff\x5f\xff\xaf\xff\xd7\xff\xef\x92" "\xfe\x5f\xff\x3f\x45\xff\xaf\xff\x5f\xf3\xf3\xeb\xff\xf5\xff\xcc\x5b" "\x5a\xff\x9f\xbb\xff\x27\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee" "\xff\x69\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x2c\x6e\xb1\xff" "\x01\x00\x00\x60\x18\xb9\xfb\x7f\x1e\xb7\x34\xd9\xff\xfa\xff\x51\xfb" "\xff\x5b\xee\x7a\xf8\x57\xf5\xff\xfa\x7f\xfd\xff\xdc\xf3\xeb\xff\x77" "\x4b\xff\xaf\xff\x9f\xa2\xff\xd7\xff\xaf\xf9\xf9\xf5\xff\xfa\x7f\xe6" "\x2d\xad\xff\xcf\xdd\xff\x8b\xb8\xa5\xc9\xfe\x07\x00\x00\x80\xf5\x3b" "\x39\xfb\x19\xb9\xfb\x7f\x19\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd" "\xbf\x8a\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x5f\xc7\x2d\x4d\xf6" "\xbf\xfe\x7f\xd4\xfe\xdf\xfb\xff\xf5\xff\xfa\x7f\xfd\xff\x32\xe8\xff" "\xf5\xff\x53\xf4\xff\xfa\xff\x35\x3f\xbf\xfe\x5f\xff\xcf\xbc\xa5\xf5" "\xff\xb9\xfb\x7f\x13\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xdf" "\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xef\xe2\x16\xfb\x1f\x00" "\x00\x00\x86\x91\xbb\xff\xf7\x71\x4b\x93\xfd\xaf\xff\xdf\x45\xff\x7f" "\x93\xfe\x5f\xff\x7f\x40\xff\xaf\xff\xd7\xff\xaf\xbf\xff\x3f\x11\xff" "\xc0\xd1\xff\x1f\xd2\xff\x1f\xa5\xff\xd7\xff\xeb\xff\xf5\xff\x4c\x5b" "\x5a\xff\x9f\xbb\xff\x0f\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee" "\xff\x63\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x29\x6e\xb1\xff" "\x01\x00\x00\x60\x18\xb9\xfb\xff\x1c\xb7\x34\xd9\xff\xe3\xf4\xff\xf1" "\xa4\x8b\xe8\xff\xbd\xff\x5f\xff\x7f\x48\xff\xaf\xff\xd7\xff\xaf\xbf" "\xff\x4f\xfa\xff\x43\xfa\xff\xa3\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x69" "\x4b\xeb\xff\x73\xf7\xff\x25\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc" "\xfd\x7f\x8d\x5b\xc3\xdf\xfe\x07\x00\x00\x80\x61\xe4\xee\xbf\x25\x6e" "\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xff\x16\xb7\x34\xd9\xff\xe3\xf4" "\xff\x41\xff\xaf\xff\xd7\xff\xeb\xff\xe3\xbf\x5f\x60\xff\x7f\xf0\xa9" "\xfa\xff\x8b\x4b\xff\xaf\xff\xdf\xe8\xff\xb7\xb6\xef\x7e\x7e\xed\xcf" "\xaf\xff\xd7\xff\x33\x6f\x69\xfd\x7f\xee\xfe\xbf\xc7\x2d\x4d\xf6\x3f" "\x00\x00\x00\x74\x90\xbb\xff\x1f\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8" "\xdd\xff\xcf\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xbf\x35\x6e\x39" "\x6b\xff\x9f\xba\x84\x4f\x75\xe9\xe8\xff\xf5\xff\xbb\xeb\xff\x6f\xbb" "\xfb\x66\xa3\xff\xd7\xff\xeb\xff\xbd\xff\x5f\xff\xaf\xff\x3f\x3f\xfd" "\xbf\xfe\x7f\xcd\xcf\xaf\xff\xd7\xff\x33\x6f\x69\xfd\xff\xad\x07\xff" "\xae\xbd\x62\xf3\xaf\x83\xaf\xf6\xf3\x7f\x00\x00\x00\x18\x51\xee\xfe" "\x7f\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x7f\xe2\x16\xfb\x1f" "\x00\x00\x00\x86\x91\xbb\xff\xbf\x71\x4b\x93\xfd\xaf\xff\xd7\xff\x7b" "\xff\xff\xff\xd5\xff\x5f\x35\xf5\xe7\x41\xff\xaf\xff\xd7\xff\xeb\xff" "\xf5\xff\xd3\xf4\xff\xfa\xff\x35\x3f\xbf\xfe\x5f\xff\xcf\xbc\xa5\xf5" "\xff\xb9\xfb\xff\x17\x00\x00\xff\xff\x6a\xc3\x97\x4f", 24629); syz_mount_image(/*fs=*/0x20000040, /*dir=*/0x20000240, /*flags=MS_RDONLY|MS_NOSUID|MS_NODIRATIME*/ 0x803, /*opts=*/0x20000280, /*chdir=*/2, /*size=*/0x6035, /*img=*/0x200151c0); break; case 1: // prlimit64 arguments: [ // pid: pid (resource) // res: rlimit_type = 0xe (8 bytes) // new: ptr[in, rlimit] { // rlimit { // soft: intptr = 0x8 (8 bytes) // hard: intptr = 0x8b (8 bytes) // } // } // old: nil // ] *(uint64_t*)0x20000140 = 8; *(uint64_t*)0x20000148 = 0x8b; syscall(__NR_prlimit64, /*pid=*/0, /*res=RLIMIT_RTPRIO*/ 0xeul, /*new=*/0x20000140ul, /*old=*/0ul); break; case 2: // getpid arguments: [ // ] // returns pid res = syscall(__NR_getpid); if (res != -1) r[0] = res; break; case 3: // sched_setscheduler arguments: [ // pid: pid (resource) // policy: sched_policy = 0x2 (8 bytes) // prio: ptr[in, int32] { // int32 = 0x7 (4 bytes) // } // ] *(uint32_t*)0x20000200 = 7; syscall(__NR_sched_setscheduler, /*pid=*/r[0], /*policy=SCHED_RR*/ 2ul, /*prio=*/0x20000200ul); break; case 4: // mmap arguments: [ // addr: VMA[0xb36000] // len: len = 0xb36000 (8 bytes) // prot: mmap_prot = 0xb635773f06ebbeee (8 bytes) // flags: mmap_flags = 0x8031 (8 bytes) // fd: fd (resource) // offset: intptr = 0x6770c000 (8 bytes) // ] syscall( __NR_mmap, /*addr=*/0x20000000ul, /*len=*/0xb36000ul, /*prot=PROT_GROWSUP|PROT_SEM|PROT_WRITE|PROT_EXEC|0xb635773f04ebbee0*/ 0xb635773f06ebbeeeul, /*flags=MAP_POPULATE|MAP_FIXED|MAP_ANONYMOUS|0x1*/ 0x8031ul, /*fd=*/(intptr_t)-1, /*offset=*/0x6770c000ul); break; case 5: // socketpair$unix arguments: [ // domain: const = 0x1 (8 bytes) // type: unix_socket_type = 0x2 (8 bytes) // proto: const = 0x0 (4 bytes) // fds: ptr[out, unix_pair] { // unix_pair { // fd0: sock_unix (resource) // fd1: sock_unix (resource) // } // } // ] res = syscall(__NR_socketpair, /*domain=*/1ul, /*type=SOCK_DGRAM*/ 2ul, /*proto=*/0, /*fds=*/0x20000100ul); if (res != -1) { r[1] = *(uint32_t*)0x20000100; r[2] = *(uint32_t*)0x20000104; } break; case 6: // sendmmsg$unix arguments: [ // fd: sock_unix (resource) // mmsg: ptr[in, array[send_mmsghdr_un]] { // array[send_mmsghdr_un] { // } // } // vlen: len = 0x651 (8 bytes) // f: send_flags = 0x0 (8 bytes) // ] syscall(__NR_sendmmsg, /*fd=*/r[2], /*mmsg=*/0x20000000ul, /*vlen=*/0x651ul, /*f=*/0ul); break; case 7: // recvmmsg arguments: [ // fd: sock (resource) // mmsg: ptr[in, array[recv_mmsghdr]] { // array[recv_mmsghdr] { // } // } // vlen: len = 0x10106 (8 bytes) // f: recv_flags = 0x2 (8 bytes) // timeout: nil // ] syscall(__NR_recvmmsg, /*fd=*/r[1], /*mmsg=*/0x200000c0ul, /*vlen=*/0x10106ul, /*f=MSG_PEEK*/ 2ul, /*timeout=*/0ul); break; case 8: // fspick arguments: [ // dfd: fd_dir (resource) // path: ptr[in, buffer] { // buffer: {2e 00} (length 0x2) // } // flags: fspick_flags = 0x0 (8 bytes) // ] // returns fd_fscontext memcpy((void*)0x20000000, ".\000", 2); res = syscall(__NR_fspick, /*dfd=*/0xffffff9c, /*path=*/0x20000000ul, /*flags=*/0ul); if (res != -1) r[3] = res; break; case 9: // fsconfig$FSCONFIG_CMD_RECONFIGURE arguments: [ // fd: fd_fscontext (resource) // cmd: const = 0x7 (8 bytes) // key: const = 0x0 (8 bytes) // value: const = 0x0 (8 bytes) // aux: const = 0x0 (8 bytes) // ] syscall(__NR_fsconfig, /*fd=*/r[3], /*cmd=*/7ul, /*key=*/0ul, /*value=*/0ul, /*aux=*/0ul); break; case 10: // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0x101042 (4 bytes) // mode: open_mode = 0x91 (2 bytes) // ] // returns fd memcpy((void*)0x20000040, "./file1\000", 8); syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000040ul, /*flags=O_SYNC|O_CREAT|O_RDWR*/ 0x101042, /*mode=S_IXOTH|S_IWGRP|S_IWUSR*/ 0x91); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*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=*/0x21000000ul, /*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; }