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