// https://syzkaller.appspot.com/bug?id=9d15d4193db9a38fbd144cf76ef542e7096b7d3f // 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 #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) 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; } static void setup_sysctl() { int cad_pid = fork(); if (cad_pid < 0) exit(1); if (cad_pid == 0) { for (;;) sleep(100); } char tmppid[32]; snprintf(tmppid, sizeof(tmppid), "%d", cad_pid); struct { const char* name; const char* data; } files[] = { {"/sys/kernel/debug/x86/nmi_longest_ns", "10000000000"}, {"/proc/sys/kernel/hung_task_check_interval_secs", "20"}, {"/proc/sys/net/core/bpf_jit_kallsyms", "1"}, {"/proc/sys/net/core/bpf_jit_harden", "0"}, {"/proc/sys/kernel/kptr_restrict", "0"}, {"/proc/sys/kernel/softlockup_all_cpu_backtrace", "1"}, {"/proc/sys/fs/mount-max", "100"}, {"/proc/sys/vm/oom_dump_tasks", "0"}, {"/proc/sys/debug/exception-trace", "0"}, {"/proc/sys/kernel/printk", "7 4 1 3"}, {"/proc/sys/kernel/keys/gc_delay", "1"}, {"/proc/sys/vm/oom_kill_allocating_task", "1"}, {"/proc/sys/kernel/ctrl-alt-del", "0"}, {"/proc/sys/kernel/cad_pid", tmppid}, }; for (size_t i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].name, files[i].data)) { } } kill(cad_pid, SIGKILL); while (waitpid(cad_pid, NULL, 0) != cad_pid) ; } #define FUSE_MIN_READ_BUFFER 8192 enum fuse_opcode { FUSE_LOOKUP = 1, FUSE_FORGET = 2, FUSE_GETATTR = 3, FUSE_SETATTR = 4, FUSE_READLINK = 5, FUSE_SYMLINK = 6, FUSE_MKNOD = 8, FUSE_MKDIR = 9, FUSE_UNLINK = 10, FUSE_RMDIR = 11, FUSE_RENAME = 12, FUSE_LINK = 13, FUSE_OPEN = 14, FUSE_READ = 15, FUSE_WRITE = 16, FUSE_STATFS = 17, FUSE_RELEASE = 18, FUSE_FSYNC = 20, FUSE_SETXATTR = 21, FUSE_GETXATTR = 22, FUSE_LISTXATTR = 23, FUSE_REMOVEXATTR = 24, FUSE_FLUSH = 25, FUSE_INIT = 26, FUSE_OPENDIR = 27, FUSE_READDIR = 28, FUSE_RELEASEDIR = 29, FUSE_FSYNCDIR = 30, FUSE_GETLK = 31, FUSE_SETLK = 32, FUSE_SETLKW = 33, FUSE_ACCESS = 34, FUSE_CREATE = 35, FUSE_INTERRUPT = 36, FUSE_BMAP = 37, FUSE_DESTROY = 38, FUSE_IOCTL = 39, FUSE_POLL = 40, FUSE_NOTIFY_REPLY = 41, FUSE_BATCH_FORGET = 42, FUSE_FALLOCATE = 43, FUSE_READDIRPLUS = 44, FUSE_RENAME2 = 45, FUSE_LSEEK = 46, FUSE_COPY_FILE_RANGE = 47, FUSE_SETUPMAPPING = 48, FUSE_REMOVEMAPPING = 49, FUSE_SYNCFS = 50, FUSE_TMPFILE = 51, FUSE_STATX = 52, CUSE_INIT = 4096, CUSE_INIT_BSWAP_RESERVED = 1048576, FUSE_INIT_BSWAP_RESERVED = 436207616, }; struct fuse_in_header { uint32_t len; uint32_t opcode; uint64_t unique; uint64_t nodeid; uint32_t uid; uint32_t gid; uint32_t pid; uint32_t padding; }; struct fuse_out_header { uint32_t len; uint32_t error; uint64_t unique; }; struct syz_fuse_req_out { struct fuse_out_header* init; struct fuse_out_header* lseek; struct fuse_out_header* bmap; struct fuse_out_header* poll; struct fuse_out_header* getxattr; struct fuse_out_header* lk; struct fuse_out_header* statfs; struct fuse_out_header* write; struct fuse_out_header* read; struct fuse_out_header* open; struct fuse_out_header* attr; struct fuse_out_header* entry; struct fuse_out_header* dirent; struct fuse_out_header* direntplus; struct fuse_out_header* create_open; struct fuse_out_header* ioctl; struct fuse_out_header* statx; }; static int fuse_send_response(int fd, const struct fuse_in_header* in_hdr, struct fuse_out_header* out_hdr) { if (!out_hdr) { return -1; } out_hdr->unique = in_hdr->unique; if (write(fd, out_hdr, out_hdr->len) == -1) { return -1; } return 0; } static volatile long syz_fuse_handle_req(volatile long a0, volatile long a1, volatile long a2, volatile long a3) { struct syz_fuse_req_out* req_out = (struct syz_fuse_req_out*)a3; struct fuse_out_header* out_hdr = NULL; char* buf = (char*)a1; int buf_len = (int)a2; int fd = (int)a0; if (!req_out) { return -1; } if (buf_len < FUSE_MIN_READ_BUFFER) { return -1; } int ret = read(fd, buf, buf_len); if (ret == -1) { return -1; } if ((size_t)ret < sizeof(struct fuse_in_header)) { return -1; } const struct fuse_in_header* in_hdr = (const struct fuse_in_header*)buf; if (in_hdr->len > (uint32_t)ret) { return -1; } switch (in_hdr->opcode) { case FUSE_GETATTR: case FUSE_SETATTR: out_hdr = req_out->attr; break; case FUSE_LOOKUP: case FUSE_SYMLINK: case FUSE_LINK: case FUSE_MKNOD: case FUSE_MKDIR: out_hdr = req_out->entry; break; case FUSE_OPEN: case FUSE_OPENDIR: out_hdr = req_out->open; break; case FUSE_STATFS: out_hdr = req_out->statfs; break; case FUSE_RMDIR: case FUSE_RENAME: case FUSE_RENAME2: case FUSE_FALLOCATE: case FUSE_SETXATTR: case FUSE_REMOVEXATTR: case FUSE_FSYNCDIR: case FUSE_FSYNC: case FUSE_SETLKW: case FUSE_SETLK: case FUSE_ACCESS: case FUSE_FLUSH: case FUSE_RELEASE: case FUSE_RELEASEDIR: case FUSE_UNLINK: case FUSE_DESTROY: out_hdr = req_out->init; if (!out_hdr) { return -1; } out_hdr->len = sizeof(struct fuse_out_header); break; case FUSE_READ: out_hdr = req_out->read; break; case FUSE_READDIR: out_hdr = req_out->dirent; break; case FUSE_READDIRPLUS: out_hdr = req_out->direntplus; break; case FUSE_INIT: out_hdr = req_out->init; break; case FUSE_LSEEK: out_hdr = req_out->lseek; break; case FUSE_GETLK: out_hdr = req_out->lk; break; case FUSE_BMAP: out_hdr = req_out->bmap; break; case FUSE_POLL: out_hdr = req_out->poll; break; case FUSE_GETXATTR: case FUSE_LISTXATTR: out_hdr = req_out->getxattr; break; case FUSE_WRITE: case FUSE_COPY_FILE_RANGE: out_hdr = req_out->write; break; case FUSE_FORGET: case FUSE_BATCH_FORGET: return 0; case FUSE_CREATE: out_hdr = req_out->create_open; break; case FUSE_IOCTL: out_hdr = req_out->ioctl; break; case FUSE_STATX: out_hdr = req_out->statx; break; default: return -1; } return fuse_send_response(fd, in_hdr, out_hdr); } uint64_t r[2] = {0xffffffffffffffff, 0xffffffffffffffff}; int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); setup_sysctl(); const char* reason; (void)reason; install_segv_handler(); use_temporary_dir(); intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$ext4 arguments: [ // fs: ptr[in, buffer] { // buffer: {65 78 74 34 00} (length 0x5) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: mount_flags = 0x200000 (8 bytes) // opts: ptr[in, fs_options[ext4_options]] { // fs_options[ext4_options] { // elems: array[fs_opt_elem[ext4_options]] { // fs_opt_elem[ext4_options] { // elem: union ext4_options { // resgid: fs_opt["resgid", fmt[hex, gid]] { // name: buffer: {72 65 73 67 69 64} (length 0x6) // eq: const = 0x3d (1 bytes) // val: gid (resource) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // bsddf: buffer: {62 73 64 64 66} (length 0x5) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // grpquota: buffer: {67 72 70 71 75 6f 74 61} (length 0x8) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // nojournal_checksum: buffer: {6e 6f 6a 6f 75 72 6e 61 6c 5f 63 // 68 65 63 6b 73 75 6d} (length 0x12) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // debug_want_extra_isize: fs_opt["debug_want_extra_isize", // fmt[hex, int32]] { // name: buffer: {64 65 62 75 67 5f 77 61 6e 74 5f 65 78 74 72 // 61 5f 69 73 69 7a 65} (length 0x16) eq: const = 0x3d (1 // bytes) val: int32 = 0x80 (18 bytes) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // delalloc: buffer: {64 65 6c 61 6c 6c 6f 63} (length 0x8) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // nogrpid: buffer: {6e 6f 67 72 70 69 64} (length 0x7) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // noauto_da_alloc: buffer: {6e 6f 61 75 74 6f 5f 64 61 5f 61 6c // 6c 6f 63} (length 0xf) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[ext4_options] { // elem: union ext4_options { // stripe: fs_opt["stripe", fmt[hex, int32]] { // name: buffer: {73 74 72 69 70 65} (length 0x6) // eq: const = 0x3d (1 bytes) // val: int32 = 0x2 (18 bytes) // } // } // comma: const = 0x2c (1 bytes) // } // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // chdir: int8 = 0x3 (1 bytes) // size: len = 0x572 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x572) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x200000000040, "ext4\000", 5)); NONFAILING(memcpy((void*)0x200000000140, "./file1\000", 8)); NONFAILING(memcpy((void*)0x200000000440, "resgid", 6)); NONFAILING(*(uint8_t*)0x200000000446 = 0x3d); NONFAILING(sprintf((char*)0x200000000447, "0x%016llx", (long long)0xee00)); NONFAILING(*(uint8_t*)0x200000000459 = 0x2c); NONFAILING(memcpy((void*)0x20000000045a, "bsddf", 5)); NONFAILING(*(uint8_t*)0x20000000045f = 0x2c); NONFAILING(memcpy((void*)0x200000000460, "grpquota", 8)); NONFAILING(*(uint8_t*)0x200000000468 = 0x2c); NONFAILING(memcpy((void*)0x200000000469, "nojournal_checksum", 18)); NONFAILING(*(uint8_t*)0x20000000047b = 0x2c); NONFAILING(memcpy((void*)0x20000000047c, "debug_want_extra_isize", 22)); NONFAILING(*(uint8_t*)0x200000000492 = 0x3d); NONFAILING(sprintf((char*)0x200000000493, "0x%016llx", (long long)0x80)); NONFAILING(*(uint8_t*)0x2000000004a5 = 0x2c); NONFAILING(memcpy((void*)0x2000000004a6, "delalloc", 8)); NONFAILING(*(uint8_t*)0x2000000004ae = 0x2c); NONFAILING(memcpy((void*)0x2000000004af, "nogrpid", 7)); NONFAILING(*(uint8_t*)0x2000000004b6 = 0x2c); NONFAILING(memcpy((void*)0x2000000004b7, "noauto_da_alloc", 15)); NONFAILING(*(uint8_t*)0x2000000004c6 = 0x2c); NONFAILING(memcpy((void*)0x2000000004c7, "stripe", 6)); NONFAILING(*(uint8_t*)0x2000000004cd = 0x3d); NONFAILING(sprintf((char*)0x2000000004ce, "0x%016llx", (long long)2)); NONFAILING(*(uint8_t*)0x2000000004e0 = 0x2c); NONFAILING(*(uint8_t*)0x2000000004e1 = 0); NONFAILING(memcpy( (void*)0x2000000006c0, "\x78\x9c\xec\xdd\xcf\x6b\x1c\x55\x1c\x00\xf0\xef\x6c\x92\xfe\xd6\xa6\x50" "\x8a\x7a\x90\x40\x0f\x56\x6a\x37\x4d\xe2\x8f\x0a\x42\xeb\x51\xb4\x58\xd0" "\x7b\x5d\x92\x69\x28\xd9\x74\x4b\x76\x53\x9a\x58\x68\x7b\xb0\x20\x5e\xa4" "\x08\x22\x16\xc4\x3f\xc0\xbb\xc7\xe2\x1f\xa0\x7f\x45\x41\x0b\x45\x4a\xd0" "\x83\x97\xc8\x6c\x66\xdb\x6d\x92\xcd\x26\xe9\xd6\x6c\x9d\xcf\x07\xa6\x7d" "\x6f\x66\xb2\x6f\xde\xbe\xf9\xbe\xfd\xce\xce\x2e\x1b\x40\x61\x8d\x64\xff" "\x94\x22\x5e\x8e\x88\xaf\x93\x88\x83\x6d\xdb\x06\x23\xdf\x38\xb2\xb2\xdf" "\xd2\xc3\x6b\x93\xd9\x92\xc4\xf2\xf2\x27\x7f\x26\x91\xe4\xeb\x5a\xfb\x27" "\xf9\xff\xfb\xf3\xca\x4b\x11\xf1\xcb\x17\x11\xc7\x4b\x6b\xdb\xad\x2f\x2c" "\xce\x54\xaa\xd5\x74\x2e\xaf\x8f\x36\x66\x2f\x8f\xd6\x17\x16\x4f\x5c\x9c" "\xad\x4c\xa7\xd3\xe9\xa5\xf1\x89\x89\x53\x6f\x4d\x8c\xbf\xfb\xce\xdb\x3d" "\xeb\xeb\xeb\xe7\xfe\xfe\xee\xe3\xbb\x1f\x9c\xfa\xea\xe8\xd2\xb7\x3f\xdd" "\x3f\x74\x3b\x89\x33\x71\x20\xdf\xd6\xde\x8f\xa7\x70\xa3\xbd\x32\x12\x23" "\xf9\x73\x32\x14\x67\x56\xed\x38\xd6\x83\xc6\xfa\x49\xb2\xd3\x07\xc0\xb6" "\x0c\xe4\x71\x3e\x14\xd9\x1c\x70\x30\x06\xf2\xa8\x07\xfe\xff\xae\x47\xc4" "\x32\x50\x50\x89\xf8\x87\x82\x6a\xe5\x01\xad\x6b\xfb\x1e\x5d\x07\x3f\x37" "\x1e\xbc\xbf\x72\x01\xb4\xb6\xff\x83\x2b\xef\x8d\xc4\x9e\xe6\xb5\xd1\xbe" "\xa5\xe4\x89\x2b\xa3\xec\x7a\x77\xb8\x07\xed\x67\x6d\xfc\xfc\xc7\x9d\xdb" "\xd9\x12\x5d\xde\x87\xb8\xde\x83\xf6\x00\x5a\x6e\xdc\x8c\x88\x93\x83\x83" "\x6b\xe7\xbf\x24\x9f\xff\xb6\xef\x64\xf3\xcd\xe3\x8d\xad\x6e\xa3\x68\xaf" "\x3f\xb0\x93\xee\x66\xf9\xcf\x1b\xeb\xe5\x3f\xa5\x47\xf9\x4f\xac\x93\xff" "\xec\x5f\x27\x76\xb7\xa3\x7b\xfc\x97\xee\xf7\xa0\x99\x8e\xb2\xfc\xef\xbd" "\x75\xf3\xdf\x47\x53\xd7\xf0\x40\x5e\x7b\xa1\x99\xf3\x0d\x25\x17\x2e\x56" "\xd3\x93\x11\xf1\x62\x44\x1c\x8b\xa1\xdd\x59\x7d\xa3\xfb\x39\xa7\x96\xee" "\x2d\x77\xda\xd6\x9e\xff\x65\x4b\xd6\x7e\x2b\x17\xcc\x8f\xe3\xfe\xe0\xee" "\x27\xff\x66\xaa\xd2\xa8\x3c\x4d\x9f\xdb\x3d\xb8\x19\xf1\xca\xe3\xfc\x37" "\x89\x35\xf3\xff\x9e\x66\xae\xbb\x7a\xfc\xb3\xe7\xe3\x5c\x56\xf8\xf5\xcb" "\xae\x6d\x1c\x49\xef\xbc\xda\x69\x5b\xf7\xfe\xb7\xeb\x7d\x06\xbc\xfc\x63" "\xc4\x6b\xeb\x8e\xff\xe3\x3b\x5a\xc9\xc6\xf7\x27\x47\x9b\xe7\xc3\x68\xeb" "\xac\x58\xeb\xaf\x5b\x47\x7e\xeb\xd4\xfe\xd6\xfa\xdf\x7b\xd9\xf8\xef\xdb" "\xb8\xff\xc3\x49\xfb\xfd\xda\xfa\xd6\xdb\xf8\x61\xcf\x3f\x69\xa7\x6d\xdb" "\x3d\xff\x77\x25\x9f\x36\xcb\xbb\xf2\x75\x57\x2b\x8d\xc6\xdc\x58\xc4\xae" "\xe4\xa3\xb5\xeb\xc7\x1f\xff\x6d\xab\xde\xda\x3f\xeb\xff\xb1\xa3\x1b\xcf" "\x7f\xeb\x9d\xff\x7b\x23\xe2\xb3\x4d\xf6\xff\xd6\xe1\x5b\x1d\x77\xed\x87" "\xf1\x9f\xda\xd2\xf8\x6f\xbd\x70\xef\xc3\xcf\xbf\xef\xd4\xfe\xe6\xc6\xff" "\xcd\x66\xe9\x58\xbe\x66\x33\xf3\xdf\x66\x0f\xf0\x69\x9e\x3b\x00\x00\x00" "\x00\x00\x00\xe8\x37\xa5\x88\x38\x10\x49\xa9\xfc\xa8\x5c\x2a\x95\xcb\x2b" "\x9f\xef\x38\x1c\xfb\x4a\xd5\x5a\xbd\x71\xfc\x42\x6d\xfe\xd2\x54\x34\xbf" "\x2b\x3b\x1c\x43\xa5\xd6\x9d\xee\x83\x6d\x9f\x87\x18\xcb\x3f\x0f\xdb\xaa" "\x8f\xaf\xaa\x4f\x44\xc4\xa1\x88\xf8\x66\x60\x6f\xb3\x5e\x9e\xac\x55\xa7" "\x76\xba\xf3\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xd0\x27\xf6\x77\xf8\xfe\x7f\xe6\xf7\x81\x9d\x3e\x3a\xe0\x99\xf3\x93\xdf" "\x50\x5c\x5d\xe3\xbf\x17\xbf\xf4\x04\xf4\x25\xaf\xff\x50\x5c\xe2\x1f\x8a" "\x4b\xfc\x43\x71\x89\x7f\x28\x2e\xf1\x0f\xc5\x25\xfe\xa1\xb8\xc4\x3f\x14" "\x97\xf8\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x80\x9e\x3a\x77\xf6\x6c\xb6\x2c\x2f\x3d\xbc\x36\x99" "\xd5\xa7\xae\x2c\xcc\xcf\xd4\xae\x9c\x98\x4a\xeb\x33\xe5\xd9\xf9\xc9\xf2" "\x64\x6d\xee\x72\x79\xba\x56\x9b\xae\xa6\xe5\xc9\xda\x6c\xb7\xc7\xab\xd6" "\x6a\x97\xc7\xc6\x63\xfe\xea\x68\x23\xad\x37\x46\xeb\x0b\x8b\xe7\x67\x6b" "\xf3\x97\x1a\xe7\x2f\xce\x56\xa6\xd3\xf3\xe9\xd0\x7f\xd2\x2b\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\xbe\xd4\x17\x16\x67" "\x2a\xd5\x6a\x3a\xa7\xd0\xb1\x70\x3a\xfa\xe2\x30\xb6\x5d\x48\xba\x8d\xf2" "\xe9\xfc\x64\xd8\xd2\x23\x47\x5e\x18\xdc\xf9\x0e\x2a\x3c\x83\xc2\x0e\x4f" "\x4c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd0\xe6\xdf\x00" "\x00\x00\xff\xff\xc9\xcb\x34\xb3", 1394)); NONFAILING(syz_mount_image(/*fs=*/0x200000000040, /*dir=*/0x200000000140, /*flags=MS_RELATIME*/ 0x200000, /*opts=*/0x200000000440, /*chdir=*/3, /*size=*/0x572, /*img=*/0x2000000006c0)); // chdir arguments: [ // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // ] NONFAILING(memcpy((void*)0x200000000140, "./file0\000", 8)); syscall(__NR_chdir, /*dir=*/0x200000000140ul); // openat$cgroup_ro arguments: [ // fd: fd_cgroup (resource) // file: ptr[in, buffer] { // buffer: {63 67 72 6f 75 70 2e 63 6f 6e 74 72 6f 6c 6c 65 72 73 00} // (length 0x13) // } // flags: const = 0x275a (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd NONFAILING(memcpy((void*)0x200000000040, "cgroup.controllers\000", 19)); syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000040ul, /*flags=*/0x275a, /*mode=*/0); // quotactl$Q_QUOTAON arguments: [ // cmd: quota_cmd_quota_on = 0xffffffff80000201 (8 bytes) // special: ptr[in, blockdev_filename] { // union blockdev_filename { // loop: loop_filename { // prefix: buffer: {2f 64 65 76 2f 6c 6f 6f 70} (length 0x9) // id: proc = 0x0 (1 bytes) // z: const = 0x0 (1 bytes) // } // } // } // id: uid (resource) // addr: nil // ] NONFAILING(memcpy((void*)0x200000000180, "/dev/loop", 9)); NONFAILING(*(uint8_t*)0x200000000189 = 0x30); NONFAILING(*(uint8_t*)0x20000000018a = 0); syscall(__NR_quotactl, /*cmd=Q_QUOTAON_GRP*/ 0xffffffff80000201ul, /*special=*/0x200000000180ul, /*id=*/0, /*addr=*/0ul); // mprotect arguments: [ // addr: VMA[0x3000] // len: len = 0x3000 (8 bytes) // prot: mmap_prot = 0x1 (8 bytes) // ] syscall(__NR_mprotect, /*addr=*/0x200000000000ul, /*len=*/0x3000ul, /*prot=PROT_READ*/ 1ul); // openat$cgroup_ro arguments: [ // fd: fd_cgroup (resource) // file: ptr[in, buffer] { // buffer: {6d 65 6d 6f 72 79 2e 63 75 72 72 65 6e 74 00} (length 0xf) // } // flags: const = 0x275a (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd NONFAILING(memcpy((void*)0x200000000180, "memory.current\000", 15)); res = syscall(__NR_openat, /*fd=*/(intptr_t)-1, /*file=*/0x200000000180ul, /*flags=*/0x275a, /*mode=*/0); if (res != -1) r[0] = res; // mmap arguments: [ // addr: VMA[0xb36000] // len: len = 0xb36000 (4 bytes) // prot: mmap_prot = 0xa (8 bytes) // flags: mmap_flags = 0x28011 (8 bytes) // fd: fd (resource) // offset: intptr = 0x0 (8 bytes) // ] syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0xb36000, /*prot=PROT_SEM|PROT_WRITE*/ 0xaul, /*flags=MAP_STACK|MAP_POPULATE|MAP_FIXED|MAP_SHARED*/ 0x28011ul, /*fd=*/r[0], /*offset=*/0ul); // syz_fuse_handle_req arguments: [ // fd: fd_fuse (resource) // buf: ptr[in, buffer] { // buffer: {fc e4 20 77 51 97 9b c5 14 ca b2 28 a9 86 08 ea 3b f0 e9 c8 // 22 13 7f 1e 30 99 0d 74 72 8d f0 7d 2e f2 b2 6f 2b 72 45 86 0d 2e a1 // 42 64 cd b7 27 4c 09 c7 35 b8 6b 37 86 a9 20 72 19 f4 48 70 99 b7 b7 // 93 e8 ea 4a 04 e7 a2 df 43 4a 87 1a ae 4e 56 67 81 5a 9e ad 55 62 98 // 32 44 ce b2 1e 9b 84 90 18 11 0d ef d0 12 fb f2 aa 77 b7 44 75 fd 55 // d7 57 85 ab 68 5d cf 81 3c eb e4 48 3f ce 8d 65 c7 c0 38 ad 1e 66 73 // 91 36 bd 2a bb 44 1b a1 d1 54 c8 93 4b 5d d9 77 63 bd d7 44 b9 c7 da // 6f d2 74 aa 5f 07 8d e8 a9 29 d6 1c 6e 91 24 16 fb cf fa b5 93 bf 4a // 32 fa 9b 4c 11 44 bb a5 9a 6e 69 f9 c8 de 04 a5 70 b8 99 92 93 42 bb // 67 2c 2b 50 96 5a d6 40 58 2b b4 c7 c0 e5 a0 10 c8 d9 6b 15 64 66 88 // 90 6f 48 3b 95 93 d4 49 97 81 c3 ba 2c 02 32 61 e6 06 ce 7e af 85 39 // d1 24 16 65 2a d0 06 57 7b 8e 31 3d a4 62 03 de 2b 79 39 ba e5 6e b7 // de 2e 1e 09 2d 7d 4f ea 6e a2 0a b4 78 40 0a 99 47 2a 31 f6 3b 79 05 // 98 ea b4 65 90 85 af 7b ff 08 af 31 0f ca bc d6 5f 24 4b dc 66 ef 44 // 54 e1 31 68 c0 d8 3e d3 ad 2f 76 85 d6 25 02 fd fa 87 c9 f5 25 c6 89 // bc a4 3c 2b 85 6e 16 f8 bb d0 83 82 95 f3 95 aa 17 80 40 34 53 4e 3c // 61 a8 db 57 0d 31 ff 36 00 1b cc 78 96 36 ff a9 48 30 65 cb 9d d1 30 // b6 41 b9 cb dd fa 81 3d 89 a3 ee 9d 7b ed a6 65 6f 8a a2 4f b0 3b 47 // d8 75 e5 b7 3d 4b 1d cc fc d3 c4 6e 75 c9 9c f8 7e 1a b1 88 9e 71 7a // a1 87 16 7a 3e 35 f7 73 55 5d 09 ef 94 58 40 21 c0 a5 ed 94 21 e1 91 // 6b d0 ab 48 5c 34 d9 9f 20 20 79 bf 2b 6e 70 23 5c 6b cc e4 03 67 91 // 1b ff a3 f9 0c fc 29 23 9f 1a 72 74 25 40 68 c3 30 09 a0 d8 78 52 34 // 9d 1a bd c7 67 7e b7 2f e3 5a dc ac 5c 6d a2 8b 4a be 91 67 85 f0 61 // c1 48 88 d7 df ba d6 68 83 03 da fd 01 a9 19 11 0b 78 64 60 a6 07 8f // 47 ea 56 86 99 9d aa 5b 80 83 56 84 11 f6 35 e8 18 a4 63 bf cb 79 3b // 29 5b eb e1 a0 f0 62 e4 97 50 ce 45 8e a7 9b 98 8a 4b 8f d7 99 05 05 // 74 9f d6 a2 ed ce 4f 95 27 f1 19 1b f9 de a7 40 47 bc 62 4e d0 6f ee // 53 2e f5 1f e2 f6 c0 6d 4b b8 07 15 c8 47 19 4d a8 c6 db 2d de d6 cd // 09 7d 5c 71 7b 87 29 fb 1a d8 9b cd 60 70 7c 6e 93 d2 89 9b ed c7 63 // ec 4f 13 76 86 f9 3c a6 55 0e d6 91 af 74 72 44 2e f4 85 cf f2 23 33 // 0d a4 cd 78 6b a9 28 26 07 a8 0e 6b aa 9c b5 35 18 b6 82 88 90 58 28 // 76 30 df 6f 2a 99 d2 06 45 6c b0 c6 cd 28 02 bd 16 5e cc 75 b4 10 79 // d6 c1 fc 99 d8 cd 3f df 32 bc a4 2d 4d 17 af e7 86 d4 bb 5a ae 4a 00 // d2 84 5f e7 fb e3 d4 39 4e 94 13 dd 6d 90 11 2d c0 22 7b 0b ba 89 4f // eb 7d 79 87 2a 98 ed 9c f7 8e 68 3d d7 5c 03 4d 0c 1f 5e ca ba 10 66 // db 84 2a 8f 02 16 97 1c b9 69 d5 44 62 a2 d2 3b a1 fe 32 44 0f aa 3b // 26 a9 66 84 c6 95 e7 bc 0d a1 66 7e 24 ad 38 37 09 63 fa ff e4 87 ed // 14 01 d7 69 b2 15 ff 54 7f 60 cb b2 fe b5 1c 95 2e 15 93 37 b1 43 38 // a6 cb fa c8 cf e2 d6 87 d3 d8 0d c6 4a 74 39 b1 38 3e 12 f9 08 a7 36 // 29 7b 3e ea 9e 42 f4 81 1b 61 32 cd b2 39 4c 8b a8 de df 7d 3b 8c 27 // 2e 51 e6 4d 46 f6 3f 8a 12 b4 51 ad d6 54 ab c8 6f 9b f7 d9 72 26 39 // 78 83 f3 c4 70 4a 33 9c 1a 6c 18 ae 70 b4 62 9c c7 ad f3 b7 90 3a c0 // 0d 15 c1 a9 66 3b fb 5d a8 0c 45 91 8d 26 e8 82 be 91 73 f5 ef c7 16 // 6f d3 e2 03 6b 10 09 81 f6 83 69 bc 88 f3 58 4e b3 3d b4 68 74 3d e9 // 3f 3d 3d c9 81 82 6d e0 75 25 8c 94 9f c3 1f d9 26 ab 1d c5 41 fa 29 // 84 f3 62 ee ea d6 33 84 57 0f 17 27 a8 ff 57 72 7e 0f e6 58 db 12 d2 // c8 4c 58 92 8a 8b b0 49 ce 43 2d af 95 68 53 38 6a db 31 e0 9b b0 98 // 00 25 72 02 e9 9e 6c 3d d6 7d a1 76 34 ad fb 5c 68 af c5 ae 9b ce a6 // ed 89 c6 f1 5c e5 19 b8 b2 c2 c8 f6 ff 70 e1 b1 2f c7 e2 ca c0 5d 44 // 0b 3e 60 be e5 e6 e5 bc 13 c0 fd a5 6d 0e cf 6a 9f 34 47 12 a3 cc a3 // e2 e1 ee 4e ec 34 7f 14 56 92 5e 90 37 d2 db bc 54 89 2a 8c ae 8c 35 // 20 87 5a 99 e4 da 2c ab 09 dc 94 37 6c 48 cf 42 61 d2 dc f5 73 e0 8e // e9 df 81 8b 1a ea 4e 57 b3 4b f3 81 6b 5c 69 46 6f 99 17 52 94 7d d2 // 6c b1 92 f0 ff 68 3d 87 9d c3 e2 57 bc a9 a4 b4 24 dc f2 c8 23 de 08 // c2 b3 e4 c2 39 d5 ea 1b 5e 97 a3 44 f3 39 18 9d f0 09 a0 b2 3c 34 52 // 7f da a4 dc 0b 92 71 31 1f 75 43 6c c4 39 36 f1 0e c9 4b c0 d1 ed b1 // 3b c6 b1 61 66 44 17 af c8 ac 67 ec 51 92 54 46 eb 49 a2 38 ef 9e fe // a4 20 ee ea 06 df a0 70 50 1e 30 37 e2 a8 a8 b9 5f 21 7f 82 8e 19 80 // 95 47 a2 0f 15 44 f7 3d 29 6c 2a 4f d1 42 a9 71 bf cd 6d 3c 2e 72 89 // b2 d0 24 40 f8 30 2c ec 77 06 32 5b 44 64 93 99 e7 e9 63 b9 ca f7 56 // 02 89 a6 3b 33 bd 7c 51 45 ea ee 5b 39 59 5f d0 67 b8 ec ac 48 15 bc // c2 32 f3 04 1b de 7a 0e 0c 49 93 fa fa a1 4b df 2f 5d 36 79 26 43 90 // 21 27 d5 7d 47 9a a2 09 cc 5e 7c 41 40 1b 1e 12 48 bc 2e 9b 9f ab 08 // d1 1c e3 90 a5 08 c0 1c 25 81 4a a6 ab 13 e8 dc 49 f2 40 59 9c dd 37 // a7 b0 19 63 ea eb fc 37 ba 11 27 64 0f 3e 7c ed da 68 56 df 32 fb 06 // 2a b0 a1 7c 99 96 cc 8a 8d e5 24 e3 9e c3 1f e6 4a 3e 3f 3b 90 66 1e // 0e c4 7d c9 fb db d3 2f 6c 22 8b ff eb 36 00 df 3c 4f e8 a4 2d b1 f8 // 88 d4 01 0c 28 f9 e7 6a a5 3d bd 2a b5 7e 14 7f 5d eb 59 c9 ea 36 65 // c4 02 0b c5 a3 7f 3d a2 ad 5f a7 15 ef 52 85 9e 95 97 aa 43 35 ad 14 // d2 88 9d 31 e4 45 0d f8 4e 51 7c 8a bc cb 32 88 04 84 9d ea 52 d0 96 // 68 64 f7 34 f2 92 e0 67 39 11 80 e6 3a 41 4f db 1c a3 98 16 46 6f e8 // 5f d1 57 d7 09 3c 48 2c 84 c8 58 f5 87 d2 bf 97 3d 21 07 6e 29 31 a6 // 93 a6 3c 8b 38 9d c6 01 2d 01 a5 b8 63 f1 43 9d f5 17 58 ea 72 c8 5c // 58 53 48 56 40 ec e4 43 92 fa c7 bd e2 18 fb a2 b6 fd c1 32 97 5b 83 // 79 a4 03 51 ce 7a f9 4b e8 2e a5 e5 03 a4 a1 47 53 51 6e d1 c7 1b 54 // 71 57 38 88 ff ef 42 a8 ea b6 51 48 9b 2f d9 25 16 b0 9e 34 4c 1d 27 // 33 54 8a 31 7f cd b5 f4 08 f1 1f 6a 3c c6 9c d5 f4 89 8e 65 ba e8 73 // 57 56 eb 55 b5 19 94 b1 19 bf 4a 7a 7f 2e 19 6c e6 99 43 b3 46 31 c6 // 98 3d 3c a5 0c 62 96 6b 8d d5 16 82 6a 57 39 36 fb e1 fc ec 09 3f 5d // 76 6f 68 80 81 f8 d2 3a fc 21 30 a6 6f 5c 54 96 51 88 fa 48 1b bf b4 // 6a 58 a4 1a 94 75 82 86 1e b2 05 69 60 ce 6d 95 5f 93 44 b8 16 7c d7 // 4a 81 36 16 98 00 8e b0 dc 3c a5 d6 65 0f 17 0f 1b 71 45 d9 d4 28 30 // 6b e3 a0 a9 b3 fa e2 6d 97 76 08 00 3c 82 e7 b0 c6 0f 1c 50 4c 22 e9 // 2c 50 28 91 cf bd b8 f6 f3 2c f2 ae 81 44 01 a7 de 7a 50 d7 ca 89 e4 // 34 f2 fd e7 80 af 90 bf 38 f8 38 e6 ac 0b 5b 4f 28 9b 34 87 a8 24 8b // ff b1 ac b1 b1 cf 28 39 47 94 e9 1f e3 ae 2d ed 1f 0e 62 b5 d4 e8 67 // e4 68 61 e2 ae a1 f8 9d 3c 05 2e 48 83 87 0f ea 23 0c 06 42 cc 91 91 // e8 cf 56 fa 94 97 ff 67 05 5d 62 cc 2a 31 8e 18 42 58 67 ba 2d 4e 2c // 7c 5f fc 12 2a 81 18 63 fb 5d ee 71 53 3c 23 30 6e 86 46 f0 99 97 06 // 74 c7 62 50 df b4 5e f6 82 51 4b fc fc 8c a2 04 cf 6b b2 10 3e e8 50 // 8e e9 ac 88 ac e7 71 f4 b9 12 07 52 9a e5 cc f9 24 c4 51 85 da 7e a6 // fd 6f d2 3a 90 dc 54 2b ad 99 0c f5 12 eb 1e c6 d2 a9 a5 d9 4e f7 67 // 39 7b bf c1 c5 5a 42 6c 88 6f 93 ea 5f 5a 6f 17 e7 83 9e 62 49 6c 6d // 17 78 3d dd 99 81 6a 57 cf ed e3 18 1b 44 6a 2c 44 79 66 ed 95 98 1f // be 32 57 ce c7 61 61 3f 65 01 85 f2 75 6a 8e 5a f2 f9 81 91 42 3f 7a // 16 6d 52 50 a1 37 61 9f c3 53 cd 9f d8 c2 bf 5d cf 18 da 61 be ae c8 // 19 09 b3 15 5d 23 4a 09 7c 14 6f 52 84 1a 2d 15 ee e2 36 0b e6 ec ee // 01 8c ec cb d1 5d db 58 07 42 80 85 c5 28 4a aa e2 58 b1 c0 d9 f0 33 // a2 46 df 1a a4 aa 2f 60 ef 16 2e 4b 75 5b aa cc 43 fa 93 37 a0 33 47 // 3e 32 8c 16 bf f0 cf 2b 29 82 84 d6 6f 82 45 4b fe c0 48 f3 3a 41 15 // 0d cd 37 15 24 2e f4 49 f4 cc e0 27 81 3d 00 40 3b 82 c5 ac 59 cb 06 // f2 27 08 b0 64 54 18 66 51 6e e4 da 8c ce 5b f5 b8 29 9f a2 d6 84 db // 62 d2 fe 21 92 ed 5f 25 79 ce 39 57 2a a4 91 07 79 e2 70 c6 67 ab 99 // d6 66 d1 dd ba 12 54 f5 69 6a 41 0a 1b 88 c3 39 8b 67 b6 b1 b3 fb ee // da 32 41 db af 3b b5 c4 b1 f7 98 ac bd f4 e5 34 ce d7 41 83 99 e3 94 // 17 d0 7c 4c 53 bb f7 23 75 91 b3 d3 ad c5 72 39 28 91 ba 4f 65 a2 b3 // 22 5e b3 e9 39 ad 1c 44 a7 e0 c2 32 74 87 6f 04 18 61 f2 80 80 ce 21 // bd 37 97 f5 e4 7b 6a 49 77 23 44 f6 74 68 18 68 11 9b eb 6e f0 6e c3 // 2c 6c 3f bc 4e 56 e8 98 83 ef fd ce bf a2 dc 18 79 7e 62 f7 02 c9 6e // b2 81 23 ea 75 58 8e a3 6f f2 78 72 3b b1 16 69 b7 cd 1c 25 51 c7 24 // 1c 4c 89 a9 b0 c6 e1 b7 30 a9 4e a7 b4 c4 a9 23 f7 d9 2c 80 24 de 98 // 72 0f 18 6b 5f b0 2b a9 61 6e 33 f1 fd af 8f 71 2d 81 d5 fe 2d b0 e6 // 43 11 4d 03 ab a9 a0 c9 8f 65 a5 62 23 ea 23 bd 49 95 d1 35 3b ab 90 // bf 4e 77 25 6c 93 3b 75 6c 74 9e b1 ef 4d c0 9f 09 dc e1 3d 2f fc 2f // af aa 30 b8 8c 34 fc 88 84 a7 03 8e 1a a4 64 89 29 63 09 87 48 b9 0d // 01 ea 81 db 3c 59 04 d9 10 8f 50 25 89 6a 1c 14 a8 36 4c 39 d7 2e cd // 7d b3 0a 21 77 c2 36 80 fd 4b dd 91 bd 7b bf b2 77 52 f6 9b 69 6a 61 // 19 4c e0 bc 75 fb 6c 32 7a aa 34 44 73 b9 6d 0f 7b 12 3c c0 17 71 9e // 08 00 80 c6 e9 81 2f b9 9a ae 02 2f c5 dd bb 34 ec 08 3e b5 a8 96 f1 // 64 fb 63 ed e8 d9 6d b0 63 8b e0 55 45 ab 1c 56 c5 bf 5b a7 44 88 83 // 27 7b 9a 62 ff 71 84 96 ee 7d d5 33 e6 40 df c4 36 67 ca f4 a5 f7 8d // 79 cf 4a 88 25 01 34 b8 ed 52 1f 69 b9 58 04 7d c5 14 1a f1 bb 24 4c // 69 0d 95 f9 92 91 68 fc 6f ce cd 5d 38 54 fc 76 89 a1 f3 08 c5 94 32 // 98 75 9f 0d df 6c 55 20 e0 ff 3c 7b 3c ff de b0 57 35 f3 67 c9 d7 76 // 4d 56 8b f9 7a 4f 3f 95 96 c6 30 03 d8 ee 40 01 95 2a c1 bf 0b c4 d3 // cf 39 d7 35 08 a3 15 d1 f9 2e 80 4d b6 c9 cc b1 69 58 7f b4 85 19 b2 // fd d8 32 bc d0 78 e1 44 a4 27 72 9c 9e 4d 91 fd d1 3c 85 ee 28 6b be // dc 7c 95 86 9e bd e9 1b 2c 7c 92 25 c4 0c 8a 65 9f 28 9d b2 58 40 d9 // 7c 6c 7a 5f 20 9f 22 62 6c 20 4d bd d4 09 40 55 c1 e3 39 9b 70 77 84 // 4d 7c 74 4f a3 40 12 e0 de 4a 1f 3f ec 35 25 90 b5 81 dc e0 12 1b 08 // 89 23 0c 97 6f 4c 62 fe 1d 9f 0f fc 10 9c 43 f4 79 59 8e 89 11 b9 57 // d2 1d a8 44 f2 e6 25 c4 ea 5c 7b 99 a2 18 7b 53 ca ba 1a 37 fa 28 60 // d4 38 9a 16 51 3e e3 77 e7 09 9f 92 ad 70 15 e7 39 4c d8 4f ab 44 d1 // f7 29 19 96 aa 6d d2 ee 8b 77 8f 9b 72 a9 8f 84 3b 33 48 90 5f 82 fd // 12 fa a3 04 e8 de bf 3b 20 64 c1 3b 33 d8 f8 dc a0 49 83 30 67 34 41 // ea f8 e5 d3 82 d7 01 05 ea ef 81 02 9b cc 8d 82 0a 38 c9 ef c0 92 3d // 0f e3 06 0c b1 bc 17 f7 27 f4 3a c9 ab 45 f0 a3 77 3b 6e 21 77 ee 9b // df 2c 9b ee fd 7a 52 5f e5 28 d9 e5 1c c9 08 aa 5e e7 88 e6 ef d6 e1 // 4c 42 a5 63 1a a3 55 22 82 e2 5f df 01 7d e6 25 b7 b8 d1 63 3e a0 7f // aa 5c 06 7e ed 61 b7 3d b6 84 5b 02 8a 0c bc d8 27 c4 b5 78 2e 5c c8 // 20 c0 a9 ff 44 aa 4f 4a ed 83 b4 70 0e 4d 17 35 23 f5 1f 87 dc 96 19 // b3 2c 6a 75 e9 66 93 d8 4c ee 20 a7 6b f2 db e0 b9 23 ab 58 af ad 77 // b4 84 f4 99 4b 57 77 3e ca 8e 50 4e 15 f1 1b c4 0a 0f 04 35 63 db 23 // 04 a4 5d 78 ba 86 c6 e6 fb bb 65 5c 0f 40 b5 87 6a 74 d2 95 19 ac 53 // 84 60 ba f5 b3 a8 20 10 31 b6 70 96 ae 23 cd 07 09 46 f3 d4 26 ef f6 // 52 df 59 da 2c 40 1f 26 8d d7 a4 f2 71 24 0d b5 41 c3 0e de 68 40 4e // 20 3e a3 7e 97 c7 a9 4a be 5b 53 92 3e 9f ba 08 c7 55 b2 16 1d df 26 // b3 47 0e 69 d0 df 94 78 8f 14 9c d7 0a 30 39 fe a8 ad e4 5c 78 9d 5f // 11 2e 81 2b 11 19 b0 5f 15 15 53 86 9d 09 cd d6 1e e7 bc 68 3c 65 f0 // ea 74 04 f4 52 ed ee 6d 18 b5 3e a7 b8 3d 54 de 06 d0 d5 1d c8 7f a4 // 41 ca fa 8a 15 ea ab 36 55 4e d3 72 1e 31 07 10 f9 d4 66 b0 ae 34 f4 // bf ee f6 e1 ff 76 90 1f d5 5a 45 93 0e 30 68 ca 4a 28 8a 48 6d 77 72 // cb f5 13 a8 c9 a1 09 ce 23 0b 26 4a f1 f4 6d 01 cb 80 be 8b 4f cb b7 // 07 e7 37 cf 5d 3a 17 8c 65 47 6e 70 67 57 e0 94 74 db 29 09 da 49 00 // 24 b1 f7 9f db 7c e6 90 28 91 5d 96 24 2b af 27 98 cf fc 71 c1 79 67 // b8 10 47 aa 1f 96 2c dd e0 5d bc 2a d6 0d b5 e5 75 f8 f6 72 c3 4d f0 // 1b 44 5d a2 ec 11 c8 8c 9f 37 46 da 9e 79 92 56 d2 44 8f 06 4e ef f6 // 1e 21 b9 79 b4 17 e9 5d 4a 43 41 b5 fa 33 a9 33 a3 52 9d ca b9 e1 bc // fa eb 92 64 64 f5 55 7b f2 13 d8 54 1f 18 93 95 8d 05 e8 c5 46 f5 7e // 7f b8 19 e1 51 df c0 e1 a9 02 5a 52 94 53 1a b6 4b 03 14 ee ac a1 2a // bb 96 54 e3 a7 a6 74 d5 84 af 03 71 db 06 c5 7b a4 5c c9 b1 25 a8 dc // ec 2e 8e 37 f1 48 1c 72 e9 a2 36 3a b1 89 a7 d7 23 b3 6e 25 44 66 c7 // 18 97 f5 e4 00 45 0f 65 b0 2e 15 0d 1d aa 91 7d a7 d6 29 2e 88 9a 3c // d2 a2 ed cb 8e f6 d2 34 2f ed 5d 03 b8 48 a2 dd a7 53 a0 4b b1 12 dc // b0 74 ff f0 56 0a fb fc 2b 3e 37 12 64 e5 24 13 ad d2 ae 17 e6 e8 b4 // b6 82 f2 cf 5d c9 86 0e f0 12 b3 e7 13 62 3d e1 46 90 ce 5c 26 3c 03 // 5c b4 a4 ab 45 a0 bf ba 5f 44 ec 58 26 dc 7a 4b bb af fc 1b 29 1e 94 // c2 54 ba 21 fc 68 3a 53 44 8a 3a 1f 5a 5f 5e 89 4a 10 3b 10 c2 b0 4f // 7d cd cb ec 37 f8 e7 f4 51 53 fe 86 ef 1e 9b 06 45 19 7d 46 6c 36 aa // 95 79 22 f8 62 80 a6 1d d9 fe d8 07 ac 5d d8 63 b0 b4 9c 22 56 fa d2 // 1a eb 60 ca 4e 88 2d 84 a7 a3 79 4d 8b 41 ad 09 d5 77 ab ef 15 66 3c // af 59 e9 06 d4 7d 28 49 49 e6 32 74 91 77 43 34 15 3a 78 cf ae 07 78 // f0 5c e7 38 e4 62 18 44 bf fb 45 68 fa 3b 24 73 fb e4 03 2f 7f 6d 2e // f1 f9 10 71 25 ff c0 15 60 64 d1 b5 40 f4 92 03 9e d3 7a 64 f0 a2 25 // 1d fe ed bd 49 0c a6 b2 6c 2e d9 12 a8 b9 ef d9 8e 9e af 8f 58 3f f6 // 99 64 14 b9 f1 98 29 c2 f3 a3 bc a6 d2 fa 41 8e b9 c9 c7 1b 58 2c 3d // 45 35 10 cc d2 49 06 b6 b7 a6 b0 1e 9e c3 bc 5a 4d 3c 37 87 29 a1 24 // d6 6e c3 5b 75 a0 c1 e8 dc d2 51 34 c3 45 07 5e 7b fb 96 49 ef c2 d5 // 13 10 eb e8 44 a8 b2 63 cb f2 d2 8e f3 85 51 05 e9 4c 2a bb 0c 46 af // 8f fd 33 ba 11 cf da 06 d7 61 46 95 59 a8 4b 52 9c 28 f8 be ee 35 23 // cc cb 6d c2 1d 5b 2d 47 87 13 cf 93 a6 21 96 63 d7 94 c8 08 2c 9d 4e // a7 89 19 76 19 4a c0 51 6e 64 6e 1f 0e cf 4b c9 ff 37 58 8f 44 c2 6e // 7f 33 fd 25 7b 1a 67 c7 3d a6 86 0b ab c2 89 74 7b b5 9e 83 8a f8 62 // 98 2a 50 6d d9 50 35 22 6b af 98 fd ae c9 51 61 2d f9 4b ba a6 56 1a // e1 18 06 6a e1 8a b5 26 25 f5 26 b7 d7 60 da 59 ab 72 81 06 46 19 29 // 05 ba 8d c5 fe 26 ab c6 34 bf ac ab e5 ef b3 3a 45 99 a4 7f 70 92 40 // d8 00 58 aa c7 5b db 7a 3d 63 50 44 bd 35 45 24 65 dc ee fa 0a 3f 1a // 7e 6d 3c 86 8c a5 c8 65 82 be 29 cf c5 aa 12 e3 8d 41 cf 74 7f e6 9a // 73 a9 6d b9 24 dd ea 16 e6 b7 5b b2 3e 4d 81 46 ed d9 cf 39 e4 8c 6d // ec f2 48 97 11 0b 5a eb 70 95 e8 f4 2a 0a f2 68 7e 1f af 33 17 c8 33 // 8a 22 50 05 03 17 a3 e4 6a a4 f9 50 f6 40 56 26 b8 38 84 e6 a2 62 19 // de 25 7d ac b4 ee 47 2f 4a 10 2a 3d 21 fa f2 7f cd df 48 d7 b4 df cf // 00 ff a1 be 16 e4 3a 0b 97 02 d5 3b 0f 1c 35 88 c2 8b e2 3a 00 af f5 // f1 65 05 6f 4d 8a 8e 8c b4 d0 24 06 eb fc 9f 92 e2 89 4c a8 9f 8e 5d // 84 05 64 77 02 4e 69 37 5b 29 8f 55 60 b2 ad 85 77 db 4b 61 1f 1a 6e // 08 df 95 4f 9f b1 1c cf a8 43 42 74 5a 90 79 f2 d8 7f 54 f2 e9 c4 64 // 43 45 3a 6a c3 47 4b 21 8a f1 4c 3a 23 fa fa af 8b ee bd a2 53 45 ce // 73 07 fc 23 71 23 d5 12 e8 94 49 9d 41 1a 17 cd c9 b9 79 73 4c 92 d0 // ee fc 71 15 f3 0c 11 57 bc ad 91 2c 5c 49 3f 07 3e ca 3b 60 e7 67 78 // ab ff a1 ac 68 b2 3d 96 fe b7 a4 22 55 b3 40 8f 89 df 4b 6b 29 ea 62 // 4c 28 7b be 91 4b a7 fe d7 5c 4c 6f 04 37 e6 76 ec 51 ba 47 ff 9b 02 // 87 eb 99 f9 9a 00 ee 27 eb c3 6f 06 22 6f b8 d9 f5 0b 6b f0 31 f4 4a // 46 92 d0 6c ab 86 fc 26 8e 3b 75 67 f2 8b 82 8b 9c 59 08 ca fd c3 41 // 69 0f 3c 84 66 d1 39 cc 61 f8 69 b5 da 42 80 09 bf 90 b1 20 34 c2 e7 // c5 74 60 36 a2 e0 f2 98 11 22 2d 21 70 07 33 94 9d cb a1 c7 7f 59 8a // c0 53 73 da b6 70 dc 6b b5 7a fa d3 4d f4 59 27 af 76 ef a3 1a 5f 0c // c3 55 ea 92 2f 1a 18 c5 78 2d 7e 1a 48 95 37 78 a9 a7 2e 3e 9c 85 b6 // e5 03 88 b1 97 b0 6f e0 c2 02 19 92 69 f2 c9 15 44 57 29 d2 63 53 0a // b6 8c 46 82 79 1a 36 0e a8 a3 2e f7 d4 06 08 24 69 91 ec 55 7e b3 be // ac e6 9e 8a b0 6c 1e 41 00 d9 45 67 3a a2 09 ae 95 b8 42 69 eb aa 3a // 67 54 3a 0a a3 77 53 e8 47 3e 61 45 72 20 54 f1 86 0c 5c 9f 62 d7 02 // 86 c2 5e af 18 04 fe bd 4b 5b 6d ce 55 88 06 f6 31 5d aa 0e f7 0d 6b // 72 cb 91 41 a2 57 cc de af dc 37 3e 20 b4 ad 95 c2 3c fe 52 cb a8 ce // 3e be 65 ca 16 e6 ce af 21 a1 dc f4 5f 81 b1 34 55 b3 b3 73 16 57 7b // 7e 8f 13 3e f5 02 ba 5c 01 66 34 ef 44 c1 36 f2 e1 e4 7b 9d 1b 4d 8a // 05 ad bf 13 9c 9b dc f5 23 c7 35 c8 a0 d1 9b 0c 0b a5 58 cf b9 9e 6a // 28 0b 5f 11 48 44 3a f6 54 fa 29 83 99 a1 e3 44 ab ea fd 84 11 4a b4 // 31 dd 28 14 ef 9c 1c 5c ec 2b 19 d6 d3 64 65 37 d3 64 6f 37 00 77 e5 // 84 ae e7 f7 0d 4f e1 5e e9 48 95 d8 36 bf 8b 68 49 33 87 8b 21 12 a5 // e7 1f 73 fb c2 fc 02 c9 88 5a 57 cf 84 91 e1 b7 5f 18 24 2f bc 77 43 // 21 0b fc bf 5b 50 43 bc 54 59 0b 6d 9c 6c df 55 8c da dd 4e 02 47 51 // 37 36 e4 fa 8c 61 f9 5f d6 43 81 9f fd 34 69 5e 38 93 ee 7d db af ca // 84 95 4f d3 3d 3a 27 25 a9 b5 66 8f 5c 49 54 a8 c0 ed c8 4e c0 e5 58 // aa c7 8f ec 7b ee ae b3 9d c8 8f 02 1a a3 81 7f 21 e0 a2 b4 0f 0c ab // 58 6f 20 86 57 23 29 ca 0e 0e b0 1e ab b5 48 10 aa 88 55 60 6b 1b ae // 0a 1d 25 98 ea 81 88 44 6c 0a 81 52 e0 be 66 f0 0a 14 0f 1f a0 e5 c6 // 7f 85 8c 9a a8 6d 8f 1f 52 90 e9 b2 b0 72 2f 22 9b f3 aa d6 75 b2 f6 // f9 12 87 2e af 6b c6 d0 cb 27 bc 34 06 a6 a5 46 f7 a4 62 d9 2e 2d ce // c9 21 39 45 61 44 2b 1e ce e0 33 b4 b1 57 70 fa aa a0 86 29 98 cf b3 // 96 7b 38 76 64 b7 29 dd 18 3d 73 a1 bb 3a 35 a9 04 62 70 4e 3a 89 2a // 77 16 0f 72 0f 09 7d 57 c0 fb 34 eb 9e eb 14 7a 24 32 35 d3 08 90 7a // 2e 56 9a ce 6b 4f da b0 5a 45 e5 55 92 15 88 00 9a 72 f2 3d f5 58 f1 // 18 82 00 ba ab f8 73 6a 7a 5f c2 ca e7 bc f4 f5 13 7a 74 d0 52 7e 7a // 31 04 0a a1 8e 14 df 07 55 e3 38 f2 0f d0 44 5e 5e 9d b1 e3 17 ff 41 // 9d 52 7e 7f 4f 7c 19 b9 9a 12 d5 9a 2b 3a 07 ff 5d 69 89 86 a1 9c 96 // f5 a0 58 40 9f f2 47 43 c0 c6 8a 1f 09 d2 4d c1 f5 0f e6 f0 bf aa c3 // 90 06 b8 e1 0c 77 fa 5b 59 12 0a 82 1b 4d ff a9 48 b2 59 10 50 8f 45 // ed dc 07 95 a1 0b 6d 58 55 67 80 c4 a0 22 19 0d dd ec 40 34 4d da 14 // a1 9e 9f ed c9 60 88 f7 1e 22 3e c0 63 3d 4b 77 b5 24 8e 2e 38 33 3b // db 45 2d 02 cf 1d f3 64 02 44 64 0b 11 0d 8b 30 88 50 ce aa be 81 bb // f7 96 99 df d1 41 f6 8b 2f 2f e7 84 38 a0 a3 41 86 9a 35 e8 86 bf fa // ad 57 99 0e 58 b5 59 c1 2c c1 e8 f5 bc a0 fd 4c 43 5e 51 5f 40 b7 e0 // 0d 1b 15 23 af 90 b5 d2 55 c6 f6 73 8b 6c 76 6f c9 5c 8a a4 b2 f0 3b // b1 b0 fb c4 ae df 57 2f 09 c3 f3 b0 15 89 0e 0f 99 e1 84 0a ef 56 64 // 1f e3 cc d7 da b2 60 39 af 6c 6b dc ed 20 ca 56 2e 3b c7 0f 0a 3b c9 // 2d f6 5d 12 8f e1 04 4a 98 f6 f0 b8 59 20 9a b3 ad 9f 59 99 6c d7 10 // 60 06 db 32 de c9 cf 4d dd 4d 46 04 be b8 ba cc 42 f6 f5 a1 63 3c c5 // 20 f5 7e 21 20 0f c9 d1 71 41 08 31 bb 82 70 e0 50 96 ed 45 2f 04 ed // 4a 6a b0 8e 49 d7 ee b9 4d a0 e3 4f 7c 85 ed 80 36 f9 45 ab 7d 38 51 // e9 49 cc 5a 21 a3 28 65 1c 4a ea a9 fa 58 db ef e7 ea a3 a4 a3 b9 43 // 6e 48 82 69 99 d3 32 4b 6c bb ad 6c fd 0d 48 b7 f8 46 41 eb f9 f0 e2 // 4b df c8 7b ba 62 b0 80 b9 1b 2b b0 c9 73 d1 57 ee 2b 8c 3c 49 77 58 // 46 c2 4c 0b 9a 4e d0 cc 4b b8 25 2f dc 2e 07 c5 07 d8 50 e3 60 08 0b // 3e 7b 50 4d 6b 02 36 9a eb b6 b3 85 7b f3 c9 17 30 0b df 9d 42 21 bb // c9 f6 87 5a 35 2f f5 24 41 55 8e b0 b5 2b a1 b6 c3 80 d0 6f 65 61 53 // 35 a9 8a f7 b6 33 5c c2 64 ac 04 47 85 fe 99 ae e8 07 94 d7 c1 9f 06 // 0d 84 b6 c3 a9 fe a6 f4 07 64 36 d9 c9 3e 45 44 67 cb 36 fd 18 95 49 // 26 09 05 37 80 6b fe 80 33 87 77 34 81 18 ef 33 4a c7 1d f5 b6 99 f1 // ba de 63 41 3f 1b 42 9f f5 d7 3b ba 86 ee ef 69 0c dd 9c 87 eb dd 3a // 16 15 22 43 46 42 93 86 ab ed 86 7b 82 de aa cc 4c 85 e7 25 3d 7a 80 // d2 a8 35 8b 6a 30 b7 e2 91 19 d7 6b ff 85 76 5f 65 17 4b 26 84 75 06 // 62 20 00 91 ef a3 ec 86 40 ef f8 33 30 87 dc ea e7 64 7f cd 8e 52 55 // b6 5a c9 41 32 5d 7b 57 2f 8e 13 00 98 05 be 3b 47 53 03 ec cd fb 16 // 7a 63 ab 63 d9 c9 6b ba f5 b7 4f d9 ed 90 37 f9 95 9f de d8 0a 63 6f // 25 a8 2c bc 0d 7f 05 ff 44 7d cc a7 b2 d1 39 d9 da 7f 2a 4a fe de 8e // 98 e2 b8 5b 28 19 ee e6 c0 56 38 f6 1a ff 29 d2 01 44 66 20 d4 07 95 // e5 66 b7 45 f2 ec 14 0f 6c ac c1 3b 96 94 c2 c7 fa 94 90 3b b9 e2 2a // 9a f7 b9 f6 f8 4c 33 c4 41 33 56 32 bc 41 bd ed 98 ed 61 ef 02 40 57 // c1 f6 42 05 45 66 a5 ee ba d6 59 5a 68 17 5b eb d0 6e 5c 40 99 95 72 // ae ef 34 5b 0b d7 3a 67 70 33 c8 eb f8 f8 a6 74 25 bf 5c e4 6b f4 ec // 50 4e b5 24 23 00 c6 92 1e a6 d2 bb 40 e7 8f fd c1 9b 49 a5 f2 03 42 // 0d 9d 70 cf 4d bb f7 c1 45 af d5 08 df dc 66 ec 70 d6 70 70 8b 01 56 // 26 1e de 57 3c 2a 86 af 7c 60 8c 51 91 43 e0 1b 74 62 c3 4c 66 de b9 // 4b bb e6 e3 7c e2 52 35 f8 50 7c 5b 0c 07 73 49 9f ff 93 5d e7 16 4b // b2 13 ae 11 44 74 bd 17 ed e3 70 6e ca 91 2a f1 a5 1a 9b f9 ca e0 30 // 50 5a ff 65 ff a1 34 88 2a d7 da 03 54 b6 42 06 3e 27 ae 59 cf a2 85 // 97 fd 67 ef a3 e9 20 85 ea 20 19 bc 42 74 52 5d 96 6b 9a 3c 04 e0 c5 // a4 e0 12 35 28 ac 50 29 d9 65 de f2 4d bb a7 16 a0 8d 23 c0 95 30 2a // 17 4a db 3f 9c a8 f6 38 93 dc 57 0e d2 95 e3 60 07 05 9a 50 ca d3 e7 // fe bd 53 0c 14 24 93 5e 3e fb bc 0e 3a 03 f0 98 89 ed f7 0a 46 71 35 // ce 5d 96 b1 cd 57 18 7b 16 31 0d e3 46 06 9e 51 64 db eb 00 5f a4 5f // fc c1 9b ba 38 df 99 2a 3f 2d a2 30 6c db f2 b8 a7 cf a0 f1 97 d4 b3 // bd d2 e8 ce 26 f5 67 71 c2 4e 6b 45 c1 6a 99 f0 9a f9 68 79 e7 66 ae // 14 92 22 c3 f8 43 c8 6b 51 06 e6 6c 23 f0 41 6f f0 be 89 cd 5a a0 f7 // 47 6f 75 4d cc 71 16 25 42 4c 22 43 5c b3 7d 05 eb 5b b6 f5 05 42 d4 // d3 e6 ee 30 d2 7f 3b 59 96 23 1d 95 8c e5 41 27 e4 93 03 d2 2e 95 8d // bc 11 c1 43 ff 13 21 ea ee 9c 39 5f 7d 10 4b 53 db 5b fa 08 bb 5a 85 // db 5e 07 4c d4 51 5b 4f 0a b6 d6 43 98 2d cb 9a e0 0f 92 7d cb 2d ee // cc 8d d0 84 05 b7 af 6c 11 f8 ce 1c 9e c9 c8 15 93 33 6f d9 a4 79 17 // f3 64 f4 a3 2c c5 33 da 08 c8 1f 53 7a 7a 57 8e 7a 8b e7 7a f0 37 6b // 77 95 3e 95 17 6b e7 ba 7d f8 3d 10 1d 15 84 9f 50 0f 50 b4 a5 6f 25 // 45 ee ff 12 89 89 f9 9a 9d d3 e6 a9 f4 b2 07 e5 f0 07 c8 6e c5 77 96 // db 9f 58 5d e2 36 05 15 78 2b 6c 55 97 57 c7 ff 10 cb 51 21 37 58 2f // 7c ff da 2e ba 7a e6 84 5a 07 d2 ab ae 9f 1c d4 b6 d8 08 0a f0 8f 29 // 8c 13 8d 55 d3 b1 50 ac 9d 83 61 db f5 e0 60 0d 67 a1 3d 08 6f fa 3a // 1e e4 14 36 c7 91 9f 7b de d2 e0 76 ca fb 96 c3 35 cb d3 c0 32 67 6e // f4 40 97 d6 81 27 b7 16 30 ac 02 32 2a 0f 5c 7c 87 23 e8 a7 8f 26 d6 // bf d0 41 d6 a3 3c 15 21 d8 9a 82 b2 f6 32 4f fb 94 73 44 62 c4 f1 9d // a9 eb 84 f7 5b 5f 28 3a b5 a3 2e 2a ab 17 86 81 b8 37 ba 11 2d f0 4b // 2d ef c5 be 12 57 1c b5 fd e3 e9 b1 7e 5d f1 e5 b3 c3 7e 6b 27 9a d8 // f8 4f 57 ae 00 6e e0 e5 67 51 dc 76 27 d8 a8 2d f1 92 5c 87 61 2e 85 // cd 1e 6b 4e 76 01 93 00 83 ca d4 57 f3 7a 2d 1c 02 1a 0e 45 7a ea f4 // d7 1e a9 0f 68 d6 c8 e0 95 b5 12 ec 8f f3 f8 70 3a 90 90 3e 02 30 73 // 65 e6 1f 65 34 d9 d7 c7 6e 98 92 19 1a 18 b4 18 98 9e dc 74 cd ed 14 // 05 f9 d7 93 38 39 c1 9d 7f ae a1 a2 3f ac 74 47 59 ca 35 87 8b d2 70 // 11 1b 82 eb 1e ab d1 a6 92 ad 5c 70 e0 cb fc 9b 68 2e 8a e5 9a 4e 91 // 46 6b 3b 3e a3 a7 c9 d3 11 c4 3e f7 be 35 f8 55 84 85 2b 47 02 2a 1a // d4 19 f6 7a 67 de 31 85 d5 c7 bd 31 7e 6e aa 6c ea 71 95 10 24 ad 73 // c8 3a ce 87 b7 22 43 d7 e6 e8 e2 44 4b ae 19 50 18 52 75 41 05 91 ab // 70 94 d6 0f 89 52 81 e9 60 0b c5 72 be 8d b7 0c cd 16 f7 83 15 0f 75 // 38 cb 50 e6 c4 83 fe ce 21 f2 87 fb cf 84 a9 d1 36 70 3c 6d 70 4c 79 // 3c 18 42 78 6b f2 e9 2c 86 51 43 e0 15 85 43 ba c5 bd bd f6 8d db 3c // f0 27 53 74 e8 3a 7f 71 03 e3 ea 69 70 f0 a6 7d 71 50 cb be 2c 9c 7b // 9a c9 dd ef fb 8c 86 2e dc cf d9 34 69 d7 6b 6a 94 85 a0 cb 1b b6 d7 // db 03 b7 d7 72 13 80 40 db 5b 80 c8 f5 3f 48 3f ab 13 29 42 81 85 e8 // 2e 4a 6d 0b 37 47 3d 0c 30 0e 7c a8 bb c5 63 10 4f d5 b6 34 58 73 51 // ea c6 b3 4c 85 fa 9f d8 0d b6 41 b2 dc 70 36 1d 41 08 cb ad 22 39 97 // 70 be fb e0 f6 46 52 cc 95 26 b9 fc ae f2 b7 84 80 38 22 78 ef 5f ee // 46 89 97 d1 9b 80 89 b5 8d 99 d5 51 b3 66 bc 30 5d 7b 56 87 2a b0 4d // 42 67 ef fc d7 f6 fe 15 61 fa 6d 85 9a a4 eb 7c 94 7f b4 46 74 e9 6d // a3 8c d8 1c df f0 d8 71 6e d7 c2 a7 a5 eb 03 c6 ed a2 14 0d 4c 89 b7 // 70 96 ba 22 26 69 7a bf ac dd 71 cb 43 95 a7 96 ff f4 e1 56 ae 95 4b // 7c 87 b8 c9 a2 e1 24 ef 6a c3 c5 41 a7 b7 97 f3 84 a1 f9 7b 6e 42 52 // d4 e8 7a 0d 14 2d e1 6a b7 d5 55 84 90 68 fa d3 17 66 76 bf a2 1e 86 // c4 e4 ce f3 b6 66 a8 db 06 19 dc 2b 75 cd b0 f3 f9 e2 3f aa c4 74 f5 // 75 7c 44 be e9 ed fc c9 7f 96 c6 30 28 a7 dc bd 80 18 9a c0 8c 81 14 // c9 57 c6 44 bf 46 83 1b a1 ed 8f 9f ee ab 82 0a 27 e9 d6 c5 a4 72 45 // b3 64 39 cf 68 b8 70 aa 2e 88 e3 cf 5e c5 d7 49 34 dc 3d 25 42 ba 2e // 79 a1 fc b9 e7 52 31 2c a6 b4 8f e0 2d a9 df 93 8d b7 ee aa 5d 4d ee // d8 67 80 e3 5d d4 28 e9 70 14 d9 d7 e9 b5 11 fa 40 5e f8 81 5f a4 b0 // 86 b3 18 27 92 02 67 c2 65 b9 5f 93 c4 95 b4 17 24 aa 5f ef e4 a7 9b // 70 1e 50 c9 4b e8 85 40 f6 ac c0 6d 67 b3 2a 86 ec 07 96 ca 13 6c a4 // 18 7b 59 07 fb 54 72 10 39 ec 57 3f 05 91 4a de e0 5e 4e f5 68 55 ef // 1b 7c ed 00 eb f4 e0 9c e6 18 ae 9e 11 67 d3 13 db 84 5d 09 ad 05 26 // 74 0e cb 96 84 7a e8 72 b4 70 f2 65 7b 3c c4 3d 53 55 2b 34 19 33 28 // 26 64 46 33 df f8 db e7 30 01 fc d1 e2 a0 b8 f7 a8 03 29 4b 36 a3 5b // aa c3 34 be d2 8a 2f ec a0 ad 98 00 d9 be 65 3e 79 e6 66 7d 71 4c c9 // 67 ba 24 6c 05 ed 06 12 aa 64 c0 1f 36 ec 0a 83 ec 13 d3 57 aa 6d 4c // 87 79 0b 41 d8 97 7b 6a db de d2 d5 7e 10 24 56 37 a8 56 30 1c d4 29 // 76 e6 29 c1 75 ed b5 80 4b f8 8f b5 38 30 69 c3 54 1f 8a 08 ae 0a d3 // 25 52 e7 b6 cc 71 cf 45 b7 08 ac 96 6b 00 cb 6e eb 38 a8 6f a1 5d c0 // 2b 9d 7f 3b 13 b2 96 5e c0 17 00 7e 05 77 a6 35 8d 90 b2 2d 2f 6e de // 8b a3 51 3d 79 9a 12 d3 e4 ae 5c 68 63 a9 a4 fe c8 f1 5d dd 22 fb c1 // ff 68 29 8e 0b a3 ce f9 05 d8 71 26 66 e3 4e e9 96 a8 92 5d 15 2a 4c // be 80 d5 aa 33 b2 db b7 2d 4b 1a e2 b0 7b de d7 ab f5 ef c4 6c 30 53 // bc 1c 51 5b f2 6d 43 5f ec 53 ce c2 0f b2 7b 5c 1f 0f 00 94 fa a9 70 // 82 00 0f 67 27 fa e4 db d3 1e c8 9d 59 33 46 03 a5 87 0b ea ce 0a 32 // 37 a5 e6 7e fb 3e 4d 86 88 53 37 72 1a cf 6c a3 0b e2 80 cd 75 06 ca // 66 69 8a 24 cd f6 5c 2e 4c 55 45 1e 07 1b c7 8b 6c db 0f 8e a9 61 dc // 04 f9 72 a8 0c 26 d3 03 71 0a d5 84 90 01 40 b5 c1 61 42 a2 0c 0a 74 // 3b ab af e1 e0 9a 81 f0 5c 43 f4 f2 49 ed 0f fe 0b 23 ee 06 a1 5b f6 // 71 68 e7 97 bf f5 bd 03 aa ae ac ae 82 3d 0c 87 d1 2e a0 9a 56 7a 8f // 93 8a f2 e7 df 78 95 2e aa 35 57 92 b2 aa 7f 2b 8a 42 4a 4f ca 8b 2a // bd 1d da 80 35 86 bc 72 c4 b8 dc df 05 f5 48 22 d7 5d f7 c2 5a 01 17 // 14 c2 cf ef 10 0a f1 17 96 dd 4b a1 b8 af 44 8f 09 c9 b0 50 df 95 d3 // 6d 9e 31 86 e7 af 36 bf 14 3f 4a ce cc f4 7c ba 47 85 3e 25 96 6a 8a // bc 2d f2 39 af ae ab} (length 0x2000) // } // len: bytesize = 0x2000 (8 bytes) // res: nil // ] NONFAILING(memcpy( (void*)0x200000000ac0, "\xfc\xe4\x20\x77\x51\x97\x9b\xc5\x14\xca\xb2\x28\xa9\x86\x08\xea\x3b\xf0" "\xe9\xc8\x22\x13\x7f\x1e\x30\x99\x0d\x74\x72\x8d\xf0\x7d\x2e\xf2\xb2\x6f" "\x2b\x72\x45\x86\x0d\x2e\xa1\x42\x64\xcd\xb7\x27\x4c\x09\xc7\x35\xb8\x6b" "\x37\x86\xa9\x20\x72\x19\xf4\x48\x70\x99\xb7\xb7\x93\xe8\xea\x4a\x04\xe7" "\xa2\xdf\x43\x4a\x87\x1a\xae\x4e\x56\x67\x81\x5a\x9e\xad\x55\x62\x98\x32" "\x44\xce\xb2\x1e\x9b\x84\x90\x18\x11\x0d\xef\xd0\x12\xfb\xf2\xaa\x77\xb7" "\x44\x75\xfd\x55\xd7\x57\x85\xab\x68\x5d\xcf\x81\x3c\xeb\xe4\x48\x3f\xce" "\x8d\x65\xc7\xc0\x38\xad\x1e\x66\x73\x91\x36\xbd\x2a\xbb\x44\x1b\xa1\xd1" "\x54\xc8\x93\x4b\x5d\xd9\x77\x63\xbd\xd7\x44\xb9\xc7\xda\x6f\xd2\x74\xaa" "\x5f\x07\x8d\xe8\xa9\x29\xd6\x1c\x6e\x91\x24\x16\xfb\xcf\xfa\xb5\x93\xbf" "\x4a\x32\xfa\x9b\x4c\x11\x44\xbb\xa5\x9a\x6e\x69\xf9\xc8\xde\x04\xa5\x70" "\xb8\x99\x92\x93\x42\xbb\x67\x2c\x2b\x50\x96\x5a\xd6\x40\x58\x2b\xb4\xc7" "\xc0\xe5\xa0\x10\xc8\xd9\x6b\x15\x64\x66\x88\x90\x6f\x48\x3b\x95\x93\xd4" "\x49\x97\x81\xc3\xba\x2c\x02\x32\x61\xe6\x06\xce\x7e\xaf\x85\x39\xd1\x24" "\x16\x65\x2a\xd0\x06\x57\x7b\x8e\x31\x3d\xa4\x62\x03\xde\x2b\x79\x39\xba" "\xe5\x6e\xb7\xde\x2e\x1e\x09\x2d\x7d\x4f\xea\x6e\xa2\x0a\xb4\x78\x40\x0a" "\x99\x47\x2a\x31\xf6\x3b\x79\x05\x98\xea\xb4\x65\x90\x85\xaf\x7b\xff\x08" "\xaf\x31\x0f\xca\xbc\xd6\x5f\x24\x4b\xdc\x66\xef\x44\x54\xe1\x31\x68\xc0" "\xd8\x3e\xd3\xad\x2f\x76\x85\xd6\x25\x02\xfd\xfa\x87\xc9\xf5\x25\xc6\x89" "\xbc\xa4\x3c\x2b\x85\x6e\x16\xf8\xbb\xd0\x83\x82\x95\xf3\x95\xaa\x17\x80" "\x40\x34\x53\x4e\x3c\x61\xa8\xdb\x57\x0d\x31\xff\x36\x00\x1b\xcc\x78\x96" "\x36\xff\xa9\x48\x30\x65\xcb\x9d\xd1\x30\xb6\x41\xb9\xcb\xdd\xfa\x81\x3d" "\x89\xa3\xee\x9d\x7b\xed\xa6\x65\x6f\x8a\xa2\x4f\xb0\x3b\x47\xd8\x75\xe5" "\xb7\x3d\x4b\x1d\xcc\xfc\xd3\xc4\x6e\x75\xc9\x9c\xf8\x7e\x1a\xb1\x88\x9e" "\x71\x7a\xa1\x87\x16\x7a\x3e\x35\xf7\x73\x55\x5d\x09\xef\x94\x58\x40\x21" "\xc0\xa5\xed\x94\x21\xe1\x91\x6b\xd0\xab\x48\x5c\x34\xd9\x9f\x20\x20\x79" "\xbf\x2b\x6e\x70\x23\x5c\x6b\xcc\xe4\x03\x67\x91\x1b\xff\xa3\xf9\x0c\xfc" "\x29\x23\x9f\x1a\x72\x74\x25\x40\x68\xc3\x30\x09\xa0\xd8\x78\x52\x34\x9d" "\x1a\xbd\xc7\x67\x7e\xb7\x2f\xe3\x5a\xdc\xac\x5c\x6d\xa2\x8b\x4a\xbe\x91" "\x67\x85\xf0\x61\xc1\x48\x88\xd7\xdf\xba\xd6\x68\x83\x03\xda\xfd\x01\xa9" "\x19\x11\x0b\x78\x64\x60\xa6\x07\x8f\x47\xea\x56\x86\x99\x9d\xaa\x5b\x80" "\x83\x56\x84\x11\xf6\x35\xe8\x18\xa4\x63\xbf\xcb\x79\x3b\x29\x5b\xeb\xe1" "\xa0\xf0\x62\xe4\x97\x50\xce\x45\x8e\xa7\x9b\x98\x8a\x4b\x8f\xd7\x99\x05" "\x05\x74\x9f\xd6\xa2\xed\xce\x4f\x95\x27\xf1\x19\x1b\xf9\xde\xa7\x40\x47" "\xbc\x62\x4e\xd0\x6f\xee\x53\x2e\xf5\x1f\xe2\xf6\xc0\x6d\x4b\xb8\x07\x15" "\xc8\x47\x19\x4d\xa8\xc6\xdb\x2d\xde\xd6\xcd\x09\x7d\x5c\x71\x7b\x87\x29" "\xfb\x1a\xd8\x9b\xcd\x60\x70\x7c\x6e\x93\xd2\x89\x9b\xed\xc7\x63\xec\x4f" "\x13\x76\x86\xf9\x3c\xa6\x55\x0e\xd6\x91\xaf\x74\x72\x44\x2e\xf4\x85\xcf" "\xf2\x23\x33\x0d\xa4\xcd\x78\x6b\xa9\x28\x26\x07\xa8\x0e\x6b\xaa\x9c\xb5" "\x35\x18\xb6\x82\x88\x90\x58\x28\x76\x30\xdf\x6f\x2a\x99\xd2\x06\x45\x6c" "\xb0\xc6\xcd\x28\x02\xbd\x16\x5e\xcc\x75\xb4\x10\x79\xd6\xc1\xfc\x99\xd8" "\xcd\x3f\xdf\x32\xbc\xa4\x2d\x4d\x17\xaf\xe7\x86\xd4\xbb\x5a\xae\x4a\x00" "\xd2\x84\x5f\xe7\xfb\xe3\xd4\x39\x4e\x94\x13\xdd\x6d\x90\x11\x2d\xc0\x22" "\x7b\x0b\xba\x89\x4f\xeb\x7d\x79\x87\x2a\x98\xed\x9c\xf7\x8e\x68\x3d\xd7" "\x5c\x03\x4d\x0c\x1f\x5e\xca\xba\x10\x66\xdb\x84\x2a\x8f\x02\x16\x97\x1c" "\xb9\x69\xd5\x44\x62\xa2\xd2\x3b\xa1\xfe\x32\x44\x0f\xaa\x3b\x26\xa9\x66" "\x84\xc6\x95\xe7\xbc\x0d\xa1\x66\x7e\x24\xad\x38\x37\x09\x63\xfa\xff\xe4" "\x87\xed\x14\x01\xd7\x69\xb2\x15\xff\x54\x7f\x60\xcb\xb2\xfe\xb5\x1c\x95" "\x2e\x15\x93\x37\xb1\x43\x38\xa6\xcb\xfa\xc8\xcf\xe2\xd6\x87\xd3\xd8\x0d" "\xc6\x4a\x74\x39\xb1\x38\x3e\x12\xf9\x08\xa7\x36\x29\x7b\x3e\xea\x9e\x42" "\xf4\x81\x1b\x61\x32\xcd\xb2\x39\x4c\x8b\xa8\xde\xdf\x7d\x3b\x8c\x27\x2e" "\x51\xe6\x4d\x46\xf6\x3f\x8a\x12\xb4\x51\xad\xd6\x54\xab\xc8\x6f\x9b\xf7" "\xd9\x72\x26\x39\x78\x83\xf3\xc4\x70\x4a\x33\x9c\x1a\x6c\x18\xae\x70\xb4" "\x62\x9c\xc7\xad\xf3\xb7\x90\x3a\xc0\x0d\x15\xc1\xa9\x66\x3b\xfb\x5d\xa8" "\x0c\x45\x91\x8d\x26\xe8\x82\xbe\x91\x73\xf5\xef\xc7\x16\x6f\xd3\xe2\x03" "\x6b\x10\x09\x81\xf6\x83\x69\xbc\x88\xf3\x58\x4e\xb3\x3d\xb4\x68\x74\x3d" "\xe9\x3f\x3d\x3d\xc9\x81\x82\x6d\xe0\x75\x25\x8c\x94\x9f\xc3\x1f\xd9\x26" "\xab\x1d\xc5\x41\xfa\x29\x84\xf3\x62\xee\xea\xd6\x33\x84\x57\x0f\x17\x27" "\xa8\xff\x57\x72\x7e\x0f\xe6\x58\xdb\x12\xd2\xc8\x4c\x58\x92\x8a\x8b\xb0" "\x49\xce\x43\x2d\xaf\x95\x68\x53\x38\x6a\xdb\x31\xe0\x9b\xb0\x98\x00\x25" "\x72\x02\xe9\x9e\x6c\x3d\xd6\x7d\xa1\x76\x34\xad\xfb\x5c\x68\xaf\xc5\xae" "\x9b\xce\xa6\xed\x89\xc6\xf1\x5c\xe5\x19\xb8\xb2\xc2\xc8\xf6\xff\x70\xe1" "\xb1\x2f\xc7\xe2\xca\xc0\x5d\x44\x0b\x3e\x60\xbe\xe5\xe6\xe5\xbc\x13\xc0" "\xfd\xa5\x6d\x0e\xcf\x6a\x9f\x34\x47\x12\xa3\xcc\xa3\xe2\xe1\xee\x4e\xec" "\x34\x7f\x14\x56\x92\x5e\x90\x37\xd2\xdb\xbc\x54\x89\x2a\x8c\xae\x8c\x35" "\x20\x87\x5a\x99\xe4\xda\x2c\xab\x09\xdc\x94\x37\x6c\x48\xcf\x42\x61\xd2" "\xdc\xf5\x73\xe0\x8e\xe9\xdf\x81\x8b\x1a\xea\x4e\x57\xb3\x4b\xf3\x81\x6b" "\x5c\x69\x46\x6f\x99\x17\x52\x94\x7d\xd2\x6c\xb1\x92\xf0\xff\x68\x3d\x87" "\x9d\xc3\xe2\x57\xbc\xa9\xa4\xb4\x24\xdc\xf2\xc8\x23\xde\x08\xc2\xb3\xe4" "\xc2\x39\xd5\xea\x1b\x5e\x97\xa3\x44\xf3\x39\x18\x9d\xf0\x09\xa0\xb2\x3c" "\x34\x52\x7f\xda\xa4\xdc\x0b\x92\x71\x31\x1f\x75\x43\x6c\xc4\x39\x36\xf1" "\x0e\xc9\x4b\xc0\xd1\xed\xb1\x3b\xc6\xb1\x61\x66\x44\x17\xaf\xc8\xac\x67" "\xec\x51\x92\x54\x46\xeb\x49\xa2\x38\xef\x9e\xfe\xa4\x20\xee\xea\x06\xdf" "\xa0\x70\x50\x1e\x30\x37\xe2\xa8\xa8\xb9\x5f\x21\x7f\x82\x8e\x19\x80\x95" "\x47\xa2\x0f\x15\x44\xf7\x3d\x29\x6c\x2a\x4f\xd1\x42\xa9\x71\xbf\xcd\x6d" "\x3c\x2e\x72\x89\xb2\xd0\x24\x40\xf8\x30\x2c\xec\x77\x06\x32\x5b\x44\x64" "\x93\x99\xe7\xe9\x63\xb9\xca\xf7\x56\x02\x89\xa6\x3b\x33\xbd\x7c\x51\x45" "\xea\xee\x5b\x39\x59\x5f\xd0\x67\xb8\xec\xac\x48\x15\xbc\xc2\x32\xf3\x04" "\x1b\xde\x7a\x0e\x0c\x49\x93\xfa\xfa\xa1\x4b\xdf\x2f\x5d\x36\x79\x26\x43" "\x90\x21\x27\xd5\x7d\x47\x9a\xa2\x09\xcc\x5e\x7c\x41\x40\x1b\x1e\x12\x48" "\xbc\x2e\x9b\x9f\xab\x08\xd1\x1c\xe3\x90\xa5\x08\xc0\x1c\x25\x81\x4a\xa6" "\xab\x13\xe8\xdc\x49\xf2\x40\x59\x9c\xdd\x37\xa7\xb0\x19\x63\xea\xeb\xfc" "\x37\xba\x11\x27\x64\x0f\x3e\x7c\xed\xda\x68\x56\xdf\x32\xfb\x06\x2a\xb0" "\xa1\x7c\x99\x96\xcc\x8a\x8d\xe5\x24\xe3\x9e\xc3\x1f\xe6\x4a\x3e\x3f\x3b" "\x90\x66\x1e\x0e\xc4\x7d\xc9\xfb\xdb\xd3\x2f\x6c\x22\x8b\xff\xeb\x36\x00" "\xdf\x3c\x4f\xe8\xa4\x2d\xb1\xf8\x88\xd4\x01\x0c\x28\xf9\xe7\x6a\xa5\x3d" "\xbd\x2a\xb5\x7e\x14\x7f\x5d\xeb\x59\xc9\xea\x36\x65\xc4\x02\x0b\xc5\xa3" "\x7f\x3d\xa2\xad\x5f\xa7\x15\xef\x52\x85\x9e\x95\x97\xaa\x43\x35\xad\x14" "\xd2\x88\x9d\x31\xe4\x45\x0d\xf8\x4e\x51\x7c\x8a\xbc\xcb\x32\x88\x04\x84" "\x9d\xea\x52\xd0\x96\x68\x64\xf7\x34\xf2\x92\xe0\x67\x39\x11\x80\xe6\x3a" "\x41\x4f\xdb\x1c\xa3\x98\x16\x46\x6f\xe8\x5f\xd1\x57\xd7\x09\x3c\x48\x2c" "\x84\xc8\x58\xf5\x87\xd2\xbf\x97\x3d\x21\x07\x6e\x29\x31\xa6\x93\xa6\x3c" "\x8b\x38\x9d\xc6\x01\x2d\x01\xa5\xb8\x63\xf1\x43\x9d\xf5\x17\x58\xea\x72" "\xc8\x5c\x58\x53\x48\x56\x40\xec\xe4\x43\x92\xfa\xc7\xbd\xe2\x18\xfb\xa2" "\xb6\xfd\xc1\x32\x97\x5b\x83\x79\xa4\x03\x51\xce\x7a\xf9\x4b\xe8\x2e\xa5" "\xe5\x03\xa4\xa1\x47\x53\x51\x6e\xd1\xc7\x1b\x54\x71\x57\x38\x88\xff\xef" "\x42\xa8\xea\xb6\x51\x48\x9b\x2f\xd9\x25\x16\xb0\x9e\x34\x4c\x1d\x27\x33" "\x54\x8a\x31\x7f\xcd\xb5\xf4\x08\xf1\x1f\x6a\x3c\xc6\x9c\xd5\xf4\x89\x8e" "\x65\xba\xe8\x73\x57\x56\xeb\x55\xb5\x19\x94\xb1\x19\xbf\x4a\x7a\x7f\x2e" "\x19\x6c\xe6\x99\x43\xb3\x46\x31\xc6\x98\x3d\x3c\xa5\x0c\x62\x96\x6b\x8d" "\xd5\x16\x82\x6a\x57\x39\x36\xfb\xe1\xfc\xec\x09\x3f\x5d\x76\x6f\x68\x80" "\x81\xf8\xd2\x3a\xfc\x21\x30\xa6\x6f\x5c\x54\x96\x51\x88\xfa\x48\x1b\xbf" "\xb4\x6a\x58\xa4\x1a\x94\x75\x82\x86\x1e\xb2\x05\x69\x60\xce\x6d\x95\x5f" "\x93\x44\xb8\x16\x7c\xd7\x4a\x81\x36\x16\x98\x00\x8e\xb0\xdc\x3c\xa5\xd6" "\x65\x0f\x17\x0f\x1b\x71\x45\xd9\xd4\x28\x30\x6b\xe3\xa0\xa9\xb3\xfa\xe2" "\x6d\x97\x76\x08\x00\x3c\x82\xe7\xb0\xc6\x0f\x1c\x50\x4c\x22\xe9\x2c\x50" "\x28\x91\xcf\xbd\xb8\xf6\xf3\x2c\xf2\xae\x81\x44\x01\xa7\xde\x7a\x50\xd7" "\xca\x89\xe4\x34\xf2\xfd\xe7\x80\xaf\x90\xbf\x38\xf8\x38\xe6\xac\x0b\x5b" "\x4f\x28\x9b\x34\x87\xa8\x24\x8b\xff\xb1\xac\xb1\xb1\xcf\x28\x39\x47\x94" "\xe9\x1f\xe3\xae\x2d\xed\x1f\x0e\x62\xb5\xd4\xe8\x67\xe4\x68\x61\xe2\xae" "\xa1\xf8\x9d\x3c\x05\x2e\x48\x83\x87\x0f\xea\x23\x0c\x06\x42\xcc\x91\x91" "\xe8\xcf\x56\xfa\x94\x97\xff\x67\x05\x5d\x62\xcc\x2a\x31\x8e\x18\x42\x58" "\x67\xba\x2d\x4e\x2c\x7c\x5f\xfc\x12\x2a\x81\x18\x63\xfb\x5d\xee\x71\x53" "\x3c\x23\x30\x6e\x86\x46\xf0\x99\x97\x06\x74\xc7\x62\x50\xdf\xb4\x5e\xf6" "\x82\x51\x4b\xfc\xfc\x8c\xa2\x04\xcf\x6b\xb2\x10\x3e\xe8\x50\x8e\xe9\xac" "\x88\xac\xe7\x71\xf4\xb9\x12\x07\x52\x9a\xe5\xcc\xf9\x24\xc4\x51\x85\xda" "\x7e\xa6\xfd\x6f\xd2\x3a\x90\xdc\x54\x2b\xad\x99\x0c\xf5\x12\xeb\x1e\xc6" "\xd2\xa9\xa5\xd9\x4e\xf7\x67\x39\x7b\xbf\xc1\xc5\x5a\x42\x6c\x88\x6f\x93" "\xea\x5f\x5a\x6f\x17\xe7\x83\x9e\x62\x49\x6c\x6d\x17\x78\x3d\xdd\x99\x81" "\x6a\x57\xcf\xed\xe3\x18\x1b\x44\x6a\x2c\x44\x79\x66\xed\x95\x98\x1f\xbe" "\x32\x57\xce\xc7\x61\x61\x3f\x65\x01\x85\xf2\x75\x6a\x8e\x5a\xf2\xf9\x81" "\x91\x42\x3f\x7a\x16\x6d\x52\x50\xa1\x37\x61\x9f\xc3\x53\xcd\x9f\xd8\xc2" "\xbf\x5d\xcf\x18\xda\x61\xbe\xae\xc8\x19\x09\xb3\x15\x5d\x23\x4a\x09\x7c" "\x14\x6f\x52\x84\x1a\x2d\x15\xee\xe2\x36\x0b\xe6\xec\xee\x01\x8c\xec\xcb" "\xd1\x5d\xdb\x58\x07\x42\x80\x85\xc5\x28\x4a\xaa\xe2\x58\xb1\xc0\xd9\xf0" "\x33\xa2\x46\xdf\x1a\xa4\xaa\x2f\x60\xef\x16\x2e\x4b\x75\x5b\xaa\xcc\x43" "\xfa\x93\x37\xa0\x33\x47\x3e\x32\x8c\x16\xbf\xf0\xcf\x2b\x29\x82\x84\xd6" "\x6f\x82\x45\x4b\xfe\xc0\x48\xf3\x3a\x41\x15\x0d\xcd\x37\x15\x24\x2e\xf4" "\x49\xf4\xcc\xe0\x27\x81\x3d\x00\x40\x3b\x82\xc5\xac\x59\xcb\x06\xf2\x27" "\x08\xb0\x64\x54\x18\x66\x51\x6e\xe4\xda\x8c\xce\x5b\xf5\xb8\x29\x9f\xa2" "\xd6\x84\xdb\x62\xd2\xfe\x21\x92\xed\x5f\x25\x79\xce\x39\x57\x2a\xa4\x91" "\x07\x79\xe2\x70\xc6\x67\xab\x99\xd6\x66\xd1\xdd\xba\x12\x54\xf5\x69\x6a" "\x41\x0a\x1b\x88\xc3\x39\x8b\x67\xb6\xb1\xb3\xfb\xee\xda\x32\x41\xdb\xaf" "\x3b\xb5\xc4\xb1\xf7\x98\xac\xbd\xf4\xe5\x34\xce\xd7\x41\x83\x99\xe3\x94" "\x17\xd0\x7c\x4c\x53\xbb\xf7\x23\x75\x91\xb3\xd3\xad\xc5\x72\x39\x28\x91" "\xba\x4f\x65\xa2\xb3\x22\x5e\xb3\xe9\x39\xad\x1c\x44\xa7\xe0\xc2\x32\x74" "\x87\x6f\x04\x18\x61\xf2\x80\x80\xce\x21\xbd\x37\x97\xf5\xe4\x7b\x6a\x49" "\x77\x23\x44\xf6\x74\x68\x18\x68\x11\x9b\xeb\x6e\xf0\x6e\xc3\x2c\x6c\x3f" "\xbc\x4e\x56\xe8\x98\x83\xef\xfd\xce\xbf\xa2\xdc\x18\x79\x7e\x62\xf7\x02" "\xc9\x6e\xb2\x81\x23\xea\x75\x58\x8e\xa3\x6f\xf2\x78\x72\x3b\xb1\x16\x69" "\xb7\xcd\x1c\x25\x51\xc7\x24\x1c\x4c\x89\xa9\xb0\xc6\xe1\xb7\x30\xa9\x4e" "\xa7\xb4\xc4\xa9\x23\xf7\xd9\x2c\x80\x24\xde\x98\x72\x0f\x18\x6b\x5f\xb0" "\x2b\xa9\x61\x6e\x33\xf1\xfd\xaf\x8f\x71\x2d\x81\xd5\xfe\x2d\xb0\xe6\x43" "\x11\x4d\x03\xab\xa9\xa0\xc9\x8f\x65\xa5\x62\x23\xea\x23\xbd\x49\x95\xd1" "\x35\x3b\xab\x90\xbf\x4e\x77\x25\x6c\x93\x3b\x75\x6c\x74\x9e\xb1\xef\x4d" "\xc0\x9f\x09\xdc\xe1\x3d\x2f\xfc\x2f\xaf\xaa\x30\xb8\x8c\x34\xfc\x88\x84" "\xa7\x03\x8e\x1a\xa4\x64\x89\x29\x63\x09\x87\x48\xb9\x0d\x01\xea\x81\xdb" "\x3c\x59\x04\xd9\x10\x8f\x50\x25\x89\x6a\x1c\x14\xa8\x36\x4c\x39\xd7\x2e" "\xcd\x7d\xb3\x0a\x21\x77\xc2\x36\x80\xfd\x4b\xdd\x91\xbd\x7b\xbf\xb2\x77" "\x52\xf6\x9b\x69\x6a\x61\x19\x4c\xe0\xbc\x75\xfb\x6c\x32\x7a\xaa\x34\x44" "\x73\xb9\x6d\x0f\x7b\x12\x3c\xc0\x17\x71\x9e\x08\x00\x80\xc6\xe9\x81\x2f" "\xb9\x9a\xae\x02\x2f\xc5\xdd\xbb\x34\xec\x08\x3e\xb5\xa8\x96\xf1\x64\xfb" "\x63\xed\xe8\xd9\x6d\xb0\x63\x8b\xe0\x55\x45\xab\x1c\x56\xc5\xbf\x5b\xa7" "\x44\x88\x83\x27\x7b\x9a\x62\xff\x71\x84\x96\xee\x7d\xd5\x33\xe6\x40\xdf" "\xc4\x36\x67\xca\xf4\xa5\xf7\x8d\x79\xcf\x4a\x88\x25\x01\x34\xb8\xed\x52" "\x1f\x69\xb9\x58\x04\x7d\xc5\x14\x1a\xf1\xbb\x24\x4c\x69\x0d\x95\xf9\x92" "\x91\x68\xfc\x6f\xce\xcd\x5d\x38\x54\xfc\x76\x89\xa1\xf3\x08\xc5\x94\x32" "\x98\x75\x9f\x0d\xdf\x6c\x55\x20\xe0\xff\x3c\x7b\x3c\xff\xde\xb0\x57\x35" "\xf3\x67\xc9\xd7\x76\x4d\x56\x8b\xf9\x7a\x4f\x3f\x95\x96\xc6\x30\x03\xd8" "\xee\x40\x01\x95\x2a\xc1\xbf\x0b\xc4\xd3\xcf\x39\xd7\x35\x08\xa3\x15\xd1" "\xf9\x2e\x80\x4d\xb6\xc9\xcc\xb1\x69\x58\x7f\xb4\x85\x19\xb2\xfd\xd8\x32" "\xbc\xd0\x78\xe1\x44\xa4\x27\x72\x9c\x9e\x4d\x91\xfd\xd1\x3c\x85\xee\x28" "\x6b\xbe\xdc\x7c\x95\x86\x9e\xbd\xe9\x1b\x2c\x7c\x92\x25\xc4\x0c\x8a\x65" "\x9f\x28\x9d\xb2\x58\x40\xd9\x7c\x6c\x7a\x5f\x20\x9f\x22\x62\x6c\x20\x4d" "\xbd\xd4\x09\x40\x55\xc1\xe3\x39\x9b\x70\x77\x84\x4d\x7c\x74\x4f\xa3\x40" "\x12\xe0\xde\x4a\x1f\x3f\xec\x35\x25\x90\xb5\x81\xdc\xe0\x12\x1b\x08\x89" "\x23\x0c\x97\x6f\x4c\x62\xfe\x1d\x9f\x0f\xfc\x10\x9c\x43\xf4\x79\x59\x8e" "\x89\x11\xb9\x57\xd2\x1d\xa8\x44\xf2\xe6\x25\xc4\xea\x5c\x7b\x99\xa2\x18" "\x7b\x53\xca\xba\x1a\x37\xfa\x28\x60\xd4\x38\x9a\x16\x51\x3e\xe3\x77\xe7" "\x09\x9f\x92\xad\x70\x15\xe7\x39\x4c\xd8\x4f\xab\x44\xd1\xf7\x29\x19\x96" "\xaa\x6d\xd2\xee\x8b\x77\x8f\x9b\x72\xa9\x8f\x84\x3b\x33\x48\x90\x5f\x82" "\xfd\x12\xfa\xa3\x04\xe8\xde\xbf\x3b\x20\x64\xc1\x3b\x33\xd8\xf8\xdc\xa0" "\x49\x83\x30\x67\x34\x41\xea\xf8\xe5\xd3\x82\xd7\x01\x05\xea\xef\x81\x02" "\x9b\xcc\x8d\x82\x0a\x38\xc9\xef\xc0\x92\x3d\x0f\xe3\x06\x0c\xb1\xbc\x17" "\xf7\x27\xf4\x3a\xc9\xab\x45\xf0\xa3\x77\x3b\x6e\x21\x77\xee\x9b\xdf\x2c" "\x9b\xee\xfd\x7a\x52\x5f\xe5\x28\xd9\xe5\x1c\xc9\x08\xaa\x5e\xe7\x88\xe6" "\xef\xd6\xe1\x4c\x42\xa5\x63\x1a\xa3\x55\x22\x82\xe2\x5f\xdf\x01\x7d\xe6" "\x25\xb7\xb8\xd1\x63\x3e\xa0\x7f\xaa\x5c\x06\x7e\xed\x61\xb7\x3d\xb6\x84" "\x5b\x02\x8a\x0c\xbc\xd8\x27\xc4\xb5\x78\x2e\x5c\xc8\x20\xc0\xa9\xff\x44" "\xaa\x4f\x4a\xed\x83\xb4\x70\x0e\x4d\x17\x35\x23\xf5\x1f\x87\xdc\x96\x19" "\xb3\x2c\x6a\x75\xe9\x66\x93\xd8\x4c\xee\x20\xa7\x6b\xf2\xdb\xe0\xb9\x23" "\xab\x58\xaf\xad\x77\xb4\x84\xf4\x99\x4b\x57\x77\x3e\xca\x8e\x50\x4e\x15" "\xf1\x1b\xc4\x0a\x0f\x04\x35\x63\xdb\x23\x04\xa4\x5d\x78\xba\x86\xc6\xe6" "\xfb\xbb\x65\x5c\x0f\x40\xb5\x87\x6a\x74\xd2\x95\x19\xac\x53\x84\x60\xba" "\xf5\xb3\xa8\x20\x10\x31\xb6\x70\x96\xae\x23\xcd\x07\x09\x46\xf3\xd4\x26" "\xef\xf6\x52\xdf\x59\xda\x2c\x40\x1f\x26\x8d\xd7\xa4\xf2\x71\x24\x0d\xb5" "\x41\xc3\x0e\xde\x68\x40\x4e\x20\x3e\xa3\x7e\x97\xc7\xa9\x4a\xbe\x5b\x53" "\x92\x3e\x9f\xba\x08\xc7\x55\xb2\x16\x1d\xdf\x26\xb3\x47\x0e\x69\xd0\xdf" "\x94\x78\x8f\x14\x9c\xd7\x0a\x30\x39\xfe\xa8\xad\xe4\x5c\x78\x9d\x5f\x11" "\x2e\x81\x2b\x11\x19\xb0\x5f\x15\x15\x53\x86\x9d\x09\xcd\xd6\x1e\xe7\xbc" "\x68\x3c\x65\xf0\xea\x74\x04\xf4\x52\xed\xee\x6d\x18\xb5\x3e\xa7\xb8\x3d" "\x54\xde\x06\xd0\xd5\x1d\xc8\x7f\xa4\x41\xca\xfa\x8a\x15\xea\xab\x36\x55" "\x4e\xd3\x72\x1e\x31\x07\x10\xf9\xd4\x66\xb0\xae\x34\xf4\xbf\xee\xf6\xe1" "\xff\x76\x90\x1f\xd5\x5a\x45\x93\x0e\x30\x68\xca\x4a\x28\x8a\x48\x6d\x77" "\x72\xcb\xf5\x13\xa8\xc9\xa1\x09\xce\x23\x0b\x26\x4a\xf1\xf4\x6d\x01\xcb" "\x80\xbe\x8b\x4f\xcb\xb7\x07\xe7\x37\xcf\x5d\x3a\x17\x8c\x65\x47\x6e\x70" "\x67\x57\xe0\x94\x74\xdb\x29\x09\xda\x49\x00\x24\xb1\xf7\x9f\xdb\x7c\xe6" "\x90\x28\x91\x5d\x96\x24\x2b\xaf\x27\x98\xcf\xfc\x71\xc1\x79\x67\xb8\x10" "\x47\xaa\x1f\x96\x2c\xdd\xe0\x5d\xbc\x2a\xd6\x0d\xb5\xe5\x75\xf8\xf6\x72" "\xc3\x4d\xf0\x1b\x44\x5d\xa2\xec\x11\xc8\x8c\x9f\x37\x46\xda\x9e\x79\x92" "\x56\xd2\x44\x8f\x06\x4e\xef\xf6\x1e\x21\xb9\x79\xb4\x17\xe9\x5d\x4a\x43" "\x41\xb5\xfa\x33\xa9\x33\xa3\x52\x9d\xca\xb9\xe1\xbc\xfa\xeb\x92\x64\x64" "\xf5\x55\x7b\xf2\x13\xd8\x54\x1f\x18\x93\x95\x8d\x05\xe8\xc5\x46\xf5\x7e" "\x7f\xb8\x19\xe1\x51\xdf\xc0\xe1\xa9\x02\x5a\x52\x94\x53\x1a\xb6\x4b\x03" "\x14\xee\xac\xa1\x2a\xbb\x96\x54\xe3\xa7\xa6\x74\xd5\x84\xaf\x03\x71\xdb" "\x06\xc5\x7b\xa4\x5c\xc9\xb1\x25\xa8\xdc\xec\x2e\x8e\x37\xf1\x48\x1c\x72" "\xe9\xa2\x36\x3a\xb1\x89\xa7\xd7\x23\xb3\x6e\x25\x44\x66\xc7\x18\x97\xf5" "\xe4\x00\x45\x0f\x65\xb0\x2e\x15\x0d\x1d\xaa\x91\x7d\xa7\xd6\x29\x2e\x88" "\x9a\x3c\xd2\xa2\xed\xcb\x8e\xf6\xd2\x34\x2f\xed\x5d\x03\xb8\x48\xa2\xdd" "\xa7\x53\xa0\x4b\xb1\x12\xdc\xb0\x74\xff\xf0\x56\x0a\xfb\xfc\x2b\x3e\x37" "\x12\x64\xe5\x24\x13\xad\xd2\xae\x17\xe6\xe8\xb4\xb6\x82\xf2\xcf\x5d\xc9" "\x86\x0e\xf0\x12\xb3\xe7\x13\x62\x3d\xe1\x46\x90\xce\x5c\x26\x3c\x03\x5c" "\xb4\xa4\xab\x45\xa0\xbf\xba\x5f\x44\xec\x58\x26\xdc\x7a\x4b\xbb\xaf\xfc" "\x1b\x29\x1e\x94\xc2\x54\xba\x21\xfc\x68\x3a\x53\x44\x8a\x3a\x1f\x5a\x5f" "\x5e\x89\x4a\x10\x3b\x10\xc2\xb0\x4f\x7d\xcd\xcb\xec\x37\xf8\xe7\xf4\x51" "\x53\xfe\x86\xef\x1e\x9b\x06\x45\x19\x7d\x46\x6c\x36\xaa\x95\x79\x22\xf8" "\x62\x80\xa6\x1d\xd9\xfe\xd8\x07\xac\x5d\xd8\x63\xb0\xb4\x9c\x22\x56\xfa" "\xd2\x1a\xeb\x60\xca\x4e\x88\x2d\x84\xa7\xa3\x79\x4d\x8b\x41\xad\x09\xd5" "\x77\xab\xef\x15\x66\x3c\xaf\x59\xe9\x06\xd4\x7d\x28\x49\x49\xe6\x32\x74" "\x91\x77\x43\x34\x15\x3a\x78\xcf\xae\x07\x78\xf0\x5c\xe7\x38\xe4\x62\x18" "\x44\xbf\xfb\x45\x68\xfa\x3b\x24\x73\xfb\xe4\x03\x2f\x7f\x6d\x2e\xf1\xf9" "\x10\x71\x25\xff\xc0\x15\x60\x64\xd1\xb5\x40\xf4\x92\x03\x9e\xd3\x7a\x64" "\xf0\xa2\x25\x1d\xfe\xed\xbd\x49\x0c\xa6\xb2\x6c\x2e\xd9\x12\xa8\xb9\xef" "\xd9\x8e\x9e\xaf\x8f\x58\x3f\xf6\x99\x64\x14\xb9\xf1\x98\x29\xc2\xf3\xa3" "\xbc\xa6\xd2\xfa\x41\x8e\xb9\xc9\xc7\x1b\x58\x2c\x3d\x45\x35\x10\xcc\xd2" "\x49\x06\xb6\xb7\xa6\xb0\x1e\x9e\xc3\xbc\x5a\x4d\x3c\x37\x87\x29\xa1\x24" "\xd6\x6e\xc3\x5b\x75\xa0\xc1\xe8\xdc\xd2\x51\x34\xc3\x45\x07\x5e\x7b\xfb" "\x96\x49\xef\xc2\xd5\x13\x10\xeb\xe8\x44\xa8\xb2\x63\xcb\xf2\xd2\x8e\xf3" "\x85\x51\x05\xe9\x4c\x2a\xbb\x0c\x46\xaf\x8f\xfd\x33\xba\x11\xcf\xda\x06" "\xd7\x61\x46\x95\x59\xa8\x4b\x52\x9c\x28\xf8\xbe\xee\x35\x23\xcc\xcb\x6d" "\xc2\x1d\x5b\x2d\x47\x87\x13\xcf\x93\xa6\x21\x96\x63\xd7\x94\xc8\x08\x2c" "\x9d\x4e\xa7\x89\x19\x76\x19\x4a\xc0\x51\x6e\x64\x6e\x1f\x0e\xcf\x4b\xc9" "\xff\x37\x58\x8f\x44\xc2\x6e\x7f\x33\xfd\x25\x7b\x1a\x67\xc7\x3d\xa6\x86" "\x0b\xab\xc2\x89\x74\x7b\xb5\x9e\x83\x8a\xf8\x62\x98\x2a\x50\x6d\xd9\x50" "\x35\x22\x6b\xaf\x98\xfd\xae\xc9\x51\x61\x2d\xf9\x4b\xba\xa6\x56\x1a\xe1" "\x18\x06\x6a\xe1\x8a\xb5\x26\x25\xf5\x26\xb7\xd7\x60\xda\x59\xab\x72\x81" "\x06\x46\x19\x29\x05\xba\x8d\xc5\xfe\x26\xab\xc6\x34\xbf\xac\xab\xe5\xef" "\xb3\x3a\x45\x99\xa4\x7f\x70\x92\x40\xd8\x00\x58\xaa\xc7\x5b\xdb\x7a\x3d" "\x63\x50\x44\xbd\x35\x45\x24\x65\xdc\xee\xfa\x0a\x3f\x1a\x7e\x6d\x3c\x86" "\x8c\xa5\xc8\x65\x82\xbe\x29\xcf\xc5\xaa\x12\xe3\x8d\x41\xcf\x74\x7f\xe6" "\x9a\x73\xa9\x6d\xb9\x24\xdd\xea\x16\xe6\xb7\x5b\xb2\x3e\x4d\x81\x46\xed" "\xd9\xcf\x39\xe4\x8c\x6d\xec\xf2\x48\x97\x11\x0b\x5a\xeb\x70\x95\xe8\xf4" "\x2a\x0a\xf2\x68\x7e\x1f\xaf\x33\x17\xc8\x33\x8a\x22\x50\x05\x03\x17\xa3" "\xe4\x6a\xa4\xf9\x50\xf6\x40\x56\x26\xb8\x38\x84\xe6\xa2\x62\x19\xde\x25" "\x7d\xac\xb4\xee\x47\x2f\x4a\x10\x2a\x3d\x21\xfa\xf2\x7f\xcd\xdf\x48\xd7" "\xb4\xdf\xcf\x00\xff\xa1\xbe\x16\xe4\x3a\x0b\x97\x02\xd5\x3b\x0f\x1c\x35" "\x88\xc2\x8b\xe2\x3a\x00\xaf\xf5\xf1\x65\x05\x6f\x4d\x8a\x8e\x8c\xb4\xd0" "\x24\x06\xeb\xfc\x9f\x92\xe2\x89\x4c\xa8\x9f\x8e\x5d\x84\x05\x64\x77\x02" "\x4e\x69\x37\x5b\x29\x8f\x55\x60\xb2\xad\x85\x77\xdb\x4b\x61\x1f\x1a\x6e" "\x08\xdf\x95\x4f\x9f\xb1\x1c\xcf\xa8\x43\x42\x74\x5a\x90\x79\xf2\xd8\x7f" "\x54\xf2\xe9\xc4\x64\x43\x45\x3a\x6a\xc3\x47\x4b\x21\x8a\xf1\x4c\x3a\x23" "\xfa\xfa\xaf\x8b\xee\xbd\xa2\x53\x45\xce\x73\x07\xfc\x23\x71\x23\xd5\x12" "\xe8\x94\x49\x9d\x41\x1a\x17\xcd\xc9\xb9\x79\x73\x4c\x92\xd0\xee\xfc\x71" "\x15\xf3\x0c\x11\x57\xbc\xad\x91\x2c\x5c\x49\x3f\x07\x3e\xca\x3b\x60\xe7" "\x67\x78\xab\xff\xa1\xac\x68\xb2\x3d\x96\xfe\xb7\xa4\x22\x55\xb3\x40\x8f" "\x89\xdf\x4b\x6b\x29\xea\x62\x4c\x28\x7b\xbe\x91\x4b\xa7\xfe\xd7\x5c\x4c" "\x6f\x04\x37\xe6\x76\xec\x51\xba\x47\xff\x9b\x02\x87\xeb\x99\xf9\x9a\x00" "\xee\x27\xeb\xc3\x6f\x06\x22\x6f\xb8\xd9\xf5\x0b\x6b\xf0\x31\xf4\x4a\x46" "\x92\xd0\x6c\xab\x86\xfc\x26\x8e\x3b\x75\x67\xf2\x8b\x82\x8b\x9c\x59\x08" "\xca\xfd\xc3\x41\x69\x0f\x3c\x84\x66\xd1\x39\xcc\x61\xf8\x69\xb5\xda\x42" "\x80\x09\xbf\x90\xb1\x20\x34\xc2\xe7\xc5\x74\x60\x36\xa2\xe0\xf2\x98\x11" "\x22\x2d\x21\x70\x07\x33\x94\x9d\xcb\xa1\xc7\x7f\x59\x8a\xc0\x53\x73\xda" "\xb6\x70\xdc\x6b\xb5\x7a\xfa\xd3\x4d\xf4\x59\x27\xaf\x76\xef\xa3\x1a\x5f" "\x0c\xc3\x55\xea\x92\x2f\x1a\x18\xc5\x78\x2d\x7e\x1a\x48\x95\x37\x78\xa9" "\xa7\x2e\x3e\x9c\x85\xb6\xe5\x03\x88\xb1\x97\xb0\x6f\xe0\xc2\x02\x19\x92" "\x69\xf2\xc9\x15\x44\x57\x29\xd2\x63\x53\x0a\xb6\x8c\x46\x82\x79\x1a\x36" "\x0e\xa8\xa3\x2e\xf7\xd4\x06\x08\x24\x69\x91\xec\x55\x7e\xb3\xbe\xac\xe6" "\x9e\x8a\xb0\x6c\x1e\x41\x00\xd9\x45\x67\x3a\xa2\x09\xae\x95\xb8\x42\x69" "\xeb\xaa\x3a\x67\x54\x3a\x0a\xa3\x77\x53\xe8\x47\x3e\x61\x45\x72\x20\x54" "\xf1\x86\x0c\x5c\x9f\x62\xd7\x02\x86\xc2\x5e\xaf\x18\x04\xfe\xbd\x4b\x5b" "\x6d\xce\x55\x88\x06\xf6\x31\x5d\xaa\x0e\xf7\x0d\x6b\x72\xcb\x91\x41\xa2" "\x57\xcc\xde\xaf\xdc\x37\x3e\x20\xb4\xad\x95\xc2\x3c\xfe\x52\xcb\xa8\xce" "\x3e\xbe\x65\xca\x16\xe6\xce\xaf\x21\xa1\xdc\xf4\x5f\x81\xb1\x34\x55\xb3" "\xb3\x73\x16\x57\x7b\x7e\x8f\x13\x3e\xf5\x02\xba\x5c\x01\x66\x34\xef\x44" "\xc1\x36\xf2\xe1\xe4\x7b\x9d\x1b\x4d\x8a\x05\xad\xbf\x13\x9c\x9b\xdc\xf5" "\x23\xc7\x35\xc8\xa0\xd1\x9b\x0c\x0b\xa5\x58\xcf\xb9\x9e\x6a\x28\x0b\x5f" "\x11\x48\x44\x3a\xf6\x54\xfa\x29\x83\x99\xa1\xe3\x44\xab\xea\xfd\x84\x11" "\x4a\xb4\x31\xdd\x28\x14\xef\x9c\x1c\x5c\xec\x2b\x19\xd6\xd3\x64\x65\x37" "\xd3\x64\x6f\x37\x00\x77\xe5\x84\xae\xe7\xf7\x0d\x4f\xe1\x5e\xe9\x48\x95" "\xd8\x36\xbf\x8b\x68\x49\x33\x87\x8b\x21\x12\xa5\xe7\x1f\x73\xfb\xc2\xfc" "\x02\xc9\x88\x5a\x57\xcf\x84\x91\xe1\xb7\x5f\x18\x24\x2f\xbc\x77\x43\x21" "\x0b\xfc\xbf\x5b\x50\x43\xbc\x54\x59\x0b\x6d\x9c\x6c\xdf\x55\x8c\xda\xdd" "\x4e\x02\x47\x51\x37\x36\xe4\xfa\x8c\x61\xf9\x5f\xd6\x43\x81\x9f\xfd\x34" "\x69\x5e\x38\x93\xee\x7d\xdb\xaf\xca\x84\x95\x4f\xd3\x3d\x3a\x27\x25\xa9" "\xb5\x66\x8f\x5c\x49\x54\xa8\xc0\xed\xc8\x4e\xc0\xe5\x58\xaa\xc7\x8f\xec" "\x7b\xee\xae\xb3\x9d\xc8\x8f\x02\x1a\xa3\x81\x7f\x21\xe0\xa2\xb4\x0f\x0c" "\xab\x58\x6f\x20\x86\x57\x23\x29\xca\x0e\x0e\xb0\x1e\xab\xb5\x48\x10\xaa" "\x88\x55\x60\x6b\x1b\xae\x0a\x1d\x25\x98\xea\x81\x88\x44\x6c\x0a\x81\x52" "\xe0\xbe\x66\xf0\x0a\x14\x0f\x1f\xa0\xe5\xc6\x7f\x85\x8c\x9a\xa8\x6d\x8f" "\x1f\x52\x90\xe9\xb2\xb0\x72\x2f\x22\x9b\xf3\xaa\xd6\x75\xb2\xf6\xf9\x12" "\x87\x2e\xaf\x6b\xc6\xd0\xcb\x27\xbc\x34\x06\xa6\xa5\x46\xf7\xa4\x62\xd9" "\x2e\x2d\xce\xc9\x21\x39\x45\x61\x44\x2b\x1e\xce\xe0\x33\xb4\xb1\x57\x70" "\xfa\xaa\xa0\x86\x29\x98\xcf\xb3\x96\x7b\x38\x76\x64\xb7\x29\xdd\x18\x3d" "\x73\xa1\xbb\x3a\x35\xa9\x04\x62\x70\x4e\x3a\x89\x2a\x77\x16\x0f\x72\x0f" "\x09\x7d\x57\xc0\xfb\x34\xeb\x9e\xeb\x14\x7a\x24\x32\x35\xd3\x08\x90\x7a" "\x2e\x56\x9a\xce\x6b\x4f\xda\xb0\x5a\x45\xe5\x55\x92\x15\x88\x00\x9a\x72" "\xf2\x3d\xf5\x58\xf1\x18\x82\x00\xba\xab\xf8\x73\x6a\x7a\x5f\xc2\xca\xe7" "\xbc\xf4\xf5\x13\x7a\x74\xd0\x52\x7e\x7a\x31\x04\x0a\xa1\x8e\x14\xdf\x07" "\x55\xe3\x38\xf2\x0f\xd0\x44\x5e\x5e\x9d\xb1\xe3\x17\xff\x41\x9d\x52\x7e" "\x7f\x4f\x7c\x19\xb9\x9a\x12\xd5\x9a\x2b\x3a\x07\xff\x5d\x69\x89\x86\xa1" "\x9c\x96\xf5\xa0\x58\x40\x9f\xf2\x47\x43\xc0\xc6\x8a\x1f\x09\xd2\x4d\xc1" "\xf5\x0f\xe6\xf0\xbf\xaa\xc3\x90\x06\xb8\xe1\x0c\x77\xfa\x5b\x59\x12\x0a" "\x82\x1b\x4d\xff\xa9\x48\xb2\x59\x10\x50\x8f\x45\xed\xdc\x07\x95\xa1\x0b" "\x6d\x58\x55\x67\x80\xc4\xa0\x22\x19\x0d\xdd\xec\x40\x34\x4d\xda\x14\xa1" "\x9e\x9f\xed\xc9\x60\x88\xf7\x1e\x22\x3e\xc0\x63\x3d\x4b\x77\xb5\x24\x8e" "\x2e\x38\x33\x3b\xdb\x45\x2d\x02\xcf\x1d\xf3\x64\x02\x44\x64\x0b\x11\x0d" "\x8b\x30\x88\x50\xce\xaa\xbe\x81\xbb\xf7\x96\x99\xdf\xd1\x41\xf6\x8b\x2f" "\x2f\xe7\x84\x38\xa0\xa3\x41\x86\x9a\x35\xe8\x86\xbf\xfa\xad\x57\x99\x0e" "\x58\xb5\x59\xc1\x2c\xc1\xe8\xf5\xbc\xa0\xfd\x4c\x43\x5e\x51\x5f\x40\xb7" "\xe0\x0d\x1b\x15\x23\xaf\x90\xb5\xd2\x55\xc6\xf6\x73\x8b\x6c\x76\x6f\xc9" "\x5c\x8a\xa4\xb2\xf0\x3b\xb1\xb0\xfb\xc4\xae\xdf\x57\x2f\x09\xc3\xf3\xb0" "\x15\x89\x0e\x0f\x99\xe1\x84\x0a\xef\x56\x64\x1f\xe3\xcc\xd7\xda\xb2\x60" "\x39\xaf\x6c\x6b\xdc\xed\x20\xca\x56\x2e\x3b\xc7\x0f\x0a\x3b\xc9\x2d\xf6" "\x5d\x12\x8f\xe1\x04\x4a\x98\xf6\xf0\xb8\x59\x20\x9a\xb3\xad\x9f\x59\x99" "\x6c\xd7\x10\x60\x06\xdb\x32\xde\xc9\xcf\x4d\xdd\x4d\x46\x04\xbe\xb8\xba" "\xcc\x42\xf6\xf5\xa1\x63\x3c\xc5\x20\xf5\x7e\x21\x20\x0f\xc9\xd1\x71\x41" "\x08\x31\xbb\x82\x70\xe0\x50\x96\xed\x45\x2f\x04\xed\x4a\x6a\xb0\x8e\x49" "\xd7\xee\xb9\x4d\xa0\xe3\x4f\x7c\x85\xed\x80\x36\xf9\x45\xab\x7d\x38\x51" "\xe9\x49\xcc\x5a\x21\xa3\x28\x65\x1c\x4a\xea\xa9\xfa\x58\xdb\xef\xe7\xea" "\xa3\xa4\xa3\xb9\x43\x6e\x48\x82\x69\x99\xd3\x32\x4b\x6c\xbb\xad\x6c\xfd" "\x0d\x48\xb7\xf8\x46\x41\xeb\xf9\xf0\xe2\x4b\xdf\xc8\x7b\xba\x62\xb0\x80" "\xb9\x1b\x2b\xb0\xc9\x73\xd1\x57\xee\x2b\x8c\x3c\x49\x77\x58\x46\xc2\x4c" "\x0b\x9a\x4e\xd0\xcc\x4b\xb8\x25\x2f\xdc\x2e\x07\xc5\x07\xd8\x50\xe3\x60" "\x08\x0b\x3e\x7b\x50\x4d\x6b\x02\x36\x9a\xeb\xb6\xb3\x85\x7b\xf3\xc9\x17" "\x30\x0b\xdf\x9d\x42\x21\xbb\xc9\xf6\x87\x5a\x35\x2f\xf5\x24\x41\x55\x8e" "\xb0\xb5\x2b\xa1\xb6\xc3\x80\xd0\x6f\x65\x61\x53\x35\xa9\x8a\xf7\xb6\x33" "\x5c\xc2\x64\xac\x04\x47\x85\xfe\x99\xae\xe8\x07\x94\xd7\xc1\x9f\x06\x0d" "\x84\xb6\xc3\xa9\xfe\xa6\xf4\x07\x64\x36\xd9\xc9\x3e\x45\x44\x67\xcb\x36" "\xfd\x18\x95\x49\x26\x09\x05\x37\x80\x6b\xfe\x80\x33\x87\x77\x34\x81\x18" "\xef\x33\x4a\xc7\x1d\xf5\xb6\x99\xf1\xba\xde\x63\x41\x3f\x1b\x42\x9f\xf5" "\xd7\x3b\xba\x86\xee\xef\x69\x0c\xdd\x9c\x87\xeb\xdd\x3a\x16\x15\x22\x43" "\x46\x42\x93\x86\xab\xed\x86\x7b\x82\xde\xaa\xcc\x4c\x85\xe7\x25\x3d\x7a" "\x80\xd2\xa8\x35\x8b\x6a\x30\xb7\xe2\x91\x19\xd7\x6b\xff\x85\x76\x5f\x65" "\x17\x4b\x26\x84\x75\x06\x62\x20\x00\x91\xef\xa3\xec\x86\x40\xef\xf8\x33" "\x30\x87\xdc\xea\xe7\x64\x7f\xcd\x8e\x52\x55\xb6\x5a\xc9\x41\x32\x5d\x7b" "\x57\x2f\x8e\x13\x00\x98\x05\xbe\x3b\x47\x53\x03\xec\xcd\xfb\x16\x7a\x63" "\xab\x63\xd9\xc9\x6b\xba\xf5\xb7\x4f\xd9\xed\x90\x37\xf9\x95\x9f\xde\xd8" "\x0a\x63\x6f\x25\xa8\x2c\xbc\x0d\x7f\x05\xff\x44\x7d\xcc\xa7\xb2\xd1\x39" "\xd9\xda\x7f\x2a\x4a\xfe\xde\x8e\x98\xe2\xb8\x5b\x28\x19\xee\xe6\xc0\x56" "\x38\xf6\x1a\xff\x29\xd2\x01\x44\x66\x20\xd4\x07\x95\xe5\x66\xb7\x45\xf2" "\xec\x14\x0f\x6c\xac\xc1\x3b\x96\x94\xc2\xc7\xfa\x94\x90\x3b\xb9\xe2\x2a" "\x9a\xf7\xb9\xf6\xf8\x4c\x33\xc4\x41\x33\x56\x32\xbc\x41\xbd\xed\x98\xed" "\x61\xef\x02\x40\x57\xc1\xf6\x42\x05\x45\x66\xa5\xee\xba\xd6\x59\x5a\x68" "\x17\x5b\xeb\xd0\x6e\x5c\x40\x99\x95\x72\xae\xef\x34\x5b\x0b\xd7\x3a\x67" "\x70\x33\xc8\xeb\xf8\xf8\xa6\x74\x25\xbf\x5c\xe4\x6b\xf4\xec\x50\x4e\xb5" "\x24\x23\x00\xc6\x92\x1e\xa6\xd2\xbb\x40\xe7\x8f\xfd\xc1\x9b\x49\xa5\xf2" "\x03\x42\x0d\x9d\x70\xcf\x4d\xbb\xf7\xc1\x45\xaf\xd5\x08\xdf\xdc\x66\xec" "\x70\xd6\x70\x70\x8b\x01\x56\x26\x1e\xde\x57\x3c\x2a\x86\xaf\x7c\x60\x8c" "\x51\x91\x43\xe0\x1b\x74\x62\xc3\x4c\x66\xde\xb9\x4b\xbb\xe6\xe3\x7c\xe2" "\x52\x35\xf8\x50\x7c\x5b\x0c\x07\x73\x49\x9f\xff\x93\x5d\xe7\x16\x4b\xb2" "\x13\xae\x11\x44\x74\xbd\x17\xed\xe3\x70\x6e\xca\x91\x2a\xf1\xa5\x1a\x9b" "\xf9\xca\xe0\x30\x50\x5a\xff\x65\xff\xa1\x34\x88\x2a\xd7\xda\x03\x54\xb6" "\x42\x06\x3e\x27\xae\x59\xcf\xa2\x85\x97\xfd\x67\xef\xa3\xe9\x20\x85\xea" "\x20\x19\xbc\x42\x74\x52\x5d\x96\x6b\x9a\x3c\x04\xe0\xc5\xa4\xe0\x12\x35" "\x28\xac\x50\x29\xd9\x65\xde\xf2\x4d\xbb\xa7\x16\xa0\x8d\x23\xc0\x95\x30" "\x2a\x17\x4a\xdb\x3f\x9c\xa8\xf6\x38\x93\xdc\x57\x0e\xd2\x95\xe3\x60\x07" "\x05\x9a\x50\xca\xd3\xe7\xfe\xbd\x53\x0c\x14\x24\x93\x5e\x3e\xfb\xbc\x0e" "\x3a\x03\xf0\x98\x89\xed\xf7\x0a\x46\x71\x35\xce\x5d\x96\xb1\xcd\x57\x18" "\x7b\x16\x31\x0d\xe3\x46\x06\x9e\x51\x64\xdb\xeb\x00\x5f\xa4\x5f\xfc\xc1" "\x9b\xba\x38\xdf\x99\x2a\x3f\x2d\xa2\x30\x6c\xdb\xf2\xb8\xa7\xcf\xa0\xf1" "\x97\xd4\xb3\xbd\xd2\xe8\xce\x26\xf5\x67\x71\xc2\x4e\x6b\x45\xc1\x6a\x99" "\xf0\x9a\xf9\x68\x79\xe7\x66\xae\x14\x92\x22\xc3\xf8\x43\xc8\x6b\x51\x06" "\xe6\x6c\x23\xf0\x41\x6f\xf0\xbe\x89\xcd\x5a\xa0\xf7\x47\x6f\x75\x4d\xcc" "\x71\x16\x25\x42\x4c\x22\x43\x5c\xb3\x7d\x05\xeb\x5b\xb6\xf5\x05\x42\xd4" "\xd3\xe6\xee\x30\xd2\x7f\x3b\x59\x96\x23\x1d\x95\x8c\xe5\x41\x27\xe4\x93" "\x03\xd2\x2e\x95\x8d\xbc\x11\xc1\x43\xff\x13\x21\xea\xee\x9c\x39\x5f\x7d" "\x10\x4b\x53\xdb\x5b\xfa\x08\xbb\x5a\x85\xdb\x5e\x07\x4c\xd4\x51\x5b\x4f" "\x0a\xb6\xd6\x43\x98\x2d\xcb\x9a\xe0\x0f\x92\x7d\xcb\x2d\xee\xcc\x8d\xd0" "\x84\x05\xb7\xaf\x6c\x11\xf8\xce\x1c\x9e\xc9\xc8\x15\x93\x33\x6f\xd9\xa4" "\x79\x17\xf3\x64\xf4\xa3\x2c\xc5\x33\xda\x08\xc8\x1f\x53\x7a\x7a\x57\x8e" "\x7a\x8b\xe7\x7a\xf0\x37\x6b\x77\x95\x3e\x95\x17\x6b\xe7\xba\x7d\xf8\x3d" "\x10\x1d\x15\x84\x9f\x50\x0f\x50\xb4\xa5\x6f\x25\x45\xee\xff\x12\x89\x89" "\xf9\x9a\x9d\xd3\xe6\xa9\xf4\xb2\x07\xe5\xf0\x07\xc8\x6e\xc5\x77\x96\xdb" "\x9f\x58\x5d\xe2\x36\x05\x15\x78\x2b\x6c\x55\x97\x57\xc7\xff\x10\xcb\x51" "\x21\x37\x58\x2f\x7c\xff\xda\x2e\xba\x7a\xe6\x84\x5a\x07\xd2\xab\xae\x9f" "\x1c\xd4\xb6\xd8\x08\x0a\xf0\x8f\x29\x8c\x13\x8d\x55\xd3\xb1\x50\xac\x9d" "\x83\x61\xdb\xf5\xe0\x60\x0d\x67\xa1\x3d\x08\x6f\xfa\x3a\x1e\xe4\x14\x36" "\xc7\x91\x9f\x7b\xde\xd2\xe0\x76\xca\xfb\x96\xc3\x35\xcb\xd3\xc0\x32\x67" "\x6e\xf4\x40\x97\xd6\x81\x27\xb7\x16\x30\xac\x02\x32\x2a\x0f\x5c\x7c\x87" "\x23\xe8\xa7\x8f\x26\xd6\xbf\xd0\x41\xd6\xa3\x3c\x15\x21\xd8\x9a\x82\xb2" "\xf6\x32\x4f\xfb\x94\x73\x44\x62\xc4\xf1\x9d\xa9\xeb\x84\xf7\x5b\x5f\x28" "\x3a\xb5\xa3\x2e\x2a\xab\x17\x86\x81\xb8\x37\xba\x11\x2d\xf0\x4b\x2d\xef" "\xc5\xbe\x12\x57\x1c\xb5\xfd\xe3\xe9\xb1\x7e\x5d\xf1\xe5\xb3\xc3\x7e\x6b" "\x27\x9a\xd8\xf8\x4f\x57\xae\x00\x6e\xe0\xe5\x67\x51\xdc\x76\x27\xd8\xa8" "\x2d\xf1\x92\x5c\x87\x61\x2e\x85\xcd\x1e\x6b\x4e\x76\x01\x93\x00\x83\xca" "\xd4\x57\xf3\x7a\x2d\x1c\x02\x1a\x0e\x45\x7a\xea\xf4\xd7\x1e\xa9\x0f\x68" "\xd6\xc8\xe0\x95\xb5\x12\xec\x8f\xf3\xf8\x70\x3a\x90\x90\x3e\x02\x30\x73" "\x65\xe6\x1f\x65\x34\xd9\xd7\xc7\x6e\x98\x92\x19\x1a\x18\xb4\x18\x98\x9e" "\xdc\x74\xcd\xed\x14\x05\xf9\xd7\x93\x38\x39\xc1\x9d\x7f\xae\xa1\xa2\x3f" "\xac\x74\x47\x59\xca\x35\x87\x8b\xd2\x70\x11\x1b\x82\xeb\x1e\xab\xd1\xa6" "\x92\xad\x5c\x70\xe0\xcb\xfc\x9b\x68\x2e\x8a\xe5\x9a\x4e\x91\x46\x6b\x3b" "\x3e\xa3\xa7\xc9\xd3\x11\xc4\x3e\xf7\xbe\x35\xf8\x55\x84\x85\x2b\x47\x02" "\x2a\x1a\xd4\x19\xf6\x7a\x67\xde\x31\x85\xd5\xc7\xbd\x31\x7e\x6e\xaa\x6c" "\xea\x71\x95\x10\x24\xad\x73\xc8\x3a\xce\x87\xb7\x22\x43\xd7\xe6\xe8\xe2" "\x44\x4b\xae\x19\x50\x18\x52\x75\x41\x05\x91\xab\x70\x94\xd6\x0f\x89\x52" "\x81\xe9\x60\x0b\xc5\x72\xbe\x8d\xb7\x0c\xcd\x16\xf7\x83\x15\x0f\x75\x38" "\xcb\x50\xe6\xc4\x83\xfe\xce\x21\xf2\x87\xfb\xcf\x84\xa9\xd1\x36\x70\x3c" "\x6d\x70\x4c\x79\x3c\x18\x42\x78\x6b\xf2\xe9\x2c\x86\x51\x43\xe0\x15\x85" "\x43\xba\xc5\xbd\xbd\xf6\x8d\xdb\x3c\xf0\x27\x53\x74\xe8\x3a\x7f\x71\x03" "\xe3\xea\x69\x70\xf0\xa6\x7d\x71\x50\xcb\xbe\x2c\x9c\x7b\x9a\xc9\xdd\xef" "\xfb\x8c\x86\x2e\xdc\xcf\xd9\x34\x69\xd7\x6b\x6a\x94\x85\xa0\xcb\x1b\xb6" "\xd7\xdb\x03\xb7\xd7\x72\x13\x80\x40\xdb\x5b\x80\xc8\xf5\x3f\x48\x3f\xab" "\x13\x29\x42\x81\x85\xe8\x2e\x4a\x6d\x0b\x37\x47\x3d\x0c\x30\x0e\x7c\xa8" "\xbb\xc5\x63\x10\x4f\xd5\xb6\x34\x58\x73\x51\xea\xc6\xb3\x4c\x85\xfa\x9f" "\xd8\x0d\xb6\x41\xb2\xdc\x70\x36\x1d\x41\x08\xcb\xad\x22\x39\x97\x70\xbe" "\xfb\xe0\xf6\x46\x52\xcc\x95\x26\xb9\xfc\xae\xf2\xb7\x84\x80\x38\x22\x78" "\xef\x5f\xee\x46\x89\x97\xd1\x9b\x80\x89\xb5\x8d\x99\xd5\x51\xb3\x66\xbc" "\x30\x5d\x7b\x56\x87\x2a\xb0\x4d\x42\x67\xef\xfc\xd7\xf6\xfe\x15\x61\xfa" "\x6d\x85\x9a\xa4\xeb\x7c\x94\x7f\xb4\x46\x74\xe9\x6d\xa3\x8c\xd8\x1c\xdf" "\xf0\xd8\x71\x6e\xd7\xc2\xa7\xa5\xeb\x03\xc6\xed\xa2\x14\x0d\x4c\x89\xb7" "\x70\x96\xba\x22\x26\x69\x7a\xbf\xac\xdd\x71\xcb\x43\x95\xa7\x96\xff\xf4" "\xe1\x56\xae\x95\x4b\x7c\x87\xb8\xc9\xa2\xe1\x24\xef\x6a\xc3\xc5\x41\xa7" "\xb7\x97\xf3\x84\xa1\xf9\x7b\x6e\x42\x52\xd4\xe8\x7a\x0d\x14\x2d\xe1\x6a" "\xb7\xd5\x55\x84\x90\x68\xfa\xd3\x17\x66\x76\xbf\xa2\x1e\x86\xc4\xe4\xce" "\xf3\xb6\x66\xa8\xdb\x06\x19\xdc\x2b\x75\xcd\xb0\xf3\xf9\xe2\x3f\xaa\xc4" "\x74\xf5\x75\x7c\x44\xbe\xe9\xed\xfc\xc9\x7f\x96\xc6\x30\x28\xa7\xdc\xbd" "\x80\x18\x9a\xc0\x8c\x81\x14\xc9\x57\xc6\x44\xbf\x46\x83\x1b\xa1\xed\x8f" "\x9f\xee\xab\x82\x0a\x27\xe9\xd6\xc5\xa4\x72\x45\xb3\x64\x39\xcf\x68\xb8" "\x70\xaa\x2e\x88\xe3\xcf\x5e\xc5\xd7\x49\x34\xdc\x3d\x25\x42\xba\x2e\x79" "\xa1\xfc\xb9\xe7\x52\x31\x2c\xa6\xb4\x8f\xe0\x2d\xa9\xdf\x93\x8d\xb7\xee" "\xaa\x5d\x4d\xee\xd8\x67\x80\xe3\x5d\xd4\x28\xe9\x70\x14\xd9\xd7\xe9\xb5" "\x11\xfa\x40\x5e\xf8\x81\x5f\xa4\xb0\x86\xb3\x18\x27\x92\x02\x67\xc2\x65" "\xb9\x5f\x93\xc4\x95\xb4\x17\x24\xaa\x5f\xef\xe4\xa7\x9b\x70\x1e\x50\xc9" "\x4b\xe8\x85\x40\xf6\xac\xc0\x6d\x67\xb3\x2a\x86\xec\x07\x96\xca\x13\x6c" "\xa4\x18\x7b\x59\x07\xfb\x54\x72\x10\x39\xec\x57\x3f\x05\x91\x4a\xde\xe0" "\x5e\x4e\xf5\x68\x55\xef\x1b\x7c\xed\x00\xeb\xf4\xe0\x9c\xe6\x18\xae\x9e" "\x11\x67\xd3\x13\xdb\x84\x5d\x09\xad\x05\x26\x74\x0e\xcb\x96\x84\x7a\xe8" "\x72\xb4\x70\xf2\x65\x7b\x3c\xc4\x3d\x53\x55\x2b\x34\x19\x33\x28\x26\x64" "\x46\x33\xdf\xf8\xdb\xe7\x30\x01\xfc\xd1\xe2\xa0\xb8\xf7\xa8\x03\x29\x4b" "\x36\xa3\x5b\xaa\xc3\x34\xbe\xd2\x8a\x2f\xec\xa0\xad\x98\x00\xd9\xbe\x65" "\x3e\x79\xe6\x66\x7d\x71\x4c\xc9\x67\xba\x24\x6c\x05\xed\x06\x12\xaa\x64" "\xc0\x1f\x36\xec\x0a\x83\xec\x13\xd3\x57\xaa\x6d\x4c\x87\x79\x0b\x41\xd8" "\x97\x7b\x6a\xdb\xde\xd2\xd5\x7e\x10\x24\x56\x37\xa8\x56\x30\x1c\xd4\x29" "\x76\xe6\x29\xc1\x75\xed\xb5\x80\x4b\xf8\x8f\xb5\x38\x30\x69\xc3\x54\x1f" "\x8a\x08\xae\x0a\xd3\x25\x52\xe7\xb6\xcc\x71\xcf\x45\xb7\x08\xac\x96\x6b" "\x00\xcb\x6e\xeb\x38\xa8\x6f\xa1\x5d\xc0\x2b\x9d\x7f\x3b\x13\xb2\x96\x5e" "\xc0\x17\x00\x7e\x05\x77\xa6\x35\x8d\x90\xb2\x2d\x2f\x6e\xde\x8b\xa3\x51" "\x3d\x79\x9a\x12\xd3\xe4\xae\x5c\x68\x63\xa9\xa4\xfe\xc8\xf1\x5d\xdd\x22" "\xfb\xc1\xff\x68\x29\x8e\x0b\xa3\xce\xf9\x05\xd8\x71\x26\x66\xe3\x4e\xe9" "\x96\xa8\x92\x5d\x15\x2a\x4c\xbe\x80\xd5\xaa\x33\xb2\xdb\xb7\x2d\x4b\x1a" "\xe2\xb0\x7b\xde\xd7\xab\xf5\xef\xc4\x6c\x30\x53\xbc\x1c\x51\x5b\xf2\x6d" "\x43\x5f\xec\x53\xce\xc2\x0f\xb2\x7b\x5c\x1f\x0f\x00\x94\xfa\xa9\x70\x82" "\x00\x0f\x67\x27\xfa\xe4\xdb\xd3\x1e\xc8\x9d\x59\x33\x46\x03\xa5\x87\x0b" "\xea\xce\x0a\x32\x37\xa5\xe6\x7e\xfb\x3e\x4d\x86\x88\x53\x37\x72\x1a\xcf" "\x6c\xa3\x0b\xe2\x80\xcd\x75\x06\xca\x66\x69\x8a\x24\xcd\xf6\x5c\x2e\x4c" "\x55\x45\x1e\x07\x1b\xc7\x8b\x6c\xdb\x0f\x8e\xa9\x61\xdc\x04\xf9\x72\xa8" "\x0c\x26\xd3\x03\x71\x0a\xd5\x84\x90\x01\x40\xb5\xc1\x61\x42\xa2\x0c\x0a" "\x74\x3b\xab\xaf\xe1\xe0\x9a\x81\xf0\x5c\x43\xf4\xf2\x49\xed\x0f\xfe\x0b" "\x23\xee\x06\xa1\x5b\xf6\x71\x68\xe7\x97\xbf\xf5\xbd\x03\xaa\xae\xac\xae" "\x82\x3d\x0c\x87\xd1\x2e\xa0\x9a\x56\x7a\x8f\x93\x8a\xf2\xe7\xdf\x78\x95" "\x2e\xaa\x35\x57\x92\xb2\xaa\x7f\x2b\x8a\x42\x4a\x4f\xca\x8b\x2a\xbd\x1d" "\xda\x80\x35\x86\xbc\x72\xc4\xb8\xdc\xdf\x05\xf5\x48\x22\xd7\x5d\xf7\xc2" "\x5a\x01\x17\x14\xc2\xcf\xef\x10\x0a\xf1\x17\x96\xdd\x4b\xa1\xb8\xaf\x44" "\x8f\x09\xc9\xb0\x50\xdf\x95\xd3\x6d\x9e\x31\x86\xe7\xaf\x36\xbf\x14\x3f" "\x4a\xce\xcc\xf4\x7c\xba\x47\x85\x3e\x25\x96\x6a\x8a\xbc\x2d\xf2\x39\xaf" "\xae\xab", 8192)); NONFAILING(syz_fuse_handle_req(/*fd=*/r[0], /*buf=*/0x200000000ac0, /*len=*/0x2000, /*res=*/0)); // open arguments: [ // file: ptr[in, buffer] { // buffer: {2e 00} (length 0x2) // } // flags: open_flags = 0x8000 (8 bytes) // mode: open_mode = 0x50 (8 bytes) // ] // returns fd NONFAILING(memcpy((void*)0x2000000000c0, ".\000", 2)); res = syscall(__NR_open, /*file=*/0x2000000000c0ul, /*flags=O_LARGEFILE*/ 0x8000ul, /*mode=S_IWGRP|S_IXUSR*/ 0x50ul); if (res != -1) r[1] = res; // getdents arguments: [ // fd: fd_dir (resource) // ent: nil // count: len = 0x0 (8 bytes) // ] syscall(__NR_getdents, /*fd=*/r[1], /*ent=*/0ul, /*count=*/0ul); return 0; }