// https://syzkaller.appspot.com/bug?id=af8649b00767557f5a6557cd50eac7fe9f8970fc // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif #ifndef __NR_openat #define __NR_openat 56 #endif #ifndef __NR_read #define __NR_read 63 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, 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 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, loopfd = -1, 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) { memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; 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"); } 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) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; retry: while (umount2(dir, MNT_DETACH | UMOUNT_NOFOLLOW) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, MNT_DETACH | UMOUNT_NOFOLLOW) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, MNT_DETACH | UMOUNT_NOFOLLOW)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, MNT_DETACH | UMOUNT_NOFOLLOW)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static int inject_fault(int nth) { int fd; fd = open("/proc/thread-self/fail-nth", O_RDWR); if (fd == -1) exit(1); char buf[16]; sprintf(buf, "%d", nth); if (write(fd, buf, strlen(buf)) != (ssize_t)strlen(buf)) exit(1); return fd; } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void setup_fault() { static struct { const char* file; const char* val; bool fatal; } files[] = { {"/sys/kernel/debug/failslab/ignore-gfp-wait", "N", true}, {"/sys/kernel/debug/fail_futex/ignore-private", "N", false}, {"/sys/kernel/debug/fail_page_alloc/ignore-gfp-highmem", "N", false}, {"/sys/kernel/debug/fail_page_alloc/ignore-gfp-wait", "N", false}, {"/sys/kernel/debug/fail_page_alloc/min-order", "0", false}, }; unsigned i; for (i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].file, files[i].val)) { if (files[i].fatal) exit(1); } } } #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, 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; }; 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; default: return -1; } return fuse_send_response(fd, in_hdr, out_hdr); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[1] = {0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; memcpy((void*)0x20000180, "squashfs\000", 9); memcpy((void*)0x20000100, "./file0\000", 8); memcpy((void*)0x200001c0, "\x00\xe7\xa1\x4b\x1f\x7c\x15\x9e\x79\x58\x74\xd3\xe4\xc1\x23\xdb\x87" "\x81\x10\x37\x9a\xda\xef\xf3\xbb\x04\xb2\xdb\x13\xf5\x96\x8a\x99\x68" "\x9a\x0b\xbe\xc6\xc8\xf1\x88\x3d\x3e\x9d\xd1\x0f\xde\xbe\x0a\x00\x00" "\x88\x9d\x69\x0b\xe9\x60\x14\x7c\x2c\x99\x1d\x5a\x83\x24\x78\xf3\xd3" "\xb5\x4e\x29\xd5\x5d\x46\xf1\x0c\xec\x87\xa5\x3e\xe6\x28\x6f\x4f\x69" "\xa4\x81\x3b\xeb\x04\x25\xe6\x9d\x00\x00\x4a\x52\x1e\xd6\x7d\x1a\x69" "\x58\xd7\x65\xc3\x96\xe7\xa2\xd6\xc3\x9e\x16\x80\xf9\x79\x1d\xbb\xa6" "\x3e\x92\x79\xfe\xc9\x62\xd3\x8b\x3f\x2d\x75\xa1\x4e\xff\xd9\xfc\x69" "\x6d\x98\xdb\xad\x11\x82\xe5\x0e\x8e\xad\xe7\xfa\xd7\x1c\x91\x6c\x93" "\xaa\x48\x65\x47\xd1\x4b\xd6\xff\x28\xd1\x3d\xb2\xb6\x24\x57\x2a\x16", 170); memcpy( (void*)0x200003c0, "\x78\x9c\xec\x92\xbf\x4e\xc2\x50\x14\xc6\xbf\x5b\xca\x1f\x1d\x8c\x26\x4e" "\x2c\x90\x48\x14\x07\xa5\x2d\x6a\x8c\x8b\x8e\xb8\xfb\x00\x12\xa8\x48\x2c" "\x2a\x6d\x13\x85\x30\xd4\x18\xc3\xe0\x60\x1c\x7d\x02\x5e\xc3\xc4\x17\xd0" "\xc1\xf8\x00\xcc\x0c\xc4\xd9\xd4\xdc\xdb\xd3\xe6\xd6\x57\xf0\xfe\x06\xbe" "\x7b\xbe\x7b\xee\xbd\xe7\x1c\x7a\xee\xf5\xbd\x3c\x80\x9f\xf9\xa8\x85\x23" "\x08\x32\x58\xc2\x07\x63\xd0\x01\x94\x58\xe4\xcd\xb4\x48\x9f\x49\x3f\x49" "\x9f\x22\xc1\x3b\xe5\x1d\x93\x7f\x4f\x5a\xf4\x06\xc3\x8b\xa6\xe3\xd8\x6e" "\xf9\xa0\x8c\x95\x94\x01\xe0\x5b\x78\x89\xe5\x1d\xde\x69\x98\x89\xab\xbe" "\xe6\xa3\x16\x5f\x9c\x02\x08\xc3\x30\xe4\x5e\x1b\xe0\xe9\x90\x73\x32\x00" "\xfa\x52\x4e\x51\x07\x56\x45\x13\x61\x92\xc3\x1b\xe1\xc1\x06\x80\x9a\xdf" "\xbb\xae\x79\x83\xe1\x56\xb7\xd7\xec\xd8\x1d\xfb\xd2\xb2\xea\x7b\xc6\x8e" "\x61\xec\x5a\xb5\xb3\xae\x63\x1b\xd1\x2f\x93\x9e\xa0\x56\xc0\x75\x13\x00" "\x9f\xd7\x82\xb4\x9f\x05\xf0\x40\x39\x8b\x48\xc3\xa4\xd2\x68\x9f\xc5\x67" "\x39\x39\x69\x86\xd5\xb5\x6c\xea\xac\x26\x9d\x8d\x95\xe1\x35\x79\x37\x8f" "\xf8\xff\x02\x4e\xb0\x8e\x02\x80\x9b\x80\x49\x6e\x45\xdc\xa2\x43\xb4\xd4" "\x00\x43\x86\x02\x53\x97\xea\x8b\xde\x2a\x88\x8d\xed\xd6\x95\xd3\x1e\x83" "\x81\xc5\xc7\x26\xd0\x93\x3b\xcc\x29\xb2\x49\x60\xc9\x41\x7d\x3f\x88\xcb" "\x1e\x93\x56\x48\x1b\xa4\x13\xd2\x29\x69\xe9\xcf\x27\xa3\x8b\x1b\x1e\x29" "\xaa\x06\x40\x8e\x97\xe1\xbb\x26\x1f\xd2\x6d\xd3\xf7\x5d\x93\x0f\x4c\xac" "\xac\xc4\xb3\x96\x03\x79\x60\xfc\xd5\x17\x2d\xdd\xdc\x9b\x06\x85\x42\xa1" "\x50\x28\x14\x0a\x85\x42\xa1\xf8\xef\xfc\x06\x00\x00\xff\xff\x50\xb6\x76" "\xbe", 379); syz_mount_image(0x20000180, 0x20000100, 0, 0x200001c0, 3, 0x17b, 0x200003c0); memcpy((void*)0x20000040, "./file2\000", 8); res = syscall(__NR_openat, 0xffffff9c, 0x20000040ul, 0ul, 0ul); if (res != -1) r[0] = res; syscall(__NR_read, r[0], 0x20000a40ul, 0xfffffdeful); memcpy( (void*)0x20002a80, "\xe2\xd5\x11\x79\xff\xc3\x9e\x2c\x15\xe2\x42\x36\x43\xbc\x8a\xe4\x4d\x59" "\xba\x7b\x34\xc1\xe0\xd2\xe0\x9d\x83\x9d\xf2\x7b\xfa\x35\x84\x15\xae\x60" "\x00\x91\x26\x2a\xcf\x6b\xb1\xca\x50\x53\xaa\xc1\xe8\xab\xff\xab\x04\x19" "\x7d\xc5\x62\x38\xc4\xb0\xe4\x5a\xad\x01\xe6\x66\x1f\xfc\x13\x99\x0a\xc5" "\x5e\xd9\x36\x64\x9d\x28\x3b\x59\x6d\x9b\x65\x52\x41\x10\xb4\x23\x77\x19" "\x6f\xda\xc4\xf2\x74\x6a\x6a\x4e\x42\x89\xf4\xbe\x3f\x19\x86\x84\x51\x9e" "\x36\x00\x70\x71\x5d\x11\x92\xaf\xee\x6a\x58\x90\x53\xef\x2f\x9a\x22\x2e" "\x1e\x68\xaa\xb6\x56\xc8\xc4\x82\x02\x69\xea\x75\x4a\x8e\xc0\x24\x4f\x84" "\xf2\x97\x28\x46\x07\xb6\x86\xad\xfe\x68\xc2\x44\xb9\x4e\x38\xf6\x0f\x13" "\x65\x8b\xc0\x9e\xd2\x7a\xc4\xf5\x76\xa4\xa2\x46\xb6\xda\x86\x07\xc5\x57" "\xcb\x1d\xb1\x4f\xc5\xa6\xa4\xd5\xd6\x18\xe6\x44\xb0\xf7\xe6\xd1\xe0\xec" "\x83\x20\xb5\xef\xe9\x23\x4e\x60\x09\x3f\xe0\x41\x6e\xd7\xdb\x6c\x4c\x80" "\x8e\x57\xd4\xcb\x2f\xf2\xb4\xa6\x28\x48\xf8\x48\x22\xef\x47\xc6\x1b\x79" "\x13\x8b\x95\xdb\xbe\xb7\x61\x20\x47\xf2\xcf\x61\xd7\xce\x8c\x3c\x00\x49" "\xce\x77\x44\x4e\x17\xca\x53\x41\xb8\x91\x7f\xa6\x1e\xe5\xf2\xd0\xfc\x7a" "\x52\xc4\x38\x60\xec\xb5\xa1\xcb\x0d\xf3\x06\x50\xdc\x4a\x0a\x8d\x7e\xcb" "\x60\x32\xf3\xa5\x34\xe1\x2c\x36\x25\x82\x73\xd4\x48\x10\x17\x11\xef\x89" "\xea\xf3\xb8\x8c\xf5\x34\x21\x0b\x6e\x13\x52\xd4\x47\x29\xa2\x90\x15\x41" "\xe3\xb3\x39\x7a\x64\x8d\xe8\x2c\x27\xb0\x38\x7c\x20\x57\x08\x2d\x24\x08" "\x4a\xed\x43\x0b\x79\xfd\xa7\xe2\x77\x76\x50\xc4\xaf\x86\x63\xfe\xfe\x9b" "\x45\x27\x47\x93\xe9\x7f\x2f\x67\x43\xe1\x8b\x9d\xfe\x10\x1d\x33\x52\x08" "\xe7\x65\x6b\x4b\xa5\xdf\x8c\x40\xc2\xb6\xd9\x41\x80\x32\xed\x0e\x30\xfd" "\xde\xf8\x9a\xf7\xfb\x1f\x82\xb1\x4c\x9f\x42\xf8\x86\xfd\x79\x95\xd6\x7d" "\x01\x72\x50\x42\x37\x5f\x69\x58\x88\xad\x80\x56\xc5\xa1\x1d\x89\x7f\x11" "\xd1\x17\x7f\x83\x58\xf4\x11\x14\x49\x4c\x29\x7e\x14\x61\x28\xbb\x12\x15" "\xc8\x69\x43\x5c\x88\x1a\x67\x32\x06\x0b\xa2\x9e\x5c\x8e\x9e\xaa\xc0\xa7" "\xd7\xf6\x1e\x05\x51\x78\x62\x8c\xa9\x2e\x93\x54\x92\xff\x18\xeb\xf2\x45" "\xc4\x24\xe6\x52\xed\xbb\x6e\x06\xb6\x53\xbc\xa8\x42\x71\x65\xdd\x96\x85" "\x59\x95\x78\xdc\xed\x69\x66\xfe\xe4\xd6\xc1\x95\xf1\xa9\x5d\x40\x3c\x24" "\x18\xae\x5b\x51\x5d\x52\xdc\xc5\xb2\x4e\x18\xd4\x22\xeb\x39\xc8\x2e\x58" "\x18\xcd\xc6\x28\xc4\x60\x31\x29\x68\x57\xef\x65\x1e\x1d\x1e\xd4\xf0\xc4" "\x3e\x71\x9a\x3a\x42\xfb\xb0\xb3\xd5\xbc\x73\x9f\xda\xe8\xa7\x2d\xd2\x3b" "\xed\x76\x0a\xfa\x2b\x52\x67\xe4\x27\x5b\xf9\x99\x0c\xdf\xb5\x47\x57\x9d" "\x6b\x41\x5e\xa8\xd2\xb0\xeb\xe7\xc7\x50\xad\xfa\x39\x1a\x51\x32\xd0\x08" "\xf1\xc3\x34\x60\xcf\x86\x42\xbc\xb9\x32\xc6\xc4\xcf\x0b\x3f\xe4\x48\x44" "\xd0\xde\x38\xc9\xc5\x39\x0e\xe3\xb4\xb4\x7c\xf2\x41\x8c\x2e\x25\x3b\xec" "\x9f\x04\xd3\x37\xb9\x16\x0c\x8d\x8a\x8b\xec\xc6\xcf\x57\x06\xe2\x6a\xb2" "\xbe\x14\x57\x8c\xfa\x80\x5d\x1b\x1c\x95\x4a\x57\x64\xa0\xd2\xbd\x62\x16" "\xbe\x12\xd6\x6f\x0e\xb5\x94\x79\x6f\x1e\x7b\x00\xc7\xf0\x31\x8a\x93\x92" "\xf3\xea\x60\x14\xa0\x74\x41\x97\x0d\x97\x98\x9b\xeb\x5f\x7f\x84\xd2\x85" "\xcc\xa5\xc4\xb6\xd3\x9b\xec\xdb\x09\x97\xcd\x28\x39\xc1\x07\x06\x44\xf5" "\x72\x84\x29\xd9\x5f\x09\x7b\x9b\x06\x23\xb1\xf9\xb2\x86\xeb\xba\x45\x1f" "\xa2\x78\xf2\xc3\x8c\xa9\x96\xa7\x0a\xa7\xfc\xc6\x67\x21\x33\x03\x10\x38" "\x58\x5a\x7b\xcf\x39\x1b\x23\xa4\x44\xed\x05\xaa\x2d\x8d\xb2\xa2\xf8\x23" "\xe6\xe0\xfa\xef\xc6\x41\x95\x0d\x4a\xc3\x96\x92\x3a\x9c\xf5\xd8\xda\x23" "\xeb\x7d\xb8\x22\x0d\xa7\x6a\x32\x38\x0d\x95\xb4\xd8\x7e\xbc\xf2\xe8\x4e" "\xc7\xa5\x6a\x66\xb9\x93\x82\x64\xeb\xf7\x7a\xf1\x36\x87\x2a\x70\xc3\x66" "\xe4\x33\x5b\x34\x68\xda\x5b\x02\x21\xf4\x21\x28\xa5\xc8\x11\x51\x2d\xcd" "\x12\xab\xde\x24\xd2\xdd\x4e\xf0\x96\xde\xb8\xc4\xca\xff\xbf\x71\x7a\x3e" "\xe8\x72\xd3\xfe\xb6\x3a\xb0\xab\xd1\x4d\x49\x37\xfe\x27\xf7\xc2\xb0\x73" "\xc6\x75\x7b\xf6\x60\xac\x9d\x0d\x4a\x26\xf4\xa4\x3d\x66\xe5\xfa\x18\x23" "\x5a\x5d\xf8\x0e\x18\x25\x0b\x00\x3f\xaf\x1e\xa0\xcd\xcf\x79\x09\xd1\x6b" "\x70\x53\xde\xe6\xc5\x8f\x09\x1a\xd8\x66\x48\x41\x9e\x94\x44\xa8\xac\x4b" "\xba\x09\xf8\x35\x88\x26\x33\xbe\x3c\xf8\x77\x6d\xb9\xc1\x28\x0e\x83\x1a" "\x09\xc3\xf9\x37\xcb\xeb\xb1\x9f\x84\x5f\xcb\x60\xa0\x7f\x01\x56\xab\x24" "\x63\x5e\xc5\x8f\x5b\x9d\xf7\x54\xce\xda\xea\x39\x94\xac\x21\xd3\xb8\x02" "\x26\xc7\xa6\xbe\x24\x6b\xd2\xe6\x06\xf4\x30\xdd\xa0\xb2\x6b\x03\xc8\x23" "\x19\xaf\x78\x2a\x26\x73\x1a\x52\x4b\xb3\x30\x8a\xb8\xce\xdd\xe6\xa5\x8c" "\xf7\x21\x4c\xa2\xa6\xa4\x4e\x4d\x7c\x4b\x60\x56\x02\xcd\x14\x70\xe9\x3b" "\xbd\x60\x56\xec\xeb\x9c\x8d\x22\xcf\x34\xb7\x0a\x6a\x6e\x88\x59\xa2\x46" "\x50\x3d\xaf\x95\xab\x4c\x76\x9f\xa6\x83\x1d\x2a\x52\x5a\xd9\xbe\xd1\xaa" "\xae\x56\x54\x7e\xf9\x27\x0f\xfb\x05\xe8\x42\x82\x7d\xd3\x86\xae\x64\x18" "\xd9\x2a\x64\xc9\x09\x1d\xca\x5a\x83\xb9\x42\x5d\x18\x39\xd6\x00\x19\x6e" "\xa4\x0a\x93\xc4\xf9\xf7\xf9\xf5\xc8\x87\xb9\xc4\x36\xd0\x91\x91\x28\x83" "\xd2\xac\x68\x50\xca\xc3\x64\xd5\x57\xcf\x80\xc1\x11\x88\xa9\x98\x61\x3a" "\xbe\x61\x27\x9c\x31\xef\x95\x3a\x95\x45\x3a\x1d\x61\xe1\x1b\x48\x61\x11" "\x4c\x80\x08\x82\xb8\xf2\xa8\x25\x04\xc1\x47\x97\x4c\x8a\xe1\x2b\x78\x4c" "\xb9\xbd\x52\x37\xa3\x8c\xe0\xff\xa9\x5b\x4d\xa9\x6f\x39\x04\xd2\xf5\x14" "\x2e\xef\x08\x74\x3c\xbf\xfa\x58\x32\x72\xa2\x84\x3d\x48\x4b\xf2\x8a\xed" "\x48\x92\xfe\xbe\x77\x76\x29\x0d\x77\xdf\xc5\xbf\x4c\x6a\x64\x73\xb7\xbb" "\x6d\xb8\xb2\xee\xea\xb2\x55\x2b\xf5\xfe\x36\x39\x8c\xa8\x4e\xec\x39\x1b" "\x54\x16\x1d\x42\x5d\xf0\x15\x88\x0c\xa4\xa3\x69\x0a\xee\xef\x77\x21\x7a" "\xb9\x5d\x9d\x89\xcd\xf4\x2b\xee\x63\x4b\xdc\xdf\x45\x24\x74\x18\xe2\x7e" "\x5b\xe7\x23\x05\xb8\xe5\x3d\x92\x04\xcd\xd2\x4f\xd0\x2d\xfb\xc7\x84\xe7" "\x0c\xd5\x17\xc6\xf7\x23\x15\x25\x5d\x94\x29\x14\x2a\x2a\x8f\x94\x48\xe7" "\x62\x1d\xe1\x57\x61\x61\x8e\x5e\xd3\x62\x5a\xec\xa2\xbf\xa3\x45\x1d\x65" "\x68\x67\x51\xb8\xfd\x50\x44\x60\x49\x43\xfe\x15\x20\x9b\xdc\xf8\xa3\xc0" "\xca\x87\xbd\x1d\x18\x6a\x73\x37\xaa\x7d\xfc\x7b\xdc\x29\x3d\x13\x29\x9c" "\x42\xaf\x7c\xee\xce\x29\x56\x34\x94\xee\xce\xa3\xaa\xa5\x41\xef\xf3\x9e" "\x39\x92\xb6\x0a\xb9\xfd\x05\xa2\x42\x21\xc8\x40\x1d\x48\x67\x7b\xef\x62" "\x2c\xe4\x9e\xaa\x58\xa1\x8d\x67\x76\xc0\xab\x59\xab\x1f\x50\xbd\x16\x84" "\x22\xbc\x14\x6d\x74\x29\xaa\x5d\xba\xb9\x76\x32\x8f\x59\x42\x2b\xae\xb4" "\x08\xc6\x3d\x50\x9b\x0a\xfb\x6e\x8b\x9f\x70\x24\x99\x35\x1b\x43\x38\xbb" "\x0d\xa5\xbf\xff\x3c\x52\xab\x3a\xe6\xf2\x1b\xe2\xe5\x69\xfa\xb8\x3e\xac" "\x9f\x28\xfa\x93\xb8\xf3\x62\xb4\xdd\x0f\x07\x90\x03\x20\x1d\x44\x79\x7d" "\x99\xc2\xbb\xac\x67\xd1\x8e\xb7\x82\xcf\x34\xc6\x69\xa6\x8c\x6b\x8e\x14" "\x7c\x43\x36\x2c\x7c\x66\x84\xfb\x85\x5a\x30\xb9\xf0\x5d\x73\x03\x24\x78" "\x9d\x55\x38\xf5\x55\x15\xf6\x87\xb5\x53\xfc\xe6\x66\xe6\xa2\x3f\x5c\x40" "\x04\x94\x1e\xe0\x46\xef\x66\x59\x65\x3f\xe8\xaf\xf1\x35\xad\x96\xbc\x57" "\x65\x7c\x3c\xda\xb0\x01\x00\x8c\xd0\x37\xf9\x16\x96\x4f\xdb\xd0\xe8\xb3" "\xff\x1b\xce\x69\x12\x11\x34\x02\x14\xfa\x61\x9c\x86\x74\x9b\x1b\xea\xca" "\xb9\x38\xb8\xb3\x1a\x82\x43\xb6\x1e\x22\x47\xee\xcf\xf6\x36\x6d\x3d\x83" "\x9c\xf1\x0e\x46\xd2\x1d\x74\x1a\x37\x87\xa8\x93\xb8\xb9\xdc\x32\x16\x28" "\xaf\xb6\xbf\x12\xe4\x34\xf9\x38\x98\xdf\x8e\x36\x34\x1e\xe1\x5a\x3a\xed" "\x3c\x6a\x3e\xdf\x16\xd4\x35\x0c\x58\xde\x60\x13\xcb\x76\x97\x71\xc6\x60" "\xa3\xfe\x5e\x32\xcd\xe1\x2c\xd6\x75\x14\x16\xda\xd8\x84\x83\x0f\xe8\x5a" "\xda\xe0\xde\xa6\x76\x57\xca\x8d\x63\x81\x5e\xd4\x28\x1a\x3d\x22\x1d\x3c" "\x23\xa7\xa9\xd1\x4d\xf6\x14\xd2\xdb\x8d\xff\xb3\x23\x42\xd0\x02\x86\xe5" "\x07\x9c\x90\x65\x74\x40\xc1\x4d\xda\x54\xd3\x48\x2c\xd9\x43\x0c\x05\x2b" "\xa7\xd4\xe7\x34\x6d\x35\xb0\x1a\xd4\x7e\xfd\x3e\x21\x54\x10\x0c\xa2\xd5" "\x37\x21\xa2\x9e\x84\x03\x43\xb4\x5b\x6f\xe3\xfa\x1c\xee\x83\xbc\xde\x2f" "\xf7\x6f\x13\x26\x9e\x83\xd6\xec\x9f\x88\xcd\x7a\x6e\x5f\xa8\xf8\xd1\xaf" "\xc2\x1e\xd1\xd0\xc7\xdb\x7a\x92\x5d\x41\x7a\x40\x40\x45\x79\x64\xa4\x19" "\xb5\x85\x4e\x7c\x74\xe4\xa0\x92\x5a\xca\xcc\x1c\xfa\x55\x67\xa4\x23\x98" "\x48\x12\x83\x5a\x7a\x72\x13\x3c\xaa\x4f\x79\x0a\x53\x4d\x2c\xb4\x92\x38" "\xc1\xfe\x3c\x0c\xbf\x71\xd2\x1d\x00\x24\x79\x36\x74\x1a\xf9\x23\xfd\x69" "\x0f\x16\xb8\x1c\x83\x94\x92\x5f\xa7\xb7\xcf\x01\xa1\xa3\xd5\xf3\xfc\xef" "\x53\x7b\x15\xa1\xbe\xe0\x95\xa2\x4a\x70\xe2\xbc\x6f\xb4\x69\xd0\x80\xd4" "\x56\x2c\x4e\x0d\x4b\xe8\x26\x0e\x5e\x89\xcd\xe0\xc7\xf1\x54\x15\x76\x42" "\xbc\xc9\x4b\x0f\xcd\x98\xcc\xb9\x94\xd8\x52\x76\x44\xc9\x7b\x1d\x2f\x94" "\xc1\x0b\xc1\xec\x42\x5d\x47\xed\x7c\x08\xce\x18\xd5\xe0\x62\x96\xa2\x9c" "\x79\x5c\x91\x84\x5d\xdb\x22\x52\x81\x07\xa0\x8c\x1e\xa0\x84\xa5\x09\x0b" "\x4c\x74\x71\xb7\x95\x78\x75\xf8\x9c\x55\xc1\xce\x2c\x39\x46\xd9\x4d\x8a" "\xff\x8b\x87\x4a\xbe\x58\xa5\x91\x89\x28\xc9\xc9\xb7\xff\x2c\xcb\x84\x9c" "\xae\x92\x93\x1e\x94\x92\x8d\x18\x54\x01\xd7\xeb\x02\x20\xfb\x35\xc1\x85" "\x36\x4c\x33\xf2\xdb\x18\xd0\x14\x5d\x86\xe0\x09\x23\xec\xc0\x59\x3e\x1f" "\xc6\xda\x9d\x83\x0e\x83\x4b\x38\xb9\xf1\x30\xd8\x44\xda\x20\x2e\x5e\xe4" "\x4a\x7d\xe9\xa9\x10\xec\xb2\xad\x44\x74\x4b\x9c\xed\x19\x68\x3b\xd9\x31" "\x58\x07\xce\x92\x95\x56\x0c\x78\x04\xbd\xd7\xd3\x47\x66\xdf\xb6\x02\xcf" "\x75\xb1\x4f\xca\xe1\xb7\x20\xe4\x19\xa0\xa8\x38\x63\xf6\x4d\x8a\x7a\xa9" "\x1a\x16\x34\x46\x59\x6c\xc5\xb0\xcf\x45\x20\x24\x9d\x17\x8b\xad\x10\x4f" "\x38\xf3\xf1\xc5\x69\xb5\x03\xea\x7a\x34\x9f\x03\xf8\xd3\x95\xbf\x83\x1c" "\xe2\x62\x48\xb8\xba\xfe\x50\xb0\x16\x43\x39\x06\xc8\x47\x38\xab\x8f\x19" "\xd2\x80\x60\x26\x64\x47\x24\xe2\x38\x02\xdf\x47\x3c\xcc\xfb\x95\x5a\x66" "\x27\xaa\x45\xd0\xc3\xac\xac\x53\x0c\x68\xd4\x7e\xa2\x0b\xae\xfc\x7c\x95" "\xa0\x72\x4b\xe0\x2d\x09\xda\x11\x54\x7e\x5b\xba\x8c\x6b\x09\xe3\x26\x34" "\xb3\x17\xb7\xb1\xe4\x39\x18\x15\x95\xfe\x84\x97\x30\x50\x43\xdd\xb2\x68" "\xd9\x03\x43\xe4\x53\xff\xee\xc9\x97\x57\x53\xd6\x42\xfd\x39\x6b\x18\x5c" "\xae\x82\x97\x58\x69\xe8\x5e\x89\xcf\x3c\x03\x50\x89\x6c\xc7\x16\x31\xf9" "\xac\xb0\x73\x23\xa7\xa9\xf9\x6d\x17\x11\x28\x3c\x5b\xb1\xcb\xe0\xc6\x71" "\x8c\x8c\x12\x99\xce\x91\xc6\x04\x33\x0d\x36\x7a\xc3\x03\xb0\xcd\xbe\x0e" "\x50\x53\xf1\xa2\x68\x9d\x36\x32\xc6\x1b\x3a\x3f\xd7\x37\x74\xd5\x40\x94" "\x6f\x20\x32\x24\xd2\xbc\xf1\x3c\xc6\xf6\xba\x4a\xa0\xf3\x71\xd4\x4e\xd6" "\x70\x89\x4b\x2d\x85\xcb\xd1\xb6\xaa\x1d\x84\xa6\x92\x0f\xf5\xea\x04\x63" "\xb9\x46\x83\xd1\x20\x32\xc5\xfe\xa6\xa4\xa0\xf8\xcf\x9f\xa7\x76\x1c\xeb" "\x0e\x50\x95\xba\x9f\x01\xc1\xc7\xcc\x6d\xa8\xa1\xf5\xe2\x42\x6e\xe7\x52" "\x89\x8b\xe2\x96\x35\x6c\x06\xaa\xfa\x7c\x4f\x1e\x4d\x54\x88\x46\x50\x09" "\xa4\x23\xaf\x3d\x2d\x15\xd4\xb4\x54\xb8\x55\x39\xdb\x81\x18\x4b\xa1\xb3" "\x1e\xa3\x56\x7c\xcf\xda\x30\xb7\x95\x50\x96\xca\x3b\xa0\x46\x78\xd9\xbb" "\x06\x2d\x83\x28\xce\xbe\x06\x38\xc7\xa6\x76\x09\xd1\xe4\x94\x5a\x28\x32" "\x91\x0e\xf5\x47\x2a\x1a\xe1\xce\xac\xb0\x05\x50\x6e\xaf\x35\xa2\x0c\xc8" "\xc4\xbc\xd7\xfd\x87\x99\x6e\x53\xee\x82\xe6\x15\xd2\xdb\xc4\x7f\x5e\x8e" "\xc6\xd9\x77\x38\x8c\x10\xc5\x1a\xf0\x42\xdf\x0d\x99\x10\xa0\x8e\x0d\x06" "\x03\xe5\x16\x42\x5a\xe9\xcf\xae\xb1\xd9\xa7\xff\xd1\xc4\x5b\x4b\x58\x09" "\x74\x79\xe7\x29\xb9\x41\x3b\x7c\x89\x5b\x03\xb9\xad\xa2\x99\xed\x36\x28" "\xbc\xe8\xc4\x0d\x93\xb3\x26\xec\x31\x4b\xa9\x3d\x19\x82\xef\x34\xbb\x46" "\x45\x33\x07\xec\xa8\xb2\x71\x94\xd6\x7d\x0c\x14\xa6\x3a\xcb\x5f\x81\x33" "\x2d\xe5\x26\xf8\x49\xfb\xed\x8a\xbb\x1d\x07\x4a\x93\x68\xdc\x33\x11\x06" "\x67\xdb\xee\xc5\x8a\x22\x18\x87\xeb\xcd\xec\x6c\xa2\xba\xf3\xc6\x01\xd1" "\x02\xd5\x77\x16\xcd\x64\xda\x44\x1f\x86\x58\xe5\xc4\x66\xd3\x6d\x22\xb6" "\xfa\x67\x23\xc7\x42\xc5\x92\xe4\xdc\xe2\xf5\x2b\x52\xf3\x1f\xde\x8b\x53" "\x5a\x99\xff\xce\xff\x2e\x32\x23\x86\x6f\xe6\xd3\xae\xa7\x26\x1c\xe7\x1e" "\x9c\x5c\x81\xa8\xe0\x86\x10\x74\x7b\xb3\x6b\x56\x87\xcb\xeb\x2b\x4c\xfa" "\x03\xc2\x97\x38\x44\xff\xb4\x32\xd0\x7d\x41\x10\xf9\xb1\xe1\x6f\xe7\x9f" "\xe5\x9e\x6c\xd5\x73\xa4\x4c\x6b\xd5\x91\xe6\xd7\xf6\xaf\xfc\xc3\xa9\xfe" "\x0f\x2b\x1c\x0b\x43\x94\x4a\x22\xee\x77\x8e\x2f\xcc\xe7\xb2\xb6\x67\xf0" "\xa0\x5d\x79\xda\xff\x10\x04\x50\xe0\xa6\xff\x7e\x9c\xb8\x96\x33\x01\x29" "\xc7\x82\x70\xfe\xdc\x56\x7f\xc9\xdd\xc1\xaf\x4b\xa8\x07\xb7\xde\xe0\x63" "\x3a\xb9\x59\x10\x4d\xea\xc1\xfd\xf5\x7d\xaa\x2e\x6e\x48\x71\x1d\xa5\x89" "\x54\x33\x1b\xc8\xf8\x43\xe3\x45\xad\x45\x60\xb0\x90\xb7\xd1\x64\x53\x7d" "\x26\x4f\x3e\x51\xe6\x48\xa5\xc4\x04\x6a\xca\xe4\xb4\x83\x40\x5c\x67\x42" "\x33\xa9\x0f\xdc\x8a\x5b\xc3\xeb\xb0\xaa\xff\xef\xda\xba\x96\x3e\x93\x35" "\x48\xe0\xbc\xfd\x22\x29\x48\xd2\x68\xb5\xa1\xed\x17\xb4\xfa\x06\x8b\x84" "\xdc\x0a\x73\x7e\xed\x17\x02\xe5\xd4\xe3\x68\xb1\x3e\x78\xf8\xb5\x54\xc2" "\x57\xc7\xd6\x36\xe3\xae\x91\x90\x68\x8b\x11\xdd\x94\xa8\x38\xb5\x09\x3b" "\x0b\x59\xe9\xc0\x83\x5e\x07\x1a\xfd\x07\xb9\x1c\x76\x64\x4b\x84\x17\xf1" "\x9a\x7d\x8f\x21\x90\xb9\x18\xa0\x21\xa4\xf8\xd4\x45\x57\x5d\xf9\xd4\xab" "\xe7\xb9\xd5\x47\x7a\x06\x4f\x73\x95\x06\x5f\x7f\x17\x24\x9d\x0b\x9c\x0c" "\x5e\x12\xf8\xa9\x67\x37\x30\x13\x9e\x5c\xa9\xed\x69\x4f\x61\x8f\x6b\x81" "\x71\xa9\x66\xb1\x0c\x14\x77\x68\x86\x8f\xda\xbc\xe4\x70\x62\xd8\x45\x32" "\x2f\xaf\xa9\x0a\xa8\x6c\x2a\x91\xe9\xd3\x69\x3e\x81\x32\x53\x7b\x25\xdf" "\xcb\x3c\xa5\xf4\x15\xce\x14\xdb\x92\x1c\x9b\x82\x59\x1e\x22\xf2\x34\x66" "\x0d\x32\xe0\x5c\xd2\x07\xc9\x18\xf7\xc6\x41\xb7\x7d\xb6\x78\x2c\x2f\x86" "\x9d\xe7\x9c\x02\x60\xd0\x19\x1f\xce\x55\x58\x1d\xb0\x3b\x3d\x64\x8f\x9c" "\x38\x87\x58\x01\xe3\x20\x19\x66\xf2\x19\xe7\xba\x0e\x24\x6d\x67\xb4\x59" "\xfd\xc2\xd1\x15\xd2\x24\x66\xb9\x23\x6a\x43\x62\xf8\x90\xbd\x2b\xbb\xcc" "\x6d\x2d\x5c\x24\xec\xef\xe9\x24\x6b\x63\x79\xbd\xb0\x03\xd4\xf0\xfc\xf1" "\x28\x62\xe3\xfa\xb9\x64\xfc\xf4\xee\xa4\x1e\xc1\xbf\x15\x67\xff\xdd\xb4" "\x48\xc7\x00\x66\x66\x77\x38\x9a\xb9\x9b\xd3\x0b\x0c\x24\x9a\x02\x86\x8c" "\x68\x7b\xaf\x88\x13\x80\x73\xfc\x31\x80\xc5\x23\xd2\x56\x10\x9c\x95\xe1" "\x68\x7a\xd0\xe1\xd7\xf5\xd4\x2a\x98\xd2\x7a\x7f\x3a\xe7\x02\x9d\x5d\x94" "\x80\x05\x7c\x56\x9b\x97\x6b\x23\x22\xf5\xd3\x33\xaa\x5f\xb0\x34\x1c\xe8" "\x1c\xec\x32\xd3\x86\xc1\xb3\x1c\xc0\x43\x39\x97\xd8\x62\x54\x8f\x3a\x6a" "\x6f\x77\x50\x7d\x98\x50\x8e\x2b\x9e\x03\x81\xc1\x13\xa3\x54\x8d\x17\xa3" "\x55\xfd\x65\x4d\x8b\x5c\xdc\x5f\x07\x96\x46\x12\xe2\x34\x56\xe3\x3f\x62" "\x07\x78\x55\xb5\x1e\x8f\xde\x56\x13\x50\xad\xd0\xf2\x06\x9b\x03\xdb\x33" "\x02\x35\x54\x47\xf0\x10\x4b\x9d\x99\xff\x06\xdf\x16\x9e\x45\xf0\x56\x66" "\xf1\xe9\x99\xde\xb0\x22\x6c\xcc\xb8\xab\x87\xde\x65\x27\x56\xe9\x8c\xec" "\xd0\x7b\xf1\x72\x78\x83\xda\x56\x7f\x16\xe2\x78\x54\x67\x49\xcd\x47\x80" "\xf8\xda\xbf\x26\xfe\xe6\x30\xb0\x08\xcb\x1c\x5a\x09\x88\x18\x87\xfe\x6d" "\x78\xb9\xa9\xde\x68\xd0\x94\x6e\xdd\xfd\xec\x25\x93\x0a\xe4\x69\x8f\x9a" "\x82\x3b\x95\x4b\xef\x0c\x6f\x94\xf6\xa0\x03\x4b\xc7\xb4\x77\x0a\x13\x22" "\xdb\xbd\xee\x1d\xe0\x8e\x29\x28\xad\x6e\x11\x94\x2d\x72\xf4\xdb\xdd\x5f" "\x42\xc1\xf9\xf5\x0c\x61\x17\xf6\x2e\x09\xff\x0d\x18\xfa\x5b\x4a\x75\x81" "\x4b\x2b\x50\x6c\xe5\x79\x6d\xc7\x03\xb3\x59\x99\xc2\xf8\xcd\xe2\x33\x9b" "\xf7\x59\xcd\x18\x25\xd0\xd1\xb2\xb0\x6b\x68\x2c\x07\xc3\x5f\xf7\xe4\x25" "\xc7\xa5\x67\xe8\xbb\x1d\x44\xb2\x4b\x66\x29\xad\x7a\xb0\x3d\x1d\xdd\x9d" "\x4b\x1f\xce\xf1\xd0\x9b\x85\xc5\x3a\xab\xd1\x15\x05\x90\x5e\xae\x98\x38" "\x3d\xcb\xfb\xd8\x03\x62\x5a\x2c\xf9\xc6\xe1\xa7\x3f\x8c\x1b\xfc\x63\xd8" "\xeb\x1e\xbe\x52\x05\x1e\x6a\x02\xc0\x28\xe3\x1f\x88\xe1\x90\x72\x55\xe6" "\x9d\x58\x02\x28\x1c\x4d\x8a\x64\xe7\x3b\x50\xe7\xfc\x94\x8a\xc7\x4d\x15" "\x09\x2b\xa7\x98\x3c\xb3\xc6\x07\x34\xe9\xa8\x36\x0c\x64\xf1\x0f\x48\xad" "\x28\x87\x7a\x90\x45\x42\xcb\x19\x72\xce\x5b\x23\x2c\xf8\x88\xcc\xd8\x62" "\xfe\x03\x55\x57\x0b\xcb\x2f\x5c\xf3\x3c\x2f\xc5\x48\x12\x27\xfe\x72\xf1" "\x39\x72\x11\xe1\xad\x28\x65\x7f\x19\x84\x2c\x2d\xab\xe8\x96\xae\x7d\x2d" "\x56\x13\x48\x0a\xd5\x44\x61\xc2\xee\xb7\x61\x11\x64\xfa\x58\x73\x67\xb7" "\x70\x59\xb2\x7a\x02\xd7\x03\x6c\xc2\xe8\xc1\x25\x27\xa0\x32\x64\xb7\xd7" "\xda\x2d\x41\xaa\x13\x46\x3b\x90\xc9\x66\x8c\x3c\x0a\x4a\x1b\x85\x73\xd8" "\xfc\xf7\xc5\x35\xdb\xe1\xb0\x1a\x85\x84\x5d\xe3\x62\xfd\xcf\xea\x0f\x2d" "\x6f\xdc\x3a\x6f\x95\x94\xcf\xde\x0a\x2a\xf3\xbf\x80\xc7\xc6\x1f\x1c\xb9" "\xd1\x1c\xc0\x62\xbd\x47\xd6\xd6\xd3\xa6\xa3\xac\x5c\x90\x8e\xea\xbd\x18" "\x5c\xe0\x1a\xb6\x4a\x85\xa9\x7b\x32\xab\xb1\x29\x1a\x71\x74\x7b\x17\xa4" "\x95\x15\x37\x04\xbb\xa1\xfc\xdc\xbf\x1f\xc8\xc0\x37\x3a\x90\xb5\x19\x71" "\x2e\x0b\x34\x6e\x4b\xc0\xfc\xd5\xb9\x6b\xc8\x8f\xa7\x49\x22\x0f\x6e\xf3" "\xf2\x38\x02\x84\xf1\x38\xd1\x3f\x05\x6d\x9f\x1d\xbc\x63\x25\x04\x37\x2b" "\x09\xc1\x0a\xbf\x4d\xd6\x5b\xc6\xac\x3a\x98\x04\x23\x6d\xd4\x2f\x67\x10" "\x88\x00\x32\xca\x6f\xe0\x2f\x14\x15\x1b\x97\x6f\x54\x18\xad\x5d\xe1\x89" "\x60\xd6\xd8\xc6\x8a\xfc\x52\x59\xe5\x20\xa7\x8a\x71\xb0\x21\x92\x46\x13" "\x28\xb5\xc1\x06\x99\x9b\x6a\xed\x00\x85\x40\x32\x9f\x36\x3e\x9e\xc8\x46" "\x8e\x50\x48\x4c\xc2\xbf\xb2\x9f\x2f\x00\x83\xf4\xb8\x2e\x63\x00\x2f\x86" "\xbe\xc9\xcb\xef\x12\x4e\xe9\xec\xe3\xa7\xb2\x45\x1d\x52\xfa\xfd\xd8\x08" "\x96\xd4\x84\x28\x04\x39\x58\x67\xfe\x59\x55\x4e\xd4\x92\xa1\x19\x13\xab" "\xe7\x91\x2e\x5a\x44\x23\x22\x68\xae\x84\x5d\x11\xe6\x85\x17\xca\x71\x1a" "\x6c\xa4\x89\x04\xc2\xe2\x8f\xe4\x6a\xc9\xa2\x84\xf1\xd5\x9c\x0b\xdc\x38" "\xba\xa4\x9b\x4c\xda\x27\x95\x29\x9f\xb4\x47\x9a\xc5\x75\xfb\x16\x13\xb5" "\x2c\x8c\x4e\xc7\xbd\xc4\xae\x84\xfc\x4d\xe0\xe7\xc8\x7e\x6a\x4b\xae\x6e" "\x78\xe6\x40\x09\x4f\x2c\x4a\x78\xf8\x9e\x56\x10\x0b\xf4\xeb\x14\x67\x81" "\xdc\x2e\x9a\xc3\x1e\x37\x12\xd4\x9b\x57\x26\x35\xa1\x13\xec\x88\xa6\x75" "\x2e\x86\x39\x32\xbf\x8d\x07\x0e\xb9\xc9\xb7\xec\x07\xc0\xe8\x74\x62\x47" "\xdf\x3f\xa6\xa2\xa4\x6b\xb0\xf8\xfb\x30\x37\xea\x92\x67\xc3\x23\x4b\xe1" "\x22\x7b\xdd\x55\x27\x33\x6d\xc8\x86\x99\xe4\x89\xd7\xe3\x23\xf1\x5e\xa4" "\xca\xed\xd6\xc2\xac\x03\xdf\x74\x71\x8e\xc3\xae\x54\xd5\x3b\x4f\xf0\xb1" "\xbf\x3c\xb5\x5a\x9d\xb9\x6d\xc9\x88\x6e\x56\x49\xf8\x93\xa8\x30\x03\x27" "\xb1\xb1\x15\xe8\xde\xa5\x26\x22\x7d\xfa\x5f\x56\x6c\xde\x8a\xa2\x5e\x5b" "\xeb\x52\xaa\x75\x8c\x98\x34\xbe\x53\x3d\x67\x7c\x16\x8c\x20\x5f\xc7\xa0" "\xb3\xf6\x8e\xf3\xb2\x73\x26\x1f\xb3\xda\xfc\x2b\x54\xdb\xcc\x98\xe3\x40" "\x40\xa4\x22\x09\xa2\xe0\x4c\x31\x32\xe1\x33\xd7\xbc\x54\x52\x2a\xe9\xac" "\xe5\x42\x08\xda\xce\x5d\x20\x8d\x36\x49\x66\x21\x76\x96\x83\xf8\x67\xc4" "\xf3\xd6\x9a\x85\x29\xb5\x32\x6e\xcb\x26\x93\xe7\xf7\xf8\x97\x3a\xe0\x72" "\x50\x3d\xfa\xa9\x5b\xfc\x5e\x3e\x22\xed\x9d\x06\x6b\xb7\xf3\x77\xef\xfd" "\xee\x16\x22\xee\x74\x10\xed\xe4\x65\xe1\xe8\xb3\x25\xbb\x15\x09\x29\x7e" "\x92\xe9\xff\x42\x4c\xcd\x46\x5a\x76\x66\xfd\x6c\x76\x53\x07\xd0\x2a\xc6" "\xf5\x18\x9c\x61\xb3\xf7\xa7\x81\x34\xe1\xbe\xab\x85\x96\x12\xdc\x83\x82" "\x1d\x76\x54\x39\xb1\x2c\xf2\x40\x55\xce\x2e\xd6\x83\x88\x09\xc7\x23\xa5" "\xbb\x38\x1d\xb2\xe6\x49\x4f\x01\xfb\x3f\xe3\xb9\x49\x93\xcb\xac\x1d\x0d" "\xa9\xf5\x5c\x54\x27\x8f\x7e\x41\xa5\xe2\x43\x9d\x3d\x7a\x9f\x0f\xe8\xde" "\x93\x5b\x80\x8a\x0c\x9e\x82\xe4\x3e\x6f\x2a\x8b\x00\xf2\xba\x88\x43\x87" "\x0f\xec\x86\x79\xa7\x7e\xe9\x45\x03\x8f\xd9\xf7\x62\x48\x82\xfb\x17\x9a" "\x69\xd4\x66\xb7\x1e\xb5\x06\x9a\x08\x4b\x26\xb4\x25\x69\x18\x76\x9e\xd8" "\x78\xba\x22\x97\x8c\x42\x79\xb0\x05\x08\xee\xbb\x4e\xef\x7d\x48\x56\x8f" "\x40\xf6\xb5\xc9\x12\x25\x62\x06\x8c\xd4\x7c\x94\x63\x5c\x02\x2d\xa1\x57" "\x94\x36\x9a\x25\xc4\xc9\x93\x14\x90\x6e\xc3\x79\xf4\x5b\x8d\x7e\x5a\xec" "\xc6\x54\x9a\xe5\xc8\x49\x0d\x6d\x93\x5f\x2b\xfe\x90\xf4\x71\xbe\xe3\x46" "\xb7\x1a\x64\x22\xd7\x1d\x7a\xe1\xe4\x96\x6e\xfa\xac\x52\xb0\xc2\xe8\xaa" "\x89\xc9\x5e\x33\xe5\xad\xef\x79\x4f\x59\x3b\xfb\xf6\x33\xdb\xf0\xe0\xf7" "\xb0\x48\x64\xec\x6f\x78\x3d\x49\xa2\x8e\xfd\x78\x8d\xd0\x44\x54\x16\x59" "\x2d\x4b\xe6\x40\x6d\x5d\x54\x33\x52\x5d\x24\xe7\x80\x6a\x10\x00\x58\xca" "\xb3\xb9\xaa\x5f\xe1\x3e\xe6\xa5\xcd\x43\x8d\x10\x19\x78\x4f\x20\xe3\xec" "\x03\x19\xab\xbc\x2a\x9b\xd3\x76\xa1\xed\x56\x68\x84\x5a\x62\xd2\x50\xc7" "\x8b\xd2\x2a\xb7\x86\xfe\x9a\xae\xc8\xba\x4c\xaa\xad\x5c\xa0\x8a\x9c\x1a" "\xd8\x68\x86\xa1\x93\xb3\x65\x32\x84\x69\x56\x0c\x63\x1f\xcc\xd8\x3d\xbe" "\x46\xfb\xb2\x2e\xb3\xa7\xbf\xad\xb2\x6f\x6c\xe5\xe5\x58\x12\x39\x24\x79" "\x16\x4b\x95\xc9\xb6\x3d\x66\xae\x3f\xd2\xba\x65\xd7\xb8\x37\x08\xeb\x27" "\x66\xc8\x92\x65\x05\x9d\xa1\xb0\x1c\xca\xbe\x54\x2d\x49\x30\x03\xbe\x3f" "\xa9\x0b\xa0\xff\x54\x07\x21\x64\x26\x9c\xa2\x64\xac\xb8\xa8\x24\xb2\x29" "\x4c\x36\x04\xb1\x85\x78\x77\x66\xfa\x9d\x56\x7c\x85\x3b\xd0\x19\xb7\x9f" "\xe6\x0f\x21\x1d\xa5\xf0\x6f\xbc\x5d\x3c\x44\x93\x95\x75\x2a\x09\x44\x6b" "\x23\x80\x0e\x43\x4f\xfa\x3c\x34\x27\x98\x0f\xf2\xbb\x16\x50\x3a\x6a\xfe" "\x56\x17\x05\x0b\x57\xcc\x9e\xee\xaa\x9a\x40\xab\x36\x22\xf1\x3b\x45\x63" "\x35\x0e\xc9\x3c\xa4\x5a\x5e\x39\x88\xbb\x12\x33\x9a\x7b\x9f\x19\x3c\x7d" "\xd0\x2d\x29\xe3\x29\x98\xc4\x2b\xcc\x8f\x73\x8c\x3b\xe3\xbb\x96\xab\x13" "\xb1\x37\xe7\x63\x95\x4d\x61\xe3\xf4\xd7\x2b\xb9\x22\x17\xbd\x1a\xef\x3a" "\xb5\x8a\x38\x7e\xdf\x3e\x47\xd8\x36\x7e\xdf\xad\xb5\xdd\x4d\x13\x22\xab" "\x1c\x41\x2a\x26\x06\x48\xc3\x96\x53\xc7\xed\x91\xeb\x44\x7e\xa6\x48\xd7" "\xe2\x3e\xac\xf0\xb3\x13\x6b\xac\xb9\xaf\xb7\xf1\x38\xde\x93\xad\x9f\xed" "\x57\xe2\x74\x4f\xce\x84\x0d\x0a\x07\x6d\x03\xae\x30\x4b\x25\x00\x81\x7f" "\xcf\xe5\x3f\x7a\xdc\x70\xd9\x38\x3d\xd1\x89\x35\xf1\x89\x5b\x39\x92\xc3" "\x65\x17\xb9\x6c\x1a\xc3\x9f\x39\xc6\x6f\x76\x62\x78\x76\x9d\xf4\x6b\x1d" "\x52\x3b\x28\x62\x07\x75\x1f\x4e\x31\x6d\x5d\x3a\xd8\x67\x49\x8a\x9e\x58" "\x93\x3d\x81\x4f\xed\xe3\x9d\x92\x81\xc1\x73\x0f\x7b\x35\xc0\x2d\x42\xb5" "\xc2\x35\x0d\x8a\xa5\x2e\x3c\x85\x6b\x32\xef\x3e\x25\x66\x69\x0b\xb5\x78" "\x98\xa0\xe5\xea\x9f\xfa\x14\x07\x39\xf2\xb7\x74\xd6\xae\x68\xfc\x2c\x48" "\xbf\x4b\x06\x2c\xcc\x35\xf8\x74\x63\x54\xab\xc6\x70\x88\xad\xdd\xae\xdd" "\x7d\xe3\xaf\x5c\x20\xf3\xc7\xa5\xbb\x1b\x36\x01\x29\x80\xa2\xeb\xeb\x04" "\x61\xa8\x69\xc2\xe2\x45\xd1\x07\xb7\x61\x66\x29\x13\xa6\x69\x34\xa1\x63" "\xe3\xd0\x92\x61\x9b\xed\x5d\x1e\xf4\x52\xa9\x26\x7b\x39\xe0\xd5\xc8\x84" "\xdf\xb8\x80\x45\x96\x12\x62\x25\x42\xd3\xa2\xd7\x1d\xe3\xd3\x87\x3a\x95" "\x38\x69\x1b\x99\x21\xa7\x79\x8c\x90\xf7\x9a\x1e\x28\x68\x77\x14\x10\x32" "\xc1\x11\x25\x6c\x9b\x66\x21\xfd\x7b\x9e\x86\x34\xbe\x9e\xda\x50\x31\xee" "\x1e\x86\x20\x84\xcd\xaa\x69\x41\xe3\xb0\x00\xd0\x09\xe4\x3d\x1f\x1f\x01" "\x0a\xf3\x20\xaa\x3f\x99\x36\x4e\xee\x1e\x0a\x5f\x37\xb6\x68\xda\xab\x06" "\x3e\x67\x24\x9d\x29\xcc\x8a\xf6\xe9\x28\x59\x21\xbe\x8d\x4f\x9c\x46\x85" "\xd4\x65\x3a\x07\x04\x10\xd4\x9e\x1d\x01\x0b\x16\x37\x01\x34\xa3\x2e\x24" "\xf2\x05\xcb\x1a\xf5\x74\x0c\xb5\xd2\xbf\xd9\xce\x87\x36\xa2\x5e\x08\xdc" "\x3e\x03\x8b\x17\xa6\xd7\x5c\x51\x03\x69\x6a\xbf\x7f\xba\x0a\x2d\x63\x73" "\xd4\x02\x63\x75\xa4\x7a\x70\x8a\x86\x4e\xbe\x90\xab\x06\x8a\xba\x2f\x1f" "\x49\x1b\x26\xd8\x73\x9f\x4f\x76\xb2\x4b\x10\x24\x19\x1d\x3d\x68\x13\x6d" "\x9a\xce\xf9\xdb\x15\xc4\x81\xf9\x7e\x29\x78\x22\x94\x55\xd1\x11\x87\x02" "\xe5\xd0\x42\xa4\x80\x51\xc1\xcc\xab\x70\xc9\x6d\x45\x82\x37\x2d\x32\x27" "\x64\x63\x6b\x5c\x46\xc0\x3e\x68\x81\xa2\x21\x6e\x00\x4d\x38\x34\xc4\x0f" "\x24\x10\x1f\x40\x0c\xd6\xf4\x30\x62\x87\x28\x39\xbd\xcc\xa7\x8a\x7c\x2f" "\xcf\x05\xb9\x07\x50\x90\x38\x52\x29\xb2\x60\xac\xd2\xf9\xef\x22\xee\x2b" "\x53\xd9\x83\xe2\x03\x5b\x44\x57\xc9\x6b\xc7\xd5\x5b\xd0\x2d\xf1\xa4\x1b" "\x6f\x6f\x6c\x49\xcd\x37\x9f\x35\xe1\xc0\x17\xb8\x1b\x56\x61\xe8\x82\x03" "\xe8\xf5\x19\xea\x16\x94\x10\x08\x8d\x24\xd7\x8e\xc3\xb1\x07\xf0\x48\xd2" "\x6c\x80\xe4\xfe\xca\x4c\x63\x62\xb1\xf4\x69\xde\x58\xc0\xea\x70\x35\x48" "\x18\xf3\xdf\x75\xe5\x03\x4a\xdf\xaa\xd8\x0a\x0c\xd4\x75\x63\xe8\xb3\x55" "\xe4\x09\x1b\x28\x2c\x28\x98\xf0\x55\x53\x44\x66\xd8\xed\x55\xe3\xf2\xe8" "\xb6\x99\xd0\xac\xb4\x83\x0c\x2d\x53\x9f\x63\x71\xac\x31\xb0\xfc\x85\x70" "\xe2\x16\xe7\x45\x71\x8e\xc6\xd6\x23\x81\x51\x84\xe9\x3a\xa4\xbf\x35\xe7" "\x9e\x3c\xac\x12\xd3\xec\xaa\x95\x04\xcb\xc3\x19\x12\x23\xa7\x65\x72\xa5" "\x7e\xce\x59\x0f\x8b\x9c\x3a\xec\x15\xed\x6b\x1d\x68\x62\x60\x41\x7f\x45" "\xde\x32\xbc\xcb\x3b\x57\x15\xee\x2c\xca\x83\x1c\x81\x0b\x5f\x16\xa4\xbf" "\xf5\x24\x95\x66\x91\xb5\xb3\xfb\x87\x81\xfa\xee\x25\x8c\xa3\x53\x0d\xdc" "\x5b\x6e\xac\xcf\x96\x5b\x9a\x6b\x26\xa7\x73\x36\x1a\xba\x0f\xe5\x37\xd7" "\x2e\xd8\x17\x5e\x03\xd7\xb5\xe2\x85\x5d\x2c\x8f\xd0\xe7\x84\xc4\xf9\x73" "\xbf\x75\xa4\x33\x5a\x64\xcd\xc1\x18\xe5\x2f\xd7\x90\xdd\x8f\x81\x55\x0f" "\x16\xb5\xd0\x0e\xf4\xba\xe3\x2d\xdc\xe6\x43\xb5\x6f\x29\x7e\xc4\x92\x10" "\x37\x75\x23\x26\xd0\xd2\x73\xe0\xde\x09\x69\x83\x23\xfa\x89\xad\xb7\xfc" "\xd5\xdf\x21\xdd\x47\xc3\x11\x91\xcd\xf1\xdd\x56\xa9\xb6\x47\x43\xf6\x9e" "\x02\xaa\xf8\xaf\x54\x86\xd6\xe8\x2f\x37\xe9\xeb\x89\xa1\x47\x73\x59\x0b" "\x18\xae\xd4\xa9\xeb\x7a\x94\x0e\x6c\xc2\xf3\xbb\x0b\xcb\x1d\xf9\xe2\xfe" "\x4e\xd4\x53\x60\xa7\xa1\x5c\xeb\xc7\x72\x40\x86\x41\x62\xec\xf9\x72\x22" "\x8d\x5b\x29\x99\x49\xd0\x7c\xbd\x68\x49\x4d\x72\xa0\x6d\x64\xcd\xdb\xf0" "\x96\xbb\xbe\xd0\x34\xf1\xa4\xa9\x45\x2e\xb1\xcf\x88\x90\xec\x0e\xd7\xcd" "\x8c\xc0\xde\x87\x65\x05\x34\x91\x7a\xfa\x32\x4a\x51\x98\x7f\x4d\x2a\xac" "\x76\x47\x43\x9c\xd0\x65\x26\xc2\x9e\x6f\x8f\x44\x11\x5d\x23\x33\x7d\x55" "\xb6\x8b\xfb\xb0\xf1\x96\x99\xc3\x8d\xb8\x4c\x35\xa7\xc1\x20\x0c\x22\x05" "\xee\x00\x11\xf8\x8e\x00\x25\x11\x70\xbe\x29\xea\xf4\xcf\xf0\x88\x01\x47" "\xcd\x7d\x67\xe2\xbd\x6b\x5f\x41\x61\x25\x26\x55\xc7\xbc\x52\x41\x92\x83" "\x85\x86\x4e\xe1\x23\x27\x82\x1c\xf4\xf2\x4b\x98\xcb\xc7\x5d\xca\xc3\x9a" "\x89\x7a\x6c\x3d\x9e\x1c\x55\xee\xb9\x9f\xd3\x9f\xe8\x14\xa8\xd2\x82\x0f" "\xd2\x17\xdb\xc1\x25\x9a\x7c\x3a\x3c\x1a\x5a\x0e\x0e\xa7\x19\xdb\x85\xc4" "\x85\xd1\x78\xb9\x17\x44\x94\xd1\x20\xac\x14\xa2\x18\x8e\x94\x43\x3b\x95" "\x84\xac\x2d\x37\x67\x49\x16\x05\x90\xb8\x1b\x4a\x21\xad\x5b\x62\xbe\x98" "\xd4\x2f\xf0\x2b\x5d\x58\x5b\x26\x7f\xc5\x0b\x1e\x62\x3c\xc4\x0d\x83\x4b" "\xcf\x9e\x62\xe1\x19\x9c\x7e\x46\x4a\xc1\x00\x10\xdd\x62\x2b\x78\x15\xea" "\x31\x81\x33\x30\x94\x6a\x19\xc3\xf8\xbd\xd3\x4a\x76\x29\x7c\x5b\x4d\x03" "\x8d\x83\x2a\x1a\x80\x00\x28\x0d\x82\x84\xad\xb0\x1c\xb9\xf3\x85\x6c\x2f" "\x19\x3f\x52\x47\xaf\x27\xae\x8c\xb1\x8e\x1a\x7a\x77\xca\xc2\x67\x05\xd2" "\x11\x22\xac\x37\x99\xe8\x94\x39\x7b\x97\x7a\x2d\x4f\x17\x53\x6c\xc0\xac" "\x76\xc3\x9c\xcb\x9a\x88\x02\xa9\x52\x7b\xa6\x90\x57\x45\xdd\xe2\x0a\xd8" "\xb6\x89\x83\x09\x2b\x5e\x22\x9e\xc7\x4a\xbf\x12\x28\x2e\x4b\x8e\x06\x91" "\x9a\xe9\xdc\x11\x82\x62\x7d\x77\x3b\xca\xd0\xa5\xa6\xc7\x27\xa1\xe1\xc4" "\x75\xac\xdd\xd1\x49\x2b\xfb\xd0\x8f\x07\xa7\xd4\xca\xa4\x24\x20\xcc\xde" "\xde\xcc\x6f\x9a\x74\xb9\xff\x8c\x89\xe3\x5d\x74\x38\x2a\xca\x87\x92\x98" "\x21\xd9\x88\xb5\x45\xf0\x5a\x1f\x27\xb4\x05\x5e\x5e\xc8\xc4\x7d\x7b\x39" "\x88\x36\x0b\x59\x98\xd6\xb0\x4b\x26\x20\x8d\x4a\xf7\xb5\x7d\xba\x77\xaf" "\x36\x1f\x30\xab\x79\xeb\xf0\x32\xfe\xa3\xb7\x57\x83\x43\x7a\x2f\xec\x97" "\x1a\xf0\x78\x09\x09\x5a\xc7\x38\x31\x9b\xc9\x89\x2b\xdb\xbf\xc5\xe0\xb5" "\xc6\x8c\x59\xec\x14\x20\x03\xee\x36\xeb\xa7\xd5\xd4\x21\xd3\x33\x4b\xb9" "\xc7\x66\x78\xab\x85\xa6\x97\x89\xc5\xfd\x0b\xdd\xd1\x37\x86\x00\x89\xfb" "\x4b\x88\xcb\x0f\x8a\x9d\xb4\xb8\x65\xa2\x71\xb0\xba\xa9\x2a\x98\x06\xc4" "\x1e\x5e\x95\x5b\x74\x08\x71\x29\xb7\x6f\x50\x79\x22\xb0\x5b\x15\x69\x47" "\x0c\x42\x17\x49\x77\x3c\x33\x39\xc9\xf6\x00\x0b\x99\x32\x29\x4c\x73\xad" "\xe1\x99\xe0\x7e\xe4\xa0\xf2\xa4\xb4\xb1\x33\x5d\x95\xc9\x02\xa3\x78\xfa" "\x0e\x1c\x97\x3e\x36\xdc\x52\xdb\xeb\xef\xa3\xc5\x9d\x34\xec\x81\xdf\x27" "\xb2\x86\x95\x1e\xd3\xd0\x7c\xcc\xcb\x86\x6c\xa2\x3b\x56\xce\xe7\xff\x7f" "\x80\xab\x3a\xe0\x18\x8e\xe1\x0a\xf3\x69\x85\x12\x97\x5d\x66\x84\x4f\x8c" "\xa6\x15\x56\xef\xa6\x0f\x1b\x9a\xc3\x7a\x1e\xba\xb3\x1d\x1b\x0e\x40\xf5" "\x85\xf2\xa1\x7c\x3c\xfe\xdf\x85\x16\x22\xc0\x07\x38\x14\x00\x33\xdb\xbc" "\x1e\x2b\x5c\xae\x91\xd5\xeb\xec\xb1\x7a\x2b\x4a\xba\xf3\x5f\x6f\xc0\x52" "\x7e\xa0\x4a\xf9\xf4\x34\x44\x8d\xa5\xa0\xd4\x27\x67\x5b\xc8\x5e\x98\x3b" "\x26\xd7\xf1\x97\x45\x56\x00\x40\xa8\x42\x73\x90\x27\x3c\xde\xd2\x24\x9e" "\x57\x6f\xb3\x0e\xe3\xc3\xa2\xd5\x21\x24\x02\xf4\x35\x53\x04\x98\x19\x5d" "\xe2\x35\xa4\x80\x2b\x2c\x8c\xfd\x35\xab\xc0\xb9\xfb\x7a\xec\xb0\xe3\xf9" "\xcd\xc8\xf4\x04\x81\xd3\xb9\x93\x4e\xb1\x64\x4a\xc1\x90\xae\x49\xf1\x9e" "\x45\x1d\xcd\x6b\x34\xdf\xb1\xa3\x2b\x48\xfb\xa0\x38\xf5\x5c\xe7\xe1\x92" "\xe2\x1c\xca\xae\x16\xb1\xa6\x95\xb5\xcc\x8b\x76\x07\x24\xa8\x13\xdc\xb9" "\x6e\xc5\x6e\x8c\x07\x23\x67\xd9\x78\xf8\x46\x4c\x42\xcf\xa9\xfc\x14\x43" "\xe8\xf2\xf3\x2c\x5a\xe1\x8f\xc1\x03\x1d\x1c\xca\x9c\x64\xde\xc9\xf9\x96" "\x0e\x91\xbd\x07\xda\x6b\x88\xac\x05\xcf\x36\x38\xf2\x30\x48\xc8\x4f\x6c" "\x82\x07\x34\x34\x0b\x43\xcf\xf0\x8a\x6f\x51\x37\xb6\x86\xe1\x8e\x9e\x7e" "\x0f\xae\x0c\x32\x39\x54\x5b\x8f\x59\xa3\x71\xf8\x3c\x97\x35\x44\x94\xff" "\x6d\xe3\xc6\x21\xad\xd0\x1d\xf6\x27\x6e\x06\x84\x26\x94\x7d\x4f\xe8\xb5" "\x97\x43\x9e\xd8\x6e\x47\x0d\x94\x44\xbd\x67\x21\xfa\x77\x90\xbb\x1e\x2b" "\x91\xfd\x5b\xe5\x76\x1c\xc1\xb9\x04\x36\x7b\xb8\x0c\xc6\x34\x97\x04\xe1" "\xd2\x3d\xca\xb9\x6b\x1b\x9f\x9b\xfc\x6b\x2e\x87\x65\x49\xd4\x44\x2d\x11" "\x89\x93\x0b\xb5\xde\x98\x6c\x10\xfa\x25\x61\x74\x20\x51\x5d\x96\xd7\x52" "\x8b\x24\x2a\xe0\x52\x11\x83\x1b\xed\x6d\x5d\xb4\xbd\x23\xcd\xbe\x09\x49" "\x88\x73\x7d\x0a\xe9\xa9\xdf\x8a\xf5\x50\x7b\xb0\xe5\x49\xef\x06\xd4\x85" "\x86\x93\x45\xf3\xe8\x82\x4e\x78\x89\x37\x4e\xc5\x60\x9a\x6a\xf1\x3b\x28" "\x34\xe1\xd0\x43\xc1\x84\xc2\xb8\x23\x2c\xd3\x18\xe0\x15\x91\xb0\xff\x66" "\x42\xa8\xca\x13\xb8\x94\x38\x42\x8c\x65\x5b\x95\x82\x52\x02\x61\x11\xbd" "\x33\xdf\xa7\xa5\xb0\x16\x61\xdb\x45\x3b\x0d\xc3\xb2\x0d\xb3\xba\x7a\x2f" "\xa2\xab\xcc\xae\xef\xfe\x09\x2c\x18\x15\xc2\x8c\x19\x67\x52\x67\x73\x69" "\x67\xad\x4f\x74\x34\x2e\xb7\x94\x15\xb3\x45\x0c\x94\x55\x96\x87\x8c\xbc" "\xd0\xc0\x96\x3a\x77\x85\xae\x2e\xf4\x2b\x05\xf3\xb7\x5d\x7a\xce\xcf\x58" "\xca\xd1\xb7\xd8\xa4\x0c\x3d\xd3\x87\x84\xdb\xcc\x51\x53\x92\x1d\x15\x19" "\xe5\x86\xa3\x22\x95\xfa\x7f\x43\x9a\x1f\x99\x9f\x69\x15\xa1\xbe\xd3\xb3" "\x2c\x3a\x91\x82\x32\x41\x9d\x0b\x7b\xfa\x15\x23\xe4\x1a\xa8\x90\x96\x64" "\x8b\x9a\xf8\x5d\x84\xc7\x87\xb1\x72\x8f\xa0\x04\xb6\xfc\x63\x46\xa7\x4c" "\x25\xe6\xeb\xc6\xa7\x50\xcc\x03\x79\x05\x20\x4b\xf8\xd5\x9d\xbb\x39\x7a" "\x54\x48\xab\x4c\x0e\x2a\x6f\x91\xb5\x87\x1f\x3b\x1a\xe7\x66\xc1\xce\x99" "\x94\xb6\xd8\xa2\x46\xeb\xe8\x8a\x26\x83\x4f\xc8\x29\x7b\xe0\x19\xd2\x5e" "\x94\xf4\x36\x3a\xee\xa8\x55\xa4\x9d\x3e\xfa\xb5\xa3\xf9\x51\x30\x42\xe4" "\x3b\x19\x12\x2b\x34\x19\x1b\x4f\xdd\x16\xd6\x21\x72\x74\x9d\x51\x32\xb0" "\x48\x3c\x68\xdd\x24\x44\xd4\xe8\xc1\xa1\x8a\x48\xcb\x2a\x87\x93\x24\x74" "\x73\xa1\x3b\x64\xcc\xcd\x08\xed\xe7\x3c\xda\xa5\xc3\x3e\xca\x27\xd3\x2d" "\x8e\x9d\xba\x68\x8b\x68\x5e\xac\x91\x4e\x8c\x28\x35\xda\x8c\xa6\x11\x34" "\x8e\x34\xc3\xf1\x5c\x31\xf9\xb1\x8f\xb8\x75\x0a\xb4\x07\xa9\xe6\xd3\x87" "\x47\x25\x0c\x93\xf6\x4a\x14\x6c\x24\x13\x7c\xf6\x45\x27\x28\x5e\x04\xad" "\x38\x32\x52\x85\x8d\x22\xb0\x7e\xaa\x56\x41\xd0\xe4\x73\xb8\x26\xea\x81" "\xf1\x37\x32\x42\xca\xfd\x24\xe7\xdb\xe7\xcf\x9b\xc7\xc4\xbf\x45\x7f\xed" "\xfe\xa5\xdb\xe8\xa4\xc0\xec\x31\x5e\x5d\x0c\x94\xb6\xa8\x31\x26\x1c\x7b" "\x2a\x5b\x60\x32\x0a\xc8\xba\x25\x72\xe6\xd4\xcb\x67\x97\x2b\x19\x4f\xb3" "\xd4\x65\x54\x15\x0a\x49\x95\x3a\x4d\x69\x3f\x10\x0d\xaf\xb2\xc3\x2e\x9d" "\x9b\x02\xdb\x7e\x89\x5d\xbe\xe3\xe7\x01\x48\x0e\x04\x8d\x2f\xbf\xf6\x4a" "\x8c\x56\x70\x7b\xb7\xb2\xd1\x35\xbe\xed\xe1\x9e\x3d\xb6\x7e\xb8\xbf\xd5" "\x09\xdc\x2d\xd9\x73\x3f\xc3\x41\x62\x78\x46\x44\xaf\xe0\xc6\x85\x60\x56" "\x36\x93\x18\x98\x2a\xb2\xf2\xfa\x6f\x89\x3b\xa2\x1f\xcc\xf3\x6e\xb2\xbc" "\x4b\xe1\x7f\x37\x85\x40\xb2\x9a\x63\xef\x94\x0a\x27\x5f\xb5\x7d\x29\x7b" "\xea\x9f\xc0\x42\x61\xc9\x51\x45\x96\x32\x7e\x98\xf3\x15\x6c\xf6\x0b\xda" "\xa5\xa7\x90\x61\x0e\x98\x18\x8a\xf1\xd5\xac\xf0\x85\x62\x18\x40\x48\xb4" "\xd1\xb2\xb8\x83\xee\x35\x19\x70\xb1\x4d\xb3\x66\xd3\x12\xbc\x7a\xce\x74" "\x28\x60\xac\x17\x6b\x11\xb7\xbd\xcb\x64\xa3\xca\xe0\xaa\xeb\x84\x4b\x6b" "\x6b\x95\x3f\x6a\x52\xdf\xab\xd6\x5f\xa6\x1c\x23\x7a\xbf\x9e\x10\x3b\xe0" "\xf3\x3c\xef\xc5\x98\xae\x1a\x0f\x74\xb2\xdf\xbb\x13\x75\xb0\x8b\x18\x69" "\x3c\x4c\x5d\x36\x73\x3f\x06\x7c\x0b\xd7\xa2\x56\x16\x72\x46\x94\x73\xae" "\x44\x89\x19\x17\xba\x9e\x74\xbd\x28\x3f\x99\xd2\xc7\x74\x42\x05\x1c\x66" "\x55\xd3\x10\x40\x0f\xa5\x3e\x9e\x1e\x51\xad\xff\xa3\xa4\x8b\xfd\xd1\xa2" "\x9f\xfd\xe1\xc8\x90\x5a\x08\xc2\xa7\x0f\x09\x1d\xc2\x09\xe2\xc4\x88\x57" "\xcf\x6b\x70\x22\x86\xb7\x4b\xdb\xb0\x51\x01\xfd\x1b\x2d\x94\xa8\xb0\xc4" "\xb9\x76\x8d\x26\x75\x0a\x1a\x21\xc7\x72\xf4\x92\xa1\x0e\xd9\xcf\x38\xb1" "\xfa\x5d\xe0\x85\xd7\x43\xfc\x58\x5a\x6b\xd1\xf8\xdd\xd1\xdf\xa7\x3d\x4a" "\x4d\xe8\x07\xa8\x22\xb8\x9c\xe1\xae\x56\x41\x16\xd5\x60\x88\x0b\x92\x9b" "\xbe\x7f\xbf\xc5\xe6\x9f\x83\x7e\x16\x50\x55\x9d\x6a\xe9\x53\xd3\xac\xc3" "\xa7\x99\x0d\xa0\x26\xe0\x7e\x7b\xb0\xb8\x06\x65\xcc\x13\x4f\xcb\xb8\xb3" "\xe1\xf3\x64\xcb\x2b\xdf\x29\x38\x14\xf8\xa4\xc3\x34\x41\xe5\xbc\x9c\x06" "\xe9\x9e\x58\x6e\xf0\xb2\x38\x91\x2f\x6a\xa0\xf3\x31\xee\x7f\xe6\x3e\xf1" "\x94\xe9\xc4\x06\x76\x83\x38\xdd\x86\x54\x0f\xfe\x14\xeb\x06\x49\x87\x0f" "\xc9\x20\x53\x2c\x36\xca\xb3\x1d\x0a\x33\x6a\x83\x1a\x90\xc5\xb6\x23\x6b" "\xdd\x43\xce\xdb\x78\xc9\x6a\x5b\xec\xe5\x37\x47\xe0\x6d\x59\xce\xde\x3b" "\xf3\x76\x16\xce\x9a\xea\x5f\xa8\x1a\x93\x22\x1d\x0c\x30\x8a\xd9\x63\xa3" "\xc5\x6c\x60\xd3\x41\x8f\x21\x6f\xa5\x1e\xa4\xfb\xc6\xe0\xf8\xd4\x07\x38" "\x4f\x31\xd2\x79\xe7\x8c\x36\x54\xcc\x67\xfc\x22\xfe\xe5\x31\xf6\x29\x18" "\x1f\x82\x20\x4a\x54\x22\x99\x74\xcd\xc1\xe8\x91\x91\xfa\x55\xf5\x4c\xac" "\xc2\xac\x3e\xab\x53\x3f\xbd\x4e\x7b\x0a\x20\x30\x3e\xff\xa3\xf7\x15\x39" "\x69\x9c\xf6\x18\xd3\x9a\xba\x2c\xb3\x4c\x47\xe3\xee\x1f\xee\x01\x40\xe3" "\x98\xf3\xd6\x6d\x43\xb5\x50\x3e\xdb\x28\x72\xa9\x1f\xa6\x5d\x32\xe7\xea" "\xf1\xd3\x85\x9b\x51\x47\xb9\x30\x68\x4f\xa4\xdd\xf3\xdc\x19\xb1\xdf\x12" "\x68\x51\x7f\xa6\x80\x07\xd3\xeb\x2d\xb2\x3d\x0d\x9a\xe2\xf3\xdb\x64\x0b" "\x85\x7e\xf9\x66\x86\xef\x3e\x64\x96\xfc\x34\x70\x8d\x10\x41\xfa\xed\xc2" "\x0b\x7b\xf4\x43\x6c\xaa\x10\xdb\xbf\xf0\xbe\x74\x4f\xda\x56\x4c\xd9\x10" "\x6e\x8f\x00\x58\x28\x93\x10\x10\x7f\x2c\xff\xe2\x27\xec\xd5\xb1\x26\x04" "\x27\xf1\x8b\xf8\xd9\x58\x10\x9e\xe3\xee\x5b\xb0\xd0\xf9\x9d\xd5\x2e\x68" "\x13\xd9\x54\x5f\x52\xd2\xc5\x2a\xe0\x20\x13\x15\x0d\x10\x2b\xab\xf1\xd4" "\x4f\x3b\xf5\xce\x19\x7b\xcb\xfe\x2c\x83\x9c\x35\x9a\x08\xfa\x98\xf0\x47" "\x04\xf7\xac\xa4\xc3\xc9\x34\x6e\xfd\x1c\x23\xe8\x07\x4b\x7d\xb8\x47\xf5" "\xeb\x1b\x60\x90\xd1\x03\x9d\x22\x39\x0c\xf4\xf1\x89\x0f\x91\x06\x4b\x4a" "\xb4\xb3\x0f\xae\xd7\xef\x9d\x61\x4b\xd4\x65\x08\x48\xf0\x5e\xed\xab\xca" "\xa4\x44\x27\x94\x35\x00\x06\x68\x97\x49\x00\xe6\x2b\x25\xdd\xef\x31\xc8" "\x34\x53\x28\xce\x84\xe0\x01\x69\xb2\x04\xe2\xee\xb9\x64\xb9\x58\x16\x5d" "\x95\x89\xf6\x91\xdc\x8f\xeb\x9b\x0e\xfc\x31\xd0\xb2\x9d\xb7\xfe\x5f\xfd" "\xa6\x7f\x81\xb6\x44\x83\x6c\xe7\x59\xdb\x3b\xad\xca\x11\xa6\x00\x6e\xee" "\x8c\xf0", 8192); *(uint64_t*)0x20005100 = 0; *(uint64_t*)0x20005108 = 0; *(uint64_t*)0x20005110 = 0; *(uint64_t*)0x20005118 = 0; *(uint64_t*)0x20005120 = 0; *(uint64_t*)0x20005128 = 0; *(uint64_t*)0x20005130 = 0; *(uint64_t*)0x20005138 = 0; *(uint64_t*)0x20005140 = 0; *(uint64_t*)0x20005148 = 0; *(uint64_t*)0x20005150 = 0; *(uint64_t*)0x20005158 = 0; *(uint64_t*)0x20005160 = 0; *(uint64_t*)0x20005168 = 0; *(uint64_t*)0x20005170 = 0; *(uint64_t*)0x20005178 = 0; inject_fault(4); syz_fuse_handle_req(r[0], 0x20002a80, 0x2000, 0x20005100); } int main(void) { syscall(__NR_mmap, 0x1ffff000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 7ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x21000000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); setup_fault(); use_temporary_dir(); loop(); return 0; }