// https://syzkaller.appspot.com/bug?id=0f2cf7b72ba525cc8d9f12a776ab45f440dadac4 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 1; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } void execute_call(int call) { switch (call) { case 0: // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x2010880 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {67 69 64 3d} (length 0x4) // } // union ANYUNION { // ANYRESHEX: ANYRES64 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {2c 6e 6f 69 6e 74 65 67 72 69 74 79 2c 6e 6f // 64 69 73 63 61 72 64 2c 6e 6f 64 69 73 63 61 72 64 2c 65 72 72 // 6f 72 73 3d 63 6f 6e 74 69 6e 75 65 2c 69 6f 63 68 61 72 73 65 // 74 3d 69 73 6f 38 38 35 39 2d 33 2c 64 69 73 63 61 72 64 00 72 // 65 73 69 7a 65 2c 71 75 6f 74 61 2c 75 73 72 71 75 6f 74 61 2c // 72 65 73 69 7a 65 3d 30 78 30 30 30 30 30 30 30 30 30 30 30 30 // 30 3d 30 37 2c 69 6e 74 65 67 72 69 74 79 2c 64 69 73 63 61 72 // 64 2c 6e 6f 71 75 6f 74 61 2c 6e 6f 71 75 6f 74 61 2c 65 75 69 // 64 3c 8c 72 c5 bf 76 2a b3 dd 51 53 bd d5 5a 1a 29 1e a0 69 6f // 2f 1f 0a 7b 31 c9 1b cc f7 f4 70 75 02 47 8f 37 59 9e b1 3d 60 // 65 36 83 e6 a8 58 f2 a5 45 86 fd 6d c9 da 99 07 8d 3e 36 5b 7f // e2 d5 2d 05 91 c9 c0 49 67 3c 67 20 ed 91 bb 2b 44 83 10 34 1b // d4 cf 4f} (length 0xf9) // } // union ANYUNION { // ANYRESDEC: ANYRES64 (resource) // } // union ANYUNION { // ANYRES16: ANYRES16 (resource) // } // union ANYUNION { // ANYRESHEX: ANYRES64 (resource) // } // union ANYUNION { // ANYRESOCT: ANYRES64 (resource) // } // union ANYUNION { // ANYRESOCT: ANYRES64 (resource) // } // union ANYUNION { // ANYRESDEC: ANYRES64 (resource) // } // union ANYUNION { // ANYRES64: ANYRES64 (resource) // } // } // } // chdir: int8 = 0xfe (1 bytes) // size: len = 0x60ee (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x60ee) // } // ] // returns fd_dir memcpy((void*)0x20000180, "jfs\000", 4); memcpy((void*)0x20000000, "./file0\000", 8); memcpy((void*)0x200008c0, "gid=", 4); sprintf((char*)0x200008c4, "0x%016llx", (long long)0); memcpy( (void*)0x200008d6, "\x2c\x6e\x6f\x69\x6e\x74\x65\x67\x72\x69\x74\x79\x2c\x6e\x6f\x64\x69" "\x73\x63\x61\x72\x64\x2c\x6e\x6f\x64\x69\x73\x63\x61\x72\x64\x2c\x65" "\x72\x72\x6f\x72\x73\x3d\x63\x6f\x6e\x74\x69\x6e\x75\x65\x2c\x69\x6f" "\x63\x68\x61\x72\x73\x65\x74\x3d\x69\x73\x6f\x38\x38\x35\x39\x2d\x33" "\x2c\x64\x69\x73\x63\x61\x72\x64\x00\x72\x65\x73\x69\x7a\x65\x2c\x71" "\x75\x6f\x74\x61\x2c\x75\x73\x72\x71\x75\x6f\x74\x61\x2c\x72\x65\x73" "\x69\x7a\x65\x3d\x30\x78\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30" "\x30\x30\x3d\x30\x37\x2c\x69\x6e\x74\x65\x67\x72\x69\x74\x79\x2c\x64" "\x69\x73\x63\x61\x72\x64\x2c\x6e\x6f\x71\x75\x6f\x74\x61\x2c\x6e\x6f" "\x71\x75\x6f\x74\x61\x2c\x65\x75\x69\x64\x3c\x8c\x72\xc5\xbf\x76\x2a" "\xb3\xdd\x51\x53\xbd\xd5\x5a\x1a\x29\x1e\xa0\x69\x6f\x2f\x1f\x0a\x7b" "\x31\xc9\x1b\xcc\xf7\xf4\x70\x75\x02\x47\x8f\x37\x59\x9e\xb1\x3d\x60" "\x65\x36\x83\xe6\xa8\x58\xf2\xa5\x45\x86\xfd\x6d\xc9\xda\x99\x07\x8d" "\x3e\x36\x5b\x7f\xe2\xd5\x2d\x05\x91\xc9\xc0\x49\x67\x3c\x67\x20\xed" "\x91\xbb\x2b\x44\x83\x10\x34\x1b\xd4\xcf\x4f", 249); sprintf((char*)0x200009cf, "%020llu", (long long)0); *(uint16_t*)0x200009e3 = -1; sprintf((char*)0x200009e5, "0x%016llx", (long long)-1); sprintf((char*)0x200009f7, "%023llo", (long long)-1); sprintf((char*)0x20000a0e, "%023llo", (long long)-1); sprintf((char*)0x20000a25, "%020llu", (long long)-1); *(uint64_t*)0x20000a39 = -1; memcpy( (void*)0x20001080, "\x78\x9c\xec\xdd\x4b\x8f\x1c\x57\xd9\x07\xf0\xa7\xaf\x73\xf1\x1b\x67" "\x94\x45\x94\xd7\x42\x68\xe2\x84\x4b\x08\xf1\x35\x18\x43\x80\x24\x0b" "\x58\xb0\xc9\x02\x79\x8b\x6c\x4d\x26\x91\x85\x03\xc8\x36\xc8\x89\x2c" "\x3c\xd1\x6c\x58\xb0\xe2\x13\x80\x90\x58\x22\xc4\x12\xb1\xe0\x03\x64" "\xc1\x96\x1d\x2b\x56\x58\xb2\x91\x40\x59\x51\xa8\x66\xce\xf1\x54\xb7" "\xbb\xdd\x63\xc6\xd3\xd5\x9e\xf3\xfb\x49\xe3\xaa\xa7\x4e\xf5\xf4\xa9" "\xf9\x77\xf5\xc5\x55\xd5\x27\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x80\xf8\xee\x77\xbe\x77\xb6\x13\x11\x97\x7f\x9a\x16" "\xac\x45\xfc\x5f\xf4\x22\xba\x11\x2b\x75\xbd\x1e\x11\x2b\xeb\x6b\x79" "\xfd\x7e\x44\xbc\x10\x3b\xcd\xf1\x7c\x44\x0c\x96\x22\xea\xdb\xef\xfc" "\xf3\x6c\xc4\xeb\x11\xf1\xc9\xf1\x88\x7b\xf7\x6f\x6f\xd4\x8b\xcf\xed" "\xb3\x1f\xdf\xfe\xfd\x5f\x7f\xf3\xfd\x63\xef\xfc\xe5\x77\x83\xd3\xff" "\xfe\xc3\xcd\xde\x1b\xd3\xd6\xbb\x75\xeb\x17\xff\xfa\xe3\x9d\x83\x6d" "\x33\x00\x00\x00\x94\xa6\xaa\xaa\xaa\x93\x3e\xe6\x9f\x48\x9f\xef\xbb" "\x6d\x77\x0a\x00\x98\x8b\xfc\xfa\x5f\x25\x79\xf9\x91\xaf\x7f\xf9\xf7" "\x77\xfe\xb4\x48\xfd\x51\xab\xd5\x6a\xb5\x7a\x0e\x75\x53\x35\xd9\x9d" "\x66\x11\x11\x5b\xcd\xdb\xd4\xef\x19\x1c\x8e\x07\x80\xa7\xcc\x56\x7c" "\xda\x76\x17\x68\x91\xfc\x8b\xd6\x8f\x88\x63\x6d\x77\x02\x58\x68\x9d" "\xb6\x3b\xc0\xa1\xb8\x77\xff\xf6\x46\x27\xe5\xdb\x69\xbe\x1e\xac\xef" "\xb6\xe7\x73\x41\x46\xf2\xdf\xea\x3c\xb8\xbe\x63\xda\x74\x96\xf1\x73" "\x4c\xe6\xf5\xf8\xda\x8e\x5e\x3c\x37\xa5\x3f\x2b\x73\xea\xc3\x22\xc9" "\xf9\x77\xc7\xf3\xbf\xbc\xdb\x3e\x4c\xeb\x1d\x76\xfe\xf3\x32\x2d\xff" "\xe1\xee\xa5\x4f\xc5\xc9\xf9\xf7\xc6\xf3\x1f\x73\x74\xf2\xef\x4e\xcc" "\xbf\x54\x39\xff\xfe\x63\xe5\xdf\x93\x3f\x00\x00\x00\x00\x00\x2c\xb0" "\xfc\xff\xff\x6b\x2d\x1f\xff\x5d\x3a\xf8\xa6\xec\xcb\xa3\x8e\xff\xae" "\xcf\xa9\x0f\x00\x00\x00\x00\x00\x00\x00\xf0\xa4\x1d\x74\xfc\xbf\x07" "\x8c\xff\x07\x00\x00\x00\x0b\xab\xfe\xac\x5e\xfb\xd5\xf1\xbd\x65\xd3" "\xbe\x8b\xad\x5e\x7e\xa9\x13\xf1\xcc\xd8\xfa\x40\x61\xd2\xc5\x32\xab" "\x6d\xf7\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4a\xd2\xdf\x3d" "\x87\xf7\x52\x27\x62\x10\x11\xcf\xac\xae\x56\x55\x55\xff\x34\x8d\xd7" "\x8f\xeb\xa0\xb7\x7f\xda\x95\xbe\xfd\x50\xb2\xb6\x9f\xe4\x01\x00\x60" "\xd7\x27\xc7\xc7\xae\xe5\xef\x44\x2c\x47\xc4\xa5\xf4\x5d\x7f\x83\xd5" "\xd5\xd5\xaa\x5a\x5e\x59\xad\x56\xab\x95\xa5\xfc\x7e\x76\xb8\xb4\x5c" "\xad\x34\x3e\xd7\xe6\x69\xbd\x6c\x69\xb8\x8f\x37\xc4\xfd\x61\x55\xff" "\xb2\xe5\xc6\xed\x9a\x66\x7d\x5e\x9e\xd5\x3e\xfe\xfb\xea\xfb\x1a\x56" "\xbd\x7d\x74\xec\x09\x19\xa4\xbf\xe6\x94\xe6\x96\xc2\x06\x80\x64\xf7" "\xd5\xe8\x9e\x57\xa4\x23\xa6\xaa\x9e\x9d\xf6\xe6\x03\x46\xd8\xff\x8f" "\x1e\xfb\x3f\xfb\xd1\xf6\xe3\x14\x00\x00\x00\x38\x7c\x55\x55\x55\x9d" "\xf4\x75\xde\x27\xd2\x31\xff\x6e\xdb\x9d\x02\x00\xe6\x22\xbf\xfe\x8f" "\x1f\x17\x38\x94\x3a\xe2\x70\x7f\xbf\x5a\xad\x56\xab\xd5\xea\x47\xd6" "\x4d\xd5\x64\x77\x9a\x45\x44\x6c\x35\x6f\x53\xbf\x67\x30\x1c\x3f\x00" "\x3c\x65\xb6\xe2\xd3\xb6\xbb\x40\x8b\xe4\x5f\xb4\x7e\x44\xbc\xd0\x76" "\x27\x80\x85\xd6\x69\xbb\x03\x1c\x8a\x7b\xf7\x6f\x6f\x74\x52\xbe\x9d" "\xe6\xeb\x41\x1a\xdf\x3d\x9f\x0b\x32\x92\xff\x56\x67\xe7\x76\xf9\xf6" "\x93\xa6\xb3\x8c\x9f\x63\x32\xaf\xc7\xd7\x76\xf4\xe2\xb9\x29\xfd\x79" "\x7e\x4e\x7d\x58\x24\x39\xff\xee\x78\xfe\x97\x77\xdb\x87\x69\xbd\xc3" "\xce\x7f\x5e\xa6\xe5\x5f\x6f\xe7\x5a\x0b\xfd\x69\x5b\xce\xbf\x37\x9e" "\xff\x98\xa3\x93\x7f\x77\x62\xfe\xa5\xca\xf9\xf7\x1f\x2b\xff\x9e\xfc" "\x01\x00\x00\x00\x00\x60\x81\xe5\xff\xff\x5f\x73\xfc\x37\x6f\x32\x00" "\x00\x00\x00\x00\x00\x00\x3c\x75\xee\xdd\xbf\xbd\x91\xaf\x7b\xcd\xc7" "\xff\x3f\x33\x61\x3d\xd7\x7f\x1e\x4d\x39\xff\x8e\xfc\x8b\x94\xf3\xef" "\x8e\xe5\xff\xc5\xb1\xf5\x7a\x8d\xf9\xbb\x6f\xef\xe5\xff\xcf\xfb\xb7" "\x37\x7e\x7b\xf3\x1f\xff\x9f\xa7\xfb\xcd\x7f\x29\xcf\x74\xd2\x23\xab" "\x93\x1e\x11\x9d\x74\x4f\x9d\x7e\x9a\x1e\x64\xeb\x1e\xb6\x3d\xe8\x0d" "\xeb\x7b\x1a\x74\xba\xbd\x7e\x3a\xe7\xa7\x1a\xbc\x17\x57\xe3\x5a\x6c" "\xc6\x99\x91\x75\xbb\xe9\xef\xb1\xd7\x7e\x76\xa4\xbd\xee\xe9\x60\xa4" "\xfd\xdc\x48\x7b\xff\xa1\xf6\xf3\x23\xed\x83\xf4\xbd\x03\xd5\x4a\x6e" "\x3f\x15\x1b\xf1\xa3\xb8\x16\xef\xee\xb4\xd7\x6d\x4b\x33\xb6\x7f\x79" "\x46\x7b\x35\xa3\x3d\xe7\xdf\xb3\xff\x17\x29\xe7\xdf\x6f\xfc\xd4\xf9" "\xaf\xa6\xf6\xce\xd8\xb4\x76\xf7\xe3\xee\x43\xfb\x7d\x73\x3a\xe9\x7e" "\xde\xba\xfa\xd9\x9f\x9f\x39\xfc\xcd\x99\x69\x3b\x7a\x0f\xb6\xad\xa9" "\xde\xbe\x93\x2d\xf4\x67\xe7\x6f\x72\x6c\x18\x3f\xb9\xb1\x79\xfd\xd4" "\xad\x2b\x37\x6f\x5e\x3f\x1b\x69\x32\xb2\xf4\x5c\xa4\xc9\x13\x96\xf3" "\x1f\xec\xfc\x2c\xed\x3d\xff\xbf\xb4\xdb\x9e\x9f\xf7\x9b\xfb\xeb\xdd" "\x8f\x87\x8f\x9d\xff\xa2\xd8\x8e\xfe\xd4\xfc\x5f\x6a\xcc\xd7\xdb\xfb" "\xca\x9c\xfb\xd6\x86\x9c\xff\x30\xfd\xe4\xfc\xdf\x4d\xed\x93\xf7\xff" "\xa7\x39\xff\xe9\xfb\xff\xab\x2d\xf4\x07\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x1e\xa5\xaa\xaa\x9d\x4b\x44\xdf\x8a\x88\x0b\xe9" "\xfa\x9f\xb6\xae\xcd\x04\x00\xe6\x2b\xbf\xfe\x57\x49\x5e\xae\x56\xab" "\xd5\x6a\xb5\xfa\xe8\xd5\x4d\xd5\x64\x6f\x36\x8b\x88\xf8\x73\xf3\x36" "\xf5\x7b\x86\x9f\x4d\xfa\x65\x00\xc0\x22\xfb\x4f\x44\xfc\xad\xed\x4e" "\xd0\x1a\xf9\x17\x2c\x7f\xdf\x5f\x3d\x7d\xb9\xed\xce\x00\x73\x75\xe3" "\xc3\x8f\x7e\x70\xe5\xda\xb5\xcd\xeb\x37\xda\xee\x09\x00\x00\x00\x00" "\x00\x00\x00\xf0\xbf\xca\xe3\x7f\xae\x37\xc6\x7f\x7e\x39\x22\xd6\xc6" "\xd6\x1b\x19\xff\xf5\xed\x58\x3f\xe8\xf8\x9f\xfd\x3c\xf3\x60\x80\xd1" "\x27\x3c\xd0\xf7\x14\xdb\xdd\x61\xaf\xdb\x18\x6e\xfc\xc5\xd8\x19\x9f" "\xfb\xd4\xb4\xf1\xbf\x4f\xc6\xa3\xc7\xff\xee\xcf\xb8\xbf\xc1\x8c\xf6" "\xe1\x8c\xf6\xa5\x19\xed\xcb\x13\x97\xee\xa5\x35\xf1\x42\x8f\x86\x9c" "\xff\x8b\x8d\xf1\xce\xeb\xfc\x4f\x8c\x0d\xbf\x5e\xc2\xf8\xaf\xe3\x63" "\xde\x97\x20\xe7\x7f\xb2\xf1\x78\xae\xf3\xff\xc2\xd8\x7a\xcd\xfc\xab" "\x5f\x2f\x5c\xfe\x5b\xfb\x5d\x71\x3b\xba\x23\xf9\x9f\xbe\xf9\xc1\x8f" "\x4f\xdf\xf8\xf0\xa3\xd7\xae\x7e\x70\xe5\xfd\xcd\xf7\x37\x7f\x78\xfe" "\xec\xd9\x33\xe7\x2f\x5c\xb8\x78\xf1\xe2\xe9\xf7\xae\x5e\xdb\x3c\xb3" "\xfb\xef\xe1\xf4\x7a\x01\xe4\xfc\xf3\xd8\xd7\xce\x03\x2d\x4b\xce\x3f" "\x67\x2e\xff\xb2\xe4\xfc\x3f\x97\x6a\xf9\x97\x25\xe7\xff\xf9\x54\xcb" "\xbf\x2c\x39\xff\xfc\x7e\x4f\xfe\x65\xc9\xf9\xe7\xcf\x3e\xf2\x2f\x4b" "\xce\xff\x95\x54\xcb\xbf\x2c\x39\xff\x2f\xa5\x5a\xfe\x65\xc9\xf9\xbf" "\x9a\x6a\xf9\x97\x25\xe7\xff\xe5\x54\xcb\xbf\x2c\x39\xff\xd7\x52\x2d" "\xff\xb2\xe4\xfc\x4f\xa5\x5a\xfe\x65\xc9\xf9\x9f\x4e\xf5\x3e\xf2\xf7" "\xf5\xf0\x47\x48\xce\x3f\x1f\xe1\xb2\xff\x97\x25\xe7\x9f\xcf\x6c\x90" "\x7f\x59\x72\xfe\xe7\x52\x2d\xff\xb2\xe4\xfc\xcf\xa7\x5a\xfe\x65\xc9" "\xf9\xbf\x9e\x6a\xf9\x97\x25\xe7\xff\x95\x54\xcb\xbf\x2c\x39\xff\x0b" "\xa9\x96\x7f\x59\x72\xfe\x5f\x4d\xb5\xfc\xcb\x92\xf3\xbf\x98\x6a\xf9" "\x97\x25\xe7\xff\xb5\x54\xcb\xbf\x2c\x39\xff\xaf\xa7\x5a\xfe\x65\xc9" "\xf9\xbf\x91\x6a\xf9\x97\x25\xe7\xff\x8d\x54\xcb\xbf\x2c\x39\xff\x6f" "\xa6\x5a\xfe\x65\xc9\xf9\x7f\x2b\xd5\xf2\x2f\x4b\xce\xff\xcd\x54\xcb" "\xbf\x2c\x7b\xdf\xff\x6f\xc6\x8c\x19\x33\x79\xa6\xed\x67\x26\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x60\xdc\x3c\x4e\x27\x6e\x7b\x1b\x01" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xff" "\xb2\x03\x07\x02\x00\x00\x00\x00\x40\xfe\xaf\x8d\x50\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x85\x1d\x38\x10\x00\x00" "\x00\x00\x00\xf2\x7f\x6d\x84\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\x2a\xec\xdd\x6b\x8c\x5c\x67\x7d\x3f\xf0\x33\x7b" "\xb1\xd7\x0e\x21\x06\x42\x70\xf2\x37\xb0\x49\x8c\x31\xce\x92\x5d\x5f" "\xe2\x0b\xff\xba\x98\x70\x6d\x80\x52\x20\xa1\xd0\x0b\xb6\xeb\x5d\x9b" "\x05\xdf\xf0\xda\x25\x50\x24\x9b\x06\x4a\x24\x8c\x8a\x2a\xaa\xa6\x2f" "\xda\x02\x42\x6d\xa4\xaa\xc2\xaa\x78\x41\x2b\x4a\xf3\xa2\xea\xe5\x55" "\x69\x5f\xd0\x37\x15\x55\x25\xa4\x46\x55\x40\x01\x09\xa9\xad\x28\x5b" "\xcd\x9c\xe7\x79\x3c\x33\x9e\x9d\xb3\xf6\x8e\xd7\xb3\xe7\xf9\x7c\xa4" "\xf8\xe7\xdd\x39\x33\xe7\xcc\x99\x67\x66\xf7\xbb\xce\x77\x07\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x76\xf7\xbe\x71\xee" "\xb3\x8d\xa2\x28\x9a\xff\xb5\xfe\xd8\x54\x14\x2f\x68\xfe\x7d\xc3\xe4" "\xa6\xd6\xe7\x5e\x77\xab\x8f\x10\x00\x00\x00\x58\xa9\xff\x6d\xfd\xf9" "\xfc\x1d\xe9\x13\x87\x96\x71\xa5\xb6\x6d\xfe\xee\x15\xff\xf8\xf5\xc5" "\xc5\xc5\xc5\xe2\xfd\xa3\xbf\x3b\xfe\xc5\xc5\xc5\x74\xc1\x64\x51\x8c" "\xaf\x2f\x8a\xd6\x65\xd1\x95\x7f\xff\x40\xa3\x7d\x9b\xe0\x89\x62\xa2" "\x31\xd2\xf6\xf1\x48\xc5\xee\x47\x2b\x2e\x1f\xab\xb8\x7c\xbc\xe2\xf2" "\x75\x15\x97\xaf\xaf\xb8\x7c\xa2\xe2\xf2\x6b\x4e\xc0\x35\x36\x94\x3f" "\x8f\x69\xdd\xd8\xd6\xd6\x5f\x37\x95\xa7\xb4\xb8\xb3\x18\x6f\x5d\xb6" "\xb5\xc7\xb5\x9e\x68\xac\x1f\x19\x89\x3f\xcb\x69\x69\xb4\xae\xb3\x38" "\x7e\xbc\x98\x2f\x4e\x16\x73\xc5\x4c\xc7\xf6\xe5\xb6\x8d\xd6\xf6\xdf" "\xbc\xb7\xb9\xaf\xb7\x15\x71\x5f\x23\x6d\xfb\xda\xd2\x5c\x21\x3f\xfc" "\xe4\xb1\x78\x0c\x8d\x70\x8e\xb7\x76\xec\xeb\xea\x6d\x46\xdf\x7f\x43" "\x31\xf9\xa3\x1f\x7e\xf2\xd8\x1f\x9f\x7f\xee\xee\x5e\xb3\xf2\x34\x74" "\xdc\x5e\x79\x9c\xdb\xef\x6b\x1e\xe7\xa7\xc3\x67\xca\x63\x6d\x14\xeb" "\xd3\x39\x89\xc7\x39\xd2\x76\x9c\x5b\x7a\x3c\x26\xa3\x1d\xc7\xd9\x68" "\x5d\xaf\xf9\xf7\xee\xe3\x7c\x7e\x99\xc7\x39\x7a\xf5\x30\x57\x55\xf7" "\x63\x3e\x51\x8c\xb4\xfe\xfe\xed\xd6\x79\x1a\x6b\xff\xb1\x5e\x3a\x4f" "\x5b\xc2\xe7\xfe\xeb\xfe\xa2\x28\x2e\x5d\x3d\xec\xee\x6d\xae\xd9\x57" "\x31\x52\x6c\xec\xf8\xcc\xc8\xd5\xc7\x67\xa2\x5c\x91\xcd\xdb\x68\x2e" "\xa5\x17\x17\x63\xd7\xb5\x4e\xef\x5d\xc6\x3a\x6d\xce\xd9\xad\x9d\xeb" "\xb4\xfb\x39\x11\x1f\xff\x7b\xc3\xf5\xc6\x96\x38\x86\xf6\x87\xe9\xfb" "\x9f\x5a\x77\xcd\xe3\x7e\xbd\xeb\x34\x6a\xde\xeb\xa5\x9e\x2b\xdd\x6b" "\x70\xd0\xcf\x95\x61\x59\x83\x71\x5d\x7c\xbb\x75\xa7\x9f\xec\xb9\x06" "\xb7\x86\xfb\xff\xc9\x6d\x4b\xaf\xc1\x9e\x6b\xa7\xc7\x1a\x4c\xf7\xbb" "\x6d\x0d\xde\x57\xb5\x06\x47\xd6\x8d\xb6\x8e\x39\x3d\x08\x8d\xd6\x75" "\xae\xae\xc1\x9d\x1d\xdb\x8f\xb6\xf6\xd4\x68\xcd\x67\xb7\xf5\x5f\x83" "\xd3\xe7\x4f\x9d\x9d\x5e\xf8\xf8\x27\x5e\x3b\x7f\xea\xe8\x89\xb9\x13" "\x73\xa7\x77\xef\xdc\x39\xb3\x7b\xef\xde\xfd\xfb\xf7\x4f\x1f\x9f\x3f" "\x39\x37\x53\xfe\x79\x83\x67\x7b\xf8\x6d\x2c\x46\xd2\x73\xe0\xbe\x70" "\xee\xe2\x73\xe0\xd5\x5d\xdb\xb6\x2f\xd5\xc5\x2f\x0f\xee\x79\x38\xd1" "\xe7\x79\xb8\xa9\x6b\xdb\x41\x3f\x0f\xc7\xba\xef\x5c\x63\x75\x9e\x90" "\xd7\xae\xe9\xf2\xb9\xf1\x68\xf3\xa4\x4f\x5c\x1e\x29\x96\x78\x8e\xb5" "\x1e\x9f\x1d\x2b\x7f\x1e\xa6\xfb\xdd\xf6\x3c\x1c\x6b\x7b\x1e\xf6\xfc" "\x9a\xd2\xe3\x79\x38\xb6\x8c\xe7\x61\x73\x9b\xb3\x3b\x96\xf7\x3d\xcb" "\x58\xdb\x7f\xbd\x8e\xe1\x66\x7d\x2d\xd8\xd4\xb6\x06\xbb\xbf\x1f\xe9" "\x5e\x83\x83\xfe\x7e\x64\x58\xd6\xe0\x44\x58\x17\xff\xba\x63\xe9\xaf" "\x05\x5b\xc2\xf1\x3e\x39\x75\xbd\xdf\x8f\x8c\x5e\xb3\x06\xd3\xdd\x0d" "\xaf\x3d\xcd\xcf\xa4\xef\xf7\x27\xf6\xb7\x46\xaf\x75\x79\x4f\xf3\x82" "\xdb\xd6\x15\x17\x16\xe6\xce\x3d\xf8\xf8\xd1\xf3\xe7\xcf\xed\x2c\xc2" "\x58\x15\x2f\x69\x5b\x2b\xdd\xeb\x75\x63\xdb\x7d\x2a\xae\x59\xaf\x23" "\xd7\xbd\x5e\x0f\xcd\xbf\xe2\xc9\x7b\x7a\x7c\x7e\x53\x38\x57\x13\xaf" "\x6d\xfe\x31\xb1\xe4\x63\xd5\xdc\x66\xcf\x83\xfd\x1f\xab\xd6\x57\xb7" "\xde\xe7\xb3\xe3\xb3\xbb\x8a\x30\x06\x6c\xb5\xcf\x67\xaf\xaf\xe6\xcd" "\xf3\x99\xb2\x64\x9f\xf3\xd9\xdc\xe6\xd3\xd3\x2b\xff\x5e\x3c\xe5\xd2" "\xb6\xd7\xdf\xf1\x25\x5e\x7f\x63\xee\xff\x69\xb9\xbf\x74\x53\x4f\x8c" "\x8e\x8f\x95\xcf\xdf\xd1\x74\x76\xc6\x3b\x5e\x8f\x3b\x1f\xaa\xb1\xd6" "\x6b\x57\xa3\xb5\xef\xe7\xa7\x97\xf7\x7a\x3c\x1e\xfe\x5b\xed\xd7\xe3" "\x3b\xfb\xbc\x1e\x6f\xee\xda\x76\xd0\xaf\xc7\xe3\xdd\x77\x2e\xbe\x1e" "\x37\xaa\x7e\xda\xb1\x32\xdd\x8f\xe7\x44\x58\x27\x27\x67\xfa\xbf\x1e" "\x37\xb7\xd9\xbc\xeb\x7a\xd7\xe4\x58\xdf\xd7\xe3\xfb\xc3\x6c\x84\xf3" "\xff\x9a\x90\x14\x52\x2e\x6a\x5b\x3b\x4b\xad\xdb\xb4\xaf\xb1\xb1\xf1" "\x70\xbf\xc6\xe2\x1e\x3a\xd7\xe9\xee\x8e\xed\xc7\x43\x36\x6b\xee\xeb" "\xe9\x5d\x37\xb6\x4e\xb7\xdf\x5f\xde\xd6\x68\xba\x77\x57\xad\xd6\x3a" "\x9d\xec\xda\x76\xd0\xeb\x34\xbd\x5e\x2d\xb5\x4e\x1b\x55\x3f\x7d\xbb" "\x31\xdd\x8f\xe7\x44\x58\x17\x77\xee\xee\xbf\x4e\x9b\xdb\x3c\xb3\x67" "\xe5\xaf\x9d\x1b\xe2\x5f\xdb\x5e\x3b\xd7\x55\xad\xc1\xf1\xd1\x75\xcd" "\x63\x1e\x4f\x8b\xb0\x7c\xbd\x5f\xdc\x10\xd7\xe0\x83\xc5\xb1\xe2\x4c" "\x71\xb2\x98\x6d\x5d\xba\xae\xb5\x9e\x1a\xad\x7d\x4d\x3d\xb4\xbc\x35" "\xb8\x2e\xfc\xb7\xda\xaf\x95\x9b\xfb\xac\xc1\xed\x5d\xdb\x0e\x7a\x0d" "\xa6\xaf\x63\x4b\xad\xbd\xc6\xd8\xb5\x77\x7e\x00\xba\x1f\xcf\x89\xb0" "\x2e\x9e\x7a\xa8\xff\x1a\x6c\x6e\xf3\xa6\x7d\x83\xfd\xde\x75\x7b\xf8" "\x4c\xda\xa6\xed\x7b\xd7\xee\x9f\xaf\x2d\xf5\x33\xaf\x7b\xba\x4e\xd3" "\xcd\xfc\x99\x57\xf3\x38\xff\x66\x5f\xff\x9f\xcd\x36\xb7\x39\xb9\xff" "\x7a\x73\x66\xff\xf3\xf4\x40\xf8\xcc\x6d\x3d\xce\x53\xf7\xf3\x77\xa9" "\xe7\xd4\x6c\xb1\x3a\xe7\x69\x73\x38\xce\xe7\xf6\x2f\x7d\x9e\x9a\xc7" "\xd3\xdc\xe6\x8b\x07\x96\xb9\x9e\x0e\x15\x45\x71\xf1\xa3\x0f\xb7\x7e" "\xde\x1b\xfe\x7d\xe5\xcf\x2f\x7c\xe7\xeb\x1d\xff\xee\xd2\xeb\xdf\x74" "\x2e\x7e\xf4\xe1\x1f\xdc\x7e\xfc\x6f\xaf\xe7\xf8\x01\x58\xfb\x7e\x5a" "\x8e\x8d\xe5\xd7\xba\xb6\x7f\x99\x5a\xce\xbf\xff\x03\x00\x00\x00\x6b" "\x42\xcc\xfd\x23\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\xf1\xff" "\x0a\x4f\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\xc7\xc2\x4c\x32\xc9\xff" "\x9b\xdf\xf4\xdc\xfc\x4f\x2f\x16\xa9\x99\xbf\x18\xc4\xcb\xd3\x69\x78" "\xa4\xdc\x2e\x76\x5c\x67\xc2\xc7\x93\x8b\x57\x35\x3f\xff\xf0\x57\xe7" "\x7e\xfc\x97\x17\x97\xb7\xef\x91\xa2\x28\x7e\xf2\xc8\x6f\xf4\xdc\x7e" "\xf3\x23\xf1\xb8\x4a\x93\xe1\x38\xaf\xbc\xb9\xf3\xf3\xd7\x5e\xf1\xe2" "\xb2\xf6\x7f\xe4\xb1\xab\xdb\xb5\xf7\xd7\xbf\x14\x6e\x3f\xde\x9f\xe5" "\x2e\x83\x5e\x15\xdc\x99\xa2\x28\xbe\x79\xc7\xe7\x5b\xfb\x99\xfc\xc0" "\xe5\xd6\x7c\xe6\x91\x23\xad\xf9\x9e\x4b\x4f\x3e\xd1\xdc\xe6\xf9\x03" "\xe5\xc7\xf1\xfa\xcf\xbe\xa4\xdc\xfe\x0f\x42\xf9\xf7\xd0\xf1\xa3\x1d" "\xd7\x7f\x36\x9c\x87\xef\x85\x39\xf3\xf6\xde\xe7\x23\x5e\xef\x6b\x97" "\x5f\xb3\x65\xdf\xfb\xae\xee\x2f\x5e\xaf\x71\xdf\x0b\x5b\x77\xfb\xa9" "\x0f\x96\xb7\x1b\x7f\x4f\xce\x17\x9e\x28\xb7\x8f\xe7\x79\xa9\xe3\xff" "\xab\xcf\x3d\xfd\xb5\xe6\xf6\x8f\xbf\xaa\xf7\xf1\x5f\x1c\xe9\x7d\xfc" "\x4f\x87\xdb\xfd\x6a\x98\xff\xfd\xf2\x72\xfb\xf6\xc7\xa0\xf9\x71\xbc" "\xde\x67\xc2\xf1\xc7\xfd\xc5\xeb\x3d\xf8\x95\x6f\xf5\x3c\xfe\x2b\x9f" "\x2d\xb7\x3f\xfb\x96\x72\xbb\x23\x61\xc6\xfd\x6f\x0f\x1f\x6f\x7d\xcb" "\x73\xf3\xed\xe7\xeb\xf1\xc6\xd1\x8e\xfb\x55\xbc\xb5\xdc\x2e\xee\x7f" "\xe6\x3b\xbf\xdd\xba\x3c\xde\x5e\xbc\xfd\xee\xe3\x9f\x38\x7c\xb9\xe3" "\x7c\x74\xaf\x8f\x67\xfe\xb9\xbc\x9d\xe9\xae\xed\xe3\xe7\xe3\x7e\xa2" "\xbf\xe8\xda\x7f\xf3\x76\xda\xd7\x67\xdc\xff\xd3\xbf\x75\xa4\xe3\x3c" "\x57\xed\xff\xca\x7b\x9e\x7d\x79\xf3\x76\xbb\xf7\xff\x40\xd7\x76\xa3" "\x5d\xd7\xef\xfe\x8d\x4d\x7f\xf8\x99\xcf\xf7\xdc\x5f\x3c\x9e\x43\x7f" "\x76\xb6\xe3\xfe\x1c\x7a\x77\x78\x1e\x87\xfd\x3f\xf5\xc1\xb0\x1e\xc3" "\xe5\xff\x73\xe5\xf3\x1d\xfb\x8d\x8e\xbc\xbb\xf3\xf5\x27\x6e\xff\xa5" "\x4d\x17\x3b\xee\x4f\xf4\xb6\x1f\x95\xfb\xbf\xf2\xfa\x13\xad\xf9\x1f" "\x93\x3f\xfe\xfd\xdb\x5e\x70\xfb\x0b\x2f\xbd\xb2\x79\xee\x8a\xe2\xdb" "\xef\x2d\x6f\xaf\x6a\xff\x27\xfe\xe8\x4c\xc7\xf1\x7f\xf9\xae\x1d\xad" "\xc7\x23\x5e\x1e\x3b\xfa\xdd\xfb\x5f\x4a\xdc\xff\xb9\x8f\x4d\x9d\x3e" "\xb3\x70\x61\x7e\xb6\xed\xac\xb6\x7e\x77\xce\x3b\xca\xe3\x59\x3f\xb1" "\x61\x63\xf3\x78\xef\x08\xaf\xad\xdd\x1f\x1f\x3e\x73\xfe\x43\x73\xe7" "\x26\x67\x26\x67\x8a\x62\xb2\xbe\xbf\x42\xef\x86\x7d\x25\xcc\x1f\x94" "\xe3\xd2\xf5\x5e\x7f\xc7\x63\xe1\xf1\xbc\xe7\xf7\xbe\xb9\x71\xdb\x3f" "\x7d\x2e\x7e\xfe\x5f\x1e\x2d\x3f\x7f\xf9\xed\xe5\xd7\xad\x57\x87\xed" "\xbe\x10\x3e\xbf\xa9\x7c\xfc\x16\x1b\x2b\xdc\xff\x53\xf7\xde\xd5\x7a" "\x7e\x37\x9e\x29\x3f\xee\xe8\xb1\x0f\xc0\x96\xad\xff\xb9\x7f\x59\x1b" "\x86\xfb\xdf\xfd\x7d\x41\x5c\xef\x67\x5f\xfa\xa1\xd6\x79\x68\x5e\xd6" "\xfa\xba\x11\x9f\xd7\x2b\x3c\xfe\xef\xce\x96\xb7\xf3\x8d\x70\x5e\x17" "\xc3\x6f\x66\xbe\xef\xae\xab\xfb\x6b\xdf\x3e\xfe\x6e\x84\xcb\xef\x2d" "\x9f\xef\x2b\x3e\x7f\xe1\x65\x2e\x3e\xae\x7f\x12\x1e\xef\x77\x7e\xaf" "\xbc\xfd\x78\x5c\xf1\xfe\x7e\x37\x7c\x1f\xf3\xad\xcd\x9d\xaf\x77\x71" "\x7d\x7c\xe3\xe2\x48\xf7\xed\xb7\x7e\x8b\xc7\xa5\xf0\x7a\x52\x5c\x2a" "\x2f\x8f\x5b\xc5\xf3\x7d\xf9\xf9\xbb\x7a\x1e\x5e\xfc\x3d\x24\xc5\xa5" "\xbb\x5b\x1f\xff\x4e\xba\x9d\xbb\xaf\xeb\x6e\x2e\x65\xe1\xe3\x0b\xd3" "\x27\xe7\x4f\x5f\x78\x7c\xfa\xfc\xdc\xc2\xf9\xe9\x85\x8f\x7f\xe2\xf0" "\xa9\x33\x17\x4e\x9f\x3f\xdc\xfa\x5d\x9e\x87\x3f\x5c\x75\xfd\xab\xaf" "\x4f\x1b\x5b\xaf\x4f\xb3\x73\x7b\xf7\x14\x33\x1b\x8a\xa2\x38\x53\xcc" "\xac\xc2\x0b\xd6\xcd\x39\xfe\xe6\xdf\x96\x77\xfc\x67\x1f\x3b\x36\xbb" "\x6f\x66\xdb\xec\xdc\xf1\xa3\x17\x8e\x9f\x7f\xec\xec\xdc\xb9\x13\xc7" "\x16\x16\x8e\xcd\xcd\x2e\x6c\x3b\x7a\xfc\xf8\xdc\xc7\xaa\xae\x3f\x3f" "\x7b\x70\xe7\xae\x03\xbb\xf7\xed\x9a\x3a\x31\x3f\x7b\x70\xff\x81\x03" "\xbb\x0f\x4c\xcd\x9f\x3e\xd3\x3c\x8c\xf2\xa0\x2a\xec\x9d\xf9\xc8\xd4" "\xe9\x73\x87\x5b\x57\x59\x38\xb8\xe7\xc0\xce\x87\x1e\xda\x33\x33\x75" "\xea\xcc\xec\xdc\xc1\x7d\x33\x33\x53\x17\xaa\xae\xdf\xfa\xda\x34\xd5" "\xbc\xf6\xaf\x4f\x9d\x9b\x3b\x79\xf4\xfc\xfc\xa9\xb9\xa9\x85\xf9\x4f" "\xcc\x1d\xdc\x79\x60\xef\xde\x5d\x95\xbf\x0d\xf0\xd4\xd9\xe3\x0b\x93" "\xd3\xe7\x2e\x9c\x9e\xbe\xb0\x30\x77\x6e\xba\xbc\x2f\x93\xe7\x5b\x9f" "\x6e\x7e\xed\xab\xba\x3e\xf5\xb4\xf0\x6f\xe5\xf7\xb3\xdd\x1a\xe5\x2f" "\xe2\x2b\xde\xf5\xc0\xde\xf4\xfb\x59\x9b\xbe\xfa\xa9\x25\x6f\xaa\xdc" "\xa4\xeb\x17\x88\x3e\x17\x7e\x17\xcd\x3f\xbc\xe8\xec\xfe\xe5\x7c\x1c" "\x73\xff\x78\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\xba\x30" "\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\xf5\x61\x26\xf2\x3f\x00\x00" "\x00\xd4\x46\xcc\xfd\x13\x61\x26\x99\xe4\x7f\xfd\x7f\xfd\xff\xe5\xf5" "\xff\xcb\xcb\xf5\xff\xf3\xea\xff\x9f\xfd\x68\xd9\x2b\x5d\xeb\xfd\xff" "\xd8\x9f\xd7\xff\xcf\xc3\x2d\xee\xff\xaf\x78\xff\xfa\xff\xfa\xff\xf5" "\xeb\xff\x2f\xbf\x3f\xbf\xd6\x8f\x5f\xff\x5f\xff\x9f\x6b\x0d\x5b\xff" "\x3f\xe6\xfe\x0d\x45\x91\x65\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xbf\x31" "\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\xb6\x30\x13\xf9\x1f\x00" "\x00\x00\x6a\x23\xe6\xfe\x17\x84\x99\x64\x92\xff\xf5\xff\x97\xd5\xff" "\xdf\x55\x55\xb8\xaa\x7f\xff\xdf\xfb\xff\xeb\xff\x17\x6b\xb3\xff\x1f" "\x1f\x1c\xfd\xff\x6c\x5c\x77\xff\xfe\x7d\x8f\x76\x7c\xa8\xff\x1f\xe8" "\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xb3\x62\xe3\x4b\x5e\x72\xab\xfa" "\xff\x31\xf7\xdf\x1e\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xff" "\xc2\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\x3b\xc2\x4c\xe4\x7f" "\x00\x00\x00\xa8\x8d\x98\xfb\x37\x85\x99\x64\x92\xff\xf5\xff\xbd\xff" "\xbf\xfe\xbf\xfe\x7f\xad\xfb\xff\x2b\x7d\xff\xff\xb6\x83\xd1\xff\x5f" "\x1b\xbc\xff\x7f\x7f\xfa\xff\x15\x6e\xb8\xff\x3f\xa1\xff\xbf\x16\xfb" "\xff\xe3\x83\x3d\xfe\xe1\xee\xff\x57\x1e\xbe\xfe\x3f\x37\xc5\xb0\xbd" "\xff\x7f\xcc\xfd\x2f\x0a\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee" "\x7f\x71\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\x4b\xc2\x4c\xe4" "\x7f\x00\x00\x00\xa8\x8d\x98\xfb\xef\x0c\x33\xc9\x24\xff\xeb\xff\xeb" "\xff\xeb\xff\xeb\xff\xeb\xff\xf7\xde\x7f\xf5\xfb\xff\x97\x7f\xd3\xff" "\x1f\x2e\xfa\xff\xfd\xe9\xff\x57\xf0\xfe\xff\x79\xf5\xff\x07\x7c\xfc" "\xc3\xdd\xff\x1f\xf4\xfb\xff\x8f\xbf\xb9\xfb\xfa\xfa\xff\xf4\x32\x6c" "\xfd\xff\x98\xfb\x5f\x1a\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc" "\x7f\x57\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\xcb\xc2\x4c\xe4" "\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x37\x87\x99\x64\x92\xff\xf5\xff\xf5" "\xff\xf5\xff\xf5\xff\xf5\xff\x7b\xef\xbf\xba\xff\x5f\xd2\xff\x1f\x2e" "\xfa\xff\xfd\xe9\xff\x57\xd0\xff\xd7\xff\xd7\xff\x5f\x5e\xff\xbf\xc7" "\x37\xbf\xfa\xff\xf4\x32\x6c\xfd\xff\x98\xfb\xef\x0e\x33\xc9\x24\xff" "\x03\x00\x00\x40\x0e\x62\xee\xbf\x27\xcc\x44\xfe\x07\x00\x00\x80\xda" "\x88\xb9\xff\xff\x85\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\x6f\x09" "\x33\xc9\x24\xff\xeb\xff\xeb\xff\xeb\xff\xe7\xd5\xff\x7f\x60\x9d\xfe" "\xbf\xfe\x7f\xbd\xe9\xff\xf7\xa7\xff\x5f\x41\xff\x5f\xff\x5f\xff\x7f" "\x99\xef\xff\x7f\xad\xeb\xe9\xff\xaf\xaf\xba\x31\x6a\x63\xd8\xfa\xff" "\x31\xf7\xbf\x3c\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff\x15" "\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\xaf\x0c\x33\x91\xff\x01" "\x00\x00\xa0\x36\x62\xee\x9f\x0c\x33\xc9\x24\xff\xeb\xff\xd7\xab\xff" "\xff\xa7\x7f\xfd\xd4\x2b\x0b\xfd\x7f\xfd\xff\x8a\xfd\xd7\xb4\xff\x1f" "\x97\x81\xfe\x7f\xe6\xf4\xff\xfb\xd3\xff\xaf\xa0\xff\xaf\xff\xaf\xff" "\xbf\x2a\xfd\x7f\xf2\x31\x6c\xfd\xff\x98\xfb\xef\x0d\x33\xc9\x24\xff" "\x03\x00\x00\x40\x0e\x62\xee\xbf\x2f\xcc\x44\xfe\x07\x00\x00\x80\xda" "\x88\xb9\xff\xfe\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\xad\x61" "\x26\x99\xe4\x7f\xfd\xff\x7a\xf5\xff\x23\xfd\x7f\xfd\xff\x7e\xfb\xaf" "\x69\xff\x3f\xd1\xff\xcf\x9b\xfe\x7f\x0f\x6d\x4f\x52\xfd\xff\x0a\xfa" "\xff\xfa\xff\xd9\xf7\xff\xe3\x77\xbf\xfa\xff\x0c\xc6\xb0\xf5\xff\x63" "\xee\x7f\x55\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\xb6\x30" "\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\x57\x87\x99\xc8\xff\x00\x00" "\x00\x50\x1b\x31\xf7\x6f\x0f\x33\xc9\x24\xff\xeb\xff\xeb\xff\xeb\xff" "\xeb\xff\xeb\xff\xf7\xde\xbf\xfe\xff\xda\xa4\xff\xdf\x9f\xfe\x7f\x05" "\xfd\x7f\xfd\xff\xec\xfb\xff\xde\xff\x9f\xc1\x1a\xb6\xfe\x7f\xcc\xfd" "\xaf\x09\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\xdf\x11\x66\x22" "\xff\x03\x00\x00\x40\x6d\xc4\xff\x7f\xb3\xfc\xff\x5e\xe5\x7f\x00\x00" "\x00\xa8\xa3\x98\xfb\xa7\xc2\x4c\x32\xc9\xff\xfa\xff\xfa\xff\x39\xf5" "\xff\x1b\xfa\xff\xfa\xff\xfa\xff\xb5\xa7\xff\xdf\x9f\xfe\x7f\x05\xfd" "\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x06\x6a\xd8\xfa\xff\x31\xf7\xbf\x36\xcc" "\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff\xc1\x30\x13\xf9\x1f\x00" "\x00\x00\x6a\x23\xe6\xfe\xe9\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6" "\xfe\x99\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe\x7f\x4e\xfd\x7f\xef\xff\xaf" "\xff\xaf\xff\x5f\x7f\xfa\xff\xfd\xe9\xff\x57\xd0\xff\xd7\xff\xaf\x5b" "\xff\xbf\x28\xf4\xff\xb9\xa5\x86\xad\xff\x1f\x73\xff\xce\x30\x93\x4c" "\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\x5d\x61\x26\xf2\x3f\x00\x00\x00" "\xd4\x46\xcc\xfd\xbb\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\xf7" "\x84\x99\x64\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x7b\xef" "\x5f\xff\x7f\x6d\xd2\xff\xef\x4f\xff\xbf\x82\xfe\xbf\xfe\x7f\xdd\xfa" "\xff\xde\xff\x9f\x5b\x6c\xd8\xfa\xff\x31\xf7\x3f\x14\x66\x92\x49\xfe" "\x07\x00\x00\x80\x1c\xc4\xdc\xbf\x37\xcc\x44\xfe\x07\x00\x00\x80\xda" "\x88\xb9\x7f\x5f\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\xfe\x30" "\x93\x4c\xf2\xbf\xfe\x7f\x4d\xfa\xff\xbf\xf9\xf7\x1d\xfb\xd6\xff\xd7" "\xff\xef\xb7\xff\xc1\xf4\xff\x37\xe8\xff\x87\xa9\xff\x3f\x5c\x6a\xda" "\xff\xef\x7e\x5a\xdc\x30\xfd\xff\x0a\xfa\xff\xfa\xff\xfa\xff\xfa\xff" "\x0c\xd4\xb0\xf5\xff\x63\xee\x3f\x10\x66\x92\x49\xfe\x07\x00\x00\x80" "\x1c\xc4\xdc\xff\xba\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\xff" "\x1f\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\xff\x33\x61\x26\x99\xe4" "\x7f\xfd\xff\x9a\xf4\xff\xbb\xe8\xff\xeb\xff\xf7\xdb\xbf\xf7\xff\xd7" "\xff\xaf\xb3\x9a\xf6\xff\x07\x46\xff\xbf\x82\xfe\xbf\xfe\xbf\xfe\xbf" "\xfe\x3f\x03\x75\xf3\xfb\xff\xf1\x6f\xcb\xeb\xff\xc7\xdc\x7f\x30\xcc" "\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff\x67\xc3\x4c\xe4\x7f\x00" "\x00\x00\xa8\x8d\x98\xfb\x5f\x1f\x66\x22\xff\x03\x00\x00\x40\x6d\xc4" "\xdc\x7f\x28\xcc\x24\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x7f\x73" "\xfa\xff\xaf\x2f\xba\x0d\x63\xff\xbf\xb9\x78\xf4\xff\xeb\x45\xff\xbf" "\x3f\xfd\xff\x0a\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x0c\xd4\xb0\xbd\xff" "\x7f\xcc\xfd\x6f\x08\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\x7f" "\x38\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\x8d\x61\x26\xf2\x3f" "\x00\x00\x00\xd4\x46\xcc\xfd\x6f\x0a\x33\xc9\x24\xff\xeb\xff\xeb\xff" "\xeb\xff\xaf\x4e\xff\x7f\x3c\xbb\xfe\xbf\xf7\xff\xef\xa6\xff\xbf\x3a" "\xf4\xff\xfb\xd3\xff\xaf\xa0\xff\xaf\xff\xaf\xff\xaf\xff\xcf\x40\x0d" "\x5b\xff\x3f\xe6\xfe\x37\x87\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31" "\xf7\xbf\x25\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\xad\x61\x26" "\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\x6f\x0b\x33\xc9\x24\xff\xeb\xff" "\xeb\xff\xeb\xff\x7b\xff\x7f\xfd\xff\xde\xfb\xd7\xff\x5f\x9b\xf4\xff" "\xfb\xd3\xff\x2f\x8d\x2c\x75\x00\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x0c" "\xd4\xb0\xf5\xff\x63\xee\xff\xb9\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4" "\x20\xe6\xfe\x47\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\xdf\x1e" "\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\xff\x8e\x30\x93\x4c\xf2\xbf" "\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xef\xfd\xeb\xff\xaf\x4d\xfa" "\xff\xfd\xe9\xff\x57\xd0\xff\xd7\xff\xd7\xff\xd7\xff\x67\xa0\x86\xad" "\xff\x1f\x73\xff\x3b\xc3\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb" "\x7f\x3e\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\x5d\x61\x26\xf2" "\x3f\x00\x00\x00\xd4\x46\xcc\xfd\xbf\x10\x66\x92\x49\xfe\xd7\xff\xd7" "\xff\xd7\xff\xd7\xff\x1f\x78\xff\xbf\x28\x8a\x4b\xc3\xd6\xff\x6f\x5e" "\x49\xff\x3f\x0b\xfa\xff\xfd\xe9\xff\x57\xe8\xd1\xff\x5f\xaf\xff\xaf" "\xff\xaf\xff\xaf\xff\xcf\x0d\x1b\xb6\xfe\x7f\xcc\xfd\xef\x0e\x33\xc9" "\x24\xff\x03\x00\x00\x40\x0e\x62\xee\x7f\x4f\x98\x89\xfc\x0f\x00\x00" "\x00\xb5\x11\x73\xff\x7b\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb" "\x1f\x0d\x33\xc9\x24\xff\xeb\xff\x67\xd9\xff\x4f\x77\x59\xff\xbf\xa4" "\xff\xef\xfd\xff\x7b\xed\x5f\xff\x7f\x6d\xd2\xff\xef\x4f\xff\xbf\x82" "\xf7\xff\xd7\xff\xd7\xff\xd7\xff\x67\xa0\x86\xad\xff\x1f\x73\xff\x63" "\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\xef\x0b\x33\x91\xff" "\x01\x00\x00\xa0\x36\x62\xee\xff\xc5\x30\x13\xf9\x1f\x00\x00\x00\x6a" "\x23\xe6\xfe\xf7\x87\x99\x64\x92\xff\xf5\xff\xb3\xec\xff\x7b\xff\xff" "\x55\xeb\xff\x8f\x75\xac\x8f\x9c\xfa\xff\x13\x6d\x8f\x67\x5a\x97\xfa" "\xff\xfa\xff\xab\x40\xff\xbf\x3f\xfd\xff\x0a\xfa\xff\xfa\xff\xc3\xdc" "\xff\x0f\xab\x79\xc3\x12\xd7\xd7\xff\x67\x18\x0d\x5b\xff\x3f\xe6\xfe" "\x0f\x84\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7\xff\x52\x98\x89" "\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\x2f\x87\x99\xc8\xff\x00\x00\x00" "\x50\x1b\x31\xf7\xff\x4a\x98\x49\x26\xf9\x5f\xff\x5f\xff\x5f\xff\xdf" "\xfb\xff\x7b\xff\xff\xde\xfb\xd7\xff\x5f\x9b\xf4\xff\xfb\xd3\xff\xaf" "\xa0\xff\xaf\xff\x3f\xcc\xfd\xff\x0a\xfa\xff\x0c\xa3\x61\xeb\xff\xc7" "\xdc\xff\xab\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\x1f\x0c" "\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\x3f\x1c\x66\x22\xff\x03\x00" "\x00\x40\x6d\xc4\xdc\x7f\x24\xcc\x24\x93\xfc\xaf\xff\xdf\xdd\xff\x8f" "\xef\xa8\xaa\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xbf\x16\x0d\xae\xff" "\xff\xb2\xdb\x8b\x42\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x9f" "\x95\x18\xb6\xfe\x7f\xcc\xfd\x47\xc3\x4c\x32\xc9\xff\x00\x00\x00\x90" "\x83\x98\xfb\x7f\x2d\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\x58" "\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\x6c\x98\x49\x26\xf9\x5f" "\xff\xdf\xfb\xff\x0f\xaa\xff\xff\x13\xfd\x7f\xfd\xff\x40\xff\xbf\x37" "\xfd\xff\xd5\xe1\xfd\xff\xfb\xd3\xff\xaf\xa0\xff\xaf\xff\xaf\xff\xaf" "\xff\xcf\x40\x0d\x5b\xff\x3f\xe6\xfe\xb9\x30\x93\x4c\xf2\x3f\x00\x00" "\x00\xd4\x58\xfa\x71\x70\xcc\xfd\xc7\xc3\x4c\xe4\x7f\x00\x00\x00\xa8" "\x8d\x98\xfb\x4f\x84\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\x7f\x28" "\xcc\x24\x93\xfc\xaf\xff\xaf\xff\xef\xfd\xff\x6f\x45\xff\x7f\xac\x63" "\x7b\xfd\xff\x92\xfe\xbf\xfe\xff\x20\xe8\xff\xf7\xa7\xff\x5f\x41\xff" "\x5f\xff\x5f\xff\x5f\xff\x9f\x81\x1a\xb6\xfe\x7f\xcc\xfd\xf3\x61\x26" "\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\x1f\x0e\x33\x91\xff\x01\x00" "\x00\xa0\x36\x62\xee\xff\x48\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73" "\xff\xc9\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe\x7f\xee\xfd\xff\x46\x51\x5c" "\xf2\xfe\xff\xfa\xff\xbd\xf6\xaf\xff\xbf\x36\xe9\xff\xf7\xa7\xff\x5f" "\x41\xff\x5f\xff\x5f\xff\x5f\xff\x9f\x81\x1a\xb6\xfe\x7f\xcc\xfd\xa7" "\xc2\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\x4f\x87\x99\xc8\xff" "\x00\x00\x00\x50\x1b\x31\xf7\x9f\x09\x33\x91\xff\x01\x00\x00\xa0\x36" "\x62\xee\x3f\x1b\x66\x92\x49\xfe\xd7\xff\xd7\xff\xcf\xbd\xff\x5f\xdc" "\x92\xf7\xff\xff\x3f\xf6\xee\xa3\x49\xce\xb3\xea\xe3\x70\xdb\x25\x5b" "\xd2\x0a\x3e\x02\x6b\x56\x2c\x61\x03\x5f\x81\x2d\x3b\xaa\x58\x52\x2c" "\x00\x93\x83\x31\x39\x83\xc9\x39\x98\x9c\x73\x4e\x26\xe7\x9c\xb3\xc9" "\x39\x9a\x68\xa8\x12\xc5\xe8\x9c\xa3\xd0\xad\xa7\x25\x4d\x7b\xfa\x79" "\xee\x73\x5d\x9b\xf3\x4a\x85\xdc\x23\x34\xaf\x5d\x7f\x5c\xbf\xba\xcf" "\xfd\xcf\xeb\xff\x4f\xd3\xff\xeb\xff\x77\x61\xad\xbf\x3f\x76\x69\xbf" "\xfe\x82\xfd\xff\x1d\xee\x78\xcd\xdd\xf5\xff\x3b\xe8\xff\x37\xfd\x13" "\xf3\x0c\xfd\xbf\xfe\x7f\xc9\x5f\xbf\xfe\x5f\xff\xcf\xba\xb9\xf5\xff" "\xb9\xfb\xef\x1d\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xfb\xc4" "\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x7d\xe3\x16\xfb\x1f\x00\x00" "\x00\x86\x91\xbb\xff\x9a\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa" "\xff\x73\xfa\xff\x1b\xf5\xff\xfa\xff\x65\xf3\xfe\xff\xb4\xfd\xf7\xff" "\xd3\xf4\xff\xfa\xff\x25\x7f\xfd\xfa\x7f\xfd\x3f\xeb\xe6\xd6\xff\xe7" "\xee\xbf\x5f\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xef\x1f\xb7" "\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x0f\x88\x5b\xec\x7f\x00\x00\x00" "\x18\x46\xee\xfe\x07\xc6\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff" "\x7b\xff\x7f\xf3\xe7\xeb\xff\x97\x49\xff\x3f\x4d\xff\xbf\x85\xfe\x5f" "\xff\xaf\xff\xd7\xff\xb3\x53\x73\xeb\xff\x73\xf7\x3f\x28\x6e\x69\xb2" "\xff\x01\x00\x00\xa0\x83\xdc\xfd\x0f\x8e\x5b\xec\x7f\x00\x00\x00\x18" "\x46\xee\xfe\x87\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x43\xe3" "\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x9b\x3f\x5f\xff" "\xbf\x4c\x37\xac\xce\xfc\x3d\x41\xff\xbf\x4e\xff\xbf\xc5\x96\xfe\x7f" "\xb5\xd2\xff\x4f\xb9\xe8\x7e\x7e\xf3\x6f\x6f\x39\x5f\xff\x05\xe8\xff" "\xf5\xff\xac\x9b\x5b\xff\x9f\xbb\xff\x61\x71\x4b\x93\xfd\x0f\x00\x00" "\x00\x1d\xe4\xee\x7f\x78\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x5f" "\x1b\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x8f\x88\x5b\x9a\xec\x7f" "\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x6f\xfe\x7c\xfd\xff\x32\x79\xff" "\x7f\xda\xe1\xfb\xff\xdb\xdf\xf6\x5e\xf7\xe8\xdb\xff\x7b\xff\x7f\x9a" "\xf7\xff\xf5\xff\xfa\x7f\xce\x37\xb7\xfe\x3f\x77\xff\x75\x71\x4b\x93" "\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x64\xdc\x62\xff\x03\x00\x00\xc0" "\x30\x72\xf7\x3f\x2a\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x1f\x1d" "\xb7\x34\xd9\xff\xfa\xff\x36\xfd\xff\x41\xed\xa2\xff\xd7\xff\xeb\xff" "\xf5\xff\xa3\xd3\xff\x4f\xf3\xfe\xff\x16\x07\x7f\x9b\x3b\x59\x3f\xd4" "\xff\xeb\xff\xf5\xff\xfa\x7f\x0e\x67\x6e\xfd\x7f\xee\xfe\xc7\xc4\x2d" "\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xb1\x71\x8b\xfd\x0f\x00\x00" "\x00\xc3\xc8\xdd\xff\xb8\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f" "\x7c\xdc\xd2\x64\xff\xeb\xff\xdb\xf4\xff\xde\xff\xd7\xff\xeb\xff\xf5" "\xff\x2d\xe8\xff\xa7\xe9\xff\xb7\x18\xe5\xfd\xff\xcb\xfc\xae\xd9\x77" "\x3f\x7f\x58\xfb\xfe\xfa\xf5\xff\xfa\x7f\xd6\xcd\xad\xff\xcf\xdd\xff" "\x84\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x31\x6e\xb1\xff" "\x01\x00\x00\x60\x18\xb9\xfb\x9f\x14\xb7\xd8\xff\x00\x00\x00\x30\x8c" "\xdc\xfd\x4f\x8e\x5b\x9a\xec\x7f\xfd\xbf\xfe\x7f\x19\xfd\x7f\x7e\x82" "\xfe\x5f\xff\xaf\xff\xd7\xff\x4f\xd3\xff\x4f\xd3\xff\x6f\x31\x4a\xff" "\x7f\x99\xf6\xdd\xcf\x2f\xfd\xeb\xd7\xff\xeb\xff\x59\x37\xb7\xfe\x3f" "\x77\xff\x53\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xd4\xb8" "\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x5a\xdc\x62\xff\x03\x00\x00" "\xc0\x30\x72\xf7\x3f\x3d\x6e\x69\xb2\xff\xf5\xff\xfa\xff\x65\xf4\xff" "\xde\xff\xd7\xff\xeb\xff\xf5\xff\x17\x47\xff\x3f\x4d\xff\xbf\x85\xfe" "\x5f\xff\xaf\xff\xd7\xff\xb3\x53\x73\xeb\xff\x73\xf7\x5f\x1f\xb7\x34" "\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x67\xc4\x2d\xf6\x3f\x00\x00\x00" "\x0c\x23\x77\xff\x33\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x59" "\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xcd\x9f\xaf" "\xff\x5f\x26\xfd\xff\x34\xfd\xff\x16\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf" "\x4e\xcd\xa8\xff\x3f\xeb\x57\x9d\x58\x3d\x3b\x6e\x69\xb2\xff\x01\x00" "\x00\xa0\x83\xdc\xfd\xcf\x89\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe" "\xe7\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xf3\xe2\x96\x26\xfb" "\x5f\xff\x3f\x9b\xfe\xff\x20\xe7\x1b\xab\xff\x3f\xb9\x5a\xad\xf4\xff" "\xab\xa6\xfd\xff\xc9\xb3\xfe\x3c\xeb\xfb\x52\xff\xaf\xff\x3f\x02\xfa" "\xff\x69\x9d\xfa\xff\x3b\xeb\xff\x2f\xd9\xbe\xfb\xf9\xa5\x7f\xfd\xfa" "\x7f\xfd\x3f\xeb\x66\xd4\xff\x1f\xfc\x38\x77\xff\xf3\xe3\x96\x26\xfb" "\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x82\xb8\xc5\xfe\x07\x00\x00\x80\x61" "\xe4\xee\x7f\x61\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xbf\x28\x6e" "\x69\xb2\xff\xf5\xff\xb3\xe9\xff\x0f\x8c\xd5\xff\x7b\xff\xff\xfc\xef" "\x8f\x4e\xfd\xbf\xf7\xff\xd7\xe9\xff\x8f\x86\xfe\x7f\x5a\xa7\xfe\xff" "\x72\x3e\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xd9\xad\xb9\xf5\xff\xb9\xfb" "\x5f\x1c\x37\x5d\x7d\xd5\x65\xff\x16\x01\x00\x00\x80\x99\xc9\xdd\xff" "\x92\xb8\xa5\xc9\xbf\xff\x07\x00\x00\x80\x0e\x72\xf7\xbf\x34\x6e\xb1" "\xff\x01\x00\x00\x60\xa1\xae\x5f\xfb\x99\xdc\xfd\x2f\x8b\x5b\x9a\xec" "\x7f\xfd\xff\x6e\xfb\xff\xab\xcf\xfa\x39\xfd\xbf\xfe\xff\xfc\xef\x0f" "\xfd\xbf\xfe\x5f\xff\x7f\xeb\xd3\xff\x4f\xd3\xff\x6f\xa1\xff\xd7\xff" "\xeb\xff\xf5\xff\xec\xd4\xdc\xfa\xff\xdc\xfd\x2f\x8f\x5b\x9a\xec\x7f" "\x00\x00\x00\xe8\x20\x77\xff\x0d\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8" "\xdd\xff\x8a\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x65\xdc\xd2" "\x64\xff\xeb\xff\xbd\xff\xaf\xff\xd7\xff\xeb\xff\x37\x7f\xbe\xfe\x7f" "\x99\xf4\xff\xd3\xf4\xff\x5b\xe8\xff\xf5\xff\xfb\xed\xff\x8f\x9f\xf9" "\x3f\xf5\xff\x8c\xe1\x12\xfa\xff\x53\xa7\x4e\x5d\x7b\xab\xf7\xff\xb9" "\xfb\x5f\x15\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x57\xc7\x2d" "\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x6b\xe2\x16\xfb\x1f\x00\x00\x00" "\x86\x91\xbb\xff\xb5\x71\x4b\x93\xfd\xaf\xff\x6f\xda\xff\xe7\xb7\xba" "\xfe\xff\x80\xfe\x5f\xff\xbf\xe9\xf3\xf5\xff\xcb\xa4\xff\x9f\xa6\xff" "\xdf\x42\xff\xaf\xff\xf7\xfe\xbf\xfe\x9f\x9d\x9a\xdb\xfb\xff\xb9\xfb" "\x5f\x17\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xd7\xc7\x2d\xf6" "\x3f\x00\x00\x00\x0c\x23\x77\xff\x1b\xe2\x16\xfb\x1f\x00\x00\x00\x86" "\x91\xbb\xff\x8d\x71\x4b\x93\xfd\xaf\xff\x6f\xda\xff\x7b\xff\x5f\xff" "\xaf\xff\x3f\xea\xfe\xff\x96\x95\xfe\xff\x48\x2c\xa2\xff\x3f\x79\xe1" "\xcf\x9f\x7b\xff\x7f\x9d\xfe\x5f\xff\x3f\xa1\x5d\xff\x7f\xd7\x3b\x9d" "\xf3\x43\xfd\xbf\xfe\x9f\x75\x73\xeb\xff\x73\xf7\xbf\x29\x6e\x69\xb2" "\xff\x01\x00\x00\xa0\x83\xdc\xfd\x6f\x8e\x5b\xec\x7f\x00\x00\x00\x18" "\x46\xee\xfe\xb7\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x5b\xe3" "\xa6\x63\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x37\x7f\xfe" "\x11\xbf\xff\x7f\xf5\x6a\xb5\xd2\xff\xef\xc0\x22\xfa\xff\x09\x73\xef" "\xff\xbd\xff\xaf\xff\x9f\xd2\xae\xff\x3f\x8f\xfe\x5f\xff\xcf\xba\xb9" "\xf5\xff\xb9\xfb\xdf\x16\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe" "\xb7\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x3b\xe2\x16\xfb\x1f" "\x00\x00\x00\x86\x91\xbb\xff\x9d\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb" "\xff\xf5\xff\xc3\xf7\xff\xd7\x2d\xa2\xff\xf7\xfe\xff\x8e\xe8\xff\xa7" "\xe9\xff\xb7\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x8e\xc4\xbe\xfa\xff\xdc" "\xfd\xef\x8a\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xbb\xe3\x16" "\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x3d\x71\x8b\xfd\x0f\x00\x00\x00" "\xc3\xc8\xdd\xff\xde\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\xff" "\xe3\xb3\xeb\xff\x4f\x9c\xf3\xd7\x6b\xf2\xfe\xbf\xfe\x7f\x47\xf4\xff" "\xd3\xf4\xff\x5b\xe8\xff\xf5\xff\xfa\xff\xeb\xf5\xff\xec\xd2\xdc\xde" "\xff\xcf\xdd\xff\xbe\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xbf" "\x3f\x6e\xfd\x4f\xb7\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x07\xe2\x16" "\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x83\x71\x4b\x93\xfd\xaf\xff\xd7" "\xff\xeb\xff\xf5\xff\xc3\xbf\xff\xaf\xff\x6f\x45\xff\x3f\x4d\xff\xbf" "\x85\xfe\x5f\xff\xaf\xff\xf7\xfe\x3f\x3b\x35\xb7\xfe\x3f\x77\xff\x87" "\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xe1\xb8\xc5\xfe\x07" "\x00\x00\x80\x61\xe4\xee\xff\x48\xdc\x62\xff\x03\x00\x00\xc0\x30\x72" "\xf7\xdf\x18\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x3f" "\xfd\x67\xa8\xff\x1f\x83\xfe\x7f\xda\xd1\xf4\xff\x27\xf5\xff\xfa\xff" "\xea\xe7\xaf\x88\xff\x2f\xd0\xff\xeb\xff\xb7\xfd\x7a\xc6\x34\xb7\xfe" "\x3f\x77\xff\x47\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xb1" "\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x78\xdc\x62\xff\x03\x00" "\x00\xc0\x22\x1d\xdb\xf0\x73\xb9\xfb\x3f\x11\xb7\x34\xd9\xff\xfa\x7f" "\xfd\xbf\xfe\x7f\x2e\xfd\xff\x89\xb5\x3f\x47\xfd\xff\x69\xde\xff\xd7" "\xff\x5f\x0a\xfd\xff\x34\xef\xff\x6f\xa1\xff\xbf\xc4\x7e\xfe\x76\xe7" "\xfc\x68\x69\xef\xff\x9f\xff\xcf\x2f\xfd\xbf\xfe\x9f\xdd\x9b\x5b\xff" "\x9f\xbb\xff\x93\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x54" "\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x7f\x3a\x6e\xb1\xff\x01\x00" "\x00\x60\x18\xb9\xfb\x3f\x13\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x7f" "\x2e\xfd\xbf\xf7\xff\xf5\xff\xfa\xff\x5d\xd0\xff\x4f\xd3\xff\x6f\xa1" "\xff\xdf\xeb\xfb\xf9\x4b\xff\xfa\xf5\xff\xfa\x7f\xd6\xcd\xad\xff\xcf" "\xdd\xff\xd9\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x7f\x2e\x6e" "\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x3f\x1f\xb7\xd8\xff\x00\x00\x00" "\x30\x8c\x83\xdd\x9f\x71\x59\xc3\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff" "\xfa\xff\xcd\x9f\xaf\xff\x5f\x26\xfd\xff\x34\xfd\xff\x16\xfa\x7f\xfd" "\xbf\xfe\x5f\xff\xcf\x4e\xcd\xad\xff\xff\xc2\xc1\xaf\x3a\xb1\xfa\x62" "\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xbf\x14\xb7\xd8\xff\x00" "\x00\x00\x30\x8c\xdc\xfd\x5f\x8e\x5b\xec\x7f\x00\x00\x00\x18\x46\xee" "\xfe\xaf\xc4\x2d\x4d\xf6\xbf\xfe\x5f\xff\xbf\x8c\xfe\xff\xd4\xa9\x53" "\xd7\xea\xff\xf5\xff\xe7\xfe\x7e\xce\xf4\xff\x37\xe9\xff\x29\xfa\xff" "\x69\xfa\xff\x2d\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x9d\x9a\x5b\xff\x9f" "\xbb\xff\xab\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x5a\xdc" "\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x7f\x3d\x6e\xb1\xff\x01\x00\x00" "\x60\x18\xb9\xfb\xbf\x11\xb7\x34\xd9\xff\xfa\xff\x19\xf4\xff\x27\xf4" "\xff\xde\xff\xd7\xff\xaf\xbc\xff\xaf\xff\xdf\x11\xfd\xff\x34\xfd\xff" "\x16\x23\xf6\xff\x27\x2e\xfe\xb7\xbf\xef\x7e\xfe\xb0\xf6\xfd\xf5\xeb" "\xff\xf5\xff\xac\x9b\x5b\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\xff\xa3\xeb\xff\xff\xff\xdf\x5d\x97\xf7\xff\x4f\xae\x36\x7f" "\xfd\xfa\x7f\xfd\xbf\xfe\x5f\xff\x7f\x6b\xd3\xff\x4f\xd3\xff\x6f\x31" "\x62\xff\x7f\x09\xf6\xdd\xcf\x2f\xfd\xeb\xd7\xff\xeb\xff\x59\x37\xb7" "\xfe\x3f\x77\xff\x77\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff" "\xbd\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x7e\xdc\x62\xff\x03" "\x00\x00\xc0\x30\x72\xf7\xff\x20\x6e\x69\xb2\xff\xf5\xff\x33\x78\xff" "\x7f\xc0\xfe\xdf\xfb\xff\x9b\xbf\x3f\xf4\xff\xb3\xee\xff\xaf\xd4\xff" "\x8f\x41\xff\x3f\x4d\xff\xbf\x85\xfe\x5f\xff\xaf\xff\xdf\x51\xff\x9f" "\xdf\xcd\xfa\xff\xee\xe6\xd6\xff\xe7\xee\xff\x61\xdc\xd2\x64\xff\x03" "\x00\x00\x40\x07\xb9\xfb\x7f\x14\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc" "\xfd\x3f\x8e\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x9b\xe2\x96\xb3" "\xf6\xff\xa6\xb6\x7b\x14\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf\xfc" "\xf9\xfa\xff\x65\xd2\xff\x4f\xbb\xd8\xfe\xff\xf8\xea\x70\xfd\x7f\xd2" "\xff\xeb\xff\xf5\xff\x5d\xfb\x7f\xef\xff\x73\xda\xdc\xfa\xff\xdc\xfd" "\x3f\x89\x5b\xfc\xfb\x7f\x00\x00\x00\x58\x9c\xab\x2e\xf0\xf3\xb9\xfb" "\x7f\x1a\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x3f\x8b\x5b\xec\x7f" "\x00\x00\x00\x18\x46\xee\xfe\x9f\xc7\x2d\x37\x5f\xb9\xaf\x2f\xe9\x48" "\xe9\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf3\xe7\xeb\xff\x97\x49\xff" "\x3f\xcd\xfb\xff\x5b\xe8\xff\x77\xd1\xcf\xdf\x45\xff\x3f\x46\xff\xbf" "\x5a\xe9\xff\x39\xbc\xb9\xf5\xff\xb9\xfb\x7f\x11\xb7\xf8\xf7\xff\x00" "\x00\x00\x30\x8c\xdc\xfd\xbf\x8c\x5b\xec\x7f\x00\x00\x00\x18\x46\xee" "\xfe\x5f\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xaf\xe3\x96\x26" "\xfb\x5f\xff\xaf\xff\x3f\x64\xff\x7f\x90\x66\xea\xff\x4f\xd3\xff\x9f" "\xa6\xff\xdf\x4c\xff\x7f\x34\xf4\xff\xd3\xf4\xff\x5b\xe8\xff\xbd\xff" "\xaf\xff\xf7\xfe\x3f\x3b\x35\xb7\xfe\x3f\x77\xff\x6f\xe2\x96\x26\xfb" "\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xdb\xb8\xc5\xfe\x07\x00\x00\x80\x61" "\xe4\xee\xff\x5d\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x3e\x6e" "\x69\xb2\xff\xf7\xd6\xff\xc7\x7f\xd5\xfa\xff\xc5\xf7\xff\xde\xff\xd7" "\xff\xeb\xff\xf5\xff\xb3\xa2\xff\x9f\xa6\xff\xdf\x42\xff\xaf\xff\xd7" "\xff\xeb\xff\xd9\xa9\x4b\xe9\xff\x4f\x4e\xff\xa5\x76\xd2\xff\xe7\xee" "\xff\x43\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xff\x18\xb7\xd8" "\xff\x00\x00\x00\x30\x8c\xdc\xfd\x7f\x8a\x5b\xec\x7f\x00\x00\x00\x18" "\x46\xee\xfe\x3f\xc7\x2d\x4d\xf6\xbf\xf7\xff\xf5\xff\xfa\x7f\xfd\xbf" "\xfe\x7f\xf3\xe7\xeb\xff\x97\x49\xff\x3f\x4d\xff\xbf\x59\xfd\x41\xe9" "\xff\xf5\xff\xfa\x7f\xfd\x3f\x3b\x35\xb7\xf7\xff\x73\xf7\xff\x25\x6e" "\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x7f\x8d\x5b\xec\x7f\x00\x00" "\x00\x18\x46\xee\xfe\x9b\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff" "\x6f\x71\x4b\x93\xfd\xdf\xb7\xff\x3f\xb6\xd2\xff\xeb\xff\x93\xfe\x5f" "\xff\xbf\xe9\xf3\xf5\xff\xcb\xa4\xff\x9f\xb6\xcf\xfe\xff\x6e\xb7\xd9" "\xfe\xb1\xde\xff\xdf\x7b\xff\x9f\x5f\x82\xfe\x5f\xff\xaf\xff\x67\x27" "\xe6\xd6\xff\xe7\xee\xff\x7b\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9" "\xfb\xff\x11\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xff\x8c\x5b\xec" "\x7f\x00\x00\x00\x18\x46\xee\xfe\x7f\xc5\x2d\x4d\xf6\xff\x96\xfe\xff" "\x78\xfd\x07\x87\xeb\xff\xbd\xff\xbf\xd2\xff\x17\xfd\xbf\xfe\x7f\xd3" "\xe7\xeb\xff\x97\x49\xff\x3f\xcd\xfb\xff\x5b\xe8\xff\xbd\xff\xaf\xff" "\xdf\x69\xff\x7f\x85\xfe\xbf\xbd\xcb\xe9\xff\xef\xb9\xf9\x2f\xb5\x93" "\xfe\x3f\x77\xff\xbf\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\x7f" "\x4b\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x27\x6e\xb1\xff\x01" "\x00\x00\x60\x18\xb9\xfb\xff\x1b\xb7\x34\xd9\xff\x7d\xdf\xff\xd7\xff" "\xaf\xf4\xff\x45\xff\xaf\xff\xdf\xf4\xf9\xfa\xff\x65\xd2\xff\x4f\xd3" "\xff\x6f\xa1\xff\xd7\xff\xeb\xff\xbd\xff\xcf\x4e\xcd\xed\xfd\xff\xdc" "\xfd\xff\x0b\x00\x00\xff\xff\xc2\xa6\x58\x83", 24814); syz_mount_image( /*fs=*/0x20000180, /*dir=*/0x20000000, /*flags=MS_LAZYTIME|MS_POSIXACL|MS_NODIRATIME|MS_DIRSYNC*/ 0x2010880, /*opts=*/0x200008c0, /*chdir=*/0xfe, /*size=*/0x60ee, /*img=*/0x20001080); 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; }