// https://syzkaller.appspot.com/bug?id=e279f1b7696487ed45f2684d754a1fe5a6262c77 // 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 void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define 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); } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void loop(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 7; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } uint64_t r[2] = {0xffffffffffffffff, 0x0}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: // syz_mount_image$exfat arguments: [ // fs: ptr[in, buffer] { // buffer: {65 78 66 61 74 00} (length 0x6) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x810000 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {65 72 72 6f 72 73 3d 63 6f 6e 74 69 6e 75 65 // 2c 69 6f 63 68 61 72 73 65 74 3d 69 73 6f 38 38 35 39 2d 31 2c // 64 6d 61 73 6b 3d 30 30 30 30 30 30 30 30 30 30 30 30 33 37 37 // 37 37 37 37 37 37 37 37 2c 69 6f 63 68 61 72 73 65 74 3d 6b 6f // 69 38 2d 72 75 2c 69 6f 63 68 61 72 73 65 74 3d 63 70 34 33 37 // 2c 6e 61 6d 65 63 61 73 65 3d 31 2c 6e 61 6d 65 63 61 73 65 3d // 31 2c 00 9a 8d 4d 90 16 e3 d8 12 83 33 e2 60 a1 b9 26 dd 0c 5f // 76 19 71 0e 03 ea 1a e6 52 14 94 f8 7e 57 37 dc 0c 5b ec 3f 76 // 66 81 40 a1 52 58 81 8b 6f bc 51 f9 a1 39 40 e6 3c 37 86 88 55 // 9c 35 12 87 f0 e0 9e f0 b7 33 0d b2 0e ef 79 7e 50 04 48 46 49 // e7 f5 fb 64 b7 46 68 3a 75 b9 ed 82 2f 5a e3 4f ac 2c 6c 74 f2 // e0 f0 0c 4a 59 8e 40 c3 ed ad 80 d7 c3 93 ed f3 72 1b ad 42 80 // 30 4a 8e e7 9c 2c 3e 7c f7 9f 7c 61 3a b2 8d 60 17 0f 31 2a 32 // d8 8d cd 4c 19 ab 8e ce ff 9f fc} (length 0x116) // } // union ANYUNION { // ANYRESHEX: ANYRES64 (resource) // } // union ANYUNION { // ANYRES32: ANYRES32 (resource) // } // union ANYUNION { // ANYRES64: ANYRES64 (resource) // } // } // } // chdir: int8 = 0x0 (1 bytes) // size: len = 0x1501 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x1501) // } // ] // returns fd_dir memcpy((void*)0x200000000700, "exfat\000", 6); memcpy((void*)0x2000000001c0, "./file0\000", 8); memcpy( (void*)0x200000000780, "\x65\x72\x72\x6f\x72\x73\x3d\x63\x6f\x6e\x74\x69\x6e\x75\x65\x2c\x69" "\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x69\x73\x6f\x38\x38\x35\x39\x2d" "\x31\x2c\x64\x6d\x61\x73\x6b\x3d\x30\x30\x30\x30\x30\x30\x30\x30\x30" "\x30\x30\x30\x33\x37\x37\x37\x37\x37\x37\x37\x37\x37\x37\x2c\x69\x6f" "\x63\x68\x61\x72\x73\x65\x74\x3d\x6b\x6f\x69\x38\x2d\x72\x75\x2c\x69" "\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x63\x70\x34\x33\x37\x2c\x6e\x61" "\x6d\x65\x63\x61\x73\x65\x3d\x31\x2c\x6e\x61\x6d\x65\x63\x61\x73\x65" "\x3d\x31\x2c\x00\x9a\x8d\x4d\x90\x16\xe3\xd8\x12\x83\x33\xe2\x60\xa1" "\xb9\x26\xdd\x0c\x5f\x76\x19\x71\x0e\x03\xea\x1a\xe6\x52\x14\x94\xf8" "\x7e\x57\x37\xdc\x0c\x5b\xec\x3f\x76\x66\x81\x40\xa1\x52\x58\x81\x8b" "\x6f\xbc\x51\xf9\xa1\x39\x40\xe6\x3c\x37\x86\x88\x55\x9c\x35\x12\x87" "\xf0\xe0\x9e\xf0\xb7\x33\x0d\xb2\x0e\xef\x79\x7e\x50\x04\x48\x46\x49" "\xe7\xf5\xfb\x64\xb7\x46\x68\x3a\x75\xb9\xed\x82\x2f\x5a\xe3\x4f\xac" "\x2c\x6c\x74\xf2\xe0\xf0\x0c\x4a\x59\x8e\x40\xc3\xed\xad\x80\xd7\xc3" "\x93\xed\xf3\x72\x1b\xad\x42\x80\x30\x4a\x8e\xe7\x9c\x2c\x3e\x7c\xf7" "\x9f\x7c\x61\x3a\xb2\x8d\x60\x17\x0f\x31\x2a\x32\xd8\x8d\xcd\x4c\x19" "\xab\x8e\xce\xff\x9f\xfc", 278); sprintf((char*)0x200000000896, "0x%016llx", (long long)-1); *(uint32_t*)0x2000000008a8 = -1; *(uint64_t*)0x2000000008ac = -1; memcpy( (void*)0x200000002a80, "\x78\x9c\xec\xdc\x0b\x98\xce\x55\xbb\x30\xf0\xfb\x5e\x6b\xfd\x19\xd3" "\xa4\xa7\x49\x0e\xc3\x5a\xeb\xfe\xf3\xa4\xc1\x32\x49\x92\x43\x8a\x1c" "\x92\x24\x49\x92\x9c\x12\x92\x26\x49\x12\x12\x43\x48\x12\x92\x9c\x0f" "\x93\xe4\x30\x84\xe4\x30\x8d\x49\xe3\x7c\x3e\xe4\x9c\x34\x79\xa5\x49" "\x92\x90\x9c\xc2\xfa\xae\xe9\x6d\x6f\xef\xbb\x7b\xf7\xdb\xde\xdf\xdb" "\xfe\x7c\xd7\x9e\xfb\x77\x5d\xeb\x9a\x75\xcf\x7a\xee\xf5\xac\x35\xf7" "\xcc\x3c\xff\xf5\xbf\xae\xe7\xf9\xbe\xc7\xc8\xba\xcd\xeb\xd5\x6a\x4a" "\x44\xf0\x2f\xc1\xbf\x7e\x49\x01\x80\x18\x00\x18\x02\x00\xd7\x01\x40" "\x00\x00\x95\xe2\x2b\xc5\xe7\x8e\x17\x90\x98\xf2\xaf\x3d\x09\xfb\x73" "\x3d\x92\x76\xb5\x57\xc0\xae\x26\xae\x7f\xde\xc6\xf5\xcf\xdb\xb8\xfe" "\x79\x1b\xd7\x3f\x6f\xe3\xfa\xe7\x6d\x5c\xff\xbc\x8d\xeb\x9f\xb7\x71" "\xfd\x19\xcb\xcb\xb6\xcf\x29\x76\x3d\xb7\xbc\xdb\xf8\xfe\x7f\x5e\xc6" "\xaf\xff\xff\x8b\xe4\x94\x9f\xfc\xf5\xc6\xf2\x37\xf6\xfc\x6f\xa4\x70" "\xfd\xf3\x36\xae\x7f\xde\xc6\xf5\xcf\xdb\xb8\xfe\x79\x1b\xd7\x3f\x6f" "\xe3\xfa\xff\xef\x57\xf3\x9f\x8c\x71\xfd\xf3\x36\xae\x3f\x63\x79\xd9" "\xd5\xbe\xff\xcc\xed\xea\xb6\xab\xfd\xfb\xc7\x18\x63\x8c\x31\xc6\x18" "\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c" "\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6" "\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63" "\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31" "\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18" "\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c" "\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6" "\x18\x63\x2c\x6f\x38\xe7\xaf\x50\x00\xf0\x6f\xfd\xab\xbd\x2e\xc6\x18" "\x63\x8c\x31\xc6\x18\x63\x8c\xfd\x79\x7c\xfe\xab\xbd\x02\xc6\x18\x63" "\x8c\x31\xc6\x18\x63\x8c\xfd\xcf\x43\x10\x20\x41\x41\x00\xf9\x20\x3f" "\xc4\x40\x01\x88\x85\x6b\x20\x0e\xae\x85\x82\x70\x1d\x44\xe0\x7a\x88" "\x87\x1b\xa0\x10\xdc\x08\x85\xa1\x08\x14\x85\x62\x90\x00\xc5\xa1\x04" "\x68\x30\x60\x81\x20\x84\x92\x50\x0a\xa2\x70\x13\x94\x86\x9b\x21\x11" "\xca\x40\x59\x28\x07\x0e\xca\x43\x12\xdc\x02\x15\xe0\x56\xa8\x08\xb7" "\x41\x25\xb8\x1d\x2a\xc3\x1d\x50\x05\xaa\x42\x35\xa8\x0e\x77\x42\x0d" "\xb8\x0b\xee\x86\x9a\x50\x0b\xee\x81\xda\x50\x07\xea\x42\x3d\xb8\x17" "\xea\xc3\x7d\xd0\x00\xee\x87\x86\xf0\x00\x34\x82\x07\xa1\x31\x3c\x04" "\x4d\xe0\x61\x68\x0a\x8f\x40\x33\x78\x14\x9a\xc3\x63\xd0\x02\x1e\x87" "\x96\xd0\x0a\x5a\x43\x1b\x68\xfb\x7f\x95\xff\x32\xf4\x81\x57\xa0\x2f" "\xf4\x83\x14\xe8\x0f\x03\xe0\x55\x18\x08\x83\x60\x30\xbc\x06\x43\xe0" "\x75\x18\x0a\x6f\xc0\x30\x78\x13\x86\xc3\x08\x18\x09\x6f\xc1\x28\x78" "\x1b\x46\xc3\x3b\x30\x06\xc6\xc2\x38\x18\x0f\x13\x60\x22\x4c\x82\xc9" "\x30\x05\xa6\x42\x2a\xbc\x0b\xd3\xe0\x3d\x98\x0e\xef\xc3\x0c\x98\x09" "\xb3\x60\x36\xa4\xc1\x1c\x98\x0b\x1f\xc0\x3c\x98\x0f\x0b\xe0\x43\x58" "\x08\x1f\xc1\x22\x58\x0c\x4b\x60\x29\xa4\xc3\xc7\x90\x01\xcb\x20\x13" "\x3e\x81\xe5\xf0\x29\x64\xc1\x0a\x58\x09\xab\x60\x35\xac\x81\xb5\xb0" "\x0e\xd6\xc3\x06\xd8\x08\x9b\x60\x33\x6c\x81\xad\xb0\x0d\xb6\xc3\x67" "\xb0\x03\x76\xc2\x2e\xd8\x0d\x7b\x60\x2f\xec\x83\xcf\x61\x3f\x7c\x01" "\x07\xe0\x4b\xc8\x86\xaf\xfe\x9b\xf9\x67\xff\x43\x7e\x4f\x04\x04\x14" "\x28\x50\xa1\xc2\x7c\x98\x0f\x63\x30\x06\x63\x31\x16\xe3\x30\x0e\x0b" "\x62\x41\x8c\x60\x04\xe3\x31\x1e\x0b\x61\x21\x2c\x8c\x85\xb1\x28\x16" "\xc5\x04\x4c\xc0\x12\x58\x02\x0d\x1a\x24\x24\x2c\x89\x25\x31\x8a\x51" "\x2c\x8d\xa5\x31\x11\x13\xb1\x2c\x96\x45\x87\x0e\x93\x30\x09\x2b\xe0" "\xad\x58\x11\x2b\x62\x25\xac\x84\x95\xb1\x32\x56\xc1\xaa\x58\x15\xab" "\x63\x75\xac\x81\x35\xf0\x6e\x84\x2a\x01\xd4\xc2\xda\x58\x1b\xeb\x62" "\x5d\xbc\x17\xef\xc5\xfb\xb0\x01\x36\xc0\x86\xd8\x10\x1b\x61\x23\x6c" "\x8c\x8d\xb1\x09\x36\xc1\xa6\xd8\x14\x9b\x61\x33\x6c\x8e\xcd\xb1\x05" "\xb6\xc0\x96\xd8\x12\x5b\x63\x6b\x6c\x8b\x6d\xb1\x1d\xb6\xc3\xf6\xd8" "\x1e\x3b\x62\x47\xec\x84\x9d\xb0\x33\x76\xc6\x64\x4c\xc6\x2e\xd8\x05" "\xbb\x62\x57\xec\x86\xdd\xb0\x3b\x76\xc7\x1e\xd8\x03\x7b\x62\x2f\xec" "\x85\x2f\xe3\xcb\xf8\x0a\xbe\x82\xfd\xb0\xb6\xe8\x8f\x03\x70\x00\x0e" "\xc4\x81\x07\x72\xff\x18\x5e\xc3\xd7\x71\x28\xbe\x81\x6f\xe0\x9b\x38" "\x1c\x47\xe0\x48\x7c\x0b\xdf\xc2\xb7\x71\x34\x9e\xc1\x31\x38\x16\xc7" "\xe1\x38\xac\x21\x26\xe2\x24\x9c\x8c\x24\xa6\x62\x2a\xa6\xe2\x34\x9c" "\x86\xd3\x71\x3a\xce\xc0\x99\x38\x13\x67\x63\x1a\xce\xc1\xb9\x38\x17" "\xe7\xe1\x7c\x9c\x8f\x1f\xe2\x42\xfc\x08\x3f\xc2\xc5\xb8\x18\x97\x62" "\x3a\xa6\x63\x06\x2e\xc3\x4c\xcc\xc4\xe5\x78\x16\xb3\x70\x05\xae\xc4" "\x55\xb8\x1a\xd7\xe0\x6a\x5c\x87\xeb\x71\x1d\x6e\xc4\x4d\xb8\x11\xb7" "\xe0\x16\xdc\x86\xdb\xf0\x33\xfc\x0c\x77\xe2\x4e\xdc\x8d\xbb\x71\x2f" "\xee\xc5\xcf\xf1\x73\xfc\x02\xbf\xc0\xe1\x98\x8d\xd9\x78\x10\x0f\xe2" "\x21\x3c\x84\x87\xf1\x30\xe6\x60\x0e\x1e\xc1\x23\x78\x14\x8f\xe2\x31" "\x3c\x86\xc7\xf1\x38\x9e\xc0\x93\x78\x0a\x4f\xe2\x69\x3c\x8d\x67\xf0" "\x2c\x9e\xc3\x73\x78\x01\x2f\xe0\x45\x7c\x31\xe1\xdb\x66\x7b\xcb\x6c" "\x18\x0e\x22\x97\x12\x4a\xe4\x13\xf9\x44\x8c\x88\x11\xb1\x22\x56\xc4" "\x89\x38\x51\x50\x14\x14\x11\x11\x11\xf1\x22\x5e\x14\x12\x85\x44\x61" "\x51\x58\x14\x15\x45\x45\x82\x48\x10\x25\x44\x09\x61\x84\x11\x24\x42" "\x51\x52\x94\x14\x51\x11\x15\xa5\x45\x69\x91\x28\x12\x45\x59\x51\x56" "\x38\xe1\x44\x92\x48\x12\x15\x44\x05\x51\x51\x54\x14\x95\xc4\xed\xa2" "\xb2\xb8\x43\x54\x11\x55\x45\x07\x57\x5d\x54\x17\x35\x44\x47\x77\xb7" "\xa8\x29\x6a\x89\x5a\xa2\xb6\xa8\x23\xea\x8a\x7a\xa2\x9e\xa8\x2f\xea" "\x8b\x06\xa2\x81\x68\x28\x1a\x8a\x46\xa2\x91\x68\x2c\x1e\x12\x4d\x44" "\x7f\x1c\x8c\x8f\x88\xdc\xca\x34\x17\x23\xb0\x85\x18\x89\x2d\x45\x2b" "\xd1\x5a\xb4\x11\x6f\xe3\x13\xa2\x9d\x18\x8d\xed\x45\x07\xd1\x51\x3c" "\x25\xc6\xe2\x18\xec\x2c\xda\xb9\x64\xf1\xac\xe8\x22\x26\x61\x57\xf1" "\xbc\x98\x8c\x2f\x88\xee\x62\x2a\xf6\x10\x2f\x89\x9e\xa2\x97\xe8\x2d" "\x5e\x16\x7d\x44\x7b\xd7\x57\xf4\x13\x33\xb0\xbf\x18\x20\x66\xe3\x40" "\x31\x48\x0c\x16\xaf\x89\x79\x58\x47\xe4\x56\xac\xae\x78\x53\x0c\x17" "\x23\xc4\x48\xf1\x96\x58\x8a\x6f\x8b\xd1\xe2\x1d\x31\x46\x8c\x15\xe3" "\xc4\x78\x31\x41\x4c\x14\x93\xc4\x64\x31\x45\x4c\x15\xa9\xe2\x5d\x31" "\x4d\xbc\x27\xa6\x8b\xf7\xc5\x0c\x31\x53\xcc\x12\xb3\x45\x9a\x98\x23" "\xe6\x8a\x0f\xc4\x3c\x31\x5f\x2c\x10\x1f\x8a\x85\xe2\x23\xb1\x48\x2c" "\x16\x4b\xc4\x52\x91\x2e\x3e\x16\x19\x62\x99\xc8\x14\x9f\x88\xe5\xe2" "\x53\x91\x25\x56\x88\x95\x62\x95\x58\x2d\xd6\x88\xb5\x62\x9d\x58\x2f" "\x36\x88\x8d\x62\x93\xd8\x2c\xb6\x88\xad\x62\x9b\xd8\x2e\x3e\x13\x3b" "\xc4\x4e\xb1\x4b\xec\x16\x7b\xc4\x5e\xb1\x4f\x7c\x2e\xf6\x8b\x2f\xc4" "\x01\xf1\xa5\xc8\x16\x5f\x89\x83\xe2\x2f\xe2\x90\xf8\x5a\x1c\x16\xdf" "\x88\x1c\xf1\xad\x38\x22\xbe\x13\x47\xc5\xf7\xe2\x98\xf8\x41\x1c\x17" "\x3f\x8a\x13\xe2\xa4\x38\x25\x7e\x12\xa7\xc5\xcf\xe2\x8c\x38\x2b\xce" "\x89\xf3\xe2\x82\xf8\x45\x5c\x14\x97\xc4\x65\xe1\x05\x48\x94\x42\x4a" "\xa9\x64\x20\xf3\xc9\xfc\x32\x46\x16\x90\xb1\xf2\x1a\x19\x27\xaf\x95" "\x05\xe5\x75\x32\x22\xaf\x97\xf1\xf2\x06\x59\x48\xde\x28\x0b\xcb\x22" "\xb2\xa8\x2c\x26\x13\x64\x71\x59\x42\x6a\x69\xa4\x95\x24\x43\x59\x52" "\x96\x92\x51\x79\x93\x2c\x2d\x6f\x96\x89\xb2\x8c\x2c\x2b\xcb\x49\x27" "\xcb\xcb\x24\x79\x8b\xac\x20\x6f\x95\x15\xe5\x6d\xb2\x92\xbc\x5d\x56" "\x96\x77\xc8\x2a\xb2\xaa\xac\x26\xab\xcb\x3b\x65\x0d\x79\x97\xbc\x5b" "\xd6\x94\xb5\xe4\x3d\xb2\xb6\xac\x23\xeb\xca\x7a\xf2\x5e\x59\x5f\xde" "\x27\x1b\xc8\xfb\x65\x43\xf9\x80\x6c\x24\x1f\x94\x8d\xe5\x43\xb2\x89" "\x7c\x58\x36\x95\x8f\xc8\x66\xf2\x51\xd9\x5c\x3e\x26\x5b\xc8\xc7\x65" "\x4b\xd9\x4a\xb6\x96\x6d\x64\x5b\xf9\x84\x6c\x27\x9f\x94\xed\x65\x07" "\xd9\x51\x3e\x25\x3b\xc9\xa7\x65\x67\xf9\x8c\x4c\x96\xcf\xca\x2e\xf2" "\x39\xd9\x55\x3e\x2f\xbb\xc9\x17\x64\x77\xf9\xa2\xec\x21\x5f\x92\x3d" "\x65\x2f\xd9\x5b\x5e\x92\x97\xa5\x97\x7d\x65\x3f\x99\x22\xfb\xcb\x01" "\xf2\x55\x39\x50\x0e\x92\x83\xe5\x6b\x72\x88\x7c\x5d\x0e\x95\x6f\xc8" "\x61\xf2\x4d\x39\x5c\x8e\x90\x23\xe5\x5b\x72\x94\x7c\x5b\x8e\x96\xef" "\xc8\x31\x72\xac\x1c\x27\xc7\xcb\x09\x72\xa2\x9c\x24\x27\xcb\x29\x72" "\xaa\x4c\x95\xef\xca\x69\xf2\x3d\x39\x5d\xbe\x2f\x67\xc8\x99\x72\x96" "\x9c\x2d\xd3\xe4\x1c\x39\xf8\xb7\x99\x16\xfc\x17\xf2\xdf\xfb\x07\xf9" "\xc3\x7e\x7d\xf6\x6d\x72\xbb\xfc\x4c\xee\x90\x3b\xe5\x2e\xb9\x5b\xee" "\x91\x7b\xe5\x3e\xb9\x4f\xee\x97\xfb\xe5\x01\x79\x40\x66\xcb\x6c\x79" "\x50\x1e\x94\x87\xe4\x21\x79\x58\x1e\x96\x39\x32\x47\x1e\x91\x47\xe4" "\x51\x79\x54\x1e\x93\xc7\xe4\x71\x79\x5c\x9e\x90\x27\xe5\x79\xf9\x93" "\x3c\x2d\x7f\x96\x67\xe4\x59\x79\x56\x9e\x97\x17\xe4\x05\x79\xf1\xb7" "\x9f\x01\x28\x54\x42\x49\xa5\x54\xa0\xf2\xa9\xfc\x2a\x46\x15\x50\xb1" "\xea\x1a\x15\xa7\xae\x55\x05\xd5\x75\x2a\xa2\xae\x57\xf1\xea\x06\x55" "\x48\xdd\xa8\x0a\xab\x22\xaa\xa8\x2a\xa6\x12\x54\x71\x55\x42\x69\x65" "\x94\x55\xa4\x42\x55\x52\x95\x52\x51\x75\x93\x2a\xad\x6e\x56\x89\xaa" "\x8c\x2a\xab\xca\x29\xa7\xca\xab\x24\x75\xcb\xbf\x9c\xff\x47\xeb\x6b" "\xab\xda\xaa\x76\xaa\x9d\x6a\xaf\xda\xab\x8e\xaa\xa3\xea\xa4\x3a\xa9" "\xce\xaa\xb3\x4a\x56\xc9\xaa\x8b\xea\xa2\xba\xaa\xae\xaa\x9b\xea\xa6" "\xba\xab\xee\xaa\x87\xea\xa1\x7a\xaa\x9e\xaa\xb7\xea\xad\xfa\xa8\x3e" "\xaa\xaf\xea\xab\x52\x54\x8a\x1a\xa0\x5e\x55\x03\xd5\x20\x35\x58\xbd" "\xa6\x86\xa8\xd7\xd5\x50\x35\x54\x0d\x53\xc3\xd4\x70\x35\x5c\x8d\x54" "\x23\xd5\x28\x35\x4a\x8d\x56\xa3\xd5\x18\x35\x46\x8d\x53\xe3\xd4\x04" "\x35\x41\x4d\x52\x93\xd4\x14\x35\x45\xa5\xaa\x54\x35\x4d\x4d\x53\xd3" "\xd5\x74\x35\x43\xcd\x50\xb3\xd4\x2c\x95\xa6\xd2\xd4\x5c\x35\x57\xcd" "\x53\xf3\xd4\x02\xb5\x40\x2d\x54\x0b\xd5\x22\xb5\x48\x2d\x51\x4b\x54" "\xba\x4a\x57\x19\x2a\x43\x65\xaa\x4c\xb5\x5c\x2d\x57\x59\x6a\x85\x5a" "\xa1\x56\xa9\x55\x6a\x8d\x5a\xa3\xd6\xa9\x75\x6a\x83\xda\xa0\x36\xa9" "\x4d\x6a\x8b\xda\xa2\xb2\xd4\x76\xb5\x5d\xed\x50\x3b\xd4\x2e\xb5\x4b" "\xed\x51\x7b\xd4\x3e\xb5\x4f\xed\x57\xfb\xd5\x01\x75\x40\x65\xab\x6c" "\x75\x50\x1d\x54\x87\xd4\x21\x75\x58\x1d\x56\x39\x2a\x47\x1d\x51\x47" "\xd4\x51\x75\x54\x1d\x53\xc7\xd4\x71\x75\x5c\x9d\x50\x27\xd4\x29\x75" "\x4a\x9d\x56\xa7\xd5\x19\x75\x46\x9d\x53\xe7\xd4\x05\x75\x41\x5d\x54" "\x17\xd5\x65\x75\x39\xf7\xb2\x2f\x10\x81\x08\x54\xa0\x82\x7c\x41\xbe" "\x20\x26\x88\x09\x62\x83\xd8\x20\x2e\x88\x0b\x0a\x06\x05\x83\x48\x10" "\x09\xe2\x83\xf8\xa0\x50\x70\x63\x50\x38\x28\x12\x14\x0d\x8a\x05\x09" "\x41\xf1\xa0\x44\xa0\x03\x13\xd8\x80\x82\x30\x28\x19\x94\x0a\xa2\xc1" "\x4d\x41\xe9\xe0\xe6\x20\x31\x28\x13\x94\x0d\xca\x05\x2e\x28\x1f\x24" "\x05\xb7\x04\x15\x82\x5b\x83\x8a\xc1\x6d\x41\xa5\xe0\xf6\xa0\x72\x70" "\x47\x50\x25\xa8\x1a\x54\x0b\xaa\x07\x77\x06\x35\x82\xbb\x82\xbb\x83" "\x9a\x41\xad\xe0\x9e\xa0\x76\x50\x27\xa8\x1b\xd4\x0b\xee\x0d\xea\x07" "\xf7\x05\x0d\x82\xfb\x83\x86\xc1\x03\x41\xa3\xe0\xc1\xa0\x71\xf0\x50" "\xd0\x24\x78\x38\x68\x1a\x3c\x12\x34\x0b\x1e\x0d\x9a\x07\x8f\x05\x2d" "\x82\xc7\x83\x96\x41\xab\xa0\x75\xd0\x26\x68\xfb\xa7\xce\xef\xfd\x99" "\x22\x4f\xba\xbe\xba\x9f\x4e\xd1\xfd\xf5\x00\xfd\xaa\x1e\xa8\x07\xe9" "\xc1\xfa\x35\x3d\x44\xbf\xae\x87\xea\x37\xf4\x30\xfd\xa6\x1e\xae\x47" "\xe8\x91\xfa\x2d\x3d\x4a\xbf\xad\x47\xeb\x77\xf4\x18\x3d\x56\x8f\xd3" "\xe3\xf5\x04\x3d\x51\x4f\xd2\x93\xf5\x14\x3d\x55\xa7\xea\x77\xf5\x34" "\xfd\x9e\x9e\xae\xdf\xd7\x33\xf4\x4c\x3d\x4b\xcf\xd6\x69\x7a\x8e\x9e" "\xab\x3f\xd0\xf3\xf4\x7c\xbd\x40\x7f\xa8\x17\xea\x8f\xf4\x22\xbd\x58" "\x2f\xd1\x4b\x75\xba\xfe\x58\x67\xe8\x65\x3a\x53\x7f\xa2\x97\xeb\x4f" "\x75\x96\x5e\xa1\x57\xea\x55\x7a\xb5\x5e\xa3\xd7\xea\x75\x7a\xbd\xde" "\xa0\x37\xea\x4d\x7a\xb3\xde\xa2\xb7\xea\x6d\x7a\xbb\xfe\x4c\xef\xd0" "\x3b\xf5\x2e\xbd\x5b\xef\xd1\x7b\xf5\x3e\xfd\xb9\xde\xaf\xbf\xd0\x07" "\xf4\x97\x3a\x5b\x7f\xa5\x0f\xea\xbf\xe8\x43\xfa\x6b\x7d\x58\x7f\xa3" "\x73\xf4\xb7\xfa\x88\xfe\x4e\x1f\xd5\xdf\xeb\x63\xfa\x07\x7d\x5c\xff" "\xa8\x4f\xe8\x93\xfa\x94\xfe\x49\x9f\xd6\x3f\xeb\x33\xfa\xac\x3e\xa7" "\xcf\xeb\x0b\xfa\x17\x7d\x51\x5f\xd2\x97\xb5\xcf\xbd\xb8\xcf\x7d\x79" "\x37\xca\x28\x93\xcf\xe4\x33\x31\x26\xc6\xc4\x9a\x58\x13\x67\xe2\x4c" "\x41\x53\xd0\x44\x4c\xc4\xc4\x9b\x78\x53\xc8\x14\x32\x85\x4d\x61\x53" "\xd4\x14\x35\x09\x26\xc1\x94\x30\x25\x4c\x2e\x32\x64\x4a\x9a\x92\x26" "\x6a\xa2\xa6\xb4\x29\x6d\x12\x4d\xa2\x29\x6b\xca\x1a\x67\x9c\x49\x32" "\x49\xa6\x82\xa9\x60\x2a\x9a\x8a\xa6\x92\xa9\x64\x2a\x9b\xca\xa6\x8a" "\xa9\x62\xaa\x99\x6a\xe6\x4e\x73\xa7\xb9\xcb\xdc\x65\x6a\x9a\x9a\xe6" "\x1e\x73\x8f\xa9\x63\xea\x98\x7a\xa6\x9e\xa9\x6f\xea\x9b\x06\xa6\x81" "\x69\x68\x1a\x9a\x46\xa6\x91\x69\x6c\x1a\x9b\x26\xa6\x89\x69\x6a\x9a" "\x9a\x66\xa6\x99\x69\x6e\x9a\x9b\x16\xa6\x85\x69\x69\x5a\x9a\xd6\xa6" "\xb5\x69\x6b\xda\x9a\x76\xa6\x9d\x69\x6f\xda\x9b\x8e\xa6\xa3\xe9\x64" "\x3a\x99\xce\xa6\xb3\x49\x36\xc9\xa6\x8b\xe9\x62\xba\x9a\xae\xa6\x9b" "\xe9\x66\xba\x9b\xee\xa6\x87\xe9\x61\x7a\x9a\x9e\xa6\xb7\xe9\x6d\xfa" "\x98\x3e\xa6\xaf\xe9\x6b\x52\x4c\x8a\x19\x60\x06\x98\x81\x66\xa0\x19" "\x6c\x06\x9b\x21\x66\x88\x19\x6a\x86\x9a\x61\x66\x98\x19\x5f\x61\x53" "\xcd\xdc\x93\xd3\x28\x33\xca\x8c\x36\xa3\xcd\x18\x33\xd6\x8c\x33\xe3" "\xcd\x04\x33\xd1\x4c\x32\x93\xcd\x14\x33\xd5\xa4\x9a\x54\x33\xcd\x4c" "\x33\xd3\xcd\x74\x33\xc3\xcc\x30\xb3\xcc\x2c\x93\x66\xd2\xcc\x5c\x33" "\xd7\xcc\x33\xf3\xcc\x02\xb3\xc0\x2c\x34\x0b\xcd\x22\xb3\xc8\x2c\x31" "\x4b\x4c\xba\x49\x37\x19\x26\xc3\x64\x9a\x4c\xb3\xdc\x2c\x37\x59\x26" "\xcb\xac\x34\x2b\xcd\x6a\xb3\xda\xac\x35\x6b\xcd\x7a\xb3\xde\x6c\x34" "\x1b\xcd\x66\xb3\xd9\x6c\x35\x5b\xcd\x76\xb3\xdd\xec\x30\x3b\xcc\x2e" "\xb3\xcb\xec\x31\x7b\xcc\x3e\xb3\xcf\xec\x37\xfb\xcd\x01\x73\xc0\x64" "\x9b\xec\x98\xdf\x0e\x77\xe6\xb0\x39\x6c\x72\x4c\x8e\x39\x62\x8e\x98" "\xa3\xe6\xa8\x39\x66\x8e\x99\xe3\xe6\xb8\x39\x61\x4e\x98\x53\xe6\x94" "\x39\x6d\x4e\x9b\x33\xe6\x8c\x39\x67\xce\x99\x0b\xe6\x17\x73\xd1\x5c" "\x32\x97\x8d\x37\x31\x56\x40\xac\xbd\xc6\xc6\xd9\x6b\x6d\x41\x7b\x9d" "\x8d\xb1\x05\xec\xdf\xc6\x45\x6d\x31\x9b\x60\x8b\xdb\x12\x56\xdb\xc2" "\xb6\xc8\xdf\xc5\xc6\x5a\x9b\x68\xcb\xd8\xb2\xb6\x9c\x75\xb6\xbc\x4d" "\xb2\xb7\xfc\x2e\xae\x62\xab\xda\x6a\xb6\xba\xbd\xd3\xd6\xb0\x77\xd9" "\xbb\x7f\x17\xd7\xb7\xf7\xd9\x06\xf6\x7e\xdb\xd0\x3e\x60\xeb\xd9\x7b" "\xff\x2e\x6e\x64\x1f\xb4\x8d\xed\x63\xb6\x89\x7d\xdc\x36\xb5\xad\x6c" "\x33\xdb\xc6\x36\xb7\x8f\xd9\x16\xf6\x71\xdb\xd2\xb6\xb2\xad\x6d\x1b" "\xdb\xc9\x3e\x6d\x3b\xdb\x67\x6c\xb2\x7d\xd6\x76\xb1\xcf\xfd\x2e\xce" "\xb0\xcb\xec\x7a\xbb\xc1\x6e\xb4\x9b\xec\x7e\xfb\x85\x3d\x67\xcf\xdb" "\xa3\xf6\x7b\x7b\xc1\xfe\x62\xfb\xda\x7e\x76\x88\x7d\xdd\x0e\xb5\x6f" "\xd8\x61\xf6\x4d\x3b\xdc\x8e\xf8\x5d\x3c\xce\x8e\xb7\x13\xec\x44\x3b" "\xc9\x4e\xb6\x53\xec\xd4\xdf\xc5\xb3\xec\x6c\x9b\x66\xe7\xd8\xb9\xf6" "\x03\x3b\xcf\xce\xff\x5d\x9c\x6e\x3f\xb6\x0b\x6d\xa6\x5d\x64\x17\xdb" "\x25\x76\xe9\xaf\x71\xee\x9a\x32\xed\x27\x76\xb9\xfd\xd4\x66\xd9\x15" "\x76\xa5\x5d\x65\x57\xdb\x35\x76\xad\x5d\xf7\xef\x6b\x5d\x65\xb7\xd8" "\xad\x76\x9b\xdd\x67\x3f\xb7\x3b\xec\x4e\xbb\xcb\xee\xb6\x7b\xec\xde" "\x5f\xe3\xdc\x7d\x1c\xb0\x5f\xda\x6c\xfb\x95\x3d\x62\xbf\xb3\x87\xec" "\xd7\xf6\xb0\x3d\x66\x73\xec\xb7\xbf\xc6\xb9\xfb\x03\xf8\xc1\x1e\xb7" "\x3f\xda\x13\xf6\xa4\x3d\x65\x7f\xb2\xa7\xed\xcf\xf6\x8c\x3d\xfb\xeb" "\xfe\x73\xf7\xfe\x93\xbd\x64\x2f\x5b\x6f\x81\x90\x04\x49\x52\x14\x50" "\x3e\xca\x4f\x31\x54\x80\x62\xe9\x1a\x8a\xa3\x6b\xa9\x20\x5d\x47\x11" "\xba\x9e\xe2\xe9\x06\x2a\x44\x37\x52\x61\x2a\x42\x45\xa9\x18\x25\x50" "\x71\x2a\x41\x9a\x0c\x59\x22\x0a\xa9\x24\x95\xa2\x28\xdd\x44\xa5\xe9" "\x66\x4a\xa4\x32\x54\x96\xca\x91\xa3\xf2\x94\x44\xb7\x50\x05\xba\x95" "\x2a\xd2\x6d\x54\x89\x6e\xa7\xca\x74\x07\x55\xa1\xaa\x54\x8d\xaa\xd3" "\x9d\x54\x83\xee\xa2\xbb\xa9\x26\xd5\xa2\x7b\xa8\x36\xd5\xa1\xba\x54" "\x8f\xee\xa5\xfa\x74\x1f\x35\xa0\xfb\xa9\x21\x3d\x40\x8d\xe8\x41\x6a" "\x4c\x0f\x51\x13\x7a\x98\x9a\xd2\x23\xd4\x8c\x1e\xa5\xe6\xf4\x18\xb5" "\xa0\xc7\xa9\x25\xb5\xa2\xd6\xd4\x86\xda\xd2\x13\xd4\x8e\x9e\xa4\xf6" "\xd4\x81\x3a\xd2\x53\xd4\x89\x9e\xa6\xce\xf4\x0c\x25\xd3\xb3\xd4\x85" "\x9e\xa3\xae\xf4\x3c\x75\xa3\x17\xa8\x3b\xbd\x48\x3d\xe8\x25\xea\x49" "\xbd\xa8\x37\xbd\x4c\x7d\xe8\x15\xea\x4b\xfd\x28\x85\xfa\xd3\x00\x7a" "\x95\x06\xd2\x20\x1a\x4c\xaf\xd1\x10\x7a\x9d\x86\xd2\x1b\x34\x8c\xde" "\xa4\xe1\x34\x82\x46\xd2\x5b\x34\x8a\xde\xa6\xd1\xf4\x0e\x8d\xa1\xb1" "\x34\x8e\xc6\xd3\x04\x9a\x48\x93\x68\x32\x4d\xa1\xa9\x94\x4a\xef\xd2" "\x34\x7a\x8f\xa6\xd3\xfb\x34\x83\x66\xd2\x2c\x9a\x4d\x69\x34\x87\xe6" "\xd2\x07\x34\x8f\xe6\xd3\x02\xfa\x90\x16\xd2\x47\xb4\x88\x16\xd3\x12" "\x5a\x4a\xe9\xf4\x31\x65\xd0\x32\xca\xa4\x4f\x68\x39\x7d\x4a\x59\xb4" "\x82\x56\xd2\x2a\x5a\x4d\x6b\x68\x2d\xad\xa3\xf5\xb4\x81\x36\xd2\x26" "\xda\x4c\x5b\x68\x2b\x6d\xa3\xed\xf4\x19\xed\xa0\x9d\xb4\x8b\x76\xd3" "\x1e\xda\x4b\xfb\xe8\x73\xda\x4f\x5f\xd0\x01\xfa\x92\xb2\xe9\x2b\x3a" "\x48\x7f\xa1\x43\xf4\x35\x1d\xa6\x6f\x28\x87\xbe\xa5\x23\xf4\x1d\x1d" "\xa5\xef\xe9\x18\xfd\x40\xc7\xe9\x47\x3a\x41\x27\xe9\x14\xfd\x44\xa7" "\xe9\x67\x3a\x43\x67\xe9\x1c\x9d\xa7\x0b\xf4\x0b\x5d\xa4\x4b\x74\x99" "\x3c\x41\x88\xa1\x08\x65\xa8\xc2\x20\xcc\x17\xe6\x0f\x63\xc2\x02\x61" "\x6c\x78\x4d\x18\x17\x5e\x1b\x16\x0c\xaf\x0b\x23\xe1\xf5\x61\x7c\x78" "\x43\x58\x28\xbc\x31\x2c\x1c\x16\x09\x8b\x86\xc5\xc2\x84\xb0\x78\x58" "\x22\xd4\xa1\x09\x6d\x48\x61\x18\x96\x0c\x4b\x85\xd1\xf0\xa6\xb0\x74" "\x78\x73\x98\x18\x96\x09\xcb\x86\xe5\x42\x17\x96\x0f\x93\xc2\x5b\xc2" "\x0a\xe1\xad\x61\xc5\xf0\xb6\xb0\x52\x78\x7b\x58\x39\xbc\x23\xac\x12" "\x56\x0d\x1f\x7b\xa0\x7a\x78\x67\x58\x23\xbc\x2b\xbc\x3b\xac\x19\xd6" "\x0a\xef\x09\x6b\x87\x75\xc2\xba\x61\xbd\xf0\xde\xb0\x7e\x78\x5f\xd8" "\x20\xbc\x3f\x6c\x18\x3e\x10\x56\x0c\x1f\x0c\x1b\x87\x0f\x85\x4d\xc2" "\x87\xc3\xa6\xe1\x23\x61\xb3\xf0\xd1\xb0\x79\xf8\x58\xd8\x22\x7c\x3c" "\x6c\x19\xb6\x0a\x5b\x87\x6d\xc2\xb6\xe1\x13\x61\xbb\xf0\xc9\xb0\x7d" "\xd8\x21\xec\x18\x3e\x15\x76\x0a\x9f\x0e\x3b\x87\xcf\x84\xc9\xe1\xb3" "\x61\x97\xf0\xb9\x3f\x1c\x4f\x09\xfb\x87\x03\xc2\x57\xc3\x57\x43\xef" "\xef\x97\x4b\xa2\x4b\xa3\xe9\xd1\x8f\xa3\x19\xd1\x65\xd1\xcc\xe8\x27" "\xd1\xe5\xd1\x4f\xa3\x59\xd1\x15\xd1\x95\xd1\x55\xd1\xd5\xd1\x35\xd1" "\xb5\xd1\x75\xd1\xf5\xd1\x0d\xd1\x8d\xd1\x4d\xd1\xcd\xd1\x2d\xd1\xad" "\xd1\x6d\x51\xef\xeb\xe5\x07\x87\x4e\x38\xe9\x94\x0b\x5c\x3e\x97\xdf" "\xc5\xb8\x02\x2e\xd6\x5d\xe3\xe2\xdc\xb5\xae\xa0\xbb\xce\x45\xdc\xf5" "\x2e\xde\xdd\xe0\x0a\xb9\x1b\x5d\x61\x57\xc4\x15\x75\xc5\x5c\x82\x2b" "\xee\x4a\x38\xed\x8c\xb3\x8e\x5c\xe8\x4a\xba\x52\x2e\xea\x6e\x72\xa5" "\xdd\xcd\x2e\xd1\x95\x71\x65\x5d\x39\xe7\x5c\x79\x97\xe4\xda\xb8\xb6" "\xae\xad\x6b\xe7\x9e\x74\xed\x5d\x07\xd7\xd1\x3d\xe5\x9e\x72\x4f\xbb" "\xa7\xdd\x33\xee\x19\xf7\xac\xeb\xe2\x9e\x73\x5d\xdd\xf3\xae\x9b\x7b" "\xc1\x75\x77\x2f\xba\x17\xdd\x4b\xae\xa7\xeb\xe5\x7a\xbb\x97\x5d\x1f" "\xf7\x8a\xeb\xeb\xfa\xb9\x14\x97\xe2\x06\xb8\x01\x6e\xa0\x1b\xe8\x06" "\xbb\xc1\x6e\x88\x1b\xe2\x86\xba\xa1\x6e\x98\x1b\xe6\x86\xbb\xe1\x6e" "\xa4\x1b\xe9\x46\xb9\x51\x6e\xb4\x1b\xed\xc6\xb8\x31\x6e\x9c\x1b\xe7" "\x26\xb8\x09\x6e\x92\x9b\xe4\xa6\xb8\x29\x2e\xd5\xa5\xba\x69\x6e\x9a" "\x9b\xee\xa6\xbb\x19\x6e\x86\x9b\xe5\x66\xb9\x34\x97\xe6\xe6\xba\xb9" "\x6e\x9e\x9b\xe7\x16\xb8\x05\x6e\x61\xe2\x42\xb7\xc8\x2d\x72\x4b\xdc" "\x12\x97\xee\xd2\x5d\x86\xcb\x70\x99\x2e\xd3\x2d\x77\xcb\x5d\x96\xcb" "\x72\x2b\xdd\x4a\xb7\xda\xad\x76\x6b\xdd\x5a\xb7\xde\xad\x77\x1b\xdd" "\x46\xb7\xd9\x6d\x76\x5b\xdd\x56\xb7\xdd\x6d\x77\x3b\xdc\x0e\xb7\xcb" "\xed\x72\x7b\xdc\x1e\xb7\xcf\xed\x73\xfb\xdd\x7e\x77\xc0\x1d\x70\xd9" "\x2e\xdb\x1d\x74\x07\xdd\x21\x77\xc8\x1d\x76\xdf\xb8\x1c\xf7\xad\x3b" "\xe2\xbe\x73\x47\xdd\xf7\xee\x98\xfb\xc1\x1d\x77\x3f\xba\x13\xee\xa4" "\x3b\xe5\x7e\x72\xa7\xdd\xcf\xee\x8c\x3b\xeb\xce\xb9\xf3\xee\x82\xfb" "\xc5\x5d\x74\x97\xdc\x65\xe7\x5d\x6a\xe4\xdd\xc8\xb4\xc8\x7b\x91\xe9" "\x91\xf7\x23\x33\x22\x33\x23\xb3\x22\xb3\x23\x69\x91\x39\x91\xb9\x91" "\x0f\x22\xf3\x22\xf3\x23\x0b\x22\x1f\x46\x16\x46\x3e\x8a\x2c\x8a\x2c" "\x8e\x2c\x89\x2c\x8d\xa4\x47\x3e\x8e\x64\x44\x96\x45\x32\x23\x9f\x44" "\x96\x47\x3e\x8d\x64\x45\x56\x44\x56\x46\x56\x45\x56\x47\xd6\x44\xbc" "\x2f\xbe\x23\xf4\x25\x7d\x29\x1f\xf5\x37\xf9\xd2\xfe\x66\x9f\xe8\xcb" "\xf8\xb2\xbe\x9c\x77\xbe\xbc\x4f\xf2\xb7\xf8\x0a\xfe\x56\x5f\xd1\xdf" "\xe6\x2b\xf9\xdb\x7d\x65\x7f\x87\xaf\xe2\xab\xfa\x6a\xfe\x71\xdf\xd2" "\xb7\xf2\xad\x7d\x1b\xdf\xd6\x3f\xe1\xdb\xf9\x27\x7d\x7b\xdf\xc1\x77" "\xf4\x4f\xf9\x4e\xfe\x69\xdf\xd9\x3f\xe3\x93\xfd\xb3\xbe\x8b\x7f\xce" "\x77\xf5\xcf\xfb\x6e\xfe\x05\xdf\xdd\xbf\xe8\x7b\xf8\x97\x7c\x4f\xdf" "\xcb\xf7\xf6\x2f\xfb\x3e\xfe\x15\xdf\xd7\xf7\xf3\x29\xbe\xbf\x1f\xe0" "\x5f\xf5\x03\xfd\x20\x3f\xd8\xbf\xe6\x87\xf8\xd7\xfd\x50\xff\x86\x1f" "\xe6\xdf\xf4\xc3\xfd\x08\x3f\xd2\xbf\xe5\x47\xf9\xb7\xfd\x68\xff\x8e" "\x1f\xe3\xc7\xfa\x71\x7e\xbc\x9f\xe0\x27\xfa\x49\x7e\xb2\x9f\xe2\xa7" "\xfa\x54\xff\xae\x9f\xe6\xdf\xf3\xd3\xfd\xfb\x7e\x86\x9f\xe9\x67\xf9" "\xd9\x3e\xcd\xcf\xf1\x73\xfd\x07\x7e\x9e\x9f\xef\x17\xf8\x0f\xfd\x42" "\xff\x91\x5f\xe4\x17\xfb\x25\x7e\xa9\x4f\xf7\x1f\xfb\x0c\xbf\xcc\x67" "\xfa\x4f\xfc\x72\xff\xa9\xcf\xf2\x2b\xfc\x4a\xbf\xca\xaf\xf6\x6b\xfc" "\x5a\xbf\xce\xaf\xf7\x1b\xfc\x46\xbf\xc9\x6f\xf6\x5b\xfc\x56\xbf\xcd" "\x6f\xf7\x9f\xf9\x1d\x7e\xa7\xdf\xe5\x77\xfb\x3d\x7e\xaf\xdf\xe7\x3f" "\xf7\xfb\xfd\x17\xfe\x80\xff\xd2\x67\xfb\xaf\xfc\x41\xff\x17\x7f\xc8" "\x7f\xed\x0f\xfb\x6f\x7c\x8e\xff\xd6\x1f\xf1\xdf\xf9\xa3\xfe\x7b\x7f" "\xcc\xff\xe0\x8f\xfb\x1f\xfd\x09\x7f\xd2\x9f\xf2\x3f\xf9\xd3\xfe\x67" "\x7f\xc6\x9f\xf5\xe7\xfc\x79\x7f\xc1\xff\xe2\x2f\xfa\x4b\xfe\xf2\x7f" "\xf5\x3d\x6b\xf9\xfe\x27\xef\xa5\x33\xc6\x18\x63\x8c\xfd\xff\x2f\xf5" "\x0f\xc6\xfb\xff\x83\xef\x89\xdf\x5a\xae\x01\x00\x70\xed\xce\x62\x39" "\x7f\x3b\x2e\x01\x60\x73\xe1\xbf\xf6\x07\x89\x84\x4e\x11\x00\x78\xb6" "\x5f\x8f\x47\xfe\xad\xd5\xae\x9d\x92\x92\xf2\xdb\x63\xb3\x24\x04\xa5" "\x16\x03\x40\xe4\x4a\xfe\xaf\x97\x68\xbf\xc5\x2b\xa0\x23\x3c\x0d\xc9" "\xd0\x01\x2a\xfc\xc3\xf5\x0d\x12\xbd\x2e\xd0\x1f\xcc\x1f\xbd\x1d\x20" "\xf6\x6f\x72\x62\xfe\xfa\x31\x07\xff\x61\xfe\x5b\xff\x93\xf9\x9f\x78" "\x6a\x5c\x46\xe5\xf0\x5c\xfc\x3f\x99\x7f\x31\x40\x62\xa9\x2b\x39\x05" "\xe0\x4a\x7c\x65\xfe\x8a\xff\xc9\xfc\x45\xda\xfd\xc1\xfa\x0b\x7c\x9d" "\x0a\xd0\xfe\x6f\x72\xe2\xe0\x4a\x7c\x65\xfe\x24\x78\x12\x9e\x83\xe4" "\xbf\x7b\x24\x63\x8c\x31\xc6\x18\x63\x8c\x31\xf6\x57\x83\x44\xb5\x6e" "\x94\x7b\x22\x86\x7f\x7e\x3e\x4f\x50\x57\x72\xf2\xc3\x95\xf8\x8f\xce" "\xe7\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\xbb\xfa\x5e\xe8\xd5\xfb\x99" "\x27\x92\x93\x3b\x74\xe3\x0e\x77\xb8\xc3\x9d\x7f\xef\x5c\xed\xff\x4c" "\x8c\x31\xc6\x18\x63\x8c\xb1\x3f\xdb\x95\x8b\xfe\xab\xbd\x12\xc6\x18" "\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c" "\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6" "\x18\x63\x2c\xef\xfa\x7f\xf1\x71\x62\x57\x7b\x8f\x8c\x31\xc6\x18\x63" "\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31" "\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18" "\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\xd8\xd5\xf6\x7f\x02\x00\x00\xff" "\xff\xb0\xde\x39\x8d", 5377); syz_mount_image(/*fs=*/0x200000000700, /*dir=*/0x2000000001c0, /*flags=MS_I_VERSION|MS_POSIXACL*/ 0x810000, /*opts=*/0x200000000780, /*chdir=*/0, /*size=*/0x1501, /*img=*/0x200000002a80); break; case 1: // openat$fuse arguments: [ // fd: const = 0xffffffffffffff9c (8 bytes) // file: ptr[in, buffer] { // buffer: {2f 64 65 76 2f 66 75 73 65 00} (length 0xa) // } // flags: const = 0x42 (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd_fuse memcpy((void*)0x200000000040, "/dev/fuse\000", 10); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x200000000040ul, /*flags=*/0x42, /*mode=*/0); if (res != -1) r[0] = res; break; case 2: // mount$fuse arguments: [ // src: const = 0x0 (8 bytes) // dst: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // type: ptr[in, buffer] { // buffer: {66 75 73 65 00} (length 0x5) // } // flags: mount_flags = 0x0 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {66 64 3d} (length 0x3) // } // union ANYUNION { // ANYRESHEX: ANYRES64 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {2c 72 6f 6f 74 6d 6f 64 65 3d 30 30 30 30 30 // 30 30 30 30 30 30 30 30 30 30 30 30 34 30 30 30 30 2c 75 73 65 // 72 5f 69 64 3d} (length 0x29) // } // union ANYUNION { // ANYRESDEC: ANYRES64 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {2c 67 72 6f 75 70 5f 69 64 3d} (length 0xa) // } // union ANYUNION { // ANYRESDEC: ANYRES64 (resource) // } // } // } // ] memcpy((void*)0x200000000000, "./file0\000", 8); memcpy((void*)0x200000002100, "fuse\000", 5); memcpy((void*)0x200000002140, "fd=", 3); sprintf((char*)0x200000002143, "0x%016llx", (long long)r[0]); memcpy((void*)0x200000002155, ",rootmode=0000000000000000040000,user_id=", 41); sprintf((char*)0x20000000217e, "%020llu", (long long)0); memcpy((void*)0x200000002192, ",group_id=", 10); sprintf((char*)0x20000000219c, "%020llu", (long long)0); syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x200000000000ul, /*type=*/0x200000002100ul, /*flags=*/0ul, /*opts=*/0x200000002140ul); break; case 3: // read$FUSE arguments: [ // fd: fd_fuse (resource) // buf: ptr[out, fuse_in[read_buffer]] { // fuse_in[read_buffer] { // len: len = 0x2020 (4 bytes) // opcode: int32 = 0x0 (4 bytes) // unique: fuse_unique (resource) // uid: uid (resource) // gid: gid (resource) // pid: pid (resource) // padding: int32 = 0x0 (4 bytes) // payload: buffer: (DirOut) // } // } // len: bytesize = 0x2020 (8 bytes) // ] res = syscall(__NR_read, /*fd=*/r[0], /*buf=*/0x2000000041c0ul, /*len=*/0x2020ul); if (res != -1) r[1] = *(uint64_t*)0x2000000041c8; break; case 4: // write$FUSE_INIT arguments: [ // fd: fd_fuse (resource) // arg: ptr[in, fuse_out_t[fuse_unique, fuse_init_out]] { // fuse_out_t[fuse_unique, fuse_init_out] { // len: len = 0x50 (4 bytes) // err: fuse_errors = 0x0 (4 bytes) // unique: fuse_unique (resource) // payload: fuse_init_out { // major: const = 0x7 (4 bytes) // minor: const = 0x27 (4 bytes) // max_readahead: int32 = 0x0 (4 bytes) // flags: fuse_init_flags = 0x801001a (4 bytes) // max_background: int16 = 0x66d (2 bytes) // congestion_threshold: int16 = 0x0 (2 bytes) // max_write: int32 = 0x0 (4 bytes) // time_gran: int32 = 0x0 (4 bytes) // max_pages: const = 0x0 (2 bytes) // map_alignment: const = 0x0 (2 bytes) // flags2: fuse_init_flags2 = 0x40 (4 bytes) // max_stack_depth: int32 = 0x0 (4 bytes) // unused: buffer: {00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00} (length 0x18) // } // } // } // len: bytesize = 0x50 (8 bytes) // ] *(uint32_t*)0x200000000380 = 0x50; *(uint32_t*)0x200000000384 = 0; *(uint64_t*)0x200000000388 = r[1]; *(uint32_t*)0x200000000390 = 7; *(uint32_t*)0x200000000394 = 0x27; *(uint32_t*)0x200000000398 = 0; *(uint32_t*)0x20000000039c = 0x801001a; *(uint16_t*)0x2000000003a0 = 0x66d; *(uint16_t*)0x2000000003a2 = 0; *(uint32_t*)0x2000000003a4 = 0; *(uint32_t*)0x2000000003a8 = 0; *(uint16_t*)0x2000000003ac = 0; *(uint16_t*)0x2000000003ae = 0; *(uint32_t*)0x2000000003b0 = 0x40; *(uint32_t*)0x2000000003b4 = 0; memset((void*)0x2000000003b8, 0, 24); syscall(__NR_write, /*fd=*/r[0], /*arg=*/0x200000000380ul, /*len=*/0x50ul); break; case 5: // syz_fuse_handle_req arguments: [ // fd: fd_fuse (resource) // buf: ptr[in, buffer] { // buffer: {03 68 0f 2a 20 da 68 ab 7a 58 c2 8b 63 5d 19 c3 2b 6e fa bb // 6a e3 b5 ee e5 a7 4d 89 43 c6 13 53 9e 16 6c 8b ae f5 05 00 82 43 43 // a2 f0 50 93 a5 c2 1f 74 6c ae fe 9f 9b cc d8 3c ca 0f c2 8d a2 0e 27 // 06 30 8c 61 39 8d fc e5 f5 4e a9 f2 66 79 1b a2 9a 4c 7d a1 58 63 7d // ef 8b 81 6a a2 96 81 5f f1 3c 06 d6 32 df 45 fe ae c1 fd 27 2e c1 b5 // 10 ea f5 8f e6 b2 6c c3 6d f3 ec c0 f5 b1 f2 58 a1 90 30 4e 25 19 dd // 39 ba 9f ce c1 78 89 26 ce d5 20 2e 3b 1e 3a fa 16 ae 0b 5d 66 dc 05 // b3 6d 3a 00 f7 2e 5f 31 8f 8b df c7 ed dc 94 23 8c 50 03 1d 06 57 a2 // 24 45 ad 0b 3b 90 a8 6b 08 6e ed 83 7a 00 bf 0a 38 88 bf 61 b4 db 57 // d6 d8 d6 b2 86 bb b1 3b a3 b2 46 de f6 0a c3 42 41 eb 84 3f 89 fe 77 // d7 e3 e5 25 73 e9 0d 79 1f 21 d4 a8 df cc 24 ba 95 db 60 e2 13 56 34 // c0 2b d4 b1 45 35 28 5d f4 fb e3 81 ec 03 6d 87 6c 4c 80 57 c7 93 71 // fa 97 17 41 45 90 89 0e 18 2a 7b 9e 0a b9 27 81 20 83 ac f0 d0 4e 04 // c2 0c 05 55 c8 ce ed c5 bc f9 b0 e8 14 be 6e ca 98 ce 7b 2f 9f 17 d0 // 98 be a5 41 b7 5a 16 17 c0 9f a9 99 02 ad 74 68 11 f8 9a 1f c5 e6 a8 // 0d 77 52 82 47 d6 c1 04 39 57 15 d2 c9 f9 10 2f 07 0a 29 5f 20 c4 30 // 7b 9e 84 8d 39 28 b5 09 85 bf a2 48 68 93 13 97 61 92 5b 8f ab 96 d2 // 62 91 24 3d b2 3c 4f d4 d9 68 64 f4 db 86 07 31 a4 e3 e1 0b 52 d8 d0 // 48 7f 5a 85 36 cb 45 07 db dc 11 15 70 ad 03 21 b9 18 ed bc 52 80 7c // 2e 06 76 d3 25 75 53 70 2d 9c 1b d6 74 1e 9c d5 cd eb 3b 8f 63 6b 6e // b0 2a 3b 00 66 d7 f6 77 d5 86 de 50 18 85 00 00 f0 00 ab 39 60 f6 65 // 6f b9 80 39 ce b6 40 0d 02 99 c3 56 fc 22 b7 29 8e d1 57 c6 67 be d5 // 56 3f ac 21 92 a8 ff 77 06 a9 e5 8d 9d 2f 92 63 2d 6b 25 d8 b0 90 64 // 2e 3f 32 3b f7 ff 4d 82 64 61 7a 43 a9 70 99 dd 73 47 fb e3 b1 c4 39 // 73 79 13 f1 7e ff 57 f3 e1 ff 4f da c3 74 fb 55 4e 9a 6a 1f f3 2d aa // 69 50 76 98 d6 60 d8 d5 f5 91 80 1d 8e 4a 93 09 34 2c 3d c8 49 66 db // fc d2 65 28 00 20 0b cb 0d de 9d 45 6b 7a 07 c5 40 9f 4f 53 87 d0 15 // 0d aa 34 db c8 65 c6 10 8d 34 dc c5 1e ed b2 77 e9 63 8b 43 ce 3c 9a // fa c5 d7 aa 0f 85 42 e5 8b 0a 84 63 2a 07 55 7b 04 18 45 d0 01 2c f0 // 16 ef 06 5f 97 66 0b 73 1c e1 b7 94 93 de 71 de f0 47 27 7a 3a e6 d4 // a0 d8 65 91 84 7d 34 75 92 60 39 84 8c 5b af 6e 1b 43 bc 83 05 38 55 // 18 24 23 15 6e 54 ca dc 8c 85 08 92 65 b4 9d a8 53 d1 5e 5a 70 1f ed // f2 bf 79 86 a7 23 ab f7 2e 51 3f a0 5c b1 78 34 5f 2f cc 85 9d f4 9e // 74 c8 cc ef 19 60 00 a0 5c b0 90 f2 29 86 ff b6 f8 f7 4a b4 1d 2d 88 // b6 b5 35 50 7a 23 b0 3d 2f c2 74 3f 6f 69 fb cd 43 b8 ff 52 b1 ba 32 // fa 01 37 d5 42 c5 15 56 9b 7f 48 6f 8f fa 02 ad 1f 54 76 7f 51 70 1e // b4 c1 41 43 77 20 88 4d 52 9a 57 e1 7b c2 83 77 99 12 4f 7f 11 2f 42 // bd 90 f5 b4 35 d7 a5 d7 52 4f 76 67 bb 7a 62 66 26 3e 62 bf 7e bf 68 // 96 88 8d 58 4c 65 a5 30 b7 66 11 1f 07 86 30 d8 62 9f fa 91 ac b5 ed // 02 49 85 49 bd 7e 04 2a ca e0 fa b7 cc b2 32 78 08 8a 36 4b e3 da 96 // 19 d9 1e 10 61 bb aa 9b 33 c3 c5 fb bc bc 72 5c e8 c2 cc 9a b0 f2 b4 // d3 00 78 04 0d 3c a7 9d 3c a0 56 c3 60 38 1e e8 7e 74 3d ea 73 a2 5e // a2 b4 84 3f 9e f2 80 fe b5 07 f9 33 fb 55 6c 71 8d 8b f8 f8 61 8d b7 // 28 05 b6 5d 38 1b 31 9f 65 c7 45 c1 e5 06 0d ae 2f 49 88 52 e7 9a ff // 8d d9 c8 8f d9 39 a3 18 71 a4 30 d3 ba 96 fb 11 8c 79 d1 b0 8a 39 7a // f2 3b 1a 18 8d 18 02 10 6f 58 8c 76 8a 1e 6c 9d 24 4a c9 a3 8d 2a 54 // ed 50 f1 9b 78 bf 25 e0 ae 1f 93 37 ce aa 8f f5 ca 86 40 10 4b 19 bc // d6 43 b5 15 01 d4 e0 3e d5 ff b3 83 e7 ed 0a b7 8d 54 0a e1 0b bd 64 // fb a1 af 59 a4 19 02 15 b7 d1 02 30 99 2b bb 4f f6 18 d8 28 4a 2e 24 // 46 99 05 11 fc 2b ff 07 cc e9 ba 94 a1 1d 3d b0 41 e2 20 e3 d9 31 fd // f1 29 d8 ec 2c 9b 17 d6 58 7a 00 44 c9 e0 9f 52 84 8d b4 3d dc 0d f9 // 45 13 cc 9e 94 e9 d4 27 62 35 02 a9 10 de ea 0f 21 d8 6b 16 36 67 69 // a4 6b f0 d6 d9 fc 0d 2c d6 b9 8e d8 85 e9 e2 d7 65 bd d0 51 19 6b f2 // 0b d2 7c 46 ec 90 27 26 d9 6d e3 52 c3 46 d9 04 fa 00 d6 3b 67 d2 72 // f1 16 dc e4 89 f9 d6 36 ce f6 1b 44 1b 9c 11 3a dd ec 98 3b 8b 2f bd // b2 b3 20 49 e4 36 c9 72 b2 fc f5 14 0d c7 b0 94 c5 04 7c b6 22 6d a7 // 00 b7 2a eb 3f eb df 16 a7 5b 6f 61 a3 11 f6 06 25 1c 99 b3 77 c7 75 // c8 fb 34 46 cc f2 5d c4 cc a2 42 90 b3 93 9f 94 80 19 b0 5c 80 b5 a6 // 38 21 12 f6 3e 09 90 b3 24 c1 6a 08 7c 72 aa ec 08 79 6a fc 76 9f 67 // 8e 36 34 10 0a 5a 9d a8 21 5c b5 d7 a6 a6 b5 0a 81 67 6e f4 ed ca 35 // 59 5b 11 f9 60 6b ef 2f b8 4f e1 f0 a0 70 3c 88 65 79 f0 99 86 08 6f // 0d ca 6e b8 06 1f 9a 74 c7 9c 1f 75 86 84 a7 36 39 74 b1 45 61 b9 d2 // ef da ba 6c 4c d8 cb 70 62 7d a1 e1 95 fc ae 3d 8b 2f a7 51 27 8e 8f // 22 0c 83 e6 77 e1 47 31 ec cd 6f e0 c3 57 b0 11 ed 88 b6 df 0c 26 6b // 38 3f 22 4b 8e 95 38 4e 40 1b 71 70 30 b1 22 75 82 d0 d1 04 2b d9 03 // 77 c4 f2 c7 20 6a 19 98 3f c5 90 5e 4e b8 7e db 65 32 b2 6c a9 e2 8e // 16 02 02 60 6d 19 d9 f5 da 34 76 2f 4b 3f a8 42 d7 bf f3 82 ad 70 dc // bc 41 1f 8b 3e 4c ac e8 c8 e0 c7 28 98 d2 40 23 54 5e 0d fd c4 17 62 // 09 27 6a 53 54 91 ce 11 c0 45 c5 7b 45 c4 0f 19 b1 2d cf 6f fb f7 8a // b2 3e 7f e9 bd c4 04 cf 47 db 98 55 f2 b8 35 e1 fc e5 7d eb fa 07 18 // 03 ec 38 da 3c 77 a9 04 08 0a 4c 73 7c e2 b2 0e 14 e8 44 97 62 f1 ca // 0b 1c e7 17 79 d2 e6 ee 52 99 e1 cf 23 0e 80 70 04 5c 23 c1 d0 e5 2f // 66 fe 90 39 f9 5c dc 0b 44 8d c1 2d 24 de 39 15 79 34 27 03 45 99 19 // 48 fc e9 21 b5 d8 e7 39 31 5c c7 5d 4b 3b 49 92 84 37 b8 86 72 c1 a7 // 77 03 65 20 7b 43 89 5f 45 90 9d 5d 97 2f 48 aa 66 de 60 91 52 a5 af // a2 c7 d7 5f 0a 14 18 9d 04 09 f0 b6 23 ea b3 b6 e7 d8 10 25 cd e1 40 // 89 3e d7 1b 6f 24 f5 a3 6d 21 da fb 62 af 6b e9 da 84 54 03 bc 8e d3 // 66 72 ef a7 4d 7d a1 9d 57 94 cb 4b 79 fa 1c 86 94 0b 18 90 c0 12 e1 // 4b 7c 3b b2 61 f1 6b dd 99 ef aa 98 19 b0 bc 00 af 84 2a 6b 94 c6 08 // 6d 15 b1 6a b8 1a f9 33 1b a3 a5 bd 69 41 ef 35 23 9e 85 45 5c ea b0 // 2c 59 8c ce e8 fb ad 97 ed 37 da eb fe 3b 26 a5 a6 c9 ed a5 f6 5a 1c // fa f7 a1 f1 68 82 67 c8 12 a5 6c 55 2a e1 1b 46 5d ac 03 0e 18 f9 00 // 8a d0 3c ad 80 bf 2c b9 1a 7d 99 dc fa 54 d3 23 ae 0a 4c 3a 6d c0 f8 // 0d 7f f7 03 87 06 10 a9 45 eb 0a b5 b6 d1 4e 81 86 9c 88 72 f6 b1 23 // d9 8e dc f6 bb a1 0d 76 d3 5c ff 4b 0b b7 3d b8 b6 69 5a 83 51 78 5b // cb a1 e1 60 a4 2e d3 67 c4 da 72 7d a3 8f 91 56 2e 94 1e 5c 4f a9 0c // d5 85 c5 f1 cd 3a 7d 68 92 f1 8a 5a a3 c7 4a 4f c0 0b f5 90 92 67 48 // 9b 93 7a 92 8d 9d 8f f9 25 30 b5 22 6e ed f8 ab 9a 95 7e 5f fe c4 5b // c3 a5 5e 69 55 b3 83 93 ce 52 89 26 55 26 5d 1f 74 1e 0b 74 48 08 eb // 56 8a 08 d1 45 a8 bc 5a da 9b 07 9f 6d 0b ec 5f c2 ac e0 50 2b 3f 92 // 63 72 df f4 94 78 fb d1 04 51 f0 de 4b 3d 1a 63 b9 d4 e1 7a de 45 62 // 8d 2e 9d ca 04 1f cf 7f c1 e1 05 e1 fc 44 08 9f de 9c af 41 8b a8 45 // 4d c3 61 df 4a 59 e1 bd 79 14 3d 28 06 13 e3 c7 9a d1 8e 92 2a 43 e1 // 99 aa 59 27 bb 95 53 dd 31 e6 22 3a d1 9b f8 af f6 e1 da c8 b3 68 0f // ee a3 13 8b c6 17 42 b0 3f 04 7b 3d 77 03 9c 1a 4c 2d 05 bd 89 c4 bc // 12 a1 b8 3d 78 b4 e7 02 3f 69 0f ce 6a 44 60 8c 42 3d 8c bc 2e 80 94 // 2b 9d 9d f2 f4 bf 56 06 64 0f a4 76 92 f3 e0 03 88 59 83 a7 3e 1d c3 // 13 b2 43 bb ab 5c 3c 63 48 af ab 79 6d a7 66 04 4b a1 42 ed a5 a9 d3 // 71 3e 3e da 8c 54 c1 70 89 09 c5 da 89 ba 67 d2 9c d7 f4 09 c9 b7 59 // cb a3 16 c4 20 28 75 4e 3c b6 ea e2 cc 4f 6d 66 98 2f 21 23 20 f1 99 // b2 e8 37 bb 4c 54 c5 4b cd cd 2a c2 40 ef 62 95 d3 8e 98 89 b4 21 38 // 19 ef 0f 9a ba 6c ee ad 4e 0f d2 c4 be cd c1 f8 ee 30 49 83 19 96 c9 // a7 4a 5f d4 e1 2a 1f d2 1e d4 7c f2 7e 29 f9 d6 1e 4b 67 3d 88 91 4c // 36 ee fa 53 d3 c4 9d 94 b4 63 b7 f8 46 2c 19 51 df e3 3c 10 99 3d 5c // fc d0 ed ed d5 0a d5 50 09 52 8f 1e 79 fb c2 fa 70 c3 33 8b 32 c4 0a // e3 bb 45 d7 07 9c 7a e8 43 3f b1 aa 19 af fb d3 fb ce 0c b5 ab 0d 55 // 7a fb 3b e0 36 85 60 66 ee a4 5c 28 e9 35 28 b3 54 77 fc 97 fe 9f f3 // 64 1e 5b b0 f0 e4 60 69 eb 65 3c 02 7d aa bf f3 85 41 25 00 81 c7 7e // 0e 3a 1d 03 0a 73 28 9e 77 1c c4 1d b1 08 be af 60 59 9b 5d f0 ad 97 // 8f cf 0b 46 af 82 1c 6b 71 7b 26 5e 07 d3 a8 53 97 ea 94 de 26 f5 10 // 29 0d db 5d f8 fc ff 76 fe 62 48 43 c8 57 78 02 80 9c 14 59 16 af ce // 01 d9 df df a8 bf 07 63 3e 98 f1 4f c7 3d 5e f5 8a e5 cb 0c 30 8b c7 // 4c a3 82 59 69 2a 1c d4 cf 16 75 27 86 a1 c8 16 f2 46 12 c2 73 93 d7 // e4 0a 2d f9 a3 df a2 3a 0c 59 61 3c 8a 7c cd d9 7c 3f c6 7e ca b9 4d // cd 8c c4 b4 51 7e d2 41 4d 41 ce 57 40 74 ff eb d1 56 e3 d6 5c 44 21 // b0 f3 39 bc 9f 29 ab bf e4 9d b6 21 22 24 8c f9 6b 74 d9 63 9b 3e f9 // d9 35 cd 81 31 5a 7e cf b0 dc 6e a1 ee 05 3c 2e 5c 36 15 fb c1 07 82 // f1 6a 56 4f ca be 1d f7 0d a7 de 98 9e 00 ee dc 34 6c ef 5b 5c f8 80 // e9 d5 63 fc 15 30 2f 05 6d 37 f9 8a 93 9f d1 dd 54 78 b4 31 8c 25 6e // 93 b7 7e 31 f8 7d 8f 7f e3 17 55 19 1b 40 d7 78 dd b2 ad a1 48 0b b9 // fc b9 6a 09 78 3f 13 cd 46 0e e2 c9 cf 4a 71 2f 04 eb 1b 1a 74 60 91 // 10 9f 7c e0 65 5e 1f f7 78 1f be 85 3e 3d 03 bb 91 c9 d8 f4 f4 16 f5 // 74 5c 6b 60 7b bf 72 78 6b d3 c0 ac 47 61 e6 e6 d7 0f 12 db ef a1 b1 // 35 42 08 6f 79 3b 72 c6 10 2a c0 6e 75 be 17 bd bb 1e fb f7 e0 07 f0 // 7f 9b d4 33 fd 9d 9c bf 93 e7 60 75 7b 79 2f 15 23 18 95 56 1f e4 9d // 9d 68 3c cc 06 6f 38 af 58 14 22 b7 17 02 62 71 62 c0 f0 f3 5c 36 a6 // 1e aa a9 21 29 11 4b 73 34 28 1e 35 fd 39 57 6e 51 d8 59 3c 14 9c 93 // 26 e0 c7 10 ea 4d cc 9e f3 9a 43 2a 48 ae 18 34 f5 04 6b 95 4f 9c 03 // 3d 60 35 cd e0 db ff e3 e9 7f 48 a1 dc 69 5f 4b 2f 6f e5 d4 ee e8 30 // 08 31 8d ef 10 5c 37 e1 1c 90 15 67 0f 13 41 7e d0 36 e6 8f 6f bf ca // 2a 82 89 82 96 77 fe b2 30 79 f3 f2 ee 53 b2 6e 49 19 24 fe fc 1c 50 // e5 4f 28 8a 8c 4b 6b a6 d3 19 05 4c 3a 9e 39 e1 4b ba 81 b4 23 ac bd // 44 b5 12 79 bb ea 6b 0b b2 04 73 25 83 7c e8 b2 19 14 54 f5 2f fa 2c // d0 4a be 89 e3 de 5b c1 02 e9 fd f7 40 d3 ef d9 75 bc 95 03 af 79 6e // 6a ee e7 11 ef 87 97 de 5d 50 7a 96 47 30 aa 70 cb 9d 38 40 05 4d 4e // 1f fc 57 de 37 8b 51 1f 76 49 66 6a 54 a6 b3 d9 1e d5 17 19 8d 76 32 // 2b f9 9d 13 be f5 30 a4 3e d3 f1 31 96 bf 2d ef 6d cf b3 9f 76 47 1c // 75 c5 77 9b ed f1 05 71 7e 54 60 57 fb 47 8b fd 24 e8 fd f3 c1 2d 02 // 8b 54 2d 1f 42 4a 9d 45 bb 9e 02 6e 60 98 eb 1c b0 a7 73 78 30 0e c1 // b4 c9 f0 06 aa 4d fb 7f b5 c5 7c f1 b0 35 cb e9 60 09 ea d1 ca 25 ea // 1e 5f ae 40 31 2a 4e 9f e2 50 68 4a 1c 86 53 bb 30 32 09 e0 fc 6a 49 // 8f 3a 08 f6 c5 b9 46 37 8a 34 9f 3a ea 45 10 4a 2b ad b8 a4 5f 50 0b // b4 f0 f6 cd 62 0c e7 94 e0 f3 90 e1 cb 7f 2f 1f c0 03 9f 42 50 a5 77 // 54 4a 68 62 b4 7b f8 9e ea 3a 8c 15 16 b7 a9 dd 11 1c 2c a7 19 19 0e // 8f eb 1a 70 79 e9 fd fd b8 22 4d c5 07 91 c9 86 82 54 69 c0 87 c8 f0 // 81 61 6e da a4 19 3e 16 12 81 aa 68 b7 28 6a 36 4c bb 33 6b 24 59 f0 // 89 2e 57 c4 0a fc fd a7 d1 6e a1 87 7e fb 4e 4b 0d 4b 5c 31 e8 cb a1 // 50 66 90 3d 3a 91 bd c7 fb 64 45 2f b9 84 34 36 11 05 96 f0 b0 38 da // 16 7a 86 f9 7d 32 c8 07 27 0a 1c 99 4f e8 8e 25 17 e1 1b dd 21 0d d9 // 82 d3 c8 15 84 59 44 01 08 30 8a 93 6c 9d 23 70 b9 d1 57 c3 f9 ca ec // 36 ff 05 bc 40 b3 7f 09 5e df 33 bf 4f ad 44 0f 38 c3 f5 21 29 45 69 // 36 c0 70 14 14 0b e5 61 8f 4e 9d 07 b6 66 79 23 80 23 39 0c d6 76 b1 // a3 a2 8d 0e 90 d5 ad 9e f1 3a 31 fc dc 5a 43 54 54 30 93 67 c4 37 42 // 4e 34 0a 1f 91 c6 48 3b ce 10 26 d8 5a 16 fb 85 42 52 ea 4e de 39 a4 // e6 97 02 ec ff 76 43 2d e5 08 e0 64 ed a0 df 9f 26 3a 25 c0 f6 26 d1 // c1 ff aa 67 83 be 29 75 45 1e e9 36 cc 21 78 64 89 35 a9 24 f6 fb 2d // b2 f8 ba 34 e3 48 92 0d 90 31 14 52 09 18 cc 68 72 b8 42 e3 74 4f c1 // 8d 13 63 58 3a 10 7e c7 b8 9c 77 92 c0 d8 06 9e 12 f8 73 f6 d6 68 f6 // fd eb 47 b7 29 86 91 4e 45 c2 b0 61 c5 c9 36 c7 3c 9b cf 14 75 ea 0d // 25 ed aa d2 1c f1 93 40 5c 8a ce f3 bf f4 e4 f1 b2 b3 21 d7 0d ba 59 // e8 56 a8 84 9c 2b ba 95 08 ba d7 75 37 06 69 b2 bb 7f 5e 53 18 1a f8 // bf f5 25 e1 3a 49 35 d7 e2 8b 99 7b 4f f1 5d a9 e3 6f 13 53 a1 54 ab // 70 1a d1 54 20 78 6d aa f2 7b a7 e1 22 f7 b8 25 c6 68 18 5b 68 56 30 // 42 03 78 b4 14 2e c4 e4 24 2c 2c f0 bf 6e 14 3f 7e 55 cb 12 fb 9d d5 // 9a 8d f9 95 9c e4 fc 5f ff 68 ae 71 74 97 7a 31 ad 7f d6 44 bc 94 a2 // 0b ae 76 f0 af 47 40 34 99 0f df ec 8c ec a0 e6 cd 93 fe 21 d8 48 37 // b7 e9 d7 4c 17 b6 d3 05 4f 0c 00 8e e0 57 64 74 5f d8 77 3a 0c 1c 31 // bb 3e ef 5b 7e 26 1b 54 80 5b 5c 80 5a 4e ee f0 5c 81 2f cd ed e2 00 // 44 2e 73 40 c6 34 90 64 5e bd 09 c2 35 d5 c5 2a 78 55 42 52 6e df e3 // 87 5a d0 82 67 fa ed 1d 0a 15 23 6f 00 c6 73 6b 94 c1 a3 82 13 02 ff // 61 06 97 ad 7b ec db c9 6f 54 b5 51 38 b5 85 cd 12 2e 0d 5a ea f4 3c // 9b a3 73 e8 aa 1c 12 97 e3 41 55 52 cc 57 cd 60 ee 1f 3c 04 50 0e d0 // ee d3 77 75 c8 73 de 30 66 c0 34 c1 76 c6 7c 5b fb e9 89 9a 47 73 20 // 30 85 57 81 34 13 74 64 1d a0 58 ee e6 1d 01 d1 1b 9d b8 f1 9f d4 55 // 89 57 89 73 40 e3 2c df bc 39 71 3f 1f 43 9b e0 63 8f 61 4c db 53 61 // 43 3a 45 a6 ff 02 4e 39 c9 41 41 dc 54 03 af 10 14 04 ce 5f 2e fa 97 // b9 0d 9e cd b7 c3 61 78 5d ab 97 7f ed ed 32 55 4d 1a 74 d5 cb fe 24 // 35 be 7f 03 29 ba 38 24 55 c2 ac 11 fb e2 9f e3 82 67 96 d4 be a0 3d // c5 3a 37 f6 3f 5b e2 77 3f 83 fa f2 82 f0 ae 24 d9 fe 57 62 b7 1b 49 // 9f d3 7b 4c e7 e7 1f 93 c3 a9 83 f8 0f ed 47 77 08 bb f2 26 1c 89 89 // 3c 4b 76 e3 4f ac 9b 42 67 1b 6c c8 16 78 cc 86 7f 53 e8 c3 ec 47 71 // 62 06 21 27 43 ca 0c 49 41 c2 c6 1e d3 17 7f cc f8 59 21 e9 98 d2 b8 // 26 df 75 11 73 94 4b b0 7e ea ae 40 01 f6 77 a0 68 7a 25 50 ee ac 8b // b5 12 8e ca d9 c7 b6 a5 14 59 6a 30 b8 29 2f ba cc 09 ab 48 81 93 50 // 7b 67 85 d7 a3 5c 97 9d b7 74 b2 c4 13 24 6f 1a e8 8d 35 d1 91 4b 20 // b8 fb 50 10 34 32 16 42 fb 0b 0b ab a3 37 8e 4c 31 fb 5e 24 7c 17 7e // 57 32 95 df 01 94 46 2b 99 07 9a 43 64 00 ba 1b e2 e3 0d 39 b8 71 4c // 0f b2 bd cd 98 1d 5a 5c d5 14 f8 d4 f1 4e 4e 04 37 10 86 30 35 5d 8f // 2b 60 a6 d1 8c b1 4c eb 2b 5d 07 04 aa 6e 93 e1 80 bd 79 cb 17 e1 76 // bc 4f 81 a0 3d b1 2a 03 41 3d e6 18 98 96 95 5b b9 e3 cc 69 b6 f9 a5 // 0a 7e da 37 42 52 7f 98 c7 1d 7e a8 ba 75 e2 53 c2 b7 83 f7 10 48 13 // c6 19 94 9e 6a 07 65 17 9b 1b 9c be 68 b7 03 33 5a b5 98 69 28 d8 63 // 84 35 7a 2f 41 89 f4 b4 ff cd 61 a3 d2 97 09 bb c9 3b 53 71 f0 e7 79 // 8c b7 2a e4 c1 7b ce e2 4f 8e 56 6f 27 77 80 3c 3d 18 2d 15 a6 3a c4 // 00 63 f0 cc df 4b d7 90 40 45 24 ea e0 2e af b6 b5 4c 69 95 78 48 64 // 90 03 3f 0b e8 66 c7 4a 13 40 83 00 3d 33 04 98 65 8b a9 73 ea 67 4c // 4a 0f f1 58 40 39 87 b4 c4 75 2b 07 c8 63 7a 11 9b 01 9f d5 09 34 06 // 96 01 44 44 50 56 f6 ff e7 3e da 02 35 dc 18 71 bb 60 58 d4 a9 fe ec // ac 62 82 65 68 9d 58 a8 14 53 d3 32 90 ab 56 eb 69 1f 31 80 d0 28 84 // 49 f4 18 44 e5 6f 5c 6c f5 22 d4 a5 86 6b 24 fb 95 52 fd e7 19 46 c4 // d2 5d cc ea a4 1c fd db 5a 33 c5 1c 54 c0 a0 a5 ab d3 1b e8 fb 6e c5 // 3c 1d 14 ba 64 8e 18 39 79 db d0 db 01 b9 e5 1b a3 80 3b e7 e7 d3 de // e7 52 66 83 67 26 4c 78 3f 74 83 81 21 79 7a e5 70 6e f3 aa 46 06 82 // d1 bf 55 80 8c 70 e6 9a e2 9d 76 83 36 84 70 d0 8e 7e 9a 10 95 30 5d // ce 25 0b 5b 4b d4 8c 02 e0 98 d2 41 b1 08 97 36 e8 30 6a 73 7e 3a 1a // 93 e5 54 cc 3a b2 46 72 b8 c7 4b fb 88 25 00 4c a8 69 e3 47 f8 73 de // 14 57 54 93 83 66 62 ad 74 1d 79 26 99 04 f9 05 d7 df 64 d0 58 1a b8 // d7 6e e5 1a 32 d7 2c cb 71 9f 3a 25 c0 a8 56 b5 bd 2b 2a 12 69 e2 08 // d7 0c 32 e1 d5 ad 0d fd c0 ef 43 f0 23 0e 95 eb 85 87 1e b4 d6 03 3a // bb f0 be 70 25 38 2d 87 8e ea ee a7 3c 94 27 0e 79 bd 57 57 dc 1b ac // 95 23 6a 62 54 5c d4 67 83 0b 12 dc c3 0d 7c c8 1e 88 9d 36 0d 07 3d // b4 00 58 e9 a1 c7 b4 1f c5 3e 67 74 0b c9 84 13 2a 14 52 cf 7d 00 03 // 78 f1 4e f9 3a 7e b0 dc 9b ac f2 35 84 ad 67 61 13 95 76 60 7f 82 14 // 75 7f 71 fc 47 b2 94 41 27 11 6c a3 e8 3b 9d 96 43 bc e8 d7 bb 44 b4 // d1 6b 5d 5c ff 70 a9 e1 11 4c d9 20 b6 fc 1f 40 96 72 64 8a d5 6a c3 // 13 6e f0 a3 14 ad b4 58 fa f3 d3 f1 71 cb 2f c5 13 d7 6e 43 e6 bd a2 // f1 a6 8e 6f cf 4a 4e cb e6 bc 87 71 6e 2a 82 ea 0c 46 57 98 3c a0 ca // af 8d 75 fd f5 b0 d7 93 0e 4f 3e 95 eb 12 71 48 5f 93 8e 7a d2 bf 0c // 97 b7 c1 17 45 de 45 51 8a 1e 3a 74 34 19 68 58 85 58 e7 19 7b 40 7d // 24 ed a0 67 1e e2 8f 21 9e 4c 5f 80 9a 7e a6 f9 f5 b9 70 5f 46 34 a9 // 61 12 eb 26 2b d5 96 7d b5 23 72 85 b8 65 d3 f6 45 16 49 5e a6 d1 ec // 20 db ed 7a f0 23 62 37 0b cc 98 67 1a 61 24 1f a1 ef 5b 30 95 60 9d // 66 ec c1 60 10 f6 f6 7a 28 0d 1c 6d 21 5e c2 24 ea d1 7d 68 bb c9 bc // 64 b3 63 b5 be 9b 47 9b 7a a2 cb c8 58 7a 6b 48 cf 65 3f de 7a 26 2a // 11 ab 3a 10 35 6f 55 f1 22 31 0f ea c7 7c 32 ce 09 94 d6 e8 a7 0f 1c // 53 33 1c b4 73 a8 e2 94 27 32 2f b6 da 29 2c 44 43 b1 67 88 77 f1 c9 // 81 fa 05 fb de f9 65 20 e5 89 5a eb 2a 3a 8e 62 65 2f 9d 88 30 c3 b1 // 44 b9 59 88 73 e2 ef 41 b7 ad e9 43 80 77 66 87 7d 60 99 72 cc a7 48 // 55 ea ed ce 07 cd a3 5b 50 55 7d e9 6e 73 6c a3 10 7c 15 4d 31 ae ee // 78 db 23 46 87 b9 96 45 17 bc d2 c6 c9 ec 04 75 14 b4 5c 83 1a ee 45 // 88 16 6d c3 ec 9a b3 6b d1 03 3e 74 b3 d0 2d 73 1c 5b d8 4f 65 9f a9 // fe 55 ca c0 8c 12 cb 99 9a 2e 64 fa c5 2f 6c b7 d1 ff fb f4 5d 9a 11 // 26 78 7d 00 60 fd 1b e5 63 cc bc 27 8a c9 7d ab 0c 1b ee 66 46 75 f2 // 73 f5 fa 42 9b dc 24 b2 1f f1 cf 0a 3a d3 c6 87 fb 07 ff d8 8b ad 6a // b6 c6 b4 22 a4 3b 77 ff 76 f9 6b f4 05 c0 7f 8a 66 7b b8 ff 54 d6 71 // 4a aa 21 ce ba 2e 78 ce 03 14 6b 2a b9 f4 9e 6d 65 08 11 19 b8 e7 cf // 38 43 e9 13 49 79 0d 2b 97 5c 9f 9c 30 5d f0 ab 4f 2b 1b 2f 30 f6 29 // 31 3c c6 6a 32 5e 40 37 f3 8f 29 84 2e e5 78 1b a7 3d 2f 30 f5 06 cf // 7f f2 23 7a 72 b4 07 5a ef a3 2c dd 5b a0 ae 4e 65 cb 6f a4 7a 3e 06 // f0 d5 f6 84 b7 17 2d 6b 58 f5 f7 d7 83 c4 12 2d b4 f4 b8 b4 f9 d3 29 // 6c 9d 11 5f 43 27 10 c2 9d 40 df ca 00 10 ec be 2f 42 fa c8 99 91 1d // 65 c8 4f 08 aa a1 92 3c 8a dd 5a f5 18 28 62 11 db 14 e1 18 7a 88 39 // f3 b2 ae 8b d9 14 ea fc 16 a5 76 bb e3 eb a6 27 1a 4c 5b 31 70 c3 f5 // 43 76 1f 11 f1 32 6a 05 c5 75 bd e1 b5 c6 af d3 87 6b ea 4f bb 64 90 // 71 a9 5c af 74 de 9f 7b 34 21 80 3e c3 51 f9 34 b8 d0 93 2c e7 2a 13 // ab f3 62 7d 9a 39 6c 10 87 5f c1 67 ef 1a e9 8f f9 2a f9 ca 36 60 33 // c9 9d 30 30 6f d5 40 a0 9d 67 d2 6a b1 92 50 4e 7c 09 f9 e4 d0 62 87 // a2 b1 74 8f 17 61 ba 3c 16 d9 d0 8b e7 56 2b 73 51 c4 b4 67 9f 5d 4b // 38 68 1b fd 86 c7 f2 00 3a 97 49 b2 0b 60 21 12 a9 58 03 46 9f 5d 25 // 2c 56 49 12 b5 5c 4b f3 40 92 98 db d0 66 d8 77 cc 70 a8 9b 48 4b 9e // e6 bb 83 6c 9a cd 1e 53 08 6c 4b e8 5e 9a 3b c5 96 9c 70 16 db 9c 72 // b6 86 20 c2 41 40 9d 06 f4 d7 f7 2f e2 28 9c 9b 49 21 05 59 22 78 3b // 8b 88 6b c2 29 26 b7 d1 94 82 0a f2 b9 0e 3c 60 e8 7e 1a 78 51 f3 8a // 97 0c 07 c1 da 12 0d 1d a7 5d e2 bb 99 4f f7 d0 5a 31 35 22 37 33 26 // f1 60 91 4a 95 89 71 1e 04 39 d6 94 f5 22 1a fe 8c c1 18 72 2c e4 92 // 7e 95 43 e6 1a 12 a7 6b cf 2d a1 d0 1a 0f 25 80 95 d3 20 63 38 73 49 // b4 e9 f2 53 d8 b7 3c 6e 83 4b 68 66 f8 a5 6b 47 97 b9 2d 52 1f a7 32 // aa 0d 55 c8 e9 d6 c5 60 11 ee 6f b4 50 85 3d c5 64 d1 8e 97 c4 63 60 // 9c 27 a6 3f 9c 91 c4 6d 7b d8 0a ce 4e dc 06 15 ca 34 2f 43 ca 3b 3d // 0c c3 6e d5 2b 7d 1f 45 7e 5b 4b 26 b5 ec a0 d9 1a be 4f 1a 42 a2 ee // c4 0e c2 fa ff 12 22 f7 1d c2 26 d6 34 4e 94 7b 45 15 56 91 20 5c 09 // 91 3f c3 c6 ab 3f e7 6f 4d 1b 11 fa 45 86 9e 20 69 4b 5f 0a 10 74 78 // 0a 07 33 27 64 21 25 33 b7 97 dd 24 d8 df 15 7d 41 72 f9 12 53 b7 7e // b2 ec 90 c8 22 23 07 ed 59 13 64 63 05 7b 7f 46 91 16 08 64 10 b7 50 // 3b 44 ce f4 01 c4 78 11 c1 39 00 60 da 5b 33 21 d3 40 96 b6 74 68 a7 // 70 29 78 d9 8d 4b d7 21 c1 8a 25 ed 54 12 49 63 8e 90 28 1d c8 e3 56 // 5d c3 3e 66 d7 b8 32 a9 bd 62 c0 2c 5e d0 e9 29 35 c9 24 72 49 96 53 // d2 d8 42 ea 66 97 c7 33 ee 80 d7 75 88 40 74 b3 a0 c2 50 a4 aa 02 1b // b6 ea 93 51 4f 9c c5 f0 9f eb 57 19 d2 70 cd 18 4e 36 4c a9 66 f1 41 // 6e 10 f1 11 bc 42 5f 32 a9 93 fc 5c d7 55 03 f9 9d 89 d9 1d 7d dc 6d // ee 70 19 30 57 cb 94 6e 5f bf 86 63 c5 3e 12 ce bf fe 5d bd 4a 86 bf // cf 5f 35 f0 d8 aa 43 76 3a 60 e0 03 56 b4 f8 bc 2b ca 01 b0 2c fd dd // e3 8f 0c 4d f1 e7 f9 87 09 fd eb c5 ab b5 eb 96 31 bd c3 db fc f1 55 // 17 fa bc f1 69 31 eb 73 81 e8 37 13 b0 81 ad 19 47 27 4d 48 96 ee 89 // 53 d7 72 e9 e7 1f 36 3b 6f 11 47 31 7b c7 39 ec 12 8e 4e c8 65 f8 f0 // ea 34 cd 5f f1 9f b2 c2 89 31 d2 c8 58 46 73 53 58 50 4a e9 16 15 35 // cd 78 90 e8 b9 5c 81 4c fe c1 16 b7 8e 6d 0e b5 09 7c d4 f3 58 88 12 // 14 52 e2 73 91 d8 65 c1 5f 0b 98 69 25 d0 d0 c6 23 bc bb 4d 8c a6 66 // 03 72 02 53 af 17 85 39 67 ea 59 54 eb 5e f0 dc 43 de 18 5e c4 92 50 // 26 c6 80 46 4e 66 d1 ca ff 1f 4c 7c 75 7b d5 5e c2 51 5f fe 71 83 e3 // 48 1f f6 f6 26 c2 22 8a 3f c3 d1 5f 63 e4 bf be c7 6a 2a 17 02 06 14 // 2c bb cf 20 4a 1c bf e0 ee 56 eb 47 df b7 9c 80 89 4c 0a 0f bf 8a 29 // 55 d8 61 67 8f c2 f8 f9 ad 7a 28 05 21 97 b5 99 2b ce d1 27 36 58 da // 5b 1f 42 fc a4 8c 80 88 36 00 c2 4d 85 15 a0 c7 11 3d eb 4c 97 df 91 // 8a b6 4b ca 16 a0 c1 4f 25 47 dc 91 d5 ce 4f 88 49 78 c9 5f e5 48 99 // f7 7f fc 20 a2 c4 b2 73 50 bc 45 1b ef 72 a4 6d 8e 14 4a d5 7a 8d 5f // 8a c0 39 f5 8b 8a 53 ea 1f 3f d5 fc e6 12 a1 71 bf 82 ba 17 c0 68 1c // f4 6c e5 c8 18 1a 52 2e d2 e9 86 36 19 03 90 31 59 64 30 46 c7 be 17 // 87 da c6 cc ab 09 d1 8a 30 99 75 41 dc 6e 9e fa 26 0f 1f f0 39 2b c1 // 89 0f 19 d8 bb 72 5f 4f e7 d8 bc 61 8f 46 e0 c2 3b e6 b9 ca 67 77 7d // d3 f5 a8 9b 41 cc fb 11 a5 26 a3 be d0 45 a2 90 6f 86 cc 51 86 a1 db // 7a 70 39 12 61 b6 94 b4 23 e5 a4 4d 37 4f 9d 37 20 33 0e 08 35 74 08 // 3f 89 50 b2 b3 5c 8b b5 b6 c0 a7 fe 25 9f 23 5d c1 c0 69 d4 58 1a 9f // 0a 74 51 89 05 61 a0 82 9b b2 90 de 6a ef e4 d2 43 ae 0b 00 ca 61 a1 // dc 42 62 bb 49 51 24 2b 21 d8 81 48 eb 7b 6a 97 18 d6 43 32 74 f2 b3 // c9 bc db b6 d5 df 67 b4 8f f4 26 92 d8 cd 7f 4b 7f 41 72 8d e6 8e a1 // ce 0f 3e 4a 28 43 c5 b9 ff c4 3f 69 b8 a0 44 5d ce 44 08 1f 5b 44 3a // 32 70 84 b0 d0 0d 07 cb db bf d2 da 5d 67 bf 8d 4b b4 ee 40 8d 17 ee // ee 48 b6 1d ec d0 6b d3 da c9 a1 ad be b0 69 b4 9e c9 66 08 b9 17 9b // b3 af 4c 10 f2 ad e6 77 8b 31 fd 4c 22 c2 96 1c b9 49 a6 4e 9a 8a 48 // 79 c5 50 f8 d8 78 30 64 cb 30 45 11 e4 0e 2e 56 2b a8 3c 08 ba 8a e0 // 11 a7 84 ed 9d b0 3d b5 52 7a 5a ae 22 2c 85 6c 8d f0 a9 4f 9c 4d ef // 0f 94 24 4c 5b 8e 3d b9 f3 9d bd 33 79 28 e2 4d 9d 85 62 f2 31 fe a7 // 21 16 c0 10 89 16 3d 2c 5f 4c a1 7f aa b2 0b 73 c9 95 7f a1 a9 af 20 // 83 7a 80 48 70 03 4d 4e 64 28 11 25 b0 70 d8 ee 0d bf 05 f9 5e 5f b0 // 79 e2 a5 7e 9a f9 77 22 2e 90 b6 64 18 91 14 dc cb ca 81 ee 58 b7 de // 90 a8 13 76 8a 20 49 05 2b 33 9a 60 8d 3e 99 66 bd b3 b5 84 29 1f bf // 76 94 a7 d1 de a7 f7 2c a6 04 89 4e 6c ca 5d 32 6e d5 e4 8c 15 ef f5 // e6 a8 cc 11 c4 0f 84 ca 92 0d 79 a5 c5 5d 07 00 19 09 bf 63 38 92 1c // 65 6a 39 d5 9d 03 f6 2b b5 b8 87 01 89 f0 41 6e c8 c3 17 b0 3c cd cb // be b3 e1 a9 bf 26 61 81 3f 49 66 b5 7e b5 6a 27 57 de 5f 77 45 85 1b // 5f 7b f7 5e 41 eb 16 46 e6 1a 41 92 3c 5c 0e 58 c2 ea 47 8d 95 b5 c3 // 9c 45 07 44 ae a0 aa d3 70 6f ce 68 4c b7 33 8f f3 da ca b6 0e 8d 96 // 8f 0e 6f c0 70 69 3a e3 ca 16 99 6b 34 a5 0a fb 7e 6e 37 75 46 ae 28 // dc 8d e7 a2 ea 3a 65 7b 4b 00 03 a9 1a 48 8e 34 7c 61 97 1d 62 f3 2e // af 84 3d 4d 4c 4f 86 cc 40 33 c1 24 4c 84 08 de f0 91 88 dd e5 09 c6 // 29 32 3f 34 07 2f 90 89 a3 84 66 80 89 4e 8b 00 0a 03 86 54 38 b2 ea // 21 2b 68 fd ef 7f 17 58 3f 92 01 4e ef 2c 81 15 a3 7c 9c 82 de e0 62 // 13 c1 40 7c 14 33 69 0f 68 cd c8 e9 19 71 10 40 39 df e0 67 74 b9 46 // f4 3b 68 b7 95 7a 5c a3 ee 76 3e af bb 74 37 85 0e b0 a2 85 c4 13 bc // f6 96 52 32 d5 93 d8 da 47 a2 a0 6a bc 63 5a e3 8e 59 6a 9d ae 55 b4 // 3f 34 1b cc 6f e7 2d 79 b4 53 ac 1c 25 9d a3 7f 64 cb c1 f1 50 8c af // 28 0a a6 a3 f4 cd 2f f5 56 4c c5 a8 72 7f 22 24 31 45 4a 5a c9 33 98 // a2 9f b9 5b 4e 05 76 86 cd 6f cd 92 09 92 f7 4e 58 70 74 96 76 a3 6e // 04 3b ec 5f c1 b0 fc e5 56 3a ff e9 ad df aa 36 89 e8 57 38 3c cd 1f // 29 24 08 04 49 d2 cf b0 06 e8 55 57 0b 71 1c 1d ed d1 df 26 29 af aa // 38 06 f4 ae 22 9a 9a 8e f1 94 0d df 2c 55 da c7 81 2d 23 74 c0 68 4b // 7b a2 7b 2f 08 49 ee 4c 05 5d 2b 8c cc 8e 41 c5 93 37 83 40 d7 54 6b // b9 74 bc 80 32 f2 20 b3 70 99 e3 b0 4c 65 91 c4 0d 2c 50 a8 55 a4 91 // e0 3c 1c 9c bb 32 c4 00 f6 10 43 41 26 2d 92 da af 3e 2c 04 93 6c f2 // 87 88 fd ff 8e 0a 77 77 0a 9d eb 90 89 a9 e3 2e b5 d9 e2 58 1a ec d9 // 8f 83 88 1c a8 e7 d4 9e 60 35 56 dc 03 a9 aa 19 a8 f3 a4 73 5a ae e3 // 47 b2 5e a3 5b 36 fa 57 48 4c 0b 6d 59 19 79 b4 a3 da 89 4f a0 c1 59 // 66 d6 a5 e0 2e 39 7c cc db 9c 31 4b 50 43 72 b8 1e f6 91 38 77 76 70 // 01 26 3c 05 da e3 62 b4 9e 59 28 ef 36 f5 54 ce 24 5b 41 11 48 64 17 // 63 4f 1e 7f 45 30 a7 60 ae 6f fd 31 23 f5 73 6a c1 2c 5b f5 06 c5 dc // a0 30 79 c0 fd 07 76 cd b5 6c 93 8c df 48 0f b9 b9 7b 16 85 df a3 be // 6f 71 2a ae 10 7e 2d da 72 6b ec 13 7b 2e bd f5 6c 0f ca ec ca 43 50 // bd 7b 5c 84 d5 7f 29 c2 a2 c9 9a e1 0c 30 ce ce 48 31 d7 1a e4 ee 33 // 62 98 3c c8 16 bb 6c b9 22 5b 9d b0 85 03 a1 be 23 a2 6a 04 25 a8 62 // 8a 2e 71 8f ea e5 df 91 d8 29 f2 79 66 f7 66 b6 23 a0 a4 95 8a 57 64 // 2a ef ae 25 97 13 73 36 70 d5 b1 d0 27 fb 8e b2 d0 d3 a0 b4 ac d4 82 // 07 6d fa 09 ff e8 83 f5 56 b2 db 22 62 bc 08 72 e1 bd 71 3f 10 0d d7 // a8 a8 f2 d7 25 b4 6e 09 c6 25 d5 13 17 98 72 bb cc 9a 41 e5 96 a1 8b // 24 71 d9 77 f4 ca 2b eb d0 6c da ba 31 b7 0e f2 5e 09 8f 21 4f ef 16 // f1 6f 72 5c ad 43 11 eb 91 45 7f db 70 b4 71 ed db 65 ec af b1 e2 b0 // 3c 5f f2 13 56 24 1e 3c ab 2c 8b a6 01 f9 ef 1a ec 90 06 b7 cd 0b 81 // da 29 be 01 cb 4c 1d 52 e5 63 29 8e 37 30 13 88 6e bb 18 89 bd 56 16 // 64 7c 6c 41 8e a6 bc 1f 3c 08 53 b6 5c ae 48 46 7b 35 f0 83 18 e3 a9 // d0 34 af 72 24 cc 35 20 ab 1e ce 77 51 ba 15 40 72 98 b2 1e 4f 84 ef // 7c 23 d7 99 37 39 40 3d 4f 11 6c ba 2d 0a e2 d4 00 3a 28 33 4c 46 1c // 73 4d 45 55 10 5b 98 6a d0 af 28 aa c3 6c 75 3a b5 2b 91 b7 e2 3a e3 // ab 07 d3 b1 70 fe 53 a2 24 9e fe 5b 65 46 3a 3f 23 7c ec 72 09 1b 04 // 00 5f 95 a1 5a e5 95 19 1b a3 9d 0a e1 d9 1d 8e 00 b1 32 ae 93 39 88 // 4b c5 7b bb 79 97 8a 30 8e 1c 31 c5 f2 13 b0 92 f3 80 a7 ba 58 f5 58 // 69 e9 c2 9a 5a 6e 7a 7a a4 f8 d5 8e 57 87 cc 05 e5 00 00 00 00 00 00 // 00 00 00 00 00 00 00} (length 0x2000) // } // len: bytesize = 0x2000 (8 bytes) // res: ptr[in, syz_fuse_req_out] { // syz_fuse_req_out { // init: nil // lseek: nil // bmap: nil // poll: nil // getxattr: nil // lk: nil // statfs: nil // write: nil // read: nil // open: nil // attr: nil // entry: ptr[in, fuse_out_t[int64, fuse_entry_out]] { // fuse_out_t[int64, fuse_entry_out] { // len: len = 0xae (4 bytes) // err: fuse_errors = 0x0 (4 bytes) // unique: int64 = 0x0 (8 bytes) // payload: fuse_entry_out { // nodeid: int64 = 0x0 (8 bytes) // generation: int64 = 0x0 (8 bytes) // entry_valid: int64 = 0x0 (8 bytes) // attr_valid: int64 = 0x100000000 (8 bytes) // entry_valid_nsec: int32 = 0xf (4 bytes) // attr_valid_nsec: int32 = 0x0 (4 bytes) // attr: fuse_attr { // ino: int64 = 0x0 (8 bytes) // size: int64 = 0x1fffd (8 bytes) // blocks: int64 = 0x0 (8 bytes) // atime: int64 = 0x0 (8 bytes) // mtime: int64 = 0x20000000000000 (8 bytes) // ctime: int64 = 0x0 (8 bytes) // atimensec: int32 = 0x0 (4 bytes) // mtimensec: int32 = 0x0 (4 bytes) // ctimensec: int32 = 0x0 (4 bytes) // mode: fuse_mode = 0x0 (4 bytes) // nlink: int32 = 0x0 (4 bytes) // uid: uid (resource) // gid: gid (resource) // rdev: int32 = 0x0 (4 bytes) // blksize: int32 = 0x0 (4 bytes) // padding: const = 0x0 (4 bytes) // } // } // } // } // dirent: nil // direntplus: nil // create_open: nil // ioctl: nil // statx: nil // } // } // ] memcpy( (void*)0x200000008280, "\x03\x68\x0f\x2a\x20\xda\x68\xab\x7a\x58\xc2\x8b\x63\x5d\x19\xc3\x2b" "\x6e\xfa\xbb\x6a\xe3\xb5\xee\xe5\xa7\x4d\x89\x43\xc6\x13\x53\x9e\x16" "\x6c\x8b\xae\xf5\x05\x00\x82\x43\x43\xa2\xf0\x50\x93\xa5\xc2\x1f\x74" "\x6c\xae\xfe\x9f\x9b\xcc\xd8\x3c\xca\x0f\xc2\x8d\xa2\x0e\x27\x06\x30" "\x8c\x61\x39\x8d\xfc\xe5\xf5\x4e\xa9\xf2\x66\x79\x1b\xa2\x9a\x4c\x7d" "\xa1\x58\x63\x7d\xef\x8b\x81\x6a\xa2\x96\x81\x5f\xf1\x3c\x06\xd6\x32" "\xdf\x45\xfe\xae\xc1\xfd\x27\x2e\xc1\xb5\x10\xea\xf5\x8f\xe6\xb2\x6c" "\xc3\x6d\xf3\xec\xc0\xf5\xb1\xf2\x58\xa1\x90\x30\x4e\x25\x19\xdd\x39" "\xba\x9f\xce\xc1\x78\x89\x26\xce\xd5\x20\x2e\x3b\x1e\x3a\xfa\x16\xae" "\x0b\x5d\x66\xdc\x05\xb3\x6d\x3a\x00\xf7\x2e\x5f\x31\x8f\x8b\xdf\xc7" "\xed\xdc\x94\x23\x8c\x50\x03\x1d\x06\x57\xa2\x24\x45\xad\x0b\x3b\x90" "\xa8\x6b\x08\x6e\xed\x83\x7a\x00\xbf\x0a\x38\x88\xbf\x61\xb4\xdb\x57" "\xd6\xd8\xd6\xb2\x86\xbb\xb1\x3b\xa3\xb2\x46\xde\xf6\x0a\xc3\x42\x41" "\xeb\x84\x3f\x89\xfe\x77\xd7\xe3\xe5\x25\x73\xe9\x0d\x79\x1f\x21\xd4" "\xa8\xdf\xcc\x24\xba\x95\xdb\x60\xe2\x13\x56\x34\xc0\x2b\xd4\xb1\x45" "\x35\x28\x5d\xf4\xfb\xe3\x81\xec\x03\x6d\x87\x6c\x4c\x80\x57\xc7\x93" "\x71\xfa\x97\x17\x41\x45\x90\x89\x0e\x18\x2a\x7b\x9e\x0a\xb9\x27\x81" "\x20\x83\xac\xf0\xd0\x4e\x04\xc2\x0c\x05\x55\xc8\xce\xed\xc5\xbc\xf9" "\xb0\xe8\x14\xbe\x6e\xca\x98\xce\x7b\x2f\x9f\x17\xd0\x98\xbe\xa5\x41" "\xb7\x5a\x16\x17\xc0\x9f\xa9\x99\x02\xad\x74\x68\x11\xf8\x9a\x1f\xc5" "\xe6\xa8\x0d\x77\x52\x82\x47\xd6\xc1\x04\x39\x57\x15\xd2\xc9\xf9\x10" "\x2f\x07\x0a\x29\x5f\x20\xc4\x30\x7b\x9e\x84\x8d\x39\x28\xb5\x09\x85" "\xbf\xa2\x48\x68\x93\x13\x97\x61\x92\x5b\x8f\xab\x96\xd2\x62\x91\x24" "\x3d\xb2\x3c\x4f\xd4\xd9\x68\x64\xf4\xdb\x86\x07\x31\xa4\xe3\xe1\x0b" "\x52\xd8\xd0\x48\x7f\x5a\x85\x36\xcb\x45\x07\xdb\xdc\x11\x15\x70\xad" "\x03\x21\xb9\x18\xed\xbc\x52\x80\x7c\x2e\x06\x76\xd3\x25\x75\x53\x70" "\x2d\x9c\x1b\xd6\x74\x1e\x9c\xd5\xcd\xeb\x3b\x8f\x63\x6b\x6e\xb0\x2a" "\x3b\x00\x66\xd7\xf6\x77\xd5\x86\xde\x50\x18\x85\x00\x00\xf0\x00\xab" "\x39\x60\xf6\x65\x6f\xb9\x80\x39\xce\xb6\x40\x0d\x02\x99\xc3\x56\xfc" "\x22\xb7\x29\x8e\xd1\x57\xc6\x67\xbe\xd5\x56\x3f\xac\x21\x92\xa8\xff" "\x77\x06\xa9\xe5\x8d\x9d\x2f\x92\x63\x2d\x6b\x25\xd8\xb0\x90\x64\x2e" "\x3f\x32\x3b\xf7\xff\x4d\x82\x64\x61\x7a\x43\xa9\x70\x99\xdd\x73\x47" "\xfb\xe3\xb1\xc4\x39\x73\x79\x13\xf1\x7e\xff\x57\xf3\xe1\xff\x4f\xda" "\xc3\x74\xfb\x55\x4e\x9a\x6a\x1f\xf3\x2d\xaa\x69\x50\x76\x98\xd6\x60" "\xd8\xd5\xf5\x91\x80\x1d\x8e\x4a\x93\x09\x34\x2c\x3d\xc8\x49\x66\xdb" "\xfc\xd2\x65\x28\x00\x20\x0b\xcb\x0d\xde\x9d\x45\x6b\x7a\x07\xc5\x40" "\x9f\x4f\x53\x87\xd0\x15\x0d\xaa\x34\xdb\xc8\x65\xc6\x10\x8d\x34\xdc" "\xc5\x1e\xed\xb2\x77\xe9\x63\x8b\x43\xce\x3c\x9a\xfa\xc5\xd7\xaa\x0f" "\x85\x42\xe5\x8b\x0a\x84\x63\x2a\x07\x55\x7b\x04\x18\x45\xd0\x01\x2c" "\xf0\x16\xef\x06\x5f\x97\x66\x0b\x73\x1c\xe1\xb7\x94\x93\xde\x71\xde" "\xf0\x47\x27\x7a\x3a\xe6\xd4\xa0\xd8\x65\x91\x84\x7d\x34\x75\x92\x60" "\x39\x84\x8c\x5b\xaf\x6e\x1b\x43\xbc\x83\x05\x38\x55\x18\x24\x23\x15" "\x6e\x54\xca\xdc\x8c\x85\x08\x92\x65\xb4\x9d\xa8\x53\xd1\x5e\x5a\x70" "\x1f\xed\xf2\xbf\x79\x86\xa7\x23\xab\xf7\x2e\x51\x3f\xa0\x5c\xb1\x78" "\x34\x5f\x2f\xcc\x85\x9d\xf4\x9e\x74\xc8\xcc\xef\x19\x60\x00\xa0\x5c" "\xb0\x90\xf2\x29\x86\xff\xb6\xf8\xf7\x4a\xb4\x1d\x2d\x88\xb6\xb5\x35" "\x50\x7a\x23\xb0\x3d\x2f\xc2\x74\x3f\x6f\x69\xfb\xcd\x43\xb8\xff\x52" "\xb1\xba\x32\xfa\x01\x37\xd5\x42\xc5\x15\x56\x9b\x7f\x48\x6f\x8f\xfa" "\x02\xad\x1f\x54\x76\x7f\x51\x70\x1e\xb4\xc1\x41\x43\x77\x20\x88\x4d" "\x52\x9a\x57\xe1\x7b\xc2\x83\x77\x99\x12\x4f\x7f\x11\x2f\x42\xbd\x90" "\xf5\xb4\x35\xd7\xa5\xd7\x52\x4f\x76\x67\xbb\x7a\x62\x66\x26\x3e\x62" "\xbf\x7e\xbf\x68\x96\x88\x8d\x58\x4c\x65\xa5\x30\xb7\x66\x11\x1f\x07" "\x86\x30\xd8\x62\x9f\xfa\x91\xac\xb5\xed\x02\x49\x85\x49\xbd\x7e\x04" "\x2a\xca\xe0\xfa\xb7\xcc\xb2\x32\x78\x08\x8a\x36\x4b\xe3\xda\x96\x19" "\xd9\x1e\x10\x61\xbb\xaa\x9b\x33\xc3\xc5\xfb\xbc\xbc\x72\x5c\xe8\xc2" "\xcc\x9a\xb0\xf2\xb4\xd3\x00\x78\x04\x0d\x3c\xa7\x9d\x3c\xa0\x56\xc3" "\x60\x38\x1e\xe8\x7e\x74\x3d\xea\x73\xa2\x5e\xa2\xb4\x84\x3f\x9e\xf2" "\x80\xfe\xb5\x07\xf9\x33\xfb\x55\x6c\x71\x8d\x8b\xf8\xf8\x61\x8d\xb7" "\x28\x05\xb6\x5d\x38\x1b\x31\x9f\x65\xc7\x45\xc1\xe5\x06\x0d\xae\x2f" "\x49\x88\x52\xe7\x9a\xff\x8d\xd9\xc8\x8f\xd9\x39\xa3\x18\x71\xa4\x30" "\xd3\xba\x96\xfb\x11\x8c\x79\xd1\xb0\x8a\x39\x7a\xf2\x3b\x1a\x18\x8d" "\x18\x02\x10\x6f\x58\x8c\x76\x8a\x1e\x6c\x9d\x24\x4a\xc9\xa3\x8d\x2a" "\x54\xed\x50\xf1\x9b\x78\xbf\x25\xe0\xae\x1f\x93\x37\xce\xaa\x8f\xf5" "\xca\x86\x40\x10\x4b\x19\xbc\xd6\x43\xb5\x15\x01\xd4\xe0\x3e\xd5\xff" "\xb3\x83\xe7\xed\x0a\xb7\x8d\x54\x0a\xe1\x0b\xbd\x64\xfb\xa1\xaf\x59" "\xa4\x19\x02\x15\xb7\xd1\x02\x30\x99\x2b\xbb\x4f\xf6\x18\xd8\x28\x4a" "\x2e\x24\x46\x99\x05\x11\xfc\x2b\xff\x07\xcc\xe9\xba\x94\xa1\x1d\x3d" "\xb0\x41\xe2\x20\xe3\xd9\x31\xfd\xf1\x29\xd8\xec\x2c\x9b\x17\xd6\x58" "\x7a\x00\x44\xc9\xe0\x9f\x52\x84\x8d\xb4\x3d\xdc\x0d\xf9\x45\x13\xcc" "\x9e\x94\xe9\xd4\x27\x62\x35\x02\xa9\x10\xde\xea\x0f\x21\xd8\x6b\x16" "\x36\x67\x69\xa4\x6b\xf0\xd6\xd9\xfc\x0d\x2c\xd6\xb9\x8e\xd8\x85\xe9" "\xe2\xd7\x65\xbd\xd0\x51\x19\x6b\xf2\x0b\xd2\x7c\x46\xec\x90\x27\x26" "\xd9\x6d\xe3\x52\xc3\x46\xd9\x04\xfa\x00\xd6\x3b\x67\xd2\x72\xf1\x16" "\xdc\xe4\x89\xf9\xd6\x36\xce\xf6\x1b\x44\x1b\x9c\x11\x3a\xdd\xec\x98" "\x3b\x8b\x2f\xbd\xb2\xb3\x20\x49\xe4\x36\xc9\x72\xb2\xfc\xf5\x14\x0d" "\xc7\xb0\x94\xc5\x04\x7c\xb6\x22\x6d\xa7\x00\xb7\x2a\xeb\x3f\xeb\xdf" "\x16\xa7\x5b\x6f\x61\xa3\x11\xf6\x06\x25\x1c\x99\xb3\x77\xc7\x75\xc8" "\xfb\x34\x46\xcc\xf2\x5d\xc4\xcc\xa2\x42\x90\xb3\x93\x9f\x94\x80\x19" "\xb0\x5c\x80\xb5\xa6\x38\x21\x12\xf6\x3e\x09\x90\xb3\x24\xc1\x6a\x08" "\x7c\x72\xaa\xec\x08\x79\x6a\xfc\x76\x9f\x67\x8e\x36\x34\x10\x0a\x5a" "\x9d\xa8\x21\x5c\xb5\xd7\xa6\xa6\xb5\x0a\x81\x67\x6e\xf4\xed\xca\x35" "\x59\x5b\x11\xf9\x60\x6b\xef\x2f\xb8\x4f\xe1\xf0\xa0\x70\x3c\x88\x65" "\x79\xf0\x99\x86\x08\x6f\x0d\xca\x6e\xb8\x06\x1f\x9a\x74\xc7\x9c\x1f" "\x75\x86\x84\xa7\x36\x39\x74\xb1\x45\x61\xb9\xd2\xef\xda\xba\x6c\x4c" "\xd8\xcb\x70\x62\x7d\xa1\xe1\x95\xfc\xae\x3d\x8b\x2f\xa7\x51\x27\x8e" "\x8f\x22\x0c\x83\xe6\x77\xe1\x47\x31\xec\xcd\x6f\xe0\xc3\x57\xb0\x11" "\xed\x88\xb6\xdf\x0c\x26\x6b\x38\x3f\x22\x4b\x8e\x95\x38\x4e\x40\x1b" "\x71\x70\x30\xb1\x22\x75\x82\xd0\xd1\x04\x2b\xd9\x03\x77\xc4\xf2\xc7" "\x20\x6a\x19\x98\x3f\xc5\x90\x5e\x4e\xb8\x7e\xdb\x65\x32\xb2\x6c\xa9" "\xe2\x8e\x16\x02\x02\x60\x6d\x19\xd9\xf5\xda\x34\x76\x2f\x4b\x3f\xa8" "\x42\xd7\xbf\xf3\x82\xad\x70\xdc\xbc\x41\x1f\x8b\x3e\x4c\xac\xe8\xc8" "\xe0\xc7\x28\x98\xd2\x40\x23\x54\x5e\x0d\xfd\xc4\x17\x62\x09\x27\x6a" "\x53\x54\x91\xce\x11\xc0\x45\xc5\x7b\x45\xc4\x0f\x19\xb1\x2d\xcf\x6f" "\xfb\xf7\x8a\xb2\x3e\x7f\xe9\xbd\xc4\x04\xcf\x47\xdb\x98\x55\xf2\xb8" "\x35\xe1\xfc\xe5\x7d\xeb\xfa\x07\x18\x03\xec\x38\xda\x3c\x77\xa9\x04" "\x08\x0a\x4c\x73\x7c\xe2\xb2\x0e\x14\xe8\x44\x97\x62\xf1\xca\x0b\x1c" "\xe7\x17\x79\xd2\xe6\xee\x52\x99\xe1\xcf\x23\x0e\x80\x70\x04\x5c\x23" "\xc1\xd0\xe5\x2f\x66\xfe\x90\x39\xf9\x5c\xdc\x0b\x44\x8d\xc1\x2d\x24" "\xde\x39\x15\x79\x34\x27\x03\x45\x99\x19\x48\xfc\xe9\x21\xb5\xd8\xe7" "\x39\x31\x5c\xc7\x5d\x4b\x3b\x49\x92\x84\x37\xb8\x86\x72\xc1\xa7\x77" "\x03\x65\x20\x7b\x43\x89\x5f\x45\x90\x9d\x5d\x97\x2f\x48\xaa\x66\xde" "\x60\x91\x52\xa5\xaf\xa2\xc7\xd7\x5f\x0a\x14\x18\x9d\x04\x09\xf0\xb6" "\x23\xea\xb3\xb6\xe7\xd8\x10\x25\xcd\xe1\x40\x89\x3e\xd7\x1b\x6f\x24" "\xf5\xa3\x6d\x21\xda\xfb\x62\xaf\x6b\xe9\xda\x84\x54\x03\xbc\x8e\xd3" "\x66\x72\xef\xa7\x4d\x7d\xa1\x9d\x57\x94\xcb\x4b\x79\xfa\x1c\x86\x94" "\x0b\x18\x90\xc0\x12\xe1\x4b\x7c\x3b\xb2\x61\xf1\x6b\xdd\x99\xef\xaa" "\x98\x19\xb0\xbc\x00\xaf\x84\x2a\x6b\x94\xc6\x08\x6d\x15\xb1\x6a\xb8" "\x1a\xf9\x33\x1b\xa3\xa5\xbd\x69\x41\xef\x35\x23\x9e\x85\x45\x5c\xea" "\xb0\x2c\x59\x8c\xce\xe8\xfb\xad\x97\xed\x37\xda\xeb\xfe\x3b\x26\xa5" "\xa6\xc9\xed\xa5\xf6\x5a\x1c\xfa\xf7\xa1\xf1\x68\x82\x67\xc8\x12\xa5" "\x6c\x55\x2a\xe1\x1b\x46\x5d\xac\x03\x0e\x18\xf9\x00\x8a\xd0\x3c\xad" "\x80\xbf\x2c\xb9\x1a\x7d\x99\xdc\xfa\x54\xd3\x23\xae\x0a\x4c\x3a\x6d" "\xc0\xf8\x0d\x7f\xf7\x03\x87\x06\x10\xa9\x45\xeb\x0a\xb5\xb6\xd1\x4e" "\x81\x86\x9c\x88\x72\xf6\xb1\x23\xd9\x8e\xdc\xf6\xbb\xa1\x0d\x76\xd3" "\x5c\xff\x4b\x0b\xb7\x3d\xb8\xb6\x69\x5a\x83\x51\x78\x5b\xcb\xa1\xe1" "\x60\xa4\x2e\xd3\x67\xc4\xda\x72\x7d\xa3\x8f\x91\x56\x2e\x94\x1e\x5c" "\x4f\xa9\x0c\xd5\x85\xc5\xf1\xcd\x3a\x7d\x68\x92\xf1\x8a\x5a\xa3\xc7" "\x4a\x4f\xc0\x0b\xf5\x90\x92\x67\x48\x9b\x93\x7a\x92\x8d\x9d\x8f\xf9" "\x25\x30\xb5\x22\x6e\xed\xf8\xab\x9a\x95\x7e\x5f\xfe\xc4\x5b\xc3\xa5" "\x5e\x69\x55\xb3\x83\x93\xce\x52\x89\x26\x55\x26\x5d\x1f\x74\x1e\x0b" "\x74\x48\x08\xeb\x56\x8a\x08\xd1\x45\xa8\xbc\x5a\xda\x9b\x07\x9f\x6d" "\x0b\xec\x5f\xc2\xac\xe0\x50\x2b\x3f\x92\x63\x72\xdf\xf4\x94\x78\xfb" "\xd1\x04\x51\xf0\xde\x4b\x3d\x1a\x63\xb9\xd4\xe1\x7a\xde\x45\x62\x8d" "\x2e\x9d\xca\x04\x1f\xcf\x7f\xc1\xe1\x05\xe1\xfc\x44\x08\x9f\xde\x9c" "\xaf\x41\x8b\xa8\x45\x4d\xc3\x61\xdf\x4a\x59\xe1\xbd\x79\x14\x3d\x28" "\x06\x13\xe3\xc7\x9a\xd1\x8e\x92\x2a\x43\xe1\x99\xaa\x59\x27\xbb\x95" "\x53\xdd\x31\xe6\x22\x3a\xd1\x9b\xf8\xaf\xf6\xe1\xda\xc8\xb3\x68\x0f" "\xee\xa3\x13\x8b\xc6\x17\x42\xb0\x3f\x04\x7b\x3d\x77\x03\x9c\x1a\x4c" "\x2d\x05\xbd\x89\xc4\xbc\x12\xa1\xb8\x3d\x78\xb4\xe7\x02\x3f\x69\x0f" "\xce\x6a\x44\x60\x8c\x42\x3d\x8c\xbc\x2e\x80\x94\x2b\x9d\x9d\xf2\xf4" "\xbf\x56\x06\x64\x0f\xa4\x76\x92\xf3\xe0\x03\x88\x59\x83\xa7\x3e\x1d" "\xc3\x13\xb2\x43\xbb\xab\x5c\x3c\x63\x48\xaf\xab\x79\x6d\xa7\x66\x04" "\x4b\xa1\x42\xed\xa5\xa9\xd3\x71\x3e\x3e\xda\x8c\x54\xc1\x70\x89\x09" "\xc5\xda\x89\xba\x67\xd2\x9c\xd7\xf4\x09\xc9\xb7\x59\xcb\xa3\x16\xc4" "\x20\x28\x75\x4e\x3c\xb6\xea\xe2\xcc\x4f\x6d\x66\x98\x2f\x21\x23\x20" "\xf1\x99\xb2\xe8\x37\xbb\x4c\x54\xc5\x4b\xcd\xcd\x2a\xc2\x40\xef\x62" "\x95\xd3\x8e\x98\x89\xb4\x21\x38\x19\xef\x0f\x9a\xba\x6c\xee\xad\x4e" "\x0f\xd2\xc4\xbe\xcd\xc1\xf8\xee\x30\x49\x83\x19\x96\xc9\xa7\x4a\x5f" "\xd4\xe1\x2a\x1f\xd2\x1e\xd4\x7c\xf2\x7e\x29\xf9\xd6\x1e\x4b\x67\x3d" "\x88\x91\x4c\x36\xee\xfa\x53\xd3\xc4\x9d\x94\xb4\x63\xb7\xf8\x46\x2c" "\x19\x51\xdf\xe3\x3c\x10\x99\x3d\x5c\xfc\xd0\xed\xed\xd5\x0a\xd5\x50" "\x09\x52\x8f\x1e\x79\xfb\xc2\xfa\x70\xc3\x33\x8b\x32\xc4\x0a\xe3\xbb" "\x45\xd7\x07\x9c\x7a\xe8\x43\x3f\xb1\xaa\x19\xaf\xfb\xd3\xfb\xce\x0c" "\xb5\xab\x0d\x55\x7a\xfb\x3b\xe0\x36\x85\x60\x66\xee\xa4\x5c\x28\xe9" "\x35\x28\xb3\x54\x77\xfc\x97\xfe\x9f\xf3\x64\x1e\x5b\xb0\xf0\xe4\x60" "\x69\xeb\x65\x3c\x02\x7d\xaa\xbf\xf3\x85\x41\x25\x00\x81\xc7\x7e\x0e" "\x3a\x1d\x03\x0a\x73\x28\x9e\x77\x1c\xc4\x1d\xb1\x08\xbe\xaf\x60\x59" "\x9b\x5d\xf0\xad\x97\x8f\xcf\x0b\x46\xaf\x82\x1c\x6b\x71\x7b\x26\x5e" "\x07\xd3\xa8\x53\x97\xea\x94\xde\x26\xf5\x10\x29\x0d\xdb\x5d\xf8\xfc" "\xff\x76\xfe\x62\x48\x43\xc8\x57\x78\x02\x80\x9c\x14\x59\x16\xaf\xce" "\x01\xd9\xdf\xdf\xa8\xbf\x07\x63\x3e\x98\xf1\x4f\xc7\x3d\x5e\xf5\x8a" "\xe5\xcb\x0c\x30\x8b\xc7\x4c\xa3\x82\x59\x69\x2a\x1c\xd4\xcf\x16\x75" "\x27\x86\xa1\xc8\x16\xf2\x46\x12\xc2\x73\x93\xd7\xe4\x0a\x2d\xf9\xa3" "\xdf\xa2\x3a\x0c\x59\x61\x3c\x8a\x7c\xcd\xd9\x7c\x3f\xc6\x7e\xca\xb9" "\x4d\xcd\x8c\xc4\xb4\x51\x7e\xd2\x41\x4d\x41\xce\x57\x40\x74\xff\xeb" "\xd1\x56\xe3\xd6\x5c\x44\x21\xb0\xf3\x39\xbc\x9f\x29\xab\xbf\xe4\x9d" "\xb6\x21\x22\x24\x8c\xf9\x6b\x74\xd9\x63\x9b\x3e\xf9\xd9\x35\xcd\x81" "\x31\x5a\x7e\xcf\xb0\xdc\x6e\xa1\xee\x05\x3c\x2e\x5c\x36\x15\xfb\xc1" "\x07\x82\xf1\x6a\x56\x4f\xca\xbe\x1d\xf7\x0d\xa7\xde\x98\x9e\x00\xee" "\xdc\x34\x6c\xef\x5b\x5c\xf8\x80\xe9\xd5\x63\xfc\x15\x30\x2f\x05\x6d" "\x37\xf9\x8a\x93\x9f\xd1\xdd\x54\x78\xb4\x31\x8c\x25\x6e\x93\xb7\x7e" "\x31\xf8\x7d\x8f\x7f\xe3\x17\x55\x19\x1b\x40\xd7\x78\xdd\xb2\xad\xa1" "\x48\x0b\xb9\xfc\xb9\x6a\x09\x78\x3f\x13\xcd\x46\x0e\xe2\xc9\xcf\x4a" "\x71\x2f\x04\xeb\x1b\x1a\x74\x60\x91\x10\x9f\x7c\xe0\x65\x5e\x1f\xf7" "\x78\x1f\xbe\x85\x3e\x3d\x03\xbb\x91\xc9\xd8\xf4\xf4\x16\xf5\x74\x5c" "\x6b\x60\x7b\xbf\x72\x78\x6b\xd3\xc0\xac\x47\x61\xe6\xe6\xd7\x0f\x12" "\xdb\xef\xa1\xb1\x35\x42\x08\x6f\x79\x3b\x72\xc6\x10\x2a\xc0\x6e\x75" "\xbe\x17\xbd\xbb\x1e\xfb\xf7\xe0\x07\xf0\x7f\x9b\xd4\x33\xfd\x9d\x9c" "\xbf\x93\xe7\x60\x75\x7b\x79\x2f\x15\x23\x18\x95\x56\x1f\xe4\x9d\x9d" "\x68\x3c\xcc\x06\x6f\x38\xaf\x58\x14\x22\xb7\x17\x02\x62\x71\x62\xc0" "\xf0\xf3\x5c\x36\xa6\x1e\xaa\xa9\x21\x29\x11\x4b\x73\x34\x28\x1e\x35" "\xfd\x39\x57\x6e\x51\xd8\x59\x3c\x14\x9c\x93\x26\xe0\xc7\x10\xea\x4d" "\xcc\x9e\xf3\x9a\x43\x2a\x48\xae\x18\x34\xf5\x04\x6b\x95\x4f\x9c\x03" "\x3d\x60\x35\xcd\xe0\xdb\xff\xe3\xe9\x7f\x48\xa1\xdc\x69\x5f\x4b\x2f" "\x6f\xe5\xd4\xee\xe8\x30\x08\x31\x8d\xef\x10\x5c\x37\xe1\x1c\x90\x15" "\x67\x0f\x13\x41\x7e\xd0\x36\xe6\x8f\x6f\xbf\xca\x2a\x82\x89\x82\x96" "\x77\xfe\xb2\x30\x79\xf3\xf2\xee\x53\xb2\x6e\x49\x19\x24\xfe\xfc\x1c" "\x50\xe5\x4f\x28\x8a\x8c\x4b\x6b\xa6\xd3\x19\x05\x4c\x3a\x9e\x39\xe1" "\x4b\xba\x81\xb4\x23\xac\xbd\x44\xb5\x12\x79\xbb\xea\x6b\x0b\xb2\x04" "\x73\x25\x83\x7c\xe8\xb2\x19\x14\x54\xf5\x2f\xfa\x2c\xd0\x4a\xbe\x89" "\xe3\xde\x5b\xc1\x02\xe9\xfd\xf7\x40\xd3\xef\xd9\x75\xbc\x95\x03\xaf" "\x79\x6e\x6a\xee\xe7\x11\xef\x87\x97\xde\x5d\x50\x7a\x96\x47\x30\xaa" "\x70\xcb\x9d\x38\x40\x05\x4d\x4e\x1f\xfc\x57\xde\x37\x8b\x51\x1f\x76" "\x49\x66\x6a\x54\xa6\xb3\xd9\x1e\xd5\x17\x19\x8d\x76\x32\x2b\xf9\x9d" "\x13\xbe\xf5\x30\xa4\x3e\xd3\xf1\x31\x96\xbf\x2d\xef\x6d\xcf\xb3\x9f" "\x76\x47\x1c\x75\xc5\x77\x9b\xed\xf1\x05\x71\x7e\x54\x60\x57\xfb\x47" "\x8b\xfd\x24\xe8\xfd\xf3\xc1\x2d\x02\x8b\x54\x2d\x1f\x42\x4a\x9d\x45" "\xbb\x9e\x02\x6e\x60\x98\xeb\x1c\xb0\xa7\x73\x78\x30\x0e\xc1\xb4\xc9" "\xf0\x06\xaa\x4d\xfb\x7f\xb5\xc5\x7c\xf1\xb0\x35\xcb\xe9\x60\x09\xea" "\xd1\xca\x25\xea\x1e\x5f\xae\x40\x31\x2a\x4e\x9f\xe2\x50\x68\x4a\x1c" "\x86\x53\xbb\x30\x32\x09\xe0\xfc\x6a\x49\x8f\x3a\x08\xf6\xc5\xb9\x46" "\x37\x8a\x34\x9f\x3a\xea\x45\x10\x4a\x2b\xad\xb8\xa4\x5f\x50\x0b\xb4" "\xf0\xf6\xcd\x62\x0c\xe7\x94\xe0\xf3\x90\xe1\xcb\x7f\x2f\x1f\xc0\x03" "\x9f\x42\x50\xa5\x77\x54\x4a\x68\x62\xb4\x7b\xf8\x9e\xea\x3a\x8c\x15" "\x16\xb7\xa9\xdd\x11\x1c\x2c\xa7\x19\x19\x0e\x8f\xeb\x1a\x70\x79\xe9" "\xfd\xfd\xb8\x22\x4d\xc5\x07\x91\xc9\x86\x82\x54\x69\xc0\x87\xc8\xf0" "\x81\x61\x6e\xda\xa4\x19\x3e\x16\x12\x81\xaa\x68\xb7\x28\x6a\x36\x4c" "\xbb\x33\x6b\x24\x59\xf0\x89\x2e\x57\xc4\x0a\xfc\xfd\xa7\xd1\x6e\xa1" "\x87\x7e\xfb\x4e\x4b\x0d\x4b\x5c\x31\xe8\xcb\xa1\x50\x66\x90\x3d\x3a" "\x91\xbd\xc7\xfb\x64\x45\x2f\xb9\x84\x34\x36\x11\x05\x96\xf0\xb0\x38" "\xda\x16\x7a\x86\xf9\x7d\x32\xc8\x07\x27\x0a\x1c\x99\x4f\xe8\x8e\x25" "\x17\xe1\x1b\xdd\x21\x0d\xd9\x82\xd3\xc8\x15\x84\x59\x44\x01\x08\x30" "\x8a\x93\x6c\x9d\x23\x70\xb9\xd1\x57\xc3\xf9\xca\xec\x36\xff\x05\xbc" "\x40\xb3\x7f\x09\x5e\xdf\x33\xbf\x4f\xad\x44\x0f\x38\xc3\xf5\x21\x29" "\x45\x69\x36\xc0\x70\x14\x14\x0b\xe5\x61\x8f\x4e\x9d\x07\xb6\x66\x79" "\x23\x80\x23\x39\x0c\xd6\x76\xb1\xa3\xa2\x8d\x0e\x90\xd5\xad\x9e\xf1" "\x3a\x31\xfc\xdc\x5a\x43\x54\x54\x30\x93\x67\xc4\x37\x42\x4e\x34\x0a" "\x1f\x91\xc6\x48\x3b\xce\x10\x26\xd8\x5a\x16\xfb\x85\x42\x52\xea\x4e" "\xde\x39\xa4\xe6\x97\x02\xec\xff\x76\x43\x2d\xe5\x08\xe0\x64\xed\xa0" "\xdf\x9f\x26\x3a\x25\xc0\xf6\x26\xd1\xc1\xff\xaa\x67\x83\xbe\x29\x75" "\x45\x1e\xe9\x36\xcc\x21\x78\x64\x89\x35\xa9\x24\xf6\xfb\x2d\xb2\xf8" "\xba\x34\xe3\x48\x92\x0d\x90\x31\x14\x52\x09\x18\xcc\x68\x72\xb8\x42" "\xe3\x74\x4f\xc1\x8d\x13\x63\x58\x3a\x10\x7e\xc7\xb8\x9c\x77\x92\xc0" "\xd8\x06\x9e\x12\xf8\x73\xf6\xd6\x68\xf6\xfd\xeb\x47\xb7\x29\x86\x91" "\x4e\x45\xc2\xb0\x61\xc5\xc9\x36\xc7\x3c\x9b\xcf\x14\x75\xea\x0d\x25" "\xed\xaa\xd2\x1c\xf1\x93\x40\x5c\x8a\xce\xf3\xbf\xf4\xe4\xf1\xb2\xb3" "\x21\xd7\x0d\xba\x59\xe8\x56\xa8\x84\x9c\x2b\xba\x95\x08\xba\xd7\x75" "\x37\x06\x69\xb2\xbb\x7f\x5e\x53\x18\x1a\xf8\xbf\xf5\x25\xe1\x3a\x49" "\x35\xd7\xe2\x8b\x99\x7b\x4f\xf1\x5d\xa9\xe3\x6f\x13\x53\xa1\x54\xab" "\x70\x1a\xd1\x54\x20\x78\x6d\xaa\xf2\x7b\xa7\xe1\x22\xf7\xb8\x25\xc6" "\x68\x18\x5b\x68\x56\x30\x42\x03\x78\xb4\x14\x2e\xc4\xe4\x24\x2c\x2c" "\xf0\xbf\x6e\x14\x3f\x7e\x55\xcb\x12\xfb\x9d\xd5\x9a\x8d\xf9\x95\x9c" "\xe4\xfc\x5f\xff\x68\xae\x71\x74\x97\x7a\x31\xad\x7f\xd6\x44\xbc\x94" "\xa2\x0b\xae\x76\xf0\xaf\x47\x40\x34\x99\x0f\xdf\xec\x8c\xec\xa0\xe6" "\xcd\x93\xfe\x21\xd8\x48\x37\xb7\xe9\xd7\x4c\x17\xb6\xd3\x05\x4f\x0c" "\x00\x8e\xe0\x57\x64\x74\x5f\xd8\x77\x3a\x0c\x1c\x31\xbb\x3e\xef\x5b" "\x7e\x26\x1b\x54\x80\x5b\x5c\x80\x5a\x4e\xee\xf0\x5c\x81\x2f\xcd\xed" "\xe2\x00\x44\x2e\x73\x40\xc6\x34\x90\x64\x5e\xbd\x09\xc2\x35\xd5\xc5" "\x2a\x78\x55\x42\x52\x6e\xdf\xe3\x87\x5a\xd0\x82\x67\xfa\xed\x1d\x0a" "\x15\x23\x6f\x00\xc6\x73\x6b\x94\xc1\xa3\x82\x13\x02\xff\x61\x06\x97" "\xad\x7b\xec\xdb\xc9\x6f\x54\xb5\x51\x38\xb5\x85\xcd\x12\x2e\x0d\x5a" "\xea\xf4\x3c\x9b\xa3\x73\xe8\xaa\x1c\x12\x97\xe3\x41\x55\x52\xcc\x57" "\xcd\x60\xee\x1f\x3c\x04\x50\x0e\xd0\xee\xd3\x77\x75\xc8\x73\xde\x30" "\x66\xc0\x34\xc1\x76\xc6\x7c\x5b\xfb\xe9\x89\x9a\x47\x73\x20\x30\x85" "\x57\x81\x34\x13\x74\x64\x1d\xa0\x58\xee\xe6\x1d\x01\xd1\x1b\x9d\xb8" "\xf1\x9f\xd4\x55\x89\x57\x89\x73\x40\xe3\x2c\xdf\xbc\x39\x71\x3f\x1f" "\x43\x9b\xe0\x63\x8f\x61\x4c\xdb\x53\x61\x43\x3a\x45\xa6\xff\x02\x4e" "\x39\xc9\x41\x41\xdc\x54\x03\xaf\x10\x14\x04\xce\x5f\x2e\xfa\x97\xb9" "\x0d\x9e\xcd\xb7\xc3\x61\x78\x5d\xab\x97\x7f\xed\xed\x32\x55\x4d\x1a" "\x74\xd5\xcb\xfe\x24\x35\xbe\x7f\x03\x29\xba\x38\x24\x55\xc2\xac\x11" "\xfb\xe2\x9f\xe3\x82\x67\x96\xd4\xbe\xa0\x3d\xc5\x3a\x37\xf6\x3f\x5b" "\xe2\x77\x3f\x83\xfa\xf2\x82\xf0\xae\x24\xd9\xfe\x57\x62\xb7\x1b\x49" "\x9f\xd3\x7b\x4c\xe7\xe7\x1f\x93\xc3\xa9\x83\xf8\x0f\xed\x47\x77\x08" "\xbb\xf2\x26\x1c\x89\x89\x3c\x4b\x76\xe3\x4f\xac\x9b\x42\x67\x1b\x6c" "\xc8\x16\x78\xcc\x86\x7f\x53\xe8\xc3\xec\x47\x71\x62\x06\x21\x27\x43" "\xca\x0c\x49\x41\xc2\xc6\x1e\xd3\x17\x7f\xcc\xf8\x59\x21\xe9\x98\xd2" "\xb8\x26\xdf\x75\x11\x73\x94\x4b\xb0\x7e\xea\xae\x40\x01\xf6\x77\xa0" "\x68\x7a\x25\x50\xee\xac\x8b\xb5\x12\x8e\xca\xd9\xc7\xb6\xa5\x14\x59" "\x6a\x30\xb8\x29\x2f\xba\xcc\x09\xab\x48\x81\x93\x50\x7b\x67\x85\xd7" "\xa3\x5c\x97\x9d\xb7\x74\xb2\xc4\x13\x24\x6f\x1a\xe8\x8d\x35\xd1\x91" "\x4b\x20\xb8\xfb\x50\x10\x34\x32\x16\x42\xfb\x0b\x0b\xab\xa3\x37\x8e" "\x4c\x31\xfb\x5e\x24\x7c\x17\x7e\x57\x32\x95\xdf\x01\x94\x46\x2b\x99" "\x07\x9a\x43\x64\x00\xba\x1b\xe2\xe3\x0d\x39\xb8\x71\x4c\x0f\xb2\xbd" "\xcd\x98\x1d\x5a\x5c\xd5\x14\xf8\xd4\xf1\x4e\x4e\x04\x37\x10\x86\x30" "\x35\x5d\x8f\x2b\x60\xa6\xd1\x8c\xb1\x4c\xeb\x2b\x5d\x07\x04\xaa\x6e" "\x93\xe1\x80\xbd\x79\xcb\x17\xe1\x76\xbc\x4f\x81\xa0\x3d\xb1\x2a\x03" "\x41\x3d\xe6\x18\x98\x96\x95\x5b\xb9\xe3\xcc\x69\xb6\xf9\xa5\x0a\x7e" "\xda\x37\x42\x52\x7f\x98\xc7\x1d\x7e\xa8\xba\x75\xe2\x53\xc2\xb7\x83" "\xf7\x10\x48\x13\xc6\x19\x94\x9e\x6a\x07\x65\x17\x9b\x1b\x9c\xbe\x68" "\xb7\x03\x33\x5a\xb5\x98\x69\x28\xd8\x63\x84\x35\x7a\x2f\x41\x89\xf4" "\xb4\xff\xcd\x61\xa3\xd2\x97\x09\xbb\xc9\x3b\x53\x71\xf0\xe7\x79\x8c" "\xb7\x2a\xe4\xc1\x7b\xce\xe2\x4f\x8e\x56\x6f\x27\x77\x80\x3c\x3d\x18" "\x2d\x15\xa6\x3a\xc4\x00\x63\xf0\xcc\xdf\x4b\xd7\x90\x40\x45\x24\xea" "\xe0\x2e\xaf\xb6\xb5\x4c\x69\x95\x78\x48\x64\x90\x03\x3f\x0b\xe8\x66" "\xc7\x4a\x13\x40\x83\x00\x3d\x33\x04\x98\x65\x8b\xa9\x73\xea\x67\x4c" "\x4a\x0f\xf1\x58\x40\x39\x87\xb4\xc4\x75\x2b\x07\xc8\x63\x7a\x11\x9b" "\x01\x9f\xd5\x09\x34\x06\x96\x01\x44\x44\x50\x56\xf6\xff\xe7\x3e\xda" "\x02\x35\xdc\x18\x71\xbb\x60\x58\xd4\xa9\xfe\xec\xac\x62\x82\x65\x68" "\x9d\x58\xa8\x14\x53\xd3\x32\x90\xab\x56\xeb\x69\x1f\x31\x80\xd0\x28" "\x84\x49\xf4\x18\x44\xe5\x6f\x5c\x6c\xf5\x22\xd4\xa5\x86\x6b\x24\xfb" "\x95\x52\xfd\xe7\x19\x46\xc4\xd2\x5d\xcc\xea\xa4\x1c\xfd\xdb\x5a\x33" "\xc5\x1c\x54\xc0\xa0\xa5\xab\xd3\x1b\xe8\xfb\x6e\xc5\x3c\x1d\x14\xba" "\x64\x8e\x18\x39\x79\xdb\xd0\xdb\x01\xb9\xe5\x1b\xa3\x80\x3b\xe7\xe7" "\xd3\xde\xe7\x52\x66\x83\x67\x26\x4c\x78\x3f\x74\x83\x81\x21\x79\x7a" "\xe5\x70\x6e\xf3\xaa\x46\x06\x82\xd1\xbf\x55\x80\x8c\x70\xe6\x9a\xe2" "\x9d\x76\x83\x36\x84\x70\xd0\x8e\x7e\x9a\x10\x95\x30\x5d\xce\x25\x0b" "\x5b\x4b\xd4\x8c\x02\xe0\x98\xd2\x41\xb1\x08\x97\x36\xe8\x30\x6a\x73" "\x7e\x3a\x1a\x93\xe5\x54\xcc\x3a\xb2\x46\x72\xb8\xc7\x4b\xfb\x88\x25" "\x00\x4c\xa8\x69\xe3\x47\xf8\x73\xde\x14\x57\x54\x93\x83\x66\x62\xad" "\x74\x1d\x79\x26\x99\x04\xf9\x05\xd7\xdf\x64\xd0\x58\x1a\xb8\xd7\x6e" "\xe5\x1a\x32\xd7\x2c\xcb\x71\x9f\x3a\x25\xc0\xa8\x56\xb5\xbd\x2b\x2a" "\x12\x69\xe2\x08\xd7\x0c\x32\xe1\xd5\xad\x0d\xfd\xc0\xef\x43\xf0\x23" "\x0e\x95\xeb\x85\x87\x1e\xb4\xd6\x03\x3a\xbb\xf0\xbe\x70\x25\x38\x2d" "\x87\x8e\xea\xee\xa7\x3c\x94\x27\x0e\x79\xbd\x57\x57\xdc\x1b\xac\x95" "\x23\x6a\x62\x54\x5c\xd4\x67\x83\x0b\x12\xdc\xc3\x0d\x7c\xc8\x1e\x88" "\x9d\x36\x0d\x07\x3d\xb4\x00\x58\xe9\xa1\xc7\xb4\x1f\xc5\x3e\x67\x74" "\x0b\xc9\x84\x13\x2a\x14\x52\xcf\x7d\x00\x03\x78\xf1\x4e\xf9\x3a\x7e" "\xb0\xdc\x9b\xac\xf2\x35\x84\xad\x67\x61\x13\x95\x76\x60\x7f\x82\x14" "\x75\x7f\x71\xfc\x47\xb2\x94\x41\x27\x11\x6c\xa3\xe8\x3b\x9d\x96\x43" "\xbc\xe8\xd7\xbb\x44\xb4\xd1\x6b\x5d\x5c\xff\x70\xa9\xe1\x11\x4c\xd9" "\x20\xb6\xfc\x1f\x40\x96\x72\x64\x8a\xd5\x6a\xc3\x13\x6e\xf0\xa3\x14" "\xad\xb4\x58\xfa\xf3\xd3\xf1\x71\xcb\x2f\xc5\x13\xd7\x6e\x43\xe6\xbd" "\xa2\xf1\xa6\x8e\x6f\xcf\x4a\x4e\xcb\xe6\xbc\x87\x71\x6e\x2a\x82\xea" "\x0c\x46\x57\x98\x3c\xa0\xca\xaf\x8d\x75\xfd\xf5\xb0\xd7\x93\x0e\x4f" "\x3e\x95\xeb\x12\x71\x48\x5f\x93\x8e\x7a\xd2\xbf\x0c\x97\xb7\xc1\x17" "\x45\xde\x45\x51\x8a\x1e\x3a\x74\x34\x19\x68\x58\x85\x58\xe7\x19\x7b" "\x40\x7d\x24\xed\xa0\x67\x1e\xe2\x8f\x21\x9e\x4c\x5f\x80\x9a\x7e\xa6" "\xf9\xf5\xb9\x70\x5f\x46\x34\xa9\x61\x12\xeb\x26\x2b\xd5\x96\x7d\xb5" "\x23\x72\x85\xb8\x65\xd3\xf6\x45\x16\x49\x5e\xa6\xd1\xec\x20\xdb\xed" "\x7a\xf0\x23\x62\x37\x0b\xcc\x98\x67\x1a\x61\x24\x1f\xa1\xef\x5b\x30" "\x95\x60\x9d\x66\xec\xc1\x60\x10\xf6\xf6\x7a\x28\x0d\x1c\x6d\x21\x5e" "\xc2\x24\xea\xd1\x7d\x68\xbb\xc9\xbc\x64\xb3\x63\xb5\xbe\x9b\x47\x9b" "\x7a\xa2\xcb\xc8\x58\x7a\x6b\x48\xcf\x65\x3f\xde\x7a\x26\x2a\x11\xab" "\x3a\x10\x35\x6f\x55\xf1\x22\x31\x0f\xea\xc7\x7c\x32\xce\x09\x94\xd6" "\xe8\xa7\x0f\x1c\x53\x33\x1c\xb4\x73\xa8\xe2\x94\x27\x32\x2f\xb6\xda" "\x29\x2c\x44\x43\xb1\x67\x88\x77\xf1\xc9\x81\xfa\x05\xfb\xde\xf9\x65" "\x20\xe5\x89\x5a\xeb\x2a\x3a\x8e\x62\x65\x2f\x9d\x88\x30\xc3\xb1\x44" "\xb9\x59\x88\x73\xe2\xef\x41\xb7\xad\xe9\x43\x80\x77\x66\x87\x7d\x60" "\x99\x72\xcc\xa7\x48\x55\xea\xed\xce\x07\xcd\xa3\x5b\x50\x55\x7d\xe9" "\x6e\x73\x6c\xa3\x10\x7c\x15\x4d\x31\xae\xee\x78\xdb\x23\x46\x87\xb9" "\x96\x45\x17\xbc\xd2\xc6\xc9\xec\x04\x75\x14\xb4\x5c\x83\x1a\xee\x45" "\x88\x16\x6d\xc3\xec\x9a\xb3\x6b\xd1\x03\x3e\x74\xb3\xd0\x2d\x73\x1c" "\x5b\xd8\x4f\x65\x9f\xa9\xfe\x55\xca\xc0\x8c\x12\xcb\x99\x9a\x2e\x64" "\xfa\xc5\x2f\x6c\xb7\xd1\xff\xfb\xf4\x5d\x9a\x11\x26\x78\x7d\x00\x60" "\xfd\x1b\xe5\x63\xcc\xbc\x27\x8a\xc9\x7d\xab\x0c\x1b\xee\x66\x46\x75" "\xf2\x73\xf5\xfa\x42\x9b\xdc\x24\xb2\x1f\xf1\xcf\x0a\x3a\xd3\xc6\x87" "\xfb\x07\xff\xd8\x8b\xad\x6a\xb6\xc6\xb4\x22\xa4\x3b\x77\xff\x76\xf9" "\x6b\xf4\x05\xc0\x7f\x8a\x66\x7b\xb8\xff\x54\xd6\x71\x4a\xaa\x21\xce" "\xba\x2e\x78\xce\x03\x14\x6b\x2a\xb9\xf4\x9e\x6d\x65\x08\x11\x19\xb8" "\xe7\xcf\x38\x43\xe9\x13\x49\x79\x0d\x2b\x97\x5c\x9f\x9c\x30\x5d\xf0" "\xab\x4f\x2b\x1b\x2f\x30\xf6\x29\x31\x3c\xc6\x6a\x32\x5e\x40\x37\xf3" "\x8f\x29\x84\x2e\xe5\x78\x1b\xa7\x3d\x2f\x30\xf5\x06\xcf\x7f\xf2\x23" "\x7a\x72\xb4\x07\x5a\xef\xa3\x2c\xdd\x5b\xa0\xae\x4e\x65\xcb\x6f\xa4" "\x7a\x3e\x06\xf0\xd5\xf6\x84\xb7\x17\x2d\x6b\x58\xf5\xf7\xd7\x83\xc4" "\x12\x2d\xb4\xf4\xb8\xb4\xf9\xd3\x29\x6c\x9d\x11\x5f\x43\x27\x10\xc2" "\x9d\x40\xdf\xca\x00\x10\xec\xbe\x2f\x42\xfa\xc8\x99\x91\x1d\x65\xc8" "\x4f\x08\xaa\xa1\x92\x3c\x8a\xdd\x5a\xf5\x18\x28\x62\x11\xdb\x14\xe1" "\x18\x7a\x88\x39\xf3\xb2\xae\x8b\xd9\x14\xea\xfc\x16\xa5\x76\xbb\xe3" "\xeb\xa6\x27\x1a\x4c\x5b\x31\x70\xc3\xf5\x43\x76\x1f\x11\xf1\x32\x6a" "\x05\xc5\x75\xbd\xe1\xb5\xc6\xaf\xd3\x87\x6b\xea\x4f\xbb\x64\x90\x71" "\xa9\x5c\xaf\x74\xde\x9f\x7b\x34\x21\x80\x3e\xc3\x51\xf9\x34\xb8\xd0" "\x93\x2c\xe7\x2a\x13\xab\xf3\x62\x7d\x9a\x39\x6c\x10\x87\x5f\xc1\x67" "\xef\x1a\xe9\x8f\xf9\x2a\xf9\xca\x36\x60\x33\xc9\x9d\x30\x30\x6f\xd5" "\x40\xa0\x9d\x67\xd2\x6a\xb1\x92\x50\x4e\x7c\x09\xf9\xe4\xd0\x62\x87" "\xa2\xb1\x74\x8f\x17\x61\xba\x3c\x16\xd9\xd0\x8b\xe7\x56\x2b\x73\x51" "\xc4\xb4\x67\x9f\x5d\x4b\x38\x68\x1b\xfd\x86\xc7\xf2\x00\x3a\x97\x49" "\xb2\x0b\x60\x21\x12\xa9\x58\x03\x46\x9f\x5d\x25\x2c\x56\x49\x12\xb5" "\x5c\x4b\xf3\x40\x92\x98\xdb\xd0\x66\xd8\x77\xcc\x70\xa8\x9b\x48\x4b" "\x9e\xe6\xbb\x83\x6c\x9a\xcd\x1e\x53\x08\x6c\x4b\xe8\x5e\x9a\x3b\xc5" "\x96\x9c\x70\x16\xdb\x9c\x72\xb6\x86\x20\xc2\x41\x40\x9d\x06\xf4\xd7" "\xf7\x2f\xe2\x28\x9c\x9b\x49\x21\x05\x59\x22\x78\x3b\x8b\x88\x6b\xc2" "\x29\x26\xb7\xd1\x94\x82\x0a\xf2\xb9\x0e\x3c\x60\xe8\x7e\x1a\x78\x51" "\xf3\x8a\x97\x0c\x07\xc1\xda\x12\x0d\x1d\xa7\x5d\xe2\xbb\x99\x4f\xf7" "\xd0\x5a\x31\x35\x22\x37\x33\x26\xf1\x60\x91\x4a\x95\x89\x71\x1e\x04" "\x39\xd6\x94\xf5\x22\x1a\xfe\x8c\xc1\x18\x72\x2c\xe4\x92\x7e\x95\x43" "\xe6\x1a\x12\xa7\x6b\xcf\x2d\xa1\xd0\x1a\x0f\x25\x80\x95\xd3\x20\x63" "\x38\x73\x49\xb4\xe9\xf2\x53\xd8\xb7\x3c\x6e\x83\x4b\x68\x66\xf8\xa5" "\x6b\x47\x97\xb9\x2d\x52\x1f\xa7\x32\xaa\x0d\x55\xc8\xe9\xd6\xc5\x60" "\x11\xee\x6f\xb4\x50\x85\x3d\xc5\x64\xd1\x8e\x97\xc4\x63\x60\x9c\x27" "\xa6\x3f\x9c\x91\xc4\x6d\x7b\xd8\x0a\xce\x4e\xdc\x06\x15\xca\x34\x2f" "\x43\xca\x3b\x3d\x0c\xc3\x6e\xd5\x2b\x7d\x1f\x45\x7e\x5b\x4b\x26\xb5" "\xec\xa0\xd9\x1a\xbe\x4f\x1a\x42\xa2\xee\xc4\x0e\xc2\xfa\xff\x12\x22" "\xf7\x1d\xc2\x26\xd6\x34\x4e\x94\x7b\x45\x15\x56\x91\x20\x5c\x09\x91" "\x3f\xc3\xc6\xab\x3f\xe7\x6f\x4d\x1b\x11\xfa\x45\x86\x9e\x20\x69\x4b" "\x5f\x0a\x10\x74\x78\x0a\x07\x33\x27\x64\x21\x25\x33\xb7\x97\xdd\x24" "\xd8\xdf\x15\x7d\x41\x72\xf9\x12\x53\xb7\x7e\xb2\xec\x90\xc8\x22\x23" "\x07\xed\x59\x13\x64\x63\x05\x7b\x7f\x46\x91\x16\x08\x64\x10\xb7\x50" "\x3b\x44\xce\xf4\x01\xc4\x78\x11\xc1\x39\x00\x60\xda\x5b\x33\x21\xd3" "\x40\x96\xb6\x74\x68\xa7\x70\x29\x78\xd9\x8d\x4b\xd7\x21\xc1\x8a\x25" "\xed\x54\x12\x49\x63\x8e\x90\x28\x1d\xc8\xe3\x56\x5d\xc3\x3e\x66\xd7" "\xb8\x32\xa9\xbd\x62\xc0\x2c\x5e\xd0\xe9\x29\x35\xc9\x24\x72\x49\x96" "\x53\xd2\xd8\x42\xea\x66\x97\xc7\x33\xee\x80\xd7\x75\x88\x40\x74\xb3" "\xa0\xc2\x50\xa4\xaa\x02\x1b\xb6\xea\x93\x51\x4f\x9c\xc5\xf0\x9f\xeb" "\x57\x19\xd2\x70\xcd\x18\x4e\x36\x4c\xa9\x66\xf1\x41\x6e\x10\xf1\x11" "\xbc\x42\x5f\x32\xa9\x93\xfc\x5c\xd7\x55\x03\xf9\x9d\x89\xd9\x1d\x7d" "\xdc\x6d\xee\x70\x19\x30\x57\xcb\x94\x6e\x5f\xbf\x86\x63\xc5\x3e\x12" "\xce\xbf\xfe\x5d\xbd\x4a\x86\xbf\xcf\x5f\x35\xf0\xd8\xaa\x43\x76\x3a" "\x60\xe0\x03\x56\xb4\xf8\xbc\x2b\xca\x01\xb0\x2c\xfd\xdd\xe3\x8f\x0c" "\x4d\xf1\xe7\xf9\x87\x09\xfd\xeb\xc5\xab\xb5\xeb\x96\x31\xbd\xc3\xdb" "\xfc\xf1\x55\x17\xfa\xbc\xf1\x69\x31\xeb\x73\x81\xe8\x37\x13\xb0\x81" "\xad\x19\x47\x27\x4d\x48\x96\xee\x89\x53\xd7\x72\xe9\xe7\x1f\x36\x3b" "\x6f\x11\x47\x31\x7b\xc7\x39\xec\x12\x8e\x4e\xc8\x65\xf8\xf0\xea\x34" "\xcd\x5f\xf1\x9f\xb2\xc2\x89\x31\xd2\xc8\x58\x46\x73\x53\x58\x50\x4a" "\xe9\x16\x15\x35\xcd\x78\x90\xe8\xb9\x5c\x81\x4c\xfe\xc1\x16\xb7\x8e" "\x6d\x0e\xb5\x09\x7c\xd4\xf3\x58\x88\x12\x14\x52\xe2\x73\x91\xd8\x65" "\xc1\x5f\x0b\x98\x69\x25\xd0\xd0\xc6\x23\xbc\xbb\x4d\x8c\xa6\x66\x03" "\x72\x02\x53\xaf\x17\x85\x39\x67\xea\x59\x54\xeb\x5e\xf0\xdc\x43\xde" "\x18\x5e\xc4\x92\x50\x26\xc6\x80\x46\x4e\x66\xd1\xca\xff\x1f\x4c\x7c" "\x75\x7b\xd5\x5e\xc2\x51\x5f\xfe\x71\x83\xe3\x48\x1f\xf6\xf6\x26\xc2" "\x22\x8a\x3f\xc3\xd1\x5f\x63\xe4\xbf\xbe\xc7\x6a\x2a\x17\x02\x06\x14" "\x2c\xbb\xcf\x20\x4a\x1c\xbf\xe0\xee\x56\xeb\x47\xdf\xb7\x9c\x80\x89" "\x4c\x0a\x0f\xbf\x8a\x29\x55\xd8\x61\x67\x8f\xc2\xf8\xf9\xad\x7a\x28" "\x05\x21\x97\xb5\x99\x2b\xce\xd1\x27\x36\x58\xda\x5b\x1f\x42\xfc\xa4" "\x8c\x80\x88\x36\x00\xc2\x4d\x85\x15\xa0\xc7\x11\x3d\xeb\x4c\x97\xdf" "\x91\x8a\xb6\x4b\xca\x16\xa0\xc1\x4f\x25\x47\xdc\x91\xd5\xce\x4f\x88" "\x49\x78\xc9\x5f\xe5\x48\x99\xf7\x7f\xfc\x20\xa2\xc4\xb2\x73\x50\xbc" "\x45\x1b\xef\x72\xa4\x6d\x8e\x14\x4a\xd5\x7a\x8d\x5f\x8a\xc0\x39\xf5" "\x8b\x8a\x53\xea\x1f\x3f\xd5\xfc\xe6\x12\xa1\x71\xbf\x82\xba\x17\xc0" "\x68\x1c\xf4\x6c\xe5\xc8\x18\x1a\x52\x2e\xd2\xe9\x86\x36\x19\x03\x90" "\x31\x59\x64\x30\x46\xc7\xbe\x17\x87\xda\xc6\xcc\xab\x09\xd1\x8a\x30" "\x99\x75\x41\xdc\x6e\x9e\xfa\x26\x0f\x1f\xf0\x39\x2b\xc1\x89\x0f\x19" "\xd8\xbb\x72\x5f\x4f\xe7\xd8\xbc\x61\x8f\x46\xe0\xc2\x3b\xe6\xb9\xca" "\x67\x77\x7d\xd3\xf5\xa8\x9b\x41\xcc\xfb\x11\xa5\x26\xa3\xbe\xd0\x45" "\xa2\x90\x6f\x86\xcc\x51\x86\xa1\xdb\x7a\x70\x39\x12\x61\xb6\x94\xb4" "\x23\xe5\xa4\x4d\x37\x4f\x9d\x37\x20\x33\x0e\x08\x35\x74\x08\x3f\x89" "\x50\xb2\xb3\x5c\x8b\xb5\xb6\xc0\xa7\xfe\x25\x9f\x23\x5d\xc1\xc0\x69" "\xd4\x58\x1a\x9f\x0a\x74\x51\x89\x05\x61\xa0\x82\x9b\xb2\x90\xde\x6a" "\xef\xe4\xd2\x43\xae\x0b\x00\xca\x61\xa1\xdc\x42\x62\xbb\x49\x51\x24" "\x2b\x21\xd8\x81\x48\xeb\x7b\x6a\x97\x18\xd6\x43\x32\x74\xf2\xb3\xc9" "\xbc\xdb\xb6\xd5\xdf\x67\xb4\x8f\xf4\x26\x92\xd8\xcd\x7f\x4b\x7f\x41" "\x72\x8d\xe6\x8e\xa1\xce\x0f\x3e\x4a\x28\x43\xc5\xb9\xff\xc4\x3f\x69" "\xb8\xa0\x44\x5d\xce\x44\x08\x1f\x5b\x44\x3a\x32\x70\x84\xb0\xd0\x0d" "\x07\xcb\xdb\xbf\xd2\xda\x5d\x67\xbf\x8d\x4b\xb4\xee\x40\x8d\x17\xee" "\xee\x48\xb6\x1d\xec\xd0\x6b\xd3\xda\xc9\xa1\xad\xbe\xb0\x69\xb4\x9e" "\xc9\x66\x08\xb9\x17\x9b\xb3\xaf\x4c\x10\xf2\xad\xe6\x77\x8b\x31\xfd" "\x4c\x22\xc2\x96\x1c\xb9\x49\xa6\x4e\x9a\x8a\x48\x79\xc5\x50\xf8\xd8" "\x78\x30\x64\xcb\x30\x45\x11\xe4\x0e\x2e\x56\x2b\xa8\x3c\x08\xba\x8a" "\xe0\x11\xa7\x84\xed\x9d\xb0\x3d\xb5\x52\x7a\x5a\xae\x22\x2c\x85\x6c" "\x8d\xf0\xa9\x4f\x9c\x4d\xef\x0f\x94\x24\x4c\x5b\x8e\x3d\xb9\xf3\x9d" "\xbd\x33\x79\x28\xe2\x4d\x9d\x85\x62\xf2\x31\xfe\xa7\x21\x16\xc0\x10" "\x89\x16\x3d\x2c\x5f\x4c\xa1\x7f\xaa\xb2\x0b\x73\xc9\x95\x7f\xa1\xa9" "\xaf\x20\x83\x7a\x80\x48\x70\x03\x4d\x4e\x64\x28\x11\x25\xb0\x70\xd8" "\xee\x0d\xbf\x05\xf9\x5e\x5f\xb0\x79\xe2\xa5\x7e\x9a\xf9\x77\x22\x2e" "\x90\xb6\x64\x18\x91\x14\xdc\xcb\xca\x81\xee\x58\xb7\xde\x90\xa8\x13" "\x76\x8a\x20\x49\x05\x2b\x33\x9a\x60\x8d\x3e\x99\x66\xbd\xb3\xb5\x84" "\x29\x1f\xbf\x76\x94\xa7\xd1\xde\xa7\xf7\x2c\xa6\x04\x89\x4e\x6c\xca" "\x5d\x32\x6e\xd5\xe4\x8c\x15\xef\xf5\xe6\xa8\xcc\x11\xc4\x0f\x84\xca" "\x92\x0d\x79\xa5\xc5\x5d\x07\x00\x19\x09\xbf\x63\x38\x92\x1c\x65\x6a" "\x39\xd5\x9d\x03\xf6\x2b\xb5\xb8\x87\x01\x89\xf0\x41\x6e\xc8\xc3\x17" "\xb0\x3c\xcd\xcb\xbe\xb3\xe1\xa9\xbf\x26\x61\x81\x3f\x49\x66\xb5\x7e" "\xb5\x6a\x27\x57\xde\x5f\x77\x45\x85\x1b\x5f\x7b\xf7\x5e\x41\xeb\x16" "\x46\xe6\x1a\x41\x92\x3c\x5c\x0e\x58\xc2\xea\x47\x8d\x95\xb5\xc3\x9c" "\x45\x07\x44\xae\xa0\xaa\xd3\x70\x6f\xce\x68\x4c\xb7\x33\x8f\xf3\xda" "\xca\xb6\x0e\x8d\x96\x8f\x0e\x6f\xc0\x70\x69\x3a\xe3\xca\x16\x99\x6b" "\x34\xa5\x0a\xfb\x7e\x6e\x37\x75\x46\xae\x28\xdc\x8d\xe7\xa2\xea\x3a" "\x65\x7b\x4b\x00\x03\xa9\x1a\x48\x8e\x34\x7c\x61\x97\x1d\x62\xf3\x2e" "\xaf\x84\x3d\x4d\x4c\x4f\x86\xcc\x40\x33\xc1\x24\x4c\x84\x08\xde\xf0" "\x91\x88\xdd\xe5\x09\xc6\x29\x32\x3f\x34\x07\x2f\x90\x89\xa3\x84\x66" "\x80\x89\x4e\x8b\x00\x0a\x03\x86\x54\x38\xb2\xea\x21\x2b\x68\xfd\xef" "\x7f\x17\x58\x3f\x92\x01\x4e\xef\x2c\x81\x15\xa3\x7c\x9c\x82\xde\xe0" "\x62\x13\xc1\x40\x7c\x14\x33\x69\x0f\x68\xcd\xc8\xe9\x19\x71\x10\x40" "\x39\xdf\xe0\x67\x74\xb9\x46\xf4\x3b\x68\xb7\x95\x7a\x5c\xa3\xee\x76" "\x3e\xaf\xbb\x74\x37\x85\x0e\xb0\xa2\x85\xc4\x13\xbc\xf6\x96\x52\x32" "\xd5\x93\xd8\xda\x47\xa2\xa0\x6a\xbc\x63\x5a\xe3\x8e\x59\x6a\x9d\xae" "\x55\xb4\x3f\x34\x1b\xcc\x6f\xe7\x2d\x79\xb4\x53\xac\x1c\x25\x9d\xa3" "\x7f\x64\xcb\xc1\xf1\x50\x8c\xaf\x28\x0a\xa6\xa3\xf4\xcd\x2f\xf5\x56" "\x4c\xc5\xa8\x72\x7f\x22\x24\x31\x45\x4a\x5a\xc9\x33\x98\xa2\x9f\xb9" "\x5b\x4e\x05\x76\x86\xcd\x6f\xcd\x92\x09\x92\xf7\x4e\x58\x70\x74\x96" "\x76\xa3\x6e\x04\x3b\xec\x5f\xc1\xb0\xfc\xe5\x56\x3a\xff\xe9\xad\xdf" "\xaa\x36\x89\xe8\x57\x38\x3c\xcd\x1f\x29\x24\x08\x04\x49\xd2\xcf\xb0" "\x06\xe8\x55\x57\x0b\x71\x1c\x1d\xed\xd1\xdf\x26\x29\xaf\xaa\x38\x06" "\xf4\xae\x22\x9a\x9a\x8e\xf1\x94\x0d\xdf\x2c\x55\xda\xc7\x81\x2d\x23" "\x74\xc0\x68\x4b\x7b\xa2\x7b\x2f\x08\x49\xee\x4c\x05\x5d\x2b\x8c\xcc" "\x8e\x41\xc5\x93\x37\x83\x40\xd7\x54\x6b\xb9\x74\xbc\x80\x32\xf2\x20" "\xb3\x70\x99\xe3\xb0\x4c\x65\x91\xc4\x0d\x2c\x50\xa8\x55\xa4\x91\xe0" "\x3c\x1c\x9c\xbb\x32\xc4\x00\xf6\x10\x43\x41\x26\x2d\x92\xda\xaf\x3e" "\x2c\x04\x93\x6c\xf2\x87\x88\xfd\xff\x8e\x0a\x77\x77\x0a\x9d\xeb\x90" "\x89\xa9\xe3\x2e\xb5\xd9\xe2\x58\x1a\xec\xd9\x8f\x83\x88\x1c\xa8\xe7" "\xd4\x9e\x60\x35\x56\xdc\x03\xa9\xaa\x19\xa8\xf3\xa4\x73\x5a\xae\xe3" "\x47\xb2\x5e\xa3\x5b\x36\xfa\x57\x48\x4c\x0b\x6d\x59\x19\x79\xb4\xa3" "\xda\x89\x4f\xa0\xc1\x59\x66\xd6\xa5\xe0\x2e\x39\x7c\xcc\xdb\x9c\x31" "\x4b\x50\x43\x72\xb8\x1e\xf6\x91\x38\x77\x76\x70\x01\x26\x3c\x05\xda" "\xe3\x62\xb4\x9e\x59\x28\xef\x36\xf5\x54\xce\x24\x5b\x41\x11\x48\x64" "\x17\x63\x4f\x1e\x7f\x45\x30\xa7\x60\xae\x6f\xfd\x31\x23\xf5\x73\x6a" "\xc1\x2c\x5b\xf5\x06\xc5\xdc\xa0\x30\x79\xc0\xfd\x07\x76\xcd\xb5\x6c" "\x93\x8c\xdf\x48\x0f\xb9\xb9\x7b\x16\x85\xdf\xa3\xbe\x6f\x71\x2a\xae" "\x10\x7e\x2d\xda\x72\x6b\xec\x13\x7b\x2e\xbd\xf5\x6c\x0f\xca\xec\xca" "\x43\x50\xbd\x7b\x5c\x84\xd5\x7f\x29\xc2\xa2\xc9\x9a\xe1\x0c\x30\xce" "\xce\x48\x31\xd7\x1a\xe4\xee\x33\x62\x98\x3c\xc8\x16\xbb\x6c\xb9\x22" "\x5b\x9d\xb0\x85\x03\xa1\xbe\x23\xa2\x6a\x04\x25\xa8\x62\x8a\x2e\x71" "\x8f\xea\xe5\xdf\x91\xd8\x29\xf2\x79\x66\xf7\x66\xb6\x23\xa0\xa4\x95" "\x8a\x57\x64\x2a\xef\xae\x25\x97\x13\x73\x36\x70\xd5\xb1\xd0\x27\xfb" "\x8e\xb2\xd0\xd3\xa0\xb4\xac\xd4\x82\x07\x6d\xfa\x09\xff\xe8\x83\xf5" "\x56\xb2\xdb\x22\x62\xbc\x08\x72\xe1\xbd\x71\x3f\x10\x0d\xd7\xa8\xa8" "\xf2\xd7\x25\xb4\x6e\x09\xc6\x25\xd5\x13\x17\x98\x72\xbb\xcc\x9a\x41" "\xe5\x96\xa1\x8b\x24\x71\xd9\x77\xf4\xca\x2b\xeb\xd0\x6c\xda\xba\x31" "\xb7\x0e\xf2\x5e\x09\x8f\x21\x4f\xef\x16\xf1\x6f\x72\x5c\xad\x43\x11" "\xeb\x91\x45\x7f\xdb\x70\xb4\x71\xed\xdb\x65\xec\xaf\xb1\xe2\xb0\x3c" "\x5f\xf2\x13\x56\x24\x1e\x3c\xab\x2c\x8b\xa6\x01\xf9\xef\x1a\xec\x90" "\x06\xb7\xcd\x0b\x81\xda\x29\xbe\x01\xcb\x4c\x1d\x52\xe5\x63\x29\x8e" "\x37\x30\x13\x88\x6e\xbb\x18\x89\xbd\x56\x16\x64\x7c\x6c\x41\x8e\xa6" "\xbc\x1f\x3c\x08\x53\xb6\x5c\xae\x48\x46\x7b\x35\xf0\x83\x18\xe3\xa9" "\xd0\x34\xaf\x72\x24\xcc\x35\x20\xab\x1e\xce\x77\x51\xba\x15\x40\x72" "\x98\xb2\x1e\x4f\x84\xef\x7c\x23\xd7\x99\x37\x39\x40\x3d\x4f\x11\x6c" "\xba\x2d\x0a\xe2\xd4\x00\x3a\x28\x33\x4c\x46\x1c\x73\x4d\x45\x55\x10" "\x5b\x98\x6a\xd0\xaf\x28\xaa\xc3\x6c\x75\x3a\xb5\x2b\x91\xb7\xe2\x3a" "\xe3\xab\x07\xd3\xb1\x70\xfe\x53\xa2\x24\x9e\xfe\x5b\x65\x46\x3a\x3f" "\x23\x7c\xec\x72\x09\x1b\x04\x00\x5f\x95\xa1\x5a\xe5\x95\x19\x1b\xa3" "\x9d\x0a\xe1\xd9\x1d\x8e\x00\xb1\x32\xae\x93\x39\x88\x4b\xc5\x7b\xbb" "\x79\x97\x8a\x30\x8e\x1c\x31\xc5\xf2\x13\xb0\x92\xf3\x80\xa7\xba\x58" "\xf5\x58\x69\xe9\xc2\x9a\x5a\x6e\x7a\x7a\xa4\xf8\xd5\x8e\x57\x87\xcc" "\x05\xe5\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 8192); *(uint64_t*)0x200000000b80 = 0; *(uint64_t*)0x200000000b88 = 0; *(uint64_t*)0x200000000b90 = 0; *(uint64_t*)0x200000000b98 = 0; *(uint64_t*)0x200000000ba0 = 0; *(uint64_t*)0x200000000ba8 = 0; *(uint64_t*)0x200000000bb0 = 0; *(uint64_t*)0x200000000bb8 = 0; *(uint64_t*)0x200000000bc0 = 0; *(uint64_t*)0x200000000bc8 = 0; *(uint64_t*)0x200000000bd0 = 0; *(uint64_t*)0x200000000bd8 = 0x200000000600; *(uint32_t*)0x200000000600 = 0xae; *(uint32_t*)0x200000000604 = 0; *(uint64_t*)0x200000000608 = 0; *(uint64_t*)0x200000000610 = 0; *(uint64_t*)0x200000000618 = 0; *(uint64_t*)0x200000000620 = 0; *(uint64_t*)0x200000000628 = 0x100000000; *(uint32_t*)0x200000000630 = 0xf; *(uint32_t*)0x200000000634 = 0; *(uint64_t*)0x200000000638 = 0; *(uint64_t*)0x200000000640 = 0x1fffd; *(uint64_t*)0x200000000648 = 0; *(uint64_t*)0x200000000650 = 0; *(uint64_t*)0x200000000658 = 0x20000000000000; *(uint64_t*)0x200000000660 = 0; *(uint32_t*)0x200000000668 = 0; *(uint32_t*)0x20000000066c = 0; *(uint32_t*)0x200000000670 = 0; *(uint32_t*)0x200000000674 = 0; *(uint32_t*)0x200000000678 = 0; *(uint32_t*)0x20000000067c = 0; *(uint32_t*)0x200000000680 = 0; *(uint32_t*)0x200000000684 = 0; *(uint32_t*)0x200000000688 = 0; *(uint32_t*)0x20000000068c = 0; *(uint64_t*)0x200000000be0 = 0; *(uint64_t*)0x200000000be8 = 0; *(uint64_t*)0x200000000bf0 = 0; *(uint64_t*)0x200000000bf8 = 0; *(uint64_t*)0x200000000c00 = 0; syz_fuse_handle_req(/*fd=*/r[0], /*buf=*/0x200000008280, /*len=*/0x2000, /*res=*/0x200000000b80); break; case 6: // newfstatat arguments: [ // dfd: const = 0xffffffffffffff9c (8 bytes) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 2f 66 69 6c 65 31 00} (length 0xe) // } // statbuf: nil // flag: statx_flags = 0x4000 (8 bytes) // ] memcpy((void*)0x200000000180, "./file0/file1\000", 14); syscall(__NR_newfstatat, /*dfd=*/0xffffffffffffff9cul, /*file=*/0x200000000180ul, /*statbuf=*/0ul, /*flag=AT_STATX_DONT_SYNC*/ 0x4000ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; loop(); return 0; }