// https://syzkaller.appspot.com/bug?id=52cec47c8bb90ea9a35768c7b77e0bf1856b2442 // 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 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif #ifndef __NR_openat #define __NR_openat 56 #endif #ifndef __NR_write #define __NR_write 64 #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); } } uint64_t r[1] = {0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$ocfs2 arguments: [ // fs: ptr[in, buffer] { // buffer: {6f 63 66 73 32 00} (length 0x6) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x200000 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {6a 6f 75 72 6e 61 6c 5f 61 73 79 6e 63 5f 63 6f // 6d 6d 69 74 2c 63 6f 68 65 72 65 6e 63 79 3d 66 75 6c 6c 2c 65 72 // 72 6f 72 73 3d 63 6f 6e 74 69 6e 75 65 2c 68 65 61 72 74 62 65 61 // 74 3d 6e 6f 6e 65 2c 65 72 72 6f 72 73 3d 63 6f 6e 74 69 6e 75 65 // 2c 6e 6f 69 6e 74 72 2c 67 72 70 71 75 6f 74 61 2c 00 17 96 fa 69 // 43 53 e3 80 78 03 df 5e a6 fd 4d 6e 6a 26 13 d3 36 eb 62 b8 63 dc // d8 9e 37 b4 5f 8b d0 41 99 a1 4c 48 b3 e5 53 e0 35 ab 30 0b a3 c6 // 0c 27 68 2a 8a b5 65 69 69 d8 29 53 5c 08 62 f6 e3 a3 5f 15 fe 4d // 50 c0 d5 c7 46 31 34 46 25 d6 22 4c 43 64 74 bb 10 1f f4 7a 14 c5 // 1e 34 2c a2 91 c0 9c 35 d9 d3 1b 06 b6 b8 6c b9 dc ca e3 87 b5 f1 // e7 c5 e1 d4 45 d5 28 45 a3 fa 4c 77 23 4e a9 d3 7c 8a 27 7c 85 e6 // 9a 85 cc 6f fe b2 25 be bb ca 91 b5 69 b8 0e e3 03 c9 a2 1c 58 db // 5d 96 fb 87 f1 71 3e 0e 9b 89 6e 37 be ca e2 e7 a9 78 25 9a 08 47 // e9 fb 08 dc b8 b9 f8 4f 61 64 63 da 25 07 db 1b 34 89 76 9e 99} // (length 0x12d) // } // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x4703 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x4703) // } // ] // returns fd_dir memcpy((void*)0x200026c0, "ocfs2\000", 6); memcpy((void*)0x20004780, "./file0\000", 8); memcpy( (void*)0x20000340, "\x6a\x6f\x75\x72\x6e\x61\x6c\x5f\x61\x73\x79\x6e\x63\x5f\x63\x6f\x6d\x6d" "\x69\x74\x2c\x63\x6f\x68\x65\x72\x65\x6e\x63\x79\x3d\x66\x75\x6c\x6c\x2c" "\x65\x72\x72\x6f\x72\x73\x3d\x63\x6f\x6e\x74\x69\x6e\x75\x65\x2c\x68\x65" "\x61\x72\x74\x62\x65\x61\x74\x3d\x6e\x6f\x6e\x65\x2c\x65\x72\x72\x6f\x72" "\x73\x3d\x63\x6f\x6e\x74\x69\x6e\x75\x65\x2c\x6e\x6f\x69\x6e\x74\x72\x2c" "\x67\x72\x70\x71\x75\x6f\x74\x61\x2c\x00\x17\x96\xfa\x69\x43\x53\xe3\x80" "\x78\x03\xdf\x5e\xa6\xfd\x4d\x6e\x6a\x26\x13\xd3\x36\xeb\x62\xb8\x63\xdc" "\xd8\x9e\x37\xb4\x5f\x8b\xd0\x41\x99\xa1\x4c\x48\xb3\xe5\x53\xe0\x35\xab" "\x30\x0b\xa3\xc6\x0c\x27\x68\x2a\x8a\xb5\x65\x69\x69\xd8\x29\x53\x5c\x08" "\x62\xf6\xe3\xa3\x5f\x15\xfe\x4d\x50\xc0\xd5\xc7\x46\x31\x34\x46\x25\xd6" "\x22\x4c\x43\x64\x74\xbb\x10\x1f\xf4\x7a\x14\xc5\x1e\x34\x2c\xa2\x91\xc0" "\x9c\x35\xd9\xd3\x1b\x06\xb6\xb8\x6c\xb9\xdc\xca\xe3\x87\xb5\xf1\xe7\xc5" "\xe1\xd4\x45\xd5\x28\x45\xa3\xfa\x4c\x77\x23\x4e\xa9\xd3\x7c\x8a\x27\x7c" "\x85\xe6\x9a\x85\xcc\x6f\xfe\xb2\x25\xbe\xbb\xca\x91\xb5\x69\xb8\x0e\xe3" "\x03\xc9\xa2\x1c\x58\xdb\x5d\x96\xfb\x87\xf1\x71\x3e\x0e\x9b\x89\x6e\x37" "\xbe\xca\xe2\xe7\xa9\x78\x25\x9a\x08\x47\xe9\xfb\x08\xdc\xb8\xb9\xf8\x4f" "\x61\x64\x63\xda\x25\x07\xdb\x1b\x34\x89\x76\x9e\x99", 301); memcpy( (void*)0x20004800, "\x78\x9c\xec\xdb\x5d\x88\x5c\x57\x01\x07\xf0\x73\x67\x57\xb3\x9b\x26\xdb" "\xfd\x48\x9b\xa4\xe9\xc7\x24\x11\x5c\xb4\x2c\x9b\x3e\x55\xeb\x43\x5c\xab" "\x36\x9a\x36\x1f\xda\x56\x53\x65\x9d\xdd\x6c\x37\xab\xb3\x3b\xeb\xee\x8c" "\x16\x0c\x52\x83\x20\x0a\x82\x12\x04\x15\x3f\xa8\x0a\xa5\x2f\xb5\x20\x06" "\xfa\x52\x8b\x50\xf0\x03\x69\x15\x4a\x45\xd1\xfa\x22\x52\xa8\x82\x0f\x06" "\x6d\xa0\x2b\x33\x73\x6f\x76\xee\x9d\xd9\xde\xc9\x4e\xd2\xd2\xf6\xf7\x83" "\x76\xf6\x9e\x7b\xcf\xb9\x67\xf6\xbf\xf7\xdc\x39\xf7\x4c\x0a\xb1\xea\xa9" "\x85\xd5\xe2\xc2\x6a\xb1\xb4\x54\xac\xcc\xde\xbf\x7a\x4b\xf1\x73\x95\x72" "\x6d\x71\x2e\x14\x5e\x25\xaf\xf5\xf9\xe9\xce\x95\xc8\x49\xf6\xaf\x9d\x23" "\xef\xfb\xc0\x47\xee\xb9\x25\x84\x3f\x1c\xfb\xda\x87\xd6\xd6\xd6\xd6\x42" "\xdd\x70\xe8\xe8\x40\xcb\xcf\xe7\xff\x7d\x7a\xb6\xf5\x35\x51\xc8\xd4\xa9" "\xb7\xdb\xb9\xb5\xa6\x3f\xd6\x1e\x79\xe9\xe7\x6f\x79\xa5\x23\xf2\x9c\x08" "\x21\xec\x68\xeb\x57\x5d\x5f\x08\xe1\x63\xbf\x08\x61\x4b\x08\x61\x24\x2e" "\x1b\x8d\x5f\x07\x43\x08\xdb\x42\x08\x51\x08\xe1\xd1\xdf\xfc\xeb\xc7\x03" "\xbd\x74\xa1\xc5\xd9\x7b\x5f\x78\xee\xd8\x99\xc3\xfb\xce\x4c\x3d\xfe\xd8" "\x33\x17\xe6\x8f\x6e\x78\x60\x14\xc2\x77\xcb\xbb\x6f\x9e\x5f\x7c\x71\x7f" "\xdf\x6d\xcf\xbf\xe3\x32\x9d\x1e\x00\x00\x5e\xd1\x07\x8f\x1f\xb9\xfb\xe8" "\xe4\x81\xf0\x64\x14\x86\xce\xf5\xb7\x7f\x5e\xdf\x19\xbf\x26\x9f\x8f\xef" "\x7c\xdb\xa7\xee\x7a\xb8\x7f\x7d\xff\x1a\xdd\xe9\x7b\x15\x43\x05\x00\x00" "\x80\x8c\xf5\xf9\xff\x70\xf4\x72\x87\xf5\xba\x64\x65\x2d\x59\x12\x7c\xe2" "\x81\x13\x77\x3f\x15\xad\xef\x37\xb1\x7d\x7d\x3b\x74\xd7\x91\xdb\xdf\x3f" "\x79\x20\x5e\xff\x8d\xda\xf6\xdf\x1a\x17\xfd\xf3\xbd\x7d\x8d\x35\xd4\xec" "\xba\x6f\x76\xfd\x77\x24\x53\xbf\xf3\xfa\xef\xfa\x79\x1e\xfe\xea\xb3\xbf" "\x5c\x7a\xeb\xe6\xfb\x9f\xf4\x2f\x39\xef\x70\x88\x0a\x13\xa9\xed\x42\x61" "\x62\x22\x84\x63\x53\xcd\xed\x5d\xd1\xd6\x42\xb9\xb2\x5a\x7d\xe7\xfd\x95" "\xda\xd2\xc9\xcd\x9f\xf7\x8d\x22\x9d\x7f\x76\xf5\x7e\x7d\x41\xbf\xdb\xfc" "\x47\x33\xd5\xf3\xd6\xff\x77\x7f\xe2\xf3\x3f\x1b\xec\xef\xe5\x1d\x8c\x85" "\xec\x5f\x6d\x7d\xbb\xd8\xfe\xa7\x4c\x07\xe9\xfc\x37\x1e\xcb\x7f\xf2\xa5" "\xa8\xab\xfc\xc7\x32\xf5\xf2\xf2\xbf\xe3\xe9\xed\xe7\x7f\xb5\xa5\x97\x77" "\x90\x3d\x23\x97\x22\x9d\x7f\xf3\x42\xdc\xd7\x7a\x40\xb1\x39\x00\xd4\xf3" "\xff\x66\x7f\x7e\xfe\x3b\x32\xed\xe7\xe5\xff\xfd\xa9\x73\x8f\x9e\xd8\xc4" "\xf7\x7f\xea\xe3\xcc\x70\x54\xef\xeb\x40\x6a\x04\x78\x39\x2e\xdf\xe0\x2b" "\x4c\x64\xa4\xf3\x6f\x06\x91\x1a\x3a\xe3\x5f\xe4\x46\xd7\xff\xff\x32\xf9" "\x5f\x93\x69\x3f\x2f\xff\x3b\x2b\xff\xf8\xdd\xdf\x7a\xb8\xff\x6f\x34\xfe" "\x8f\x4f\xf5\xd2\xe6\x9b\x47\x3a\xff\x66\x10\xc5\xd4\x11\xeb\xd7\xff\x48" "\x21\xff\xfa\xbf\x36\xd3\x7e\x5e\xfe\xbf\x3d\xf5\xe7\x67\x3f\xd9\xd3\xbd" "\xba\x3d\xff\x7a\xff\xc7\xdd\xff\xbb\x92\xce\x3f\xbe\x11\xa7\x07\xcf\xc6" "\x6f\xb2\xdb\xf1\x7f\x67\xa6\xfd\xbc\xfc\x77\x8d\xdd\xf7\xd0\xc2\x26\xfa" "\xfd\xe1\xc1\xb8\x9f\x43\x51\x18\x6b\xf9\xd6\xe9\xb9\xfa\x2d\x6c\x68\x7d" "\xbd\xba\x31\xa5\xa9\xef\x5e\xde\xc4\x49\xde\x04\xd2\xf9\x37\x7f\x6b\xa9" "\x4b\x67\xa8\xf9\xd2\xb8\xfe\x87\xf3\xc7\xff\x5d\x99\xf6\xf3\xf2\x7f\x68" "\xcf\xd7\xdf\x73\xba\xa7\xef\xff\x76\x1e\xff\x27\x8d\xff\x5d\x49\xe7\x3f" "\xd8\x28\xbb\x94\xfc\x5f\xca\xe4\xbf\x3b\xd3\x7e\x5e\xfe\x3f\x3c\xfd\xf7" "\xbf\xdc\x77\x99\xc7\xff\xfa\xf6\x41\xf9\x77\x25\x9d\xff\xd6\xb6\xfd\xeb" "\xcf\x7f\x0a\x5d\xcd\xff\xae\xcb\xd4\xcf\x7b\xfe\xb3\x6f\xf4\xa9\x47\xfe" "\xda\xc3\xfc\x3f\xe9\x5f\x72\xde\xe4\xf9\x4f\xf2\x1c\x62\x3c\x6a\x3e\xff" "\xa1\xb3\x74\xfe\x57\x6d\x78\x5c\xb7\xf7\xff\x3d\x99\x7a\x79\xd7\xff\xb7" "\xfe\xf3\xfc\xd3\xfb\x7b\x19\xff\xa3\x01\x4f\x00\x7a\x90\xce\x7f\x5b\xb3" "\xb0\xc3\x04\xb0\xdb\xfc\xaf\xcf\xb4\x9f\x97\xff\x17\xee\xf9\xf2\xc7\xff" "\xb4\x89\xf9\x5f\xe3\x13\xdf\x40\x92\x7f\xcb\xfc\x7f\x4b\xb3\xfc\xa8\xf1" "\xbf\x2b\xe9\xfc\xb7\x37\x0b\x53\xff\x18\xea\xc1\xc6\xff\x1b\xf7\xff\xa8" "\x3d\xf7\xff\x66\xf2\xbf\x21\xd3\x7e\x5e\xfe\x17\x0e\x4d\xf4\x7f\xe5\x32" "\xdf\xff\xeb\xfd\x1f\xef\xf0\x28\x9b\x76\xe9\xfc\x87\x36\x3c\xae\x9e\xff" "\xef\xbb\xb8\xff\xdf\x98\xa9\x97\x97\xff\x17\xf7\xfe\xf4\xc5\x9b\x7b\xfa" "\xfc\x1f\xc2\xa4\xb9\xfe\xa6\xa5\xf3\xbf\x7a\xc3\xe3\x1a\xd7\xff\x40\x7e" "\xfe\x37\x65\xea\xe5\xe5\xff\x9d\x6f\xfc\xfa\x89\x07\x7b\xe8\xff\xdb\x7b" "\xa8\x4b\x36\xff\xe6\xbd\x3e\x75\x39\xc5\x9f\xcd\xbb\x9d\xff\x17\x33\xed" "\xe7\xe5\xff\xa3\xf1\xf3\x67\xf7\x5f\x81\xf9\xdf\xad\xee\xff\x5d\x49\xe7" "\xdf\x5c\x35\xbf\x94\xfc\xb3\xf3\xff\xbd\x99\xf6\xf3\xf2\xff\xde\x91\x1f" "\xac\xf4\x5f\x81\xe7\x3f\x77\xc8\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x60\x53\x46\xe3\xd7\xe1\x10\x15\x26\x52" "\xdb\x85\xc2\xc4\x44\x08\x63\xf1\xf6\xae\xb0\x35\x9a\x29\x9d\x9c\x9e\x29" "\x57\x66\x3f\xb3\x1a\xc2\x8e\xb8\xbc\x18\x46\xa3\xf9\x72\x65\xa6\x54\x9e" "\x5e\x58\xaa\x9c\x9c\x9b\x2e\x95\xcb\x95\xd9\x10\xae\x89\xf7\xef\x08\x03" "\xd1\x6a\xb9\x52\x9d\x5e\x2c\x2d\x5f\x7b\xb1\xad\xc1\xe8\xd4\x5c\x69\xa5" "\x3a\x33\x57\xaa\x86\x10\x76\xc6\xe5\xd7\x87\xed\x49\x5b\x33\x0b\xd5\xc5" "\xd2\x72\xe3\xd8\xa4\xce\x55\x51\xe9\xb3\xb5\x4a\xb5\x34\x51\x5b\x9d\x5b" "\x09\xbb\x2f\x96\x6f\x4b\xca\xe7\x57\x2a\xb5\xe5\xeb\x2e\xb6\x75\x75\xa1" "\xb2\xb2\x7c\xaa\xb4\x34\x7d\x72\x61\xe5\xdd\x93\x93\x93\x93\x61\xcf\xc5" "\x3e\x8f\x44\x73\x0f\x54\xe7\x96\xaa\xcd\xde\x36\xf7\xd6\xeb\x24\x75\x87" "\xa3\x96\x37\xd3\xd8\x7d\x43\xcb\xf9\x3e\x5d\xa9\xad\x2c\x95\xca\x8d\xf2" "\x1b\x5b\xea\x94\x2b\xb3\xa5\x72\x4b\x9d\x9b\x5a\xce\x57\x5d\xa9\x2d\xcd" "\x96\xaa\x73\xd3\xe5\xca\x7c\x72\xbe\x62\x4b\xdd\x96\xf7\xd6\xd8\xbd\x37" "\xde\x37\x1e\x46\x52\xef\x2f\xa9\x9b\x75\x30\x7e\xbd\xfd\xd0\xf1\x8f\x1e" "\x3f\x7c\xa0\x6d\x7f\x31\x4a\xe7\xbd\x54\x5b\x9c\x9b\xdc\xde\xf9\x6f\x02" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x80\x37\xae\x27\x6f\x7b\xd7\xb7\x43\x08\x7d\xcd\xad\x42\x08" "\xe1\x60\xf2\x43\x14\xff\x97\x72\xf6\xde\x17\x9e\x3b\x76\xe6\xf0\xbe\x33" "\x53\x8f\x3f\xf6\xcc\x85\xf9\xa3\x9d\x8e\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xff\xec\xc0\x81\x00\x00\x00\x00\x00" "\x90\xff\x6b\x23\x54\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x61\xe7\x7e\x5e" "\xaa\xe8\xe2\x38\x00\x9f\x19\xdf\xfb\x5a\x20\xa5\xb4\x11\x72\x19\x18\x22" "\xa2\x3b\x09\x0b\xfa\x45\x24\x95\xd7\xc8\x96\x6d\x5a\x07\xb5\x4a\xc8\xa0" "\x28\x30\x8c\x68\x59\x10\x04\x41\xed\xa2\x82\xa0\x55\x50\xf9\x17\x44\x2d" "\x5c\xb6\xaa\x36\xb5\x68\x61\x10\x41\xc5\xe8\x4c\x5e\xee\x08\x37\xbc\xd0" "\x31\xe7\x79\x60\x38\x33\xcc\xbd\x67\xbe\x30\x70\xef\xcc\xf9\x1c\x0e\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xc0\xfa\x71\x76\xc7\x62\x57\xd6\x5e\xda\xb5\x79\x69\xeb" "\xee\x0f\xa1\x33\x3f\xf7\x7f\x08\x61\x34\x59\xde\xff\xbc\xb7\x23\xf4\x84" "\x10\xbe\x7e\x99\x39\x1d\x56\x69\x0b\x3d\x4d\xfd\xbf\x99\x9c\x1b\x2f\x5f" "\x35\xf9\xbd\xb7\x7f\xfc\xe1\xf5\xd1\x64\xed\xf5\x17\xdf\x2d\xae\xdb\x1d" "\x92\x74\xa8\xe1\x78\x67\x92\xa6\x43\x43\x6b\xef\x7f\xa3\xba\x33\xf8\x6c" "\x7a\x30\x09\x21\x8d\x5d\x08\x51\x2c\x8c\x3d\x39\x53\x0b\x21\x74\xc4\x2e" "\x84\x28\x7e\x7e\x9c\xbf\x98\xfd\xbe\xff\x17\xbb\x10\xa2\xe8\xff\x70\xb7" "\x2b\xbb\xff\xb5\xd8\x85\x10\xc5\xd6\xdd\x9f\xfa\x6a\xf9\x33\x1e\xd5\x73" "\xbe\x7e\x61\xb0\xf1\xbf\xbf\xd5\x23\x78\x1b\x8f\xe8\xac\x43\x6f\x4f\x5e" "\x79\x97\xba\xa9\x95\xf7\x32\x7f\xff\x4f\xf2\xcd\xfb\x60\x35\xcc\x9e\x38" "\xf2\xfe\x79\xec\x22\x88\x66\x76\x6e\xea\x68\xec\x1a\x00\x00\x80\xbf\xeb" "\x5c\x8b\xfc\x3f\x6c\x59\xde\xbf\x7f\x39\x09\x3d\xdd\xe5\xdc\xff\x5b\x53" "\xfe\xdf\xdb\xd4\xff\xea\xf9\xff\x8a\x7b\xdb\x6f\x8c\xcd\xb4\x15\x42\x6c" "\x2b\x8d\x4d\x66\xc7\xc3\xfb\xda\xe9\x73\xe3\x3b\x35\x70\xf5\xf6\xeb\x9a" "\xf1\x9e\xaa\x92\xff\x57\x9b\xfc\xbf\xda\xe4\xff\xd5\x26\xff\xaf\x36\xf9" "\x7f\xb5\xc9\xff\xc9\xbc\x92\xff\x57\xd2\xe3\x9b\x7b\x16\x5f\xc4\x2e\x82" "\x68\xe4\xff\x00\x00\x50\x3d\x87\x8e\x4f\x4c\xd5\x87\x47\xb2\x97\xff\x4d" "\x3f\x3a\xcb\x79\x7d\x5f\xde\xd6\xf3\x3c\xfd\xc1\xad\xe9\x81\x47\x0d\xe3" "\x46\xf2\xc3\x7f\xdb\xe1\x63\x13\x07\x0e\x0e\x8f\xe4\xf7\xbd\x3c\x20\xb8" "\xb2\xfe\x43\xba\x74\xf6\x7b\x3e\xdf\xa3\xb9\x2d\x4c\x36\xcd\xbb\x68\xb5" "\xfe\x43\xef\xd3\x85\xf9\x6b\x9d\xe5\x4f\xd4\xff\x70\xfe\x46\x51\x5f\x71" "\x5d\xeb\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xbf\xd8\x9d\x7b\x1a\x06\xc1\x28\x0c\xa3\xdf\x6d\x45" "\xd4\x46\xab\xa2\x09\x0b\x3f\x09\x3e\xd0\xc0\x88\x00\xa4\x30\xa3\x01\x1d" "\x4c\x18\x80\x81\x10\x50\xc0\x40\xce\x59\xee\x4d\x9e\xe5\x05\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x9e\xef\x5f\xe5\x75\xf1\xfd\xa5\x31\xd2\x6b\x8d\x48\x53\xd9\x65\xd7\xfe" "\x39\x9e\x66\x3f\x73\xdf\x0e\xcb\xfb\xec\x71\xe3\x56\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd8\xd8\x81\x03\x19\x00\x00\x00" "\x00\x61\xfe\xd6\x79\xb4\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x80\xa7\x02\x00\x00\xff\xff\x04\xec\xcb\x3a", 18179); syz_mount_image(/*fs=*/0x200026c0, /*dir=*/0x20004780, /*flags=MS_RELATIME*/ 0x200000, /*opts=*/0x20000340, /*chdir=*/1, /*size=*/0x4703, /*img=*/0x20004800); // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0x10142 (4 bytes) // mode: open_mode = 0x0 (2 bytes) // ] // returns fd memcpy((void*)0x20000180, "./file1\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000180ul, /*flags=O_NOCTTY|O_DIRECT|O_CREAT|O_RDWR*/ 0x10142, /*mode=*/0); if (res != -1) r[0] = res; // write$UHID_INPUT arguments: [ // fd: fd_uhid (resource) // data: ptr[in, uhid_req[UHID_INPUT, uhid_input_req]] { // uhid_req[UHID_INPUT, uhid_input_req] { // type: const = 0x8 (4 bytes) // data: uhid_input_req { // data: buffer: {94 0d e3 12 c9 be 10 5c 33 39 43 90 ce 36 0a dc b8 // 44 3d 1c a2 46 4a d2 9f e4 6c 87 17 a8 23 e2 9b 12 01 1e 86 75 16 // a9 c1 b6 33 94 e6 b4 92 25 49 ac 2f 98 b0 ba fc 01 37 57 37 1b 57 // 62 e5 b0 3b 4c 8c fc c5 d3 43 68 b2 19 17 74 09 55 f8 0e 80 fa 98 // a6 8c b0 52 b1 02 c0 3e 72 a4 c6 70 27 78 df cc 5b b7 4c e2 3d 91 // 4f 8b 14 3b d9 4d 73 82 a3 85 be 93 f6 1e ef 50 9d 6c bf fa 81 af // ee 0e 35 24 b8 b7 68 a0 ef 0a e0 0a d2 a2 37 28 72 24 36 d1 c1 50 // b5 12 b6 c6 42 cb 2e ea ec b0 85 71 90 14 33 20 15 47 4a 4d df 70 // 98 bb 5a c3 98 c0 ce 25 6e 4d cf d4 61 3d be 9a 34 b9 64 39 54 6a // 28 db 9c e9 7b 34 4b 6c 97 28 9b 38 54 e1 27 b4 f5 33 f5 64 39 a7 // 4f cf fc 41 df ef fc 5d 7a 99 c0 1a 0f ed fd 93 7a f5 95 c0 5a 94 // 22 16 58 1f 8e fd 1f fa 1c 23 c6 f0 8d 69 87 be 16 bb 52 42 0c 80 // bd a5 da 46 98 7f bf 72 09 48 7d ef e0 37 42 26 a5 26 d3 58 86 60 // 19 2d 92 1b fe 40 7f 1d 18 33 f3 90 dd 8b 41 b3 0c 53 b4 de ba 5a // 08 6c 51 6d 9b c8 ca 57 2d 8f 0f 87 53 03 c8 5b d1 65 70 e8 9f 74 // d7 c4 ef 54 7a 07 dd 62 f3 34 fe e7 6e 2e 0c a3 1c ca 1a d0 52 8d // 74 48 ce ec d4 c9 78 5c 30 2a 40 bc 11 43 35 de a8 77 59 58 a3 be // ff 8e eb 31 af cb 9a 2c 75 61 98 0f 85 54 22 07 69 e5 e9 0f df b2 // f5 a9 05 51 8e f1 66 7a 91 e2 dd 47 43 83 e4 31 2e a2 19 fe 65 d4 // 21 00 67 34 fe 04 66 1f 75 e6 9a e8 25 12 0b 33 fb 74 29 3e 3b 83 // e7 f7 f5 63 b4 75 cd 6e 08 fd 68 78 ee 42 4f a1 41 d3 ae e8 6d 95 // 2c 21 2c 2e 77 30 79 65 10 a4 63 a8 da 48 68 52 b2 3a 1d 62 b7 14 // a1 13 01 49 90 29 d9 ef b7 15 a1 1b 64 f2 4c d2 66 0c 9a 47 57 3c // e4 dd 04 2e 33 3e 43 3e e2 8b 2b ce 54 5c f0 67 04 01 93 05 7d e2 // 90 96 5c 1d 54 7f ed 13 7e 5e b2 2f 5c 0a 06 ad 4d e6 b7 82 04 bf // 05 3f 37 c5 d9 6b 80 53 ea 44 5b 64 03 60 da 8f ce 33 91 51 4d c3 // d1 f4 e4 b3 50 47 13 8c d8 c2 71 7b cb a2 78 a4 f8 c2 7b ac 01 b4 // 69 ee 3f d0 40 04 f5 82 87 a1 83 07 b0 ad 41 20 f2 c2 6b 08 c3 26 // 72 49 bf be 10 64 a3 f1 71 e0 cf e5 95 f7 ab 14 6f 31 48 c7 32 28 // ed f6 94 dc 0c 40 0c 36 e3 49 3b 1a ca 5f 85 97 2d ad b8 d0 2b dd // b6 07 b7 a4 31 75 0c a4 86 38 12 b8 02 00 00 00 00 00 00 00 42 db // 29 71 e2 80 54 1c bf a4 46 c6 c6 d8 5b 77 e3 32 7a 2d 32 7c 25 b7 // 61 96 47 37 4e 76 b1 be 26 6c b6 89 59 d2 65 1d 0c 74 38 cb 1b 53 // 98 21 91 85 8c 66 50 0d 85 36 01 37 01 19 4a 9f 02 dd 77 21 6f 93 // 2e 07 a4 c4 b4 55 8b 2a 38 d7 e5 c3 9a 45 3c 8f b5 fa e0 d0 05 50 // a2 d1 43 f7 21 cd 67 6d 84 2f 2a e3 9e cb f9 9e 02 7b 4c f9 f3 c2 // a9 bf 3b 66 3e 51 a0 b2 9c f4 cf b0 87 7d 5b 89 fd fa 93 fd 9b f3 // 33 92 e6 a2 c8 df 36 f9 f2 fa a3 71 6d 29 3b 7d 94 c9 34 58 c1 7d // f9 9a aa dd 21 8f e4 c7 b9 67 b4 3f 48 72 5e 6b ac 67 bf 91 76 e8 // c6 3f 94 86 2b 03 6b 18 70 bc 31 4b 51 fe a9 d0 c9 20 20 42 7a ba // f5 be 10 d3 fa ad 2f 68 4d 46 a2 46 1f 2a 92 35 0d 6f 20 4f 03 ad // 2a 9f a5 4c bd 8a 7a 3e 7b a2 d5 4f 36 15 ac 5e a4 7f 12 05 72 f8 // ef 94 1e 81 b0 81 2b fc 42 27 ef 57 19 09 3a fb f9 00 40 ef 1a 5e // da 64 56 3e b7 fd 01 5e a5 43 42 34 0e c8 64 8d 91 1a 8f 3f 35 8c // a1 24 ef 8c 70 68 5b ce 2f ba ee eb f5 4d 05 9c ef d5 37 51 b5 cf // 33 fe 2d 92 c9 df 6a 63 82 1b 6d b5 18 82 10 56 5e 13 27 68 b1 92 // fb 27 e7 45 60 5c 52 9e 36 48 06 0a 98 d6 56 f3 5e 36 dc 4b e3 10 // 2b d6 78 db 0c eb 03 01 c5 cb 0f 7f 7a 08 c5 5c d0 38 a5 f7 51 a7 // c9 61 16 f0 bd 9c 9a 34 95 58 a7 a8 fc 6a 73 cc e1 13 25 49 16 98 // 22 bf 32 d7 42 fc 4f 4e 2e 50 f5 9e b6 69 f2 38 42 82 24 7c 60 25 // 3e dc 98 f9 bc 80 2a 28 8a 94 e1 01 1a 06 6c e9 f6 ec a5 f8 7d 2a // fd 89 39 00 c3 af f8 7b e9 59 45 12 69 bc 9a c7 35 c4 3c 1e 5e cf // 5d 5b ff 26 2a 27 f0 c8 a1 ad 40 14 92 ff ec 66 2e 27 b1 23 99 09 // 6f ee 99 10 d0 fa df d1 e1 bc f1 f2 0f 8f 7e 5f f1 cc e9 e8 db 0f // d7 1d da 6f 22 8a a9 6b ba 6b 41 20 36 1a 6f 6a cc 83 2b e5 da a1 // aa bd 03 a9 ae 81 0f 0d 21 46 6c 1a 65 2a 47 c1 1d b6 a8 e5 25 80 // a8 34 73 26 11 3b 54 a4 be ea eb 21 b4 5e 5e f0 aa 3c fb fb 22 d9 // 96 40 b7 b9 35 bc e8 e3 7c eb ce 58 6f 7f e7 22 08 b4 91 79 5a 9f // bb 22 0e c9 b9 8d d7 81 1c ed 86 29 21 89 ce 35 1e 8a 64 c6 af de // 9c 1d cc ba ae bf 7e 5e 3d 5e 52 9e 92 6e 81 4b 38 13 42 c1 3e a0 // 75 7c e5 2a 0b 0a 15 5d 1c 85 c4 10 8d ef fa 71 9a 22 be f7 b6 81 // a1 75 04 e2 2d 6f e9 19 76 99 e0 a1 6a 71 04 f4 12 e3 a6 81 c8 ee // 41 d8 fb dd c8 61 0c 16 1f 1f ad 9e 4a 5e 52 6e 20 ac 61 49 6e 9f // 35 96 cc 94 b7 9e 96 80 a6 4a 83 2d c2 6d 6e 33 e1 27 ab e5 c4 05 // b1 69 78 bc 42 97 a8 5c ca f1 59 9b 19 5d b9 d6 6b 69 8c 77 0d 84 // fa 90 d8 9b 51 ec a0 2e d3 a3 46 5b 8e ca 95 89 af 03 4b d6 b9 c8 // f6 32 9e 39 3e 47 53 88 76 96 ae 51 58 e8 ca 3e f2 e6 6f ac 38 a6 // d6 a1 b6 1e 81 d5 b6 a3 c1 cb 00 7d 64 a3 3f 1f e0 1c f3 9b 82 b2 // 70 e9 08 3c e1 3b 1a 32 f0 c9 83 76 d4 3c db f9 f1 7b 74 65 5f 30 // 00 34 3f e0 51 a7 5a c6 58 a8 46 29 b1 24 51 07 65 2d 6d fa 54 b1 // a7 d7 79 22 be cb 74 53 9f fb 11 29 27 94 f1 2e bf d3 ea 88 88 c7 // cd 10 69 2d 52 c8 53 40 f9 2c 5d 01 46 4f e3 6d ea ae c6 ad 6c c2 // 28 70 37 2d 61 48 5e 2d 76 ac cd 9b f9 3e 08 42 ef e5 65 2e 73 10 // 0a 66 27 b3 a4 ce 4d 15 94 c8 dd b5 74 28 97 d0 5f d6 f6 33 3f a1 // b9 0a fe aa b9 fc 74 26 25 1d 24 de ee f4 37 84 f1 2c 0b b0 9f 10 // 29 62 ee 9a b4 27 a5 3f d8 da 8e 1e 3c 80 00 ac 71 64 e6 1d 62 58 // c5 15 dc dd 91 1f b1 a5 19 d7 b3 8e 55 64 57 da 33 0c ed a8 e9 48 // ae af 74 21 d3 7f af 50 07 1f 0d 38 c0 8f c9 38 27 8f 24 70 84 19 // 5e 77 8a c9 0a b7 bf af b5 9c 2a 1c 64 3c d1 8d 88 3a 46 a6 cc 41 // 41 0f 50 5b a2 09 74 6d 6b 12 c0 15 ed df 31 b6 c9 eb f2 f0 46 05 // 51 80 33 72 1c df 02 b1 da 21 0c a1 46 51 29 b4 43 c0 c4 62 47 b5 // f8 cc eb 00 0a f2 c5 51 fc ea 1c 1b ef 29 c5 85 9e 95 bc f0 95 6b // 90 92 27 9b 47 dc 65 21 34 d2 bc 54 c3 68 89 78 fd 4d 7c 20 37 49 // da 5e 48 24 fe 31 4a a5 7e 76 f5 8f ad fa fc c7 66 0b 68 b1 a6 04 // 3a cf 8f 9f 0c 25 9d 16 fe 23 6b 59 06 f8 88 16 e7 ab 69 b6 7f 76 // 2a d7 9a 5f 65 4c 50 7c c4 9b e1 81 52 5f f0 5c de 4d 56 b5 37 90 // 15 1e fa 80 60 c4 68 5e 2b 1d d0 ad 89 55 1a 41 e0 d3 dd a3 3c 2b // 52 89 22 84 9a 8d fc d7 24 6c 24 2c 3b 2a a3 8a 69 e3 e5 a3 7c 58 // 06 c4 bc ff 53 e0 8f fc 7a 83 0d 92 5e 33 94 b6 88 ff ff ff ff cb // fe 38 7c 9e 7d f1 9c fb 2b 54 30 3c 10 15 57 aa 2e d0 80 19 4f e0 // af 76 d6 72 ed 77 df a4 c5 c0 c0 f9 69 3f 4e 8c 44 6d 3b c1 9c 0a // 86 54 bb 4b a8 b4 da ae 69 ed f4 14 61 54 73 ec 2a ad aa 68 71 b7 // d0 8a 51 e3 49 ac c7 b1 6f dd f7 41 f7 16 70 da 4c 2b 0e ad cf 19 // f4 6f 0f d1 8b 59 ec f7 b9 43 a2 a5 c9 01 25 63 8a 3b 32 70 a3 66 // c0 74 86 8e 62 fe 2e 87 51 ff 3e 60 41 1d 7e 1b 3f b6 a8 73 f7 84 // 34 89 f6 61 f1 bc 40 17 65 cd fa cb d7 6e 1b 52 e1 5f b1 0f c1 9d // c4 80 3d 3a 47 43 ab 97 7f ae 35 ee d0 0d 59 dd f6 4f cb c6 1f 5f // a0 cf 40 98 d0 ba bd e4 a3 97 d2 ef 10 0c 23 ca 9f 83 66 56 d5 f2 // 5b 01 86 06 e1 48 e3 f6 64 00 a6 82 47 2e d5 d2 8b 7d e6 24 ed 83 // 82 77 43 26 23 c1 10 27 da 18 37 8e 46 c3 fd 34 05 85 b4 83 5a b1 // d7 71 26 63 22 ee e5 6c 3e 6b f3 30 0f 5d 48 b6 b0 1f 51 5b a7 f3 // fb 72 6c fc 6f df 6c 07 a2 f4 6b bc 3f 36 fc 9b a6 e5 51 a4 63 35 // 33 7c 88 1c c4 a7 3e 79 e7 66 38 41 1a dc aa 81 ee 3b 6d 0e 6e 6c // 72 1d a3 6d ca b6 8b fb 0c a6 ba 7b 2c 26 7b 80 12 01 43 a5 c4 be // 33 3b 2c f8 5b 3b d2 42 5c a6 91 ff 36 7d 13 0d bb d8 e5 f6 a8 33 // e0 93 ea e9 d1 76 c1 c3 fb 61 55 7f 9e 50 80 ee 77 03 fe 2c a1 06 // 1b 52 d0 a4 0d 7e e2 f4 08 b3 ce ac 30 3e 30 2d 96 d9 29 c1 70 26 // 79 3c 66 42 3d 74 8a 81 ad fd 7c b2 90 27 f3 27 b0 da c4 05 5e 88 // e3 85 f0 40 0f 97 98 8a a1 fa 40 cd f7 76 f9 f0 79 91 fb 55 d9 d4 // bf 62 eb ef ce d2 40 d8 21 bd 4f bb a6 2c 1b 62 32 02 28 c6 a4 ca // 61 38 78 e3 eb 53 8e ea 28 e9 2b 5d 90 9f c7 e6 3e d5 a5 44 e7 69 // 8d 0b 7d 3d 99 41 5d 40 28 a5 da 4c c6 7f cb a3 b7 44 ac d4 f9 29 // 38 02 7f 42 b7 85 40 52 28 a3 8d 85 fd 67 87 03 b9 d4 1a 6a 54 cd // 48 30 3a 6b e6 44 08 10 1f c5 47 16 41 c1 c5 a7 47 24 4d a6 84 fe // f9 7a a4 8b f1 a2 25 00 7f 26 d9 f4 00 2a 0d c1 4d 01 19 1e f1 d7 // 49 ea 2e a0 5c 42 c1 73 c3 24 4c 10 39 c0 43 41 b0 cf 37 57 4d 8b // 78 e3 57 b4 51 bf cf b7 97 62 ed 6a 4f bc 68 96 90 bf 37 af aa 92 // 70 2a 03 49 ed 9a ec d9 11 1d f9 fd 57 b9 77 49 bb f5 00 39 91 02 // 93 44 49 7c 9f f8 5a da a7 a2 e5 66 64 7b a5 ba d3 41 ee d6 20 34 // b5 81 98 1d d7 c9 de 9f d4 c2 41 a5 4a d4 d6 e9 e1 cf 7c a9 84 b1 // 3c 62 8c c6 5e ca 08 29 e6 9d 4d 39 05 81 e4 3c d2 ed 5c 56 60 8b // 45 c1 09 f3 53 50 fb 87 53 16 e7 1f 79 c4 33 31 94 62 d4 b5 89 a1 // f7 f2 d1 4d 43 09 26 55 da 23 d6 3c 63 29 8e d6 2d d4 81 ab 0b c5 // 8e 97 f3 97 b3 9c 94 b3 2f ad 6a 1e 0c d9 da 2d fb e6 89 7e e4 98 // 6f db af db 0e 4b 57 5f 80 0d f5 da 43 cf 31 8e a7 a5 e8 3a 01 36 // b3 bd e3 29 6b 2b d2 30 ed 21 2f 79 50 0c 6a 44 58 52 2c 38 81 53 // 2b 7b fd 17 06 47 ee 65 93 17 60 f3 5a 1c 1f 95 b8 c9 3e 42 33 f0 // de 2a 13 c8 3f 31 52 2f 2b ee 05 a5 7c 83 78 ac 6b dd 3c 9e 30 dc // 18 8b 30 da db 93 6f 35 a3 fa 24 77 32 eb ae 6a 8d 76 29 92 f8 a9 // 6c 1d 26 98 1b da 15 7f 2b 67 6a c9 d6 1b b7 86 ac 8c 34 9d a9 4d // bf 75 a2 1b 78 6c dc eb 47 a9 25 97 b6 d2 b2 2f 7d c1 18 7c db 46 // 81 ce 9b eb d6 99 77 ba b9 ea bf 2a 68 c1 d3 b3 46 3d 6c 7f 13 92 // e1 2a 17 de b9 7f 2c e5 c9 ef 40 21 d3 b4 e0 df 6b 3f 4b 69 3e 13 // 6e 39 31 83 7e 91 61 7c d8 58 46 f3 01 9a 74 d2 d6 5f 36 36 9e 73 // a4 61 75 36 31 d7 2f 9e 28 34 c4 46 ae 7e 17 3d 6b 19 35 ad c0 ce // 65 eb 0e ac 83 0d 44 2a 03 44 f2 cb ae df 8d 48 cb 0a 69 59 d0 7f // 20 8f bb 2d ae 43 4f 4f df 35 b2 65 fb db de 41 38 b4 55 b7 94 10 // 96 d5 58 08 de 60 1d dd 8a 41 a7 0b 12 96 88 62 d0 b4 08 6d 4f f5 // 51 52 ae e6 5e aa 76 1a 95 88 bb 25 bc e1 93 b4 e5 5e bb 18 38 07 // f1 18 bf f0 cc bd 85 ea 76 1e 7c 3b 6c cc b6 4f 97 b3 f1 bf 7a 96 // ee cc 7a b4 0e 77 0a 16 20 20 9b 50 ba 23 aa b0 f7 69 a1 6c 9b 80 // 92 32 69 87 f0 cd 1d e9 4b 91 1e a6 be f5 cf 15 a9 38 29 b7 cb f0 // 3a a8 5e f5 77 63 3e 05 8f 81 e9 65 3f c4 7d 15 ab 8b ea d5 67 ed // 2a ff bb f5 a4 70 30 2c 06 50 86 32 4d c3 04 c7 77 22 80 50 ea 9f // 71 7e 45 b6 67 6f c9 00 2c cd 04 28 fc b2 7d 83 9e 41 39 fb 17 d4 // ee 72 e2 fe 83 94 e5 de 0c c8 14 d9 26 63 f8 c5 f8 7e 13 1a 34 ef // 70 94 07 8b e0 cf 54 76 3c 82 00 4a f9 72 7c 79 72 ff 1e a6 16 2b // 27 9b ee a8 7b c2 74 1e 99 6d 14 f5 49 d0 47 4a ab e7 80 c5 b8 0a // 35 ee d3 11 cb 73 4c 23 d0 1c 16 0e 43 96 62 c8 13 12 67 47 c7 d0 // 90 68 e3 2f a7 26 05 d7 1a bc 2a 33 2c b5 9d 81 07 18 18 d5 e0 94 // 41 94 28 5f 4c fc 05 03 92 e5 05 dd 93 c8 c8 82 f4 6f b6 b7 0b 46 // 60 78 4d 54 3a 6b f3 46 53 48 78 40 fd c2 98 c8 28 02 41 17 48 05 // bf 3c f3 80 83 22 4d 21 3c d6 07 6b ea c1 35 ed 3f 01 00 00 80 00 // 00 00 00 47 75 0c b0 f4 d2 be 6b ea da 1c 48 1a 01 52 d8 0c 0b 52 // 0d 2f 09 04 55 49 4c 83 ba 78 eb 91 e6 55 8d 52 ce ce b2 3c 95 6b // b3 82 bb 28 0e 63 82 d2 cb 67 9e ec d2 bc fb 61 07 e2 e4 f5 68 f1 // be 29 3e aa 0d 2e bb 77 16 9b 10 3d 5f e7 4d 74 5c f0 82 c3 60 22 // 10 8b 4c 43 0a 87 fa 85 35 f1 c5 6d 0c 1d 5d ae 50 c5 49 b1 b0 89 // 11 e2 d2 61 9e ef 61 13 1c 78 04 b3 5c 3c a4 da c1 f2 59 5c 68 94 // 1b 01 3b 5d ed 8b fd 52 ed 41 da 13 c0 88 6b 7f 9c 61 a5 24 4a 81 // 57 11 25 3a ad 7e a7 4e ae 78 8b 1b ee a9 bc 15 ad db 19 9d 2f c7 // 9e 81 a3 4b 88 7a 0e 4b 93 5a d1 54 e9 61 c8 b6 97 2f 12 4c ae 77 // 42 e8 2d b1 e7 14 af 15 f3 49 08 96 0d bb 4e a2 4e 44 ff d7 50 c9 // d1 1d d4 5b fa ae 73 02 8b c8 8f dd f7 4b 2d 24 de 20 59 80 ba 14 // f4 88 91 19 f8 a6 29 1b 37 24 49 75 03 dd f9 52 22 d5 d0 50 41 4e // 48 7a 3d c6 5e 5e da 31 69 e1 05 70 a5 04 40 be 34 6c c1 f1 b0 c8 // 48 41 0b 46 61 0c 73 86 36 70 7c 5d 74 0a 8e 3a 9b 68 8c 2c 1e a5 // 41 35 bf fd 2f fd 87 d9 df a9 02 f3 dd 97 b2 a6 07 8f a6 5f 5a 5f // 95 da 2b 9f 61 24 fe 07 68 2e 27 ab 65 ab 96 57 3e 76 2f 50 60 43 // 9e 18 64 97 98 e0 b9 d7 86 4f 91 db c4 f4 ed 3a 4a b3 06 71 f8 f7 // f3 c4 9c 7a c5 04 a7 55 f9 42 0f d9 b2 24 21 af d7 20 3f 7c d6 dd // 8c 8e 7a 33 70 9e 12 d0 04 e4 02 67 2a f2 b3 f9 04 6b c5 78 54 f9 // 84 82 53 8a d4 87 23 cd 15 3c f0 31 03 c1 57 cd b1 a6 3e 83 9a 02 // c3 f0 04 1d 70 20 28 0f 96 f3 f7 e0 ce 89 c4 08 be 10 d3 44 54 08 // 08 de e1 bf cb 01 f5 29 3a b6 06 c7 1f fc 09 f9 e6 3b 93 b3 7e 8d // 80 07 ad 84 32 d2 e8 1c 3d 1d 40 a5 77 11 bd b7 98 ee 91 a3 f0 5f // 93 f4 f4 6f 88 3d b0 61 3b f9 5f ab d5 23 d9 55 d0 d4 a5 51 8e 1b // b3 da e7 64 6a f8 af 8d 4a 4d 7d cf ac 63 3c 6e fa 31 64 f9 e0 5b // bb 4b 05 94 7a c0 e6 c4 ed d9 9a 76 8e da 4c 71 49 cf 38 a4 60 b5 // 22 d6 40 5a a4 7f ad a1 c7 8f 56 fb d3 36 69 71 9b 14 96 42 7f 29 // 05 32 33 4b 69 d0 a7 cf 6c 46 ce fe 5e cd 0f d9 23 b1 49 29 fd 3d // b8 a1 a9 4b a6 39 54 b5 8c eb 9b 1e 0f 84 71 a0 2c 13 a1 60 aa 76 // 30 83 a5 fd 36 c1 99 07 5a 76 97 68 e1 64 f1 79 11 f5 a4 16 bb 96 // 19 8a a0 95 4a 7d 27 e3 0c 48 06 91 ce 80 dc 71 a4 91 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00} (length 0x1000) size: len = 0x1000 (2 // bytes) // } // } // } // len: len = 0xfffffe69 (8 bytes) // ] *(uint32_t*)0x20000400 = 8; memcpy( (void*)0x20000404, "\x94\x0d\xe3\x12\xc9\xbe\x10\x5c\x33\x39\x43\x90\xce\x36\x0a\xdc\xb8\x44" "\x3d\x1c\xa2\x46\x4a\xd2\x9f\xe4\x6c\x87\x17\xa8\x23\xe2\x9b\x12\x01\x1e" "\x86\x75\x16\xa9\xc1\xb6\x33\x94\xe6\xb4\x92\x25\x49\xac\x2f\x98\xb0\xba" "\xfc\x01\x37\x57\x37\x1b\x57\x62\xe5\xb0\x3b\x4c\x8c\xfc\xc5\xd3\x43\x68" "\xb2\x19\x17\x74\x09\x55\xf8\x0e\x80\xfa\x98\xa6\x8c\xb0\x52\xb1\x02\xc0" "\x3e\x72\xa4\xc6\x70\x27\x78\xdf\xcc\x5b\xb7\x4c\xe2\x3d\x91\x4f\x8b\x14" "\x3b\xd9\x4d\x73\x82\xa3\x85\xbe\x93\xf6\x1e\xef\x50\x9d\x6c\xbf\xfa\x81" "\xaf\xee\x0e\x35\x24\xb8\xb7\x68\xa0\xef\x0a\xe0\x0a\xd2\xa2\x37\x28\x72" "\x24\x36\xd1\xc1\x50\xb5\x12\xb6\xc6\x42\xcb\x2e\xea\xec\xb0\x85\x71\x90" "\x14\x33\x20\x15\x47\x4a\x4d\xdf\x70\x98\xbb\x5a\xc3\x98\xc0\xce\x25\x6e" "\x4d\xcf\xd4\x61\x3d\xbe\x9a\x34\xb9\x64\x39\x54\x6a\x28\xdb\x9c\xe9\x7b" "\x34\x4b\x6c\x97\x28\x9b\x38\x54\xe1\x27\xb4\xf5\x33\xf5\x64\x39\xa7\x4f" "\xcf\xfc\x41\xdf\xef\xfc\x5d\x7a\x99\xc0\x1a\x0f\xed\xfd\x93\x7a\xf5\x95" "\xc0\x5a\x94\x22\x16\x58\x1f\x8e\xfd\x1f\xfa\x1c\x23\xc6\xf0\x8d\x69\x87" "\xbe\x16\xbb\x52\x42\x0c\x80\xbd\xa5\xda\x46\x98\x7f\xbf\x72\x09\x48\x7d" "\xef\xe0\x37\x42\x26\xa5\x26\xd3\x58\x86\x60\x19\x2d\x92\x1b\xfe\x40\x7f" "\x1d\x18\x33\xf3\x90\xdd\x8b\x41\xb3\x0c\x53\xb4\xde\xba\x5a\x08\x6c\x51" "\x6d\x9b\xc8\xca\x57\x2d\x8f\x0f\x87\x53\x03\xc8\x5b\xd1\x65\x70\xe8\x9f" "\x74\xd7\xc4\xef\x54\x7a\x07\xdd\x62\xf3\x34\xfe\xe7\x6e\x2e\x0c\xa3\x1c" "\xca\x1a\xd0\x52\x8d\x74\x48\xce\xec\xd4\xc9\x78\x5c\x30\x2a\x40\xbc\x11" "\x43\x35\xde\xa8\x77\x59\x58\xa3\xbe\xff\x8e\xeb\x31\xaf\xcb\x9a\x2c\x75" "\x61\x98\x0f\x85\x54\x22\x07\x69\xe5\xe9\x0f\xdf\xb2\xf5\xa9\x05\x51\x8e" "\xf1\x66\x7a\x91\xe2\xdd\x47\x43\x83\xe4\x31\x2e\xa2\x19\xfe\x65\xd4\x21" "\x00\x67\x34\xfe\x04\x66\x1f\x75\xe6\x9a\xe8\x25\x12\x0b\x33\xfb\x74\x29" "\x3e\x3b\x83\xe7\xf7\xf5\x63\xb4\x75\xcd\x6e\x08\xfd\x68\x78\xee\x42\x4f" "\xa1\x41\xd3\xae\xe8\x6d\x95\x2c\x21\x2c\x2e\x77\x30\x79\x65\x10\xa4\x63" "\xa8\xda\x48\x68\x52\xb2\x3a\x1d\x62\xb7\x14\xa1\x13\x01\x49\x90\x29\xd9" "\xef\xb7\x15\xa1\x1b\x64\xf2\x4c\xd2\x66\x0c\x9a\x47\x57\x3c\xe4\xdd\x04" "\x2e\x33\x3e\x43\x3e\xe2\x8b\x2b\xce\x54\x5c\xf0\x67\x04\x01\x93\x05\x7d" "\xe2\x90\x96\x5c\x1d\x54\x7f\xed\x13\x7e\x5e\xb2\x2f\x5c\x0a\x06\xad\x4d" "\xe6\xb7\x82\x04\xbf\x05\x3f\x37\xc5\xd9\x6b\x80\x53\xea\x44\x5b\x64\x03" "\x60\xda\x8f\xce\x33\x91\x51\x4d\xc3\xd1\xf4\xe4\xb3\x50\x47\x13\x8c\xd8" "\xc2\x71\x7b\xcb\xa2\x78\xa4\xf8\xc2\x7b\xac\x01\xb4\x69\xee\x3f\xd0\x40" "\x04\xf5\x82\x87\xa1\x83\x07\xb0\xad\x41\x20\xf2\xc2\x6b\x08\xc3\x26\x72" "\x49\xbf\xbe\x10\x64\xa3\xf1\x71\xe0\xcf\xe5\x95\xf7\xab\x14\x6f\x31\x48" "\xc7\x32\x28\xed\xf6\x94\xdc\x0c\x40\x0c\x36\xe3\x49\x3b\x1a\xca\x5f\x85" "\x97\x2d\xad\xb8\xd0\x2b\xdd\xb6\x07\xb7\xa4\x31\x75\x0c\xa4\x86\x38\x12" "\xb8\x02\x00\x00\x00\x00\x00\x00\x00\x42\xdb\x29\x71\xe2\x80\x54\x1c\xbf" "\xa4\x46\xc6\xc6\xd8\x5b\x77\xe3\x32\x7a\x2d\x32\x7c\x25\xb7\x61\x96\x47" "\x37\x4e\x76\xb1\xbe\x26\x6c\xb6\x89\x59\xd2\x65\x1d\x0c\x74\x38\xcb\x1b" "\x53\x98\x21\x91\x85\x8c\x66\x50\x0d\x85\x36\x01\x37\x01\x19\x4a\x9f\x02" "\xdd\x77\x21\x6f\x93\x2e\x07\xa4\xc4\xb4\x55\x8b\x2a\x38\xd7\xe5\xc3\x9a" "\x45\x3c\x8f\xb5\xfa\xe0\xd0\x05\x50\xa2\xd1\x43\xf7\x21\xcd\x67\x6d\x84" "\x2f\x2a\xe3\x9e\xcb\xf9\x9e\x02\x7b\x4c\xf9\xf3\xc2\xa9\xbf\x3b\x66\x3e" "\x51\xa0\xb2\x9c\xf4\xcf\xb0\x87\x7d\x5b\x89\xfd\xfa\x93\xfd\x9b\xf3\x33" "\x92\xe6\xa2\xc8\xdf\x36\xf9\xf2\xfa\xa3\x71\x6d\x29\x3b\x7d\x94\xc9\x34" "\x58\xc1\x7d\xf9\x9a\xaa\xdd\x21\x8f\xe4\xc7\xb9\x67\xb4\x3f\x48\x72\x5e" "\x6b\xac\x67\xbf\x91\x76\xe8\xc6\x3f\x94\x86\x2b\x03\x6b\x18\x70\xbc\x31" "\x4b\x51\xfe\xa9\xd0\xc9\x20\x20\x42\x7a\xba\xf5\xbe\x10\xd3\xfa\xad\x2f" "\x68\x4d\x46\xa2\x46\x1f\x2a\x92\x35\x0d\x6f\x20\x4f\x03\xad\x2a\x9f\xa5" "\x4c\xbd\x8a\x7a\x3e\x7b\xa2\xd5\x4f\x36\x15\xac\x5e\xa4\x7f\x12\x05\x72" "\xf8\xef\x94\x1e\x81\xb0\x81\x2b\xfc\x42\x27\xef\x57\x19\x09\x3a\xfb\xf9" "\x00\x40\xef\x1a\x5e\xda\x64\x56\x3e\xb7\xfd\x01\x5e\xa5\x43\x42\x34\x0e" "\xc8\x64\x8d\x91\x1a\x8f\x3f\x35\x8c\xa1\x24\xef\x8c\x70\x68\x5b\xce\x2f" "\xba\xee\xeb\xf5\x4d\x05\x9c\xef\xd5\x37\x51\xb5\xcf\x33\xfe\x2d\x92\xc9" "\xdf\x6a\x63\x82\x1b\x6d\xb5\x18\x82\x10\x56\x5e\x13\x27\x68\xb1\x92\xfb" "\x27\xe7\x45\x60\x5c\x52\x9e\x36\x48\x06\x0a\x98\xd6\x56\xf3\x5e\x36\xdc" "\x4b\xe3\x10\x2b\xd6\x78\xdb\x0c\xeb\x03\x01\xc5\xcb\x0f\x7f\x7a\x08\xc5" "\x5c\xd0\x38\xa5\xf7\x51\xa7\xc9\x61\x16\xf0\xbd\x9c\x9a\x34\x95\x58\xa7" "\xa8\xfc\x6a\x73\xcc\xe1\x13\x25\x49\x16\x98\x22\xbf\x32\xd7\x42\xfc\x4f" "\x4e\x2e\x50\xf5\x9e\xb6\x69\xf2\x38\x42\x82\x24\x7c\x60\x25\x3e\xdc\x98" "\xf9\xbc\x80\x2a\x28\x8a\x94\xe1\x01\x1a\x06\x6c\xe9\xf6\xec\xa5\xf8\x7d" "\x2a\xfd\x89\x39\x00\xc3\xaf\xf8\x7b\xe9\x59\x45\x12\x69\xbc\x9a\xc7\x35" "\xc4\x3c\x1e\x5e\xcf\x5d\x5b\xff\x26\x2a\x27\xf0\xc8\xa1\xad\x40\x14\x92" "\xff\xec\x66\x2e\x27\xb1\x23\x99\x09\x6f\xee\x99\x10\xd0\xfa\xdf\xd1\xe1" "\xbc\xf1\xf2\x0f\x8f\x7e\x5f\xf1\xcc\xe9\xe8\xdb\x0f\xd7\x1d\xda\x6f\x22" "\x8a\xa9\x6b\xba\x6b\x41\x20\x36\x1a\x6f\x6a\xcc\x83\x2b\xe5\xda\xa1\xaa" "\xbd\x03\xa9\xae\x81\x0f\x0d\x21\x46\x6c\x1a\x65\x2a\x47\xc1\x1d\xb6\xa8" "\xe5\x25\x80\xa8\x34\x73\x26\x11\x3b\x54\xa4\xbe\xea\xeb\x21\xb4\x5e\x5e" "\xf0\xaa\x3c\xfb\xfb\x22\xd9\x96\x40\xb7\xb9\x35\xbc\xe8\xe3\x7c\xeb\xce" "\x58\x6f\x7f\xe7\x22\x08\xb4\x91\x79\x5a\x9f\xbb\x22\x0e\xc9\xb9\x8d\xd7" "\x81\x1c\xed\x86\x29\x21\x89\xce\x35\x1e\x8a\x64\xc6\xaf\xde\x9c\x1d\xcc" "\xba\xae\xbf\x7e\x5e\x3d\x5e\x52\x9e\x92\x6e\x81\x4b\x38\x13\x42\xc1\x3e" "\xa0\x75\x7c\xe5\x2a\x0b\x0a\x15\x5d\x1c\x85\xc4\x10\x8d\xef\xfa\x71\x9a" "\x22\xbe\xf7\xb6\x81\xa1\x75\x04\xe2\x2d\x6f\xe9\x19\x76\x99\xe0\xa1\x6a" "\x71\x04\xf4\x12\xe3\xa6\x81\xc8\xee\x41\xd8\xfb\xdd\xc8\x61\x0c\x16\x1f" "\x1f\xad\x9e\x4a\x5e\x52\x6e\x20\xac\x61\x49\x6e\x9f\x35\x96\xcc\x94\xb7" "\x9e\x96\x80\xa6\x4a\x83\x2d\xc2\x6d\x6e\x33\xe1\x27\xab\xe5\xc4\x05\xb1" "\x69\x78\xbc\x42\x97\xa8\x5c\xca\xf1\x59\x9b\x19\x5d\xb9\xd6\x6b\x69\x8c" "\x77\x0d\x84\xfa\x90\xd8\x9b\x51\xec\xa0\x2e\xd3\xa3\x46\x5b\x8e\xca\x95" "\x89\xaf\x03\x4b\xd6\xb9\xc8\xf6\x32\x9e\x39\x3e\x47\x53\x88\x76\x96\xae" "\x51\x58\xe8\xca\x3e\xf2\xe6\x6f\xac\x38\xa6\xd6\xa1\xb6\x1e\x81\xd5\xb6" "\xa3\xc1\xcb\x00\x7d\x64\xa3\x3f\x1f\xe0\x1c\xf3\x9b\x82\xb2\x70\xe9\x08" "\x3c\xe1\x3b\x1a\x32\xf0\xc9\x83\x76\xd4\x3c\xdb\xf9\xf1\x7b\x74\x65\x5f" "\x30\x00\x34\x3f\xe0\x51\xa7\x5a\xc6\x58\xa8\x46\x29\xb1\x24\x51\x07\x65" "\x2d\x6d\xfa\x54\xb1\xa7\xd7\x79\x22\xbe\xcb\x74\x53\x9f\xfb\x11\x29\x27" "\x94\xf1\x2e\xbf\xd3\xea\x88\x88\xc7\xcd\x10\x69\x2d\x52\xc8\x53\x40\xf9" "\x2c\x5d\x01\x46\x4f\xe3\x6d\xea\xae\xc6\xad\x6c\xc2\x28\x70\x37\x2d\x61" "\x48\x5e\x2d\x76\xac\xcd\x9b\xf9\x3e\x08\x42\xef\xe5\x65\x2e\x73\x10\x0a" "\x66\x27\xb3\xa4\xce\x4d\x15\x94\xc8\xdd\xb5\x74\x28\x97\xd0\x5f\xd6\xf6" "\x33\x3f\xa1\xb9\x0a\xfe\xaa\xb9\xfc\x74\x26\x25\x1d\x24\xde\xee\xf4\x37" "\x84\xf1\x2c\x0b\xb0\x9f\x10\x29\x62\xee\x9a\xb4\x27\xa5\x3f\xd8\xda\x8e" "\x1e\x3c\x80\x00\xac\x71\x64\xe6\x1d\x62\x58\xc5\x15\xdc\xdd\x91\x1f\xb1" "\xa5\x19\xd7\xb3\x8e\x55\x64\x57\xda\x33\x0c\xed\xa8\xe9\x48\xae\xaf\x74" "\x21\xd3\x7f\xaf\x50\x07\x1f\x0d\x38\xc0\x8f\xc9\x38\x27\x8f\x24\x70\x84" "\x19\x5e\x77\x8a\xc9\x0a\xb7\xbf\xaf\xb5\x9c\x2a\x1c\x64\x3c\xd1\x8d\x88" "\x3a\x46\xa6\xcc\x41\x41\x0f\x50\x5b\xa2\x09\x74\x6d\x6b\x12\xc0\x15\xed" "\xdf\x31\xb6\xc9\xeb\xf2\xf0\x46\x05\x51\x80\x33\x72\x1c\xdf\x02\xb1\xda" "\x21\x0c\xa1\x46\x51\x29\xb4\x43\xc0\xc4\x62\x47\xb5\xf8\xcc\xeb\x00\x0a" "\xf2\xc5\x51\xfc\xea\x1c\x1b\xef\x29\xc5\x85\x9e\x95\xbc\xf0\x95\x6b\x90" "\x92\x27\x9b\x47\xdc\x65\x21\x34\xd2\xbc\x54\xc3\x68\x89\x78\xfd\x4d\x7c" "\x20\x37\x49\xda\x5e\x48\x24\xfe\x31\x4a\xa5\x7e\x76\xf5\x8f\xad\xfa\xfc" "\xc7\x66\x0b\x68\xb1\xa6\x04\x3a\xcf\x8f\x9f\x0c\x25\x9d\x16\xfe\x23\x6b" "\x59\x06\xf8\x88\x16\xe7\xab\x69\xb6\x7f\x76\x2a\xd7\x9a\x5f\x65\x4c\x50" "\x7c\xc4\x9b\xe1\x81\x52\x5f\xf0\x5c\xde\x4d\x56\xb5\x37\x90\x15\x1e\xfa" "\x80\x60\xc4\x68\x5e\x2b\x1d\xd0\xad\x89\x55\x1a\x41\xe0\xd3\xdd\xa3\x3c" "\x2b\x52\x89\x22\x84\x9a\x8d\xfc\xd7\x24\x6c\x24\x2c\x3b\x2a\xa3\x8a\x69" "\xe3\xe5\xa3\x7c\x58\x06\xc4\xbc\xff\x53\xe0\x8f\xfc\x7a\x83\x0d\x92\x5e" "\x33\x94\xb6\x88\xff\xff\xff\xff\xcb\xfe\x38\x7c\x9e\x7d\xf1\x9c\xfb\x2b" "\x54\x30\x3c\x10\x15\x57\xaa\x2e\xd0\x80\x19\x4f\xe0\xaf\x76\xd6\x72\xed" "\x77\xdf\xa4\xc5\xc0\xc0\xf9\x69\x3f\x4e\x8c\x44\x6d\x3b\xc1\x9c\x0a\x86" "\x54\xbb\x4b\xa8\xb4\xda\xae\x69\xed\xf4\x14\x61\x54\x73\xec\x2a\xad\xaa" "\x68\x71\xb7\xd0\x8a\x51\xe3\x49\xac\xc7\xb1\x6f\xdd\xf7\x41\xf7\x16\x70" "\xda\x4c\x2b\x0e\xad\xcf\x19\xf4\x6f\x0f\xd1\x8b\x59\xec\xf7\xb9\x43\xa2" "\xa5\xc9\x01\x25\x63\x8a\x3b\x32\x70\xa3\x66\xc0\x74\x86\x8e\x62\xfe\x2e" "\x87\x51\xff\x3e\x60\x41\x1d\x7e\x1b\x3f\xb6\xa8\x73\xf7\x84\x34\x89\xf6" "\x61\xf1\xbc\x40\x17\x65\xcd\xfa\xcb\xd7\x6e\x1b\x52\xe1\x5f\xb1\x0f\xc1" "\x9d\xc4\x80\x3d\x3a\x47\x43\xab\x97\x7f\xae\x35\xee\xd0\x0d\x59\xdd\xf6" "\x4f\xcb\xc6\x1f\x5f\xa0\xcf\x40\x98\xd0\xba\xbd\xe4\xa3\x97\xd2\xef\x10" "\x0c\x23\xca\x9f\x83\x66\x56\xd5\xf2\x5b\x01\x86\x06\xe1\x48\xe3\xf6\x64" "\x00\xa6\x82\x47\x2e\xd5\xd2\x8b\x7d\xe6\x24\xed\x83\x82\x77\x43\x26\x23" "\xc1\x10\x27\xda\x18\x37\x8e\x46\xc3\xfd\x34\x05\x85\xb4\x83\x5a\xb1\xd7" "\x71\x26\x63\x22\xee\xe5\x6c\x3e\x6b\xf3\x30\x0f\x5d\x48\xb6\xb0\x1f\x51" "\x5b\xa7\xf3\xfb\x72\x6c\xfc\x6f\xdf\x6c\x07\xa2\xf4\x6b\xbc\x3f\x36\xfc" "\x9b\xa6\xe5\x51\xa4\x63\x35\x33\x7c\x88\x1c\xc4\xa7\x3e\x79\xe7\x66\x38" "\x41\x1a\xdc\xaa\x81\xee\x3b\x6d\x0e\x6e\x6c\x72\x1d\xa3\x6d\xca\xb6\x8b" "\xfb\x0c\xa6\xba\x7b\x2c\x26\x7b\x80\x12\x01\x43\xa5\xc4\xbe\x33\x3b\x2c" "\xf8\x5b\x3b\xd2\x42\x5c\xa6\x91\xff\x36\x7d\x13\x0d\xbb\xd8\xe5\xf6\xa8" "\x33\xe0\x93\xea\xe9\xd1\x76\xc1\xc3\xfb\x61\x55\x7f\x9e\x50\x80\xee\x77" "\x03\xfe\x2c\xa1\x06\x1b\x52\xd0\xa4\x0d\x7e\xe2\xf4\x08\xb3\xce\xac\x30" "\x3e\x30\x2d\x96\xd9\x29\xc1\x70\x26\x79\x3c\x66\x42\x3d\x74\x8a\x81\xad" "\xfd\x7c\xb2\x90\x27\xf3\x27\xb0\xda\xc4\x05\x5e\x88\xe3\x85\xf0\x40\x0f" "\x97\x98\x8a\xa1\xfa\x40\xcd\xf7\x76\xf9\xf0\x79\x91\xfb\x55\xd9\xd4\xbf" "\x62\xeb\xef\xce\xd2\x40\xd8\x21\xbd\x4f\xbb\xa6\x2c\x1b\x62\x32\x02\x28" "\xc6\xa4\xca\x61\x38\x78\xe3\xeb\x53\x8e\xea\x28\xe9\x2b\x5d\x90\x9f\xc7" "\xe6\x3e\xd5\xa5\x44\xe7\x69\x8d\x0b\x7d\x3d\x99\x41\x5d\x40\x28\xa5\xda" "\x4c\xc6\x7f\xcb\xa3\xb7\x44\xac\xd4\xf9\x29\x38\x02\x7f\x42\xb7\x85\x40" "\x52\x28\xa3\x8d\x85\xfd\x67\x87\x03\xb9\xd4\x1a\x6a\x54\xcd\x48\x30\x3a" "\x6b\xe6\x44\x08\x10\x1f\xc5\x47\x16\x41\xc1\xc5\xa7\x47\x24\x4d\xa6\x84" "\xfe\xf9\x7a\xa4\x8b\xf1\xa2\x25\x00\x7f\x26\xd9\xf4\x00\x2a\x0d\xc1\x4d" "\x01\x19\x1e\xf1\xd7\x49\xea\x2e\xa0\x5c\x42\xc1\x73\xc3\x24\x4c\x10\x39" "\xc0\x43\x41\xb0\xcf\x37\x57\x4d\x8b\x78\xe3\x57\xb4\x51\xbf\xcf\xb7\x97" "\x62\xed\x6a\x4f\xbc\x68\x96\x90\xbf\x37\xaf\xaa\x92\x70\x2a\x03\x49\xed" "\x9a\xec\xd9\x11\x1d\xf9\xfd\x57\xb9\x77\x49\xbb\xf5\x00\x39\x91\x02\x93" "\x44\x49\x7c\x9f\xf8\x5a\xda\xa7\xa2\xe5\x66\x64\x7b\xa5\xba\xd3\x41\xee" "\xd6\x20\x34\xb5\x81\x98\x1d\xd7\xc9\xde\x9f\xd4\xc2\x41\xa5\x4a\xd4\xd6" "\xe9\xe1\xcf\x7c\xa9\x84\xb1\x3c\x62\x8c\xc6\x5e\xca\x08\x29\xe6\x9d\x4d" "\x39\x05\x81\xe4\x3c\xd2\xed\x5c\x56\x60\x8b\x45\xc1\x09\xf3\x53\x50\xfb" "\x87\x53\x16\xe7\x1f\x79\xc4\x33\x31\x94\x62\xd4\xb5\x89\xa1\xf7\xf2\xd1" "\x4d\x43\x09\x26\x55\xda\x23\xd6\x3c\x63\x29\x8e\xd6\x2d\xd4\x81\xab\x0b" "\xc5\x8e\x97\xf3\x97\xb3\x9c\x94\xb3\x2f\xad\x6a\x1e\x0c\xd9\xda\x2d\xfb" "\xe6\x89\x7e\xe4\x98\x6f\xdb\xaf\xdb\x0e\x4b\x57\x5f\x80\x0d\xf5\xda\x43" "\xcf\x31\x8e\xa7\xa5\xe8\x3a\x01\x36\xb3\xbd\xe3\x29\x6b\x2b\xd2\x30\xed" "\x21\x2f\x79\x50\x0c\x6a\x44\x58\x52\x2c\x38\x81\x53\x2b\x7b\xfd\x17\x06" "\x47\xee\x65\x93\x17\x60\xf3\x5a\x1c\x1f\x95\xb8\xc9\x3e\x42\x33\xf0\xde" "\x2a\x13\xc8\x3f\x31\x52\x2f\x2b\xee\x05\xa5\x7c\x83\x78\xac\x6b\xdd\x3c" "\x9e\x30\xdc\x18\x8b\x30\xda\xdb\x93\x6f\x35\xa3\xfa\x24\x77\x32\xeb\xae" "\x6a\x8d\x76\x29\x92\xf8\xa9\x6c\x1d\x26\x98\x1b\xda\x15\x7f\x2b\x67\x6a" "\xc9\xd6\x1b\xb7\x86\xac\x8c\x34\x9d\xa9\x4d\xbf\x75\xa2\x1b\x78\x6c\xdc" "\xeb\x47\xa9\x25\x97\xb6\xd2\xb2\x2f\x7d\xc1\x18\x7c\xdb\x46\x81\xce\x9b" "\xeb\xd6\x99\x77\xba\xb9\xea\xbf\x2a\x68\xc1\xd3\xb3\x46\x3d\x6c\x7f\x13" "\x92\xe1\x2a\x17\xde\xb9\x7f\x2c\xe5\xc9\xef\x40\x21\xd3\xb4\xe0\xdf\x6b" "\x3f\x4b\x69\x3e\x13\x6e\x39\x31\x83\x7e\x91\x61\x7c\xd8\x58\x46\xf3\x01" "\x9a\x74\xd2\xd6\x5f\x36\x36\x9e\x73\xa4\x61\x75\x36\x31\xd7\x2f\x9e\x28" "\x34\xc4\x46\xae\x7e\x17\x3d\x6b\x19\x35\xad\xc0\xce\x65\xeb\x0e\xac\x83" "\x0d\x44\x2a\x03\x44\xf2\xcb\xae\xdf\x8d\x48\xcb\x0a\x69\x59\xd0\x7f\x20" "\x8f\xbb\x2d\xae\x43\x4f\x4f\xdf\x35\xb2\x65\xfb\xdb\xde\x41\x38\xb4\x55" "\xb7\x94\x10\x96\xd5\x58\x08\xde\x60\x1d\xdd\x8a\x41\xa7\x0b\x12\x96\x88" "\x62\xd0\xb4\x08\x6d\x4f\xf5\x51\x52\xae\xe6\x5e\xaa\x76\x1a\x95\x88\xbb" "\x25\xbc\xe1\x93\xb4\xe5\x5e\xbb\x18\x38\x07\xf1\x18\xbf\xf0\xcc\xbd\x85" "\xea\x76\x1e\x7c\x3b\x6c\xcc\xb6\x4f\x97\xb3\xf1\xbf\x7a\x96\xee\xcc\x7a" "\xb4\x0e\x77\x0a\x16\x20\x20\x9b\x50\xba\x23\xaa\xb0\xf7\x69\xa1\x6c\x9b" "\x80\x92\x32\x69\x87\xf0\xcd\x1d\xe9\x4b\x91\x1e\xa6\xbe\xf5\xcf\x15\xa9" "\x38\x29\xb7\xcb\xf0\x3a\xa8\x5e\xf5\x77\x63\x3e\x05\x8f\x81\xe9\x65\x3f" "\xc4\x7d\x15\xab\x8b\xea\xd5\x67\xed\x2a\xff\xbb\xf5\xa4\x70\x30\x2c\x06" "\x50\x86\x32\x4d\xc3\x04\xc7\x77\x22\x80\x50\xea\x9f\x71\x7e\x45\xb6\x67" "\x6f\xc9\x00\x2c\xcd\x04\x28\xfc\xb2\x7d\x83\x9e\x41\x39\xfb\x17\xd4\xee" "\x72\xe2\xfe\x83\x94\xe5\xde\x0c\xc8\x14\xd9\x26\x63\xf8\xc5\xf8\x7e\x13" "\x1a\x34\xef\x70\x94\x07\x8b\xe0\xcf\x54\x76\x3c\x82\x00\x4a\xf9\x72\x7c" "\x79\x72\xff\x1e\xa6\x16\x2b\x27\x9b\xee\xa8\x7b\xc2\x74\x1e\x99\x6d\x14" "\xf5\x49\xd0\x47\x4a\xab\xe7\x80\xc5\xb8\x0a\x35\xee\xd3\x11\xcb\x73\x4c" "\x23\xd0\x1c\x16\x0e\x43\x96\x62\xc8\x13\x12\x67\x47\xc7\xd0\x90\x68\xe3" "\x2f\xa7\x26\x05\xd7\x1a\xbc\x2a\x33\x2c\xb5\x9d\x81\x07\x18\x18\xd5\xe0" "\x94\x41\x94\x28\x5f\x4c\xfc\x05\x03\x92\xe5\x05\xdd\x93\xc8\xc8\x82\xf4" "\x6f\xb6\xb7\x0b\x46\x60\x78\x4d\x54\x3a\x6b\xf3\x46\x53\x48\x78\x40\xfd" "\xc2\x98\xc8\x28\x02\x41\x17\x48\x05\xbf\x3c\xf3\x80\x83\x22\x4d\x21\x3c" "\xd6\x07\x6b\xea\xc1\x35\xed\x3f\x01\x00\x00\x80\x00\x00\x00\x00\x47\x75" "\x0c\xb0\xf4\xd2\xbe\x6b\xea\xda\x1c\x48\x1a\x01\x52\xd8\x0c\x0b\x52\x0d" "\x2f\x09\x04\x55\x49\x4c\x83\xba\x78\xeb\x91\xe6\x55\x8d\x52\xce\xce\xb2" "\x3c\x95\x6b\xb3\x82\xbb\x28\x0e\x63\x82\xd2\xcb\x67\x9e\xec\xd2\xbc\xfb" "\x61\x07\xe2\xe4\xf5\x68\xf1\xbe\x29\x3e\xaa\x0d\x2e\xbb\x77\x16\x9b\x10" "\x3d\x5f\xe7\x4d\x74\x5c\xf0\x82\xc3\x60\x22\x10\x8b\x4c\x43\x0a\x87\xfa" "\x85\x35\xf1\xc5\x6d\x0c\x1d\x5d\xae\x50\xc5\x49\xb1\xb0\x89\x11\xe2\xd2" "\x61\x9e\xef\x61\x13\x1c\x78\x04\xb3\x5c\x3c\xa4\xda\xc1\xf2\x59\x5c\x68" "\x94\x1b\x01\x3b\x5d\xed\x8b\xfd\x52\xed\x41\xda\x13\xc0\x88\x6b\x7f\x9c" "\x61\xa5\x24\x4a\x81\x57\x11\x25\x3a\xad\x7e\xa7\x4e\xae\x78\x8b\x1b\xee" "\xa9\xbc\x15\xad\xdb\x19\x9d\x2f\xc7\x9e\x81\xa3\x4b\x88\x7a\x0e\x4b\x93" "\x5a\xd1\x54\xe9\x61\xc8\xb6\x97\x2f\x12\x4c\xae\x77\x42\xe8\x2d\xb1\xe7" "\x14\xaf\x15\xf3\x49\x08\x96\x0d\xbb\x4e\xa2\x4e\x44\xff\xd7\x50\xc9\xd1" "\x1d\xd4\x5b\xfa\xae\x73\x02\x8b\xc8\x8f\xdd\xf7\x4b\x2d\x24\xde\x20\x59" "\x80\xba\x14\xf4\x88\x91\x19\xf8\xa6\x29\x1b\x37\x24\x49\x75\x03\xdd\xf9" "\x52\x22\xd5\xd0\x50\x41\x4e\x48\x7a\x3d\xc6\x5e\x5e\xda\x31\x69\xe1\x05" "\x70\xa5\x04\x40\xbe\x34\x6c\xc1\xf1\xb0\xc8\x48\x41\x0b\x46\x61\x0c\x73" "\x86\x36\x70\x7c\x5d\x74\x0a\x8e\x3a\x9b\x68\x8c\x2c\x1e\xa5\x41\x35\xbf" "\xfd\x2f\xfd\x87\xd9\xdf\xa9\x02\xf3\xdd\x97\xb2\xa6\x07\x8f\xa6\x5f\x5a" "\x5f\x95\xda\x2b\x9f\x61\x24\xfe\x07\x68\x2e\x27\xab\x65\xab\x96\x57\x3e" "\x76\x2f\x50\x60\x43\x9e\x18\x64\x97\x98\xe0\xb9\xd7\x86\x4f\x91\xdb\xc4" "\xf4\xed\x3a\x4a\xb3\x06\x71\xf8\xf7\xf3\xc4\x9c\x7a\xc5\x04\xa7\x55\xf9" "\x42\x0f\xd9\xb2\x24\x21\xaf\xd7\x20\x3f\x7c\xd6\xdd\x8c\x8e\x7a\x33\x70" "\x9e\x12\xd0\x04\xe4\x02\x67\x2a\xf2\xb3\xf9\x04\x6b\xc5\x78\x54\xf9\x84" "\x82\x53\x8a\xd4\x87\x23\xcd\x15\x3c\xf0\x31\x03\xc1\x57\xcd\xb1\xa6\x3e" "\x83\x9a\x02\xc3\xf0\x04\x1d\x70\x20\x28\x0f\x96\xf3\xf7\xe0\xce\x89\xc4" "\x08\xbe\x10\xd3\x44\x54\x08\x08\xde\xe1\xbf\xcb\x01\xf5\x29\x3a\xb6\x06" "\xc7\x1f\xfc\x09\xf9\xe6\x3b\x93\xb3\x7e\x8d\x80\x07\xad\x84\x32\xd2\xe8" "\x1c\x3d\x1d\x40\xa5\x77\x11\xbd\xb7\x98\xee\x91\xa3\xf0\x5f\x93\xf4\xf4" "\x6f\x88\x3d\xb0\x61\x3b\xf9\x5f\xab\xd5\x23\xd9\x55\xd0\xd4\xa5\x51\x8e" "\x1b\xb3\xda\xe7\x64\x6a\xf8\xaf\x8d\x4a\x4d\x7d\xcf\xac\x63\x3c\x6e\xfa" "\x31\x64\xf9\xe0\x5b\xbb\x4b\x05\x94\x7a\xc0\xe6\xc4\xed\xd9\x9a\x76\x8e" "\xda\x4c\x71\x49\xcf\x38\xa4\x60\xb5\x22\xd6\x40\x5a\xa4\x7f\xad\xa1\xc7" "\x8f\x56\xfb\xd3\x36\x69\x71\x9b\x14\x96\x42\x7f\x29\x05\x32\x33\x4b\x69" "\xd0\xa7\xcf\x6c\x46\xce\xfe\x5e\xcd\x0f\xd9\x23\xb1\x49\x29\xfd\x3d\xb8" "\xa1\xa9\x4b\xa6\x39\x54\xb5\x8c\xeb\x9b\x1e\x0f\x84\x71\xa0\x2c\x13\xa1" "\x60\xaa\x76\x30\x83\xa5\xfd\x36\xc1\x99\x07\x5a\x76\x97\x68\xe1\x64\xf1" "\x79\x11\xf5\xa4\x16\xbb\x96\x19\x8a\xa0\x95\x4a\x7d\x27\xe3\x0c\x48\x06" "\x91\xce\x80\xdc\x71\xa4\x91\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 4096); *(uint16_t*)0x20001404 = 0x1000; syscall(__NR_write, /*fd=*/r[0], /*data=*/0x20000400ul, /*len=*/0xfffffe69ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; use_temporary_dir(); loop(); return 0; }