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