// https://syzkaller.appspot.com/bug?id=62535d152abca3a1d1e00ee0f22bf53869ccdc56 // 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, 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 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" "\x01\x00\x00\x80\x00\x00\x00\x00\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\xd4\x5d\x46\xf1\x0c\xec\x87\xa5\x3e\xe6\x28\x6f\x4f\x69" "\xa4\x84\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\xf1\xc7\x33\x6f\xcf\x88\xab\x01" "\x6d\x9a\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*)0x20007780, "\x78\x9c\xec\x92\xcf\x4e\xe2\x50\x14\xc6\xbf\xdb\x96\x3f\x33\x93\x4c\x66" "\x92\x59\xb1\x81\x64\xc8\x0c\x2e\x94\xb6\xa8\x31\x6e\x74\x89\x7b\x1f\x40" "\x52\x2a\x12\x8b\x0a\x6d\xa2\x10\x16\x35\xc6\xb0\x70\x61\x5c\xfa\x04\xbc" "\x86\x89\x2f\x20\x0b\xe3\x03\xb0\x66\x41\xdc\x99\x98\x9a\x7b\x7b\xda\xdc" "\xfa\x0a\xde\xdf\x82\xef\xde\x8f\x73\xee\xf9\x03\x47\x7e\xdf\x2f\x00\x78" "\x5f\x8e\x1d\xec\x42\xa0\xe3\x27\x66\x8c\xc1\x00\x50\x66\xb1\xb7\xd0\x62" "\xbd\x23\x7d\x26\xbd\x8d\x05\x4f\x14\xb7\x47\xfe\x15\x69\xc9\x1f\x8e\x8e" "\x5b\x9e\xe7\x0e\x2a\xdb\x15\xfc\xce\x18\x00\x5e\x85\x97\x5a\xfe\xce\xa5" "\x86\x85\x78\xea\x65\x39\x76\xf8\xe1\x00\x40\x14\x45\x11\xf7\xda\xc0\xec" "\x07\x00\x39\x46\x07\xd0\x97\x62\x4a\x06\xf0\x87\x0f\xf1\x16\xc5\x2c\xc7" "\x0e\x1f\x84\x27\xfc\x07\x50\x0f\x7a\x67\x75\x7f\x38\x5a\xed\xf6\x5a\x1d" "\xb7\xe3\x9e\xd8\x76\x63\xd3\x5c\x37\xcd\x0d\xbb\x7e\xd8\xf5\x5c\x53\x7c" "\x46\x34\x8e\x28\x41\xa3\x80\xeb\x0a\x00\xbe\xaf\x6f\x52\x0b\x39\x00\xd7" "\x14\xf3\x1d\x59\x98\xd4\x1a\x7d\xcf\x92\x5c\x4e\x5e\xda\x61\xed\x6f\x2e" "\x93\xab\x49\xb9\x89\x32\x3c\xa4\x75\x0b\x48\x7e\x2f\x60\x1f\xff\x50\x04" "\x70\x1e\x32\xc9\xad\x8a\x57\x0c\x88\xc1\x9a\x60\xd0\xf9\x45\xf7\x5c\xcb" "\x90\xfa\x8b\x6b\x15\x45\xd4\x9a\x73\xea\xb5\x27\x60\x60\x49\xda\x14\x46" "\xfa\x86\x35\x47\x2e\xbd\xd8\xf2\xa5\xb1\x15\x26\x6d\x4f\x48\xab\xa4\x4d" "\xd2\x29\xe9\x9c\xb4\xfc\xe9\x2f\x63\x88\x17\x6e\xe8\x56\x0b\x81\x3c\x6f" "\x23\x18\x58\x7c\x49\x17\xad\x20\x18\x58\x7c\x61\xe2\x64\xa7\x9e\xfd\x2b" "\x94\x17\xc6\xab\xde\x6b\xd9\xe1\x1e\x35\x28\x14\x0a\x85\x42\xa1\x50\x28" "\x14\x0a\xc5\x57\xe7\x23\x00\x00\xff\xff\x8d\xcd\x7d\x20", 392); syz_mount_image(/*fs=*/0x20000180, /*dir=*/0x20000100, /*flags=*/0, /*opts=*/0x200001c0, /*chdir=*/3, /*size=*/0x188, /*img=*/0x20007780); memcpy((void*)0x20000040, "./file2\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000040ul, /*flags=*/0ul, /*mode=*/0ul); if (res != -1) r[0] = res; syscall(__NR_read, /*fd=*/r[0], /*buf=*/0x20000a40ul, /*len=*/0xfffffdeful); memcpy( (void*)0x20002a80, "\xc8\xe1\x21\x71\xab\xe5\x17\xec\x5b\xe2\x7c\xed\xd7\x5d\xa3\xc4\x78\x15" "\x64\x44\xdc\x5f\x42\x81\x4d\x21\x48\xc2\xdc\x36\xa2\xd2\xf7\xa0\x9d\xf3" "\xb0\x08\x02\xb1\x81\xfe\x2e\x24\xaf\x0b\xcc\xfe\xb8\xcb\x10\xf1\x93\x5c" "\x6d\xf5\xc2\x0c\x51\x7d\x8f\x67\x78\x96\xc5\x31\xad\x2e\x0a\x97\x7a\x86" "\xac\x41\x9e\x4c\x7d\xbd\xfa\xb8\x2c\x16\x71\x52\xf9\x9c\x0e\x36\xc3\x2d" "\x72\x3d\x64\x2e\x41\x00\x73\xd8\x46\x53\x30\x0f\x6a\x76\xbb\xe0\xf9\xff" "\x9b\x2a\xfd\x92\xa3\xf8\x1d\x0d\x83\xef\xc0\x50\xf3\x10\x2e\x50\xa9\xc4" "\xea\xd8\xe6\x22\x9f\xf2\x1e\x46\x11\x32\xa6\xdd\xbc\x3b\x8f\x6c\x1d\x4d" "\x35\x44\xf6\xff\xc0\x8d\x66\x6a\xa5\x5a\x5f\xf2\x76\x53\x8b\xbc\xe1\x93" "\x55\x7e\x9c\xf1\x09\x39\x84\x3a\x48\x26\xb4\x57\xdc\x14\xb2\xf5\x33\xa9" "\x9d\x86\x77\x39\xad\x9b\x81\x55\xf5\x50\x39\x40\x86\x8e\xed\xa9\x5d\x78" "\x78\xe8\xd1\xd1\x17\x00\x13\xa3\xa4\xf6\xbf\xca\x38\xe8\xe8\x0d\x7a\x8d" "\x9d\x78\x78\x91\x31\x80\xab\x73\x30\x41\xc3\xa6\x76\x95\x97\xc3\xf0\x70" "\x7d\xc8\x57\x12\x4f\x55\x44\x73\xa1\x29\x8d\x38\x31\xc5\x9b\x43\x2a\x91" "\xf5\x9a\x7d\x24\xf3\x62\xb0\x77\x82\xea\x6d\x0b\x56\xfd\x01\x8e\x7e\x4c" "\x7f\x69\x41\xa1\xfb\xc6\xb3\xac\xb7\x60\x58\x83\xb5\x93\x86\x4f\x10\x42" "\x47\xc7\x3a\x51\x2e\x72\x1c\xff\x9f\x1d\x22\xa8\x07\xa6\xf5\xb7\x1e\x0f" "\x8e\xfc\xbd\xc1\x98\x39\xa4\x84\x40\x6c\xe8\xa1\xf4\x7a\xe2\x52\x08\xe5" "\x53\xfd\x8b\xe2\x82\xee\x93\xeb\x84\x3b\x79\xb4\xb0\x1b\x90\x74\x8f\xa6" "\xf3\x7a\x15\x2f\x11\xf3\xe3\x1e\x0c\x66\x47\x5e\x1c\x5c\x79\x95\x2e\xac" "\x3b\x5f\x8a\x79\xf3\xfd\x98\xf6\x8d\xf7\x95\x60\xef\xe3\xc1\xb9\x5c\xe8" "\xf6\xcf\xca\x3c\xf1\x6a\xa9\x56\x26\x1e\x7c\x61\x7e\x7c\x2b\x77\xd6\x8c" "\x25\x1a\x0c\xf3\x35\xa0\x49\x89\x30\x9c\x26\xb1\x91\xbd\x25\x2c\x77\x9f" "\xda\x3e\xe3\xf4\x13\xee\x14\x4b\xdf\xdf\x89\x3b\x2c\xb2\x5f\x72\xfc\x03" "\x1c\x2e\xca\xe3\x11\x83\x85\x04\x65\x9e\x33\x80\x7d\xf3\x56\x19\xc8\x9b" "\x09\x23\x5b\x32\xf1\xd2\x27\xd7\x11\xbd\xb7\x67\xa7\x06\x6d\x46\xb9\x6b" "\x42\x4f\xe5\xaa\x66\xc6\xcb\x88\xe0\x27\xac\x02\xaa\xe7\x54\x6b\xad\xc9" "\xf2\xd4\xd6\xdb\x5d\x6d\xd0\xf5\xb6\x3d\x32\x7a\x38\x6d\xfa\x60\x72\x01" "\x60\x3c\x2a\x9d\xc9\x3e\x57\xf1\x8b\x62\xdb\x7b\xc1\x9d\xac\xfb\xdc\xcc" "\x9a\x4e\x81\x49\xf7\x89\x9a\x28\xfe\xf9\x8f\xf0\x3d\x8a\x71\xf0\x5e\x0d" "\xcf\xf4\x82\xef\x53\xec\xee\x97\x4a\xb3\x6b\x49\xb7\xc0\xf7\xc6\x8e\xe7" "\x5b\x96\xde\x84\x7b\x25\x4b\x7a\xe9\x8f\xae\x42\x8c\xcb\xb1\x7b\x72\x44" "\x7a\x82\xdd\x99\x3b\xa6\x20\x67\x27\x1b\xe3\xef\xc3\xdd\xfa\xac\x1a\xe9" "\x68\xad\x46\x8d\x45\x01\x28\x75\xd9\x76\xf1\xc1\xef\x41\x96\xd1\x8d\x3c" "\x5a\xa7\x93\x4e\x5c\x91\x1d\xe9\x50\x86\xe2\x84\x7c\xac\xa2\xf9\xbc\xbb" "\x17\x7c\xcd\x83\x21\x67\xaf\x95\xcf\x8f\x96\x2b\xeb\x46\x68\xf1\x94\x42" "\xb7\x8a\x0d\xa6\xdb\x96\x3b\xaa\x36\xba\x48\xb9\x7b\xe9\x57\x41\x89\x7d" "\xf4\x66\xf3\x9e\xb0\xd1\x25\xe3\xce\x54\x20\xaa\x23\xd2\xf3\x30\x09\xa2" "\xe9\x72\x57\x06\x55\x54\x46\x0d\x8b\x23\x82\xa2\x0d\xfb\x79\x90\xe0\xa1" "\x72\x70\xdc\x62\x81\xfb\xf2\x7c\xf9\x41\xe4\x5f\x9d\xcf\xab\x7a\x85\xf9" "\x12\xe6\xa9\x8d\x12\x1c\x82\xe5\xe3\x55\x28\xbb\x81\xa2\x40\x8d\x29\x0d" "\x38\xd7\xb2\x54\x82\x8b\x88\x22\x01\x5a\xf4\xfd\x74\xe2\x46\xa1\xe7\x14" "\xf8\x13\x33\x97\x2e\x36\xcd\xd4\xc0\x5b\xb2\x98\xd0\x88\xf9\xd5\x5e\x04" "\x99\xf7\x3b\xa8\x63\xde\xf5\xa6\x53\x09\xe7\xbf\x0c\x78\x02\x38\xd6\x59" "\x96\x5d\x21\x90\x9e\xba\x8a\x7d\x18\x87\xd2\x5c\x71\x08\xd8\x0e\x5b\x89" "\xf1\x72\xb1\x73\xea\x41\xb9\x8b\xd5\xd7\xa5\xc5\x41\x08\xc1\x2f\x51\x28" "\x46\x39\x5a\x8b\xd8\xa1\x2b\xf1\xba\xe2\x3e\xd9\x00\x2c\x0a\xe4\xde\x01" "\xd1\xb6\xb8\x1c\xac\x6a\xd2\x6c\x6c\xbc\xaa\x51\xad\xd9\x8a\x41\x02\xee" "\x0e\xca\x61\xeb\x98\xb4\x98\x9c\xff\x29\x03\x57\xc3\x70\x2a\x31\xe3\x91" "\x98\x41\xe8\x11\x07\xeb\xd1\x12\x24\xa3\x38\x61\xc8\x2a\x4c\xb7\xfe\xd1" "\x6b\xd8\xbb\xb7\x9a\xf0\x2b\x29\x0d\xa4\x4d\xed\x9e\x25\x28\xa8\x07\x00" "\x2b\x39\xc7\xf8\xf7\xf5\x48\xcf\x11\x1e\xfc\x3e\x9f\x9b\xb6\x06\xcc\xd9" "\x2f\x1c\x68\x79\xa1\x6c\x53\x60\xed\xb5\x58\x5e\xfa\x13\x24\x38\x02\x04" "\x23\xec\xc0\xf6\xd8\x9f\x64\x71\xb1\xbf\xa2\xba\xd0\xbe\x01\x97\x75\x6c" "\x8d\x78\x97\xff\x67\x72\xc2\x70\xde\xb4\x35\x55\x29\xdb\x2e\x67\x0c\x9d" "\xe5\x2f\x50\x38\x05\x25\xee\x91\x98\xad\x5c\xb9\xe1\x4d\xd6\x8d\x96\x76" "\x2d\x72\x96\x69\x74\xd8\x05\x14\x48\xae\x4e\x78\xfa\xce\x3c\x58\xd6\x5a" "\x90\xfb\x60\xd8\xf3\xbc\xd2\x5b\xe9\x2c\x46\xbc\x5f\xce\xc6\x9b\x6c\x0a" "\x58\xe3\x08\xff\x95\x6f\x29\xe0\xd2\x4c\xbf\x1b\xa5\xf0\xe2\x68\xab\xf3" "\x0b\xfe\x31\xa8\x1a\xd9\xf7\x45\xc1\xf7\xc3\xd1\xf3\x14\xac\x56\xb3\x3f" "\xd4\x26\x11\xd1\x99\x5e\x76\x95\x29\x0e\xf6\x82\xa0\x97\x99\x18\xe4\x1f" "\x9d\x22\x1e\xfd\x76\x8d\x06\x10\x0e\x26\x51\x2c\xe4\x9e\x15\x2a\xca\xd4" "\x22\x35\xf2\x5c\x19\x94\x97\x6d\x08\x7e\x67\x48\x89\x45\xa0\x2f\x22\x81" "\xcb\x9c\x17\x0d\xc3\xf1\xdc\xd5\x3f\x0a\x8c\x5d\x36\xd2\x4b\x45\x60\x7e" "\x1e\xd2\x29\xe3\xf5\x53\x5b\xbf\xac\xc9\xd8\xb2\x8b\x94\xf7\xa7\xaf\xc7" "\xdc\x49\x4c\x54\x68\x69\xf9\x27\xbb\xdd\xa5\x80\xe9\xc8\x70\x7b\xbe\x63" "\x4f\x28\x68\x52\x55\xaa\xe7\xbb\xd3\x42\x7c\x2c\x07\x65\xeb\xe5\x28\xfc" "\x07\xf4\x4f\x08\x93\x5a\x3a\x91\xae\xe9\x32\x7b\xf2\xb2\x05\x8e\x62\x81" "\xc9\x20\xed\x74\x73\xa3\x7b\x55\x4b\x07\x6a\x6d\x7b\xb9\x36\x9e\x41\x23" "\xfe\x24\x02\x5d\x08\x2e\x2b\x53\xb8\x2b\x62\x73\xf6\xed\xe0\x37\x81\x0a" "\xfe\x47\x47\x1b\xe9\x98\xf1\x80\x0f\x46\xd2\x21\x2a\x50\x20\xd5\xec\x87" "\x5f\xbb\x5a\xfc\xc6\xb6\x13\x98\xab\xf8\x44\x52\x50\x38\xea\x51\xd5\x92" "\xac\x1d\x67\x1b\x1f\xe3\x7a\x00\xb8\x4c\xeb\xca\xce\xb8\x2c\x3b\x31\x48" "\x97\x5e\x86\x51\x24\xed\x5e\x33\x3e\xd4\x5b\x58\x46\xd1\x02\x4e\x7d\xf4" "\x84\x2d\xd9\xee\x53\x59\x63\x9b\x7c\x38\xd3\xea\x04\xfc\xa9\xa5\x68\x2e" "\xe2\x3c\x61\xd6\x81\x05\xce\x0e\x40\xbd\x37\x10\x23\xef\x96\xd4\x2f\xc8" "\x4f\xb1\xf3\x5d\x7d\xd0\x96\x47\x15\xff\xe6\x6d\x2a\xea\x24\x1f\x47\x79" "\x09\xc0\x7a\x75\x3e\xd9\x1c\x26\x0d\x9a\xa5\xdf\xd8\xfe\xa5\xab\xd5\x3f" "\xea\xad\xff\xe3\x23\xe9\x6a\x35\xf9\xb5\xe4\x9a\x93\x7e\xd0\xe8\x46\x36" "\x87\x19\x09\xf3\xaa\xce\xa8\x36\x5c\x1d\xef\xfe\xf2\x1f\xec\xe5\x20\xcf" "\x48\xda\xb8\x97\x2c\x8a\x2e\x68\x96\x04\x0b\x9a\xdf\x76\x37\xa1\xe4\x1c" "\xe6\x90\xd0\xbb\xe4\x12\xa3\x03\x83\x72\xfc\xd5\x31\x8b\xf6\x69\x51\x83" "\x9a\xc1\x98\x06\x1d\x53\x60\x57\xcb\x65\xc3\x91\x7a\xca\xbc\xda\xc4\x0d" "\x7a\x33\x94\xee\xc3\x26\xd6\x3c\xce\xc7\x0c\x4a\xd9\xd6\x46\x36\x70\xd0" "\x8e\x6d\x4d\x0c\xc9\x50\x4b\xa7\x53\x53\xfb\xbf\x2b\x8d\xad\xbe\xe5\xd7" "\x2d\xc9\xda\x10\x65\x43\x59\x89\x34\xa8\x86\xdb\x20\x02\x3e\x93\xca\xc1" "\x42\x3f\xe7\x4d\x71\xb2\x5a\xc1\xca\x38\xd0\xae\xfd\x68\x3f\x11\x2e\xc3" "\xf1\x3a\x03\x5e\xdd\x09\xd5\xef\xa1\x7c\x98\x2d\xb9\x79\x43\x65\xb8\x94" "\xad\xf3\xb8\x76\x12\xbc\xa7\x4e\xc8\x8d\x9b\x4a\x71\x40\x87\x97\x0a\x07" "\x74\x6c\x86\x1c\xdb\x35\xa8\x35\xa7\x3a\x29\x12\xae\x00\x5d\x9b\x65\x1e" "\x7e\x6e\x42\x2b\xea\xb0\x4f\x7b\xd4\x0b\x66\x17\x18\xc7\x0c\x84\xc7\x8a" "\x90\x01\x23\x38\xde\x39\x1a\xdc\x9e\x5d\xe2\x81\x0a\x3e\x51\x32\xe9\xb9" "\x8f\x70\x59\xdc\x0c\x39\x91\xe4\xca\xfe\x8e\xb8\x8e\xb0\xdd\x09\xa6\xbf" "\x84\xcd\x84\xab\xa4\xc3\xb5\x16\xfe\x16\x8c\xac\xf4\xb8\xc1\xa4\x4f\x6a" "\x46\xbd\xcc\xb0\x28\x00\x75\x4a\x66\x41\x4e\x40\x3c\x8c\x20\x10\x1d\x62" "\x72\x26\xe0\x57\x00\x0a\xc4\x11\x29\x44\x93\x60\xd8\x2d\xcf\xd2\xd3\x50" "\x35\x7c\x89\xef\x0f\x37\x03\x6e\x58\x44\x32\xa6\xf3\xc8\x72\x48\x99\xba" "\x5a\x2d\x59\xd9\xcb\x25\x64\x54\x25\xab\x9c\x2b\xe3\xe1\x64\xa4\xad\xb1" "\x2e\x20\xcd\x26\xfd\x6d\xa1\x4e\xba\xcd\xe3\x7d\x8f\xe9\x94\x25\x2b\xaf" "\x9f\x6a\xf7\x4a\x4b\xf3\x8d\xb2\x18\xbb\x22\x12\xb7\x4b\xe7\x93\xdf\x02" "\x68\xcd\x92\x00\x0c\x56\x3c\x6d\xa8\x45\x6f\x5d\xa4\x8e\xd0\x6f\x0b\xd2" "\xee\x05\x53\xf0\x29\x1a\xc8\x64\x65\x60\x4f\x2c\xba\x9a\xce\xeb\xdd\xb2" "\xb5\xa9\x19\x3d\x42\x6e\xcc\x58\xc3\x0c\x8d\xe3\xa0\x97\x52\xbb\xd6\x4b" "\x94\xe4\xe7\x66\x1f\x1b\xe9\x09\xa9\x87\x85\x4a\x97\x99\x92\xb8\x5c\x71" "\x30\xfb\x88\x83\xb3\x59\x3e\x06\x86\xc9\x0a\x93\xc1\x89\xce\x08\xfd\x24" "\x51\x79\xb6\x29\x66\x87\x7d\x3a\xe9\x39\xcd\xa9\x9d\x13\x35\x7f\xe2\x2b" "\x67\x42\x8a\x49\x4e\x0e\x03\xac\xf2\x47\x18\xcf\xa5\x79\xe0\x91\x90\x76" "\x1f\x48\xec\xcd\x44\xb5\x34\x52\x0b\x93\x32\x47\xf3\x12\xe5\x67\x9f\x30" "\x63\x0a\x5b\x01\x05\x58\x96\xa9\xbf\x5e\xbc\x67\x44\x6f\xe8\x56\x8f\x43" "\xaa\x1e\x78\x87\x7a\x03\xc0\x4b\xef\x0b\x1e\x95\x09\x9e\xf1\x2f\xea\x9d" "\xe0\xb3\xa9\x87\x26\xc6\xc4\x2a\xf5\xe8\x31\x71\xbd\x9d\x21\x52\xa3\x0e" "\xab\xef\x77\x43\x16\x2f\xce\xe7\x36\xa9\x19\x2d\x83\x1c\x54\xf2\xac\x96" "\x32\x03\xf0\x53\xe3\x3d\x74\x5e\xa3\x35\x3d\x6c\xe1\x23\x45\xed\xd4\x0e" "\x72\x55\xe8\x8a\x3d\xbc\x24\xef\x8d\x8d\x34\xda\x9d\x2b\x57\x48\x80\xc0" "\xb0\x5a\x17\x36\x6e\x03\xe4\x2a\x69\xc4\x54\xfd\xd7\x09\xa2\x87\x06\xcc" "\xa6\x83\x05\xec\x3f\x8f\xd6\x3e\xe2\x33\xd6\xf9\xc9\x09\x1e\x3c\x95\xee" "\xc2\x6b\x29\xb9\x6a\x16\x82\xa4\xe4\x84\x3e\x2a\x6e\xc9\x60\x4e\x89\x92" "\x11\xb3\xee\x83\x71\x25\x87\x1b\x45\x13\x8e\x33\xdd\x1c\x50\xee\xa4\x1b" "\x0c\x22\xf2\xe7\x37\xe3\x25\x4a\xa9\x97\xc7\x8e\x5f\xb3\x14\x72\xa9\xf7" "\xfc\xb5\xfa\x64\xa4\x0e\x5f\xd3\x5c\x7d\x99\x50\x8a\x4d\xd3\xa8\xd6\x40" "\xbb\x58\xe5\x1c\xb1\x87\xd7\x64\xef\xbc\x4c\x18\xfd\xbf\xe4\xa1\x71\x12" "\x89\xb8\x1b\x09\xbf\x23\x76\x07\x88\x46\x12\xaa\xdb\xc6\xc3\x5e\xf0\xf2" "\x4d\x37\xc5\xe8\xd5\x87\x18\xb6\xf5\xbc\xea\x15\x9b\xa6\xb4\x79\x2f\xc1" "\x9c\x48\x66\x0b\x44\x84\x14\xb3\x59\xf3\x44\x25\x7d\x3a\xd5\x87\x9a\xd3" "\x07\xde\xbf\x7e\x29\xdf\x9e\x92\xca\xcc\xcf\xb7\x95\xaf\x97\x2d\xd6\xd0" "\x69\x05\x79\x7f\x10\x8c\x09\x30\x05\x16\x5d\xdf\xa2\xc0\xe2\x17\x79\x2d" "\x8c\x34\xf2\x76\xed\x05\xfb\xa4\xe0\xab\xf1\xdc\x69\x9e\xfb\x08\xc8\xf9" "\xb5\x61\xad\x31\x19\x7d\x00\xd7\xf6\x36\x02\xf2\x9f\x83\x29\xae\xd4\x6d" "\xed\x49\x59\xd9\x97\x36\xcb\x79\x49\x44\x00\xaa\xf0\xa7\x01\x7e\x83\x58" "\x52\x45\xd2\xda\x9e\xab\x96\x46\x30\xb3\xfc\x3d\x15\x8a\x79\x61\xf8\xb1" "\xbe\x0a\x3b\xfe\xc8\x37\x93\x33\x57\x48\x87\x7b\xee\x30\x27\x22\xe2\xe9" "\x62\xfa\x42\xe8\x17\xc6\xe5\x4e\xf7\xe6\x48\x92\x36\x6d\x4a\x3b\xf0\x5d" "\xbc\x2a\xe1\xcc\x81\xd1\x00\x01\x0e\x1b\x40\x71\xc2\x2e\x9d\xd4\x66\x9b" "\xe1\x31\xce\x25\xde\x15\xf9\xef\x2e\x0d\xde\x89\x99\x30\x5c\xf2\xb3\x21" "\xc9\xe5\x65\xa5\xfb\x69\xc1\x49\x9d\x2f\x43\x67\x50\x87\x55\xdd\x3d\xfc" "\xc3\x9f\xa4\x20\xb8\x35\x48\x6b\x22\xa6\x4f\xcc\x6f\x01\xc2\x16\xfc\x26" "\x10\x3e\x6b\x4c\xc4\xa8\xed\x60\xba\xc8\xc3\x5f\x92\xa6\x8e\xc3\x2c\xe3" "\x79\xda\xfc\xf6\xbf\x4b\x32\x6d\x21\xaa\x6e\x51\x2e\x1a\x11\x23\x2a\x67" "\xd3\x6e\xc7\x22\x11\x71\x9f\x05\x0d\xe2\xbc\x56\x17\x96\x9e\x33\x64\x3c" "\x0e\x18\x0e\xf0\x18\x8d\x28\xc7\xf2\xd3\x12\xad\xf8\x37\xfa\x20\xf8\xe5" "\x3c\xda\x7c\x5b\x4c\x92\x4f\xb5\x05\xe9\xc1\x95\x8c\x7d\x27\x8f\x8d\x26" "\xcc\xae\x80\x98\xc7\x25\xbd\xe1\x17\xe1\x0b\x7f\xdc\x54\xe7\xc4\xa0\x00" "\x60\x5e\xa2\x75\xc0\x69\x98\x5e\xec\xe9\x2e\x85\x7a\xac\x10\x18\x0a\xa3" "\xb1\x94\xb9\xdd\x55\x78\x6e\xa1\xd5\xbd\xa9\x34\xe2\xe0\x5d\x99\x2f\x28" "\x45\x48\x82\x48\x2d\x03\x4b\x5b\x48\xb7\x99\xd3\xc2\xa8\x2c\x8c\xcd\x90" "\x90\xc7\x99\xf5\xb4\x54\x2c\x4b\x54\xe7\x26\x03\xde\xba\x7e\xde\x84\x0a" "\x60\x56\x48\x05\x30\x7f\x54\xf9\xea\x2b\x3b\xcb\xf4\xbb\xe8\x1e\xf8\x88" "\xf8\x14\x4d\x49\xb8\x15\xa7\x1f\xfd\x58\x49\x8f\xdc\xf0\xcb\xda\x64\x0c" "\xd7\x4b\xc6\x4b\xf6\x22\x22\xb5\x1f\x9c\x76\x35\xda\x85\x0c\x9e\x1c\x9b" "\x81\x89\x5f\xab\x18\x3b\x9f\xc4\x73\xe0\x86\x33\x1d\x06\xd3\x7a\x41\xbf" "\xf4\xbf\xa0\xa7\x24\xe3\x4a\x27\xff\xa9\xba\xab\x38\x60\x80\x5e\x84\x33" "\x3c\x84\x41\x56\x51\xfa\x80\xa1\xc5\x3d\x4e\x5f\xe4\xcf\x81\x85\x8e\xc6" "\xa6\x51\x2d\x22\x71\xc4\x85\x1f\xfe\x47\xdf\xcb\xa1\x6a\x07\x29\x7e\xb6" "\x32\x8a\x3a\x2f\xec\x60\x73\x9c\xbe\x72\xae\xe4\x23\x77\xae\xfd\xb2\x4f" "\xba\x3c\xa0\xfd\xd5\x5a\x08\x15\x4c\x0c\x69\x64\xe6\x9b\x66\x13\x41\xb9" "\x44\x6f\xed\xc4\x20\x8e\x05\x28\x58\x13\x13\xf6\xdc\x0f\xcd\x52\x65\xfd" "\x17\xa5\xdd\xc2\x6b\x6a\xad\x63\xcc\x71\x5a\x47\xa2\xa8\xc8\x42\x60\x2c" "\x49\xb4\xb4\xb9\x51\xe7\x9a\x3d\xa4\x6e\xe5\x87\xbc\x35\x63\x39\x2b\x3a" "\xf7\xa9\x36\x7c\x61\x88\x95\xeb\x27\x06\xce\xac\x8d\x12\x3a\x5c\x60\x6d" "\x26\x38\x58\x4a\x5e\xe0\x27\xd0\xc3\x2d\x73\xc2\xe5\x25\x08\xb5\x1e\x1a" "\x91\xc8\x34\x70\x72\x8a\xd2\x1d\xf3\x27\x53\x1c\xe0\xdc\x65\x8c\xeb\x98" "\x5b\x84\xe2\x56\x8c\x4a\xf7\xcf\x03\x7e\xa7\xbe\x99\x29\x15\x4d\x94\x7f" "\x55\xc3\x02\x42\x59\x4d\xf3\xa8\xbc\xa8\x9e\x81\xb1\x9c\xd5\xae\xca\x69" "\x85\xfb\x53\x08\xff\xc2\x88\x0b\xac\x9c\x17\x18\x4e\x35\x3f\x15\x84\xd5" "\xd6\xb0\xcf\xd9\xd2\xe6\x26\x06\x6c\xc6\xe7\x55\xc9\xe8\x2e\x60\xef\xea" "\x41\x27\x0e\xeb\xa6\xe8\x39\x5a\x50\x95\x62\xef\x06\x77\xd6\x1a\x2d\x01" "\x30\x85\x35\x4b\x9f\x81\xc7\x14\x28\x1e\x76\x2c\xd9\x2f\x90\xb2\xf4\x5f" "\x9a\x88\xb5\xd4\x5f\x0c\xab\x0a\xf4\xe1\x11\xb1\x68\xa9\xb1\x07\x0f\x03" "\x93\x40\xff\xd0\xba\x7e\x96\x3c\xe8\xc8\x7a\xfb\x6f\x71\x83\xc8\x98\x67" "\x32\xfb\xbb\xdd\xe2\xef\xca\x44\x5b\xcb\x2c\x49\x32\x7a\xa2\x51\xe8\x2b" "\xbc\x2e\x1a\xfe\x38\xb0\x23\xb3\x35\x94\xeb\x84\xf6\x8d\xd0\xd9\x05\x8c" "\x9d\x98\x6b\x39\x4f\x4b\x14\x9a\x84\xbf\x86\xf6\xd9\x2e\xb5\x69\xca\xd9" "\xb3\xff\x32\x57\x96\x70\x0f\x69\x7e\x39\x71\x08\xaa\xf3\x9f\xca\x26\x7c" "\xc7\x53\x02\xe9\x7c\x48\x2a\x5a\xbf\x8f\x0c\x20\xeb\x0a\x86\x0a\x6d\x86" "\xee\xaf\x23\x2b\x22\x1a\xdf\xeb\x5d\x4f\x5f\x51\x54\x3f\x71\x65\xbe\xd0" "\xda\xdb\xfb\xa9\xaa\x40\xf0\x4e\xdf\xb9\xe2\x93\x28\xb3\x7a\x83\x51\x25" "\xf5\x84\xf6\x48\x6e\x10\xdc\x06\xf7\x08\xe7\x0d\x21\x59\x53\x52\x06\x6b" "\xc6\x03\x21\x2a\x80\xab\x76\x3c\x2e\x51\x42\xeb\xd0\xe3\xc9\x33\xe4\x03" "\xb1\x16\xc5\xce\xb2\xec\xdc\xc1\x6a\xb5\x97\x79\x2c\xa8\xdf\xe7\x2a\xf4" "\x6a\xb0\x20\x2b\x98\xf5\xdc\xb1\xa0\xa4\xe5\xf0\xd1\x48\xac\x11\xed\x5e" "\xe0\x44\xe3\x2c\x53\x49\xb7\x9a\xa4\x21\x78\x48\x1d\x5b\x04\x54\xc0\x8e" "\x30\xd4\x21\x2d\xde\x7e\xdb\x7c\x72\x92\xee\x8c\x2a\x4e\x77\x9f\x7a\x86" "\xd5\x17\x15\xba\x24\x2c\x0a\x39\x91\xb8\xa9\x11\x7d\x92\x3b\xc7\x54\xca" "\x42\xae\xc8\x06\x20\x86\x03\xd7\x84\x6a\xb7\x2a\x88\x6e\xbb\x10\x19\xa7" "\xab\xe2\x8e\x31\xa4\x76\x88\x1b\x50\x4a\xa3\xe0\xff\x69\xcd\x73\xd0\xf4" "\x4b\x68\xcd\x81\x6c\x68\x5e\x1c\x7f\xa5\x38\xc4\x5b\x92\xd6\x23\xb0\x41" "\x9d\x8b\xab\x9b\xdf\x4b\x04\xf1\xb6\x1c\xc3\x03\x76\xb9\x81\x14\x5d\xa2" "\xca\x3e\x75\x72\x71\xe1\x3b\xba\xe8\xbd\x66\x31\x89\x2b\x44\x4a\xf1\x74" "\x24\x2f\x92\x14\x5f\x6c\x4e\x63\xe4\x91\x6d\x01\x49\x50\x8f\xd9\xcf\xa7" "\x98\x73\xae\x46\xc2\x37\x21\xfe\x29\xac\x3d\xc3\x4c\x77\xf6\x31\x02\xdc" "\xd0\x6b\x33\xa6\x4d\x56\xf0\x4c\xe8\xb8\x90\x3f\xe6\x2b\x47\xdc\x6d\xcc" "\x6b\xec\x62\x99\xf2\xdc\xcf\x2a\x46\x40\x40\x22\x43\xde\xb7\x58\xd5\xb5" "\xdb\x9c\x56\xed\x09\xf0\xd6\x0e\xbd\xb0\x98\x8e\xbf\x68\x24\x29\x2d\x28" "\x14\x0b\xd3\x74\x43\x38\x91\x98\x12\xe4\x76\x88\xcf\x29\x42\x61\x18\x52" "\x71\xfc\x11\x5d\xd8\x73\x47\x79\xd1\x42\x3d\x8c\x3d\x41\x75\xb3\x9f\x38" "\x5c\xe5\x2d\xe4\xc2\x8a\xeb\xec\x72\xcc\xe8\x38\xa1\xcd\x0c\x1f\x9d\x5e" "\xa2\xb4\x37\xec\x7d\xbf\xaf\x8f\x1a\xb0\x2a\x3d\xfc\x74\x88\x7d\x57\x76" "\x61\x03\x92\x82\xb3\x2d\xd2\x73\x61\x4a\x4e\x15\x8d\x80\xc2\x4c\x6c\x0e" "\xae\x7a\xd1\xae\x75\xaf\x5b\xea\x6e\x31\x38\x74\x54\xf8\x52\x96\x59\x61" "\xf9\x53\x02\xfc\x78\xf0\x21\xab\xed\x5f\x35\x7d\x4c\xd3\x66\x34\xb4\x6d" "\xf5\x97\x08\x74\x86\x43\xad\x45\x98\xef\xcf\x74\x04\xd3\x4c\x11\x67\x35" "\x30\x5c\x4b\x92\x6d\xbc\x4d\x48\xf4\xb6\xf9\xc6\x1f\x56\x44\x76\x89\x3b" "\x92\xf4\xdf\xb3\x06\xef\x6e\xe1\x53\xbf\x82\x80\x24\x99\x2c\x45\x09\x26" "\x39\xbc\xb9\x80\xfa\xbe\x5d\x92\xe6\xf1\xb5\xcc\xbc\x29\x2f\x63\x4f\xc8" "\x89\xf3\x5a\xce\x08\x9a\xcb\xb8\xc4\xf2\xd7\x2f\x39\xdb\x5b\xb7\xb0\x46" "\x7d\x16\x76\x55\x2b\xba\x9d\x27\x84\xa6\xb6\xb3\x92\x44\x3e\x18\x83\xde" "\x4d\x7c\x35\xe9\x25\xd3\xa1\x9c\xd0\x6f\xf5\x6c\xbc\x08\x76\x46\xc8\x33" "\xa0\x00\x0f\x9a\x2c\x63\x0e\xf5\xfa\x5c\x18\x2b\x37\x86\x3e\xe2\x94\x46" "\x44\x0d\x13\x71\x5a\x33\xc5\x98\x78\x02\xfe\xd0\xb4\x51\x64\xcb\xd2\xec" "\xa2\x09\xa0\x50\xb6\xf4\xf1\x00\x27\xc1\xfc\x23\x67\x33\x10\x33\x8a\xe3" "\xc4\x7b\x3f\x54\xee\x15\xf1\xe3\xe3\x3e\x3f\x79\x38\xae\x3b\xc2\xf8\x8d" "\xcb\x14\x9a\xd0\x05\x79\xd8\x4d\xa2\x78\xc3\xff\xb3\xdc\x53\xc1\x43\x3b" "\x6a\x33\x38\xcc\xb8\x29\xfc\xe0\xd5\xb2\x5a\x8c\x3e\xb8\xc5\xae\xab\x5a" "\x42\x49\xbf\x4f\x1f\xb6\x9f\x46\xf7\x07\xfb\x5c\x90\x19\xb8\x37\x25\xa5" "\xe0\x10\xfc\x9d\x75\x7a\x45\x96\x4b\x26\xff\xae\xee\x65\x51\x6d\x01\x44" "\xb3\x8f\xe9\x68\x2a\xf7\x01\xb1\x92\x25\xe5\x13\x76\xa5\x8c\x1a\x8e\x71" "\x3e\x71\x6e\xc1\x14\xf5\xa4\xea\x4f\x89\x0f\x48\x80\x3b\x75\xe7\x5c\x64" "\xfc\x8d\x13\x17\x5e\x96\xde\x8f\x5e\x29\xf1\x6c\x67\x2e\x63\xb3\xcb\xd1" "\xbb\x91\x41\x89\x07\x5d\x60\xf9\x27\x2b\x06\xb6\xe5\x00\x35\x89\xab\x9b" "\xcc\xad\xe5\x09\x98\x93\x92\x64\x2c\xa1\xdc\x74\x33\x75\xba\xe4\x76\x3b" "\x02\xb4\x38\x34\x32\x3a\x59\xa1\x73\x1e\x3b\xe2\x48\x81\xf1\x08\xb7\xb0" "\xfa\xbf\x98\x36\x3a\x9c\x1a\xaf\xff\xe5\xe6\xc1\xe4\x1a\x9c\x4f\x1c\xd6" "\xb2\x16\x97\x84\x91\x7c\x9b\x76\xb3\x9d\xce\xca\x04\xb1\x9f\xe6\xcd\x00" "\x19\xb6\x45\x6d\xba\x51\x34\xa7\xaa\xbc\xc9\x7a\xdf\xce\x3c\xe7\xf7\xb2" "\x21\xc3\x39\x8a\xc2\x31\x90\x9c\x20\x38\xdd\x94\x8e\x68\x0f\xca\xcc\x03" "\x0f\x59\x0e\x0b\xbc\x80\x76\x32\xf3\xa9\x3b\xb9\xf4\x1a\x15\x8f\x9c\x44" "\xb2\xce\x9b\x89\xc5\x32\x5f\xc5\xe2\xfd\x77\xd0\xa0\xd7\x0b\x87\x51\x97" "\xfa\xd4\xd3\x7c\x17\xaf\x55\x87\x52\x3e\x41\xed\x04\xcb\x88\x50\x16\x9e" "\x22\xf2\xd3\x13\x8b\xfc\xdb\x5c\xf8\x14\xfa\x97\x40\x58\x42\xbd\xfd\x7a" "\xc2\x10\x92\x53\xdd\xe5\xd5\x16\x48\x52\xb5\xe9\x84\xa2\x63\x25\x52\xce" "\x2c\xb0\xd4\xcd\x3f\x14\xa5\x26\x6b\x89\x2e\xe9\x9c\x47\x16\x08\x27\x3f" "\x47\x61\xe4\x9f\xbb\xbd\xd6\xa2\x75\x66\x37\xbb\x97\xbe\xc3\x51\xea\xea" "\x97\xb8\x4e\x6b\xbf\x4b\x8b\xb2\x8f\x31\x26\xb7\x8b\xea\xc0\x69\x2a\xdb" "\xa3\xec\x7c\xa9\xf1\x77\x07\x53\x30\xc6\x2e\xdc\x99\xfb\x4d\xed\x75\xbb" "\xcd\x59\xe1\x64\x9c\xb4\x7e\x9d\x67\xdf\x75\x94\xd6\x0c\xd0\x7f\x07\x27" "\xa1\xc4\x83\xf7\x6a\x31\xfa\x51\x90\x9d\x17\xfc\x5a\xce\xd6\x28\x35\xf8" "\xf7\x25\x92\x4d\x7e\x1a\xb7\x5f\x35\x47\xf4\x08\x0c\x20\x7e\x9d\x9b\x96" "\x0d\x7a\x68\x98\x07\x4c\x50\x4d\xa6\xcb\xd9\x02\x66\x57\xbd\x5f\x7f\xa7" "\x81\x98\xb9\xde\xa8\x1c\x9c\xf3\x2c\x90\x5f\x5a\x03\x47\x91\x55\x24\x67" "\xa1\x94\xd9\xa6\x6a\xf0\x3e\x54\x76\xcf\xb5\xa3\x17\x2b\x11\xc4\x51\x35" "\x9e\x6e\x9f\xdf\xc8\x04\x77\x79\x88\xed\x78\xbc\xdd\xdc\xba\x03\xb5\x42" "\xf2\xaa\x39\xad\x2b\xb4\xb4\xfc\xb9\x9d\xa7\x76\x43\xbb\xde\xb4\x49\x65" "\xba\x17\x30\x73\xd6\xd1\x4c\xcb\x00\xb9\x53\x25\x2b\xe4\xf7\xa5\x1c\x3e" "\x44\x07\x9f\x49\xb4\xd0\x37\xf2\x30\xec\x90\x82\xf8\xbf\x12\x80\xac\x30" "\xd2\xef\x5e\xa6\x4f\xd1\xcc\x15\x94\x11\xd9\x40\xdf\x81\xfd\x1f\x73\x69" "\x9f\x2b\x1c\xcf\x28\x97\xcd\xf3\xf0\xf9\xe7\xae\xc4\x98\x1d\xd5\x14\xce" "\x31\x23\x20\x1c\x13\x3e\x2b\xf9\x75\x9c\x50\x21\xc0\x7a\x05\x56\x0d\xe2" "\x08\x8a\x31\x8f\xc0\x4a\xc8\x4f\x64\x43\xea\xb4\xd6\x06\xc8\x87\x88\x35" "\xe4\x70\x71\xef\x13\x7c\x58\xdf\xdc\x58\xc1\x31\x0b\xe1\x6c\x82\x63\x78" "\xe5\x76\x6d\x60\x7f\xc7\x77\x12\x5a\x0a\xb7\xf5\x50\xb3\x05\x45\xce\xe5" "\x75\xab\x12\xf1\x4d\x93\x3f\xeb\x6d\x70\x39\xed\x01\x13\x89\x6d\xe5\x35" "\xbe\x14\x88\x56\x4e\x83\xba\xe6\x49\x1a\x12\x01\x18\xb0\x9a\x4e\xaa\x85" "\xfa\xfc\x90\x35\xa6\x6e\x4f\xed\x4d\x85\xd7\x52\x67\xa6\xb0\x4b\x60\x55" "\xf2\x12\x0b\xae\x39\x96\x53\xdc\x92\x57\xd8\xa3\xcb\x62\x0f\x3c\x7b\xc3" "\x90\x7d\x09\x14\xb3\x15\x88\xb3\x71\x30\x5c\x2d\x7f\xaf\x62\xaf\x61\x4c" "\x60\x6c\xe4\x9e\x54\x86\xa1\xac\x1e\x14\xc8\xa5\xc3\x2b\xd3\x74\x60\x4b" "\x80\x51\xb8\xa5\x48\x07\x78\x2f\x65\x54\xe3\x86\x9e\xc1\x2d\x88\x29\x98" "\x05\x7d\x0d\x64\xd3\xfa\xee\xb5\xa0\x89\xb3\xf7\x6c\x75\xe8\x64\x6f\xb9" "\xd6\xac\xdb\x64\x40\x7d\xde\x42\x38\x46\xbd\xfd\xef\x9f\xdc\x06\xca\xcf" "\x01\x23\x62\xc6\x98\x9a\x5f\x43\xeb\xe2\xa4\x30\x55\x8c\x0f\x7b\x0a\xc3" "\x51\xd2\x2e\x81\x28\x94\xa0\xc9\x6f\xd8\x7a\x42\x91\xe2\x83\x97\x15\x34" "\x84\x69\x56\x84\x62\x62\x0a\x18\x0a\xb4\x49\x8c\x3b\x72\x13\x94\x8e\x90" "\x53\xe9\x3f\x01\x9e\x2c\x26\x01\xa2\x0a\x0c\x61\xbe\xac\xc4\x69\x59\xa5" "\x6d\x5d\x4c\x2c\xc2\x27\xd9\x97\x1e\xbc\x04\x2e\x27\xee\xe2\xdf\xaf\xab" "\x97\x09\x9e\x50\xff\x9c\x4a\x1b\x0e\x8e\x1a\x81\x4a\xff\x56\x35\x53\xc0" "\x03\xa4\x88\xea\x12\x4a\xad\xe4\x51\x03\x3c\x58\x5a\xd1\xa6\x50\x7f\x48" "\xb8\x71\xe7\x4e\x45\xae\x0d\xda\x6e\x7b\x4f\x73\xf6\xb6\xed\x94\x59\x8b" "\xc5\xb1\xd9\x2b\xc3\xbe\x12\x3f\x6a\x9d\xdb\xc2\x41\xa4\xab\x48\x0a\x4c" "\xff\xdf\xf2\x59\xf1\x81\x42\x10\xa3\x24\x5b\x9a\x7f\x7a\x68\x4f\x59\x79" "\x6d\x75\x15\x20\x1a\x20\x11\x0d\xe3\x5f\xdb\xa7\x29\x54\x53\x11\xfd\xe1" "\xca\x19\xac\x96\xb4\xd8\xa7\x60\xa6\x20\x4a\xb9\xaa\xd6\x20\x2c\xc3\xda" "\xc0\xb1\x99\x27\x1c\x91\xa8\xae\x5f\x35\x8e\xe5\xfb\x64\x1f\x57\xa0\xd5" "\xa5\xc5\x8c\x32\x0d\x6c\xbf\xd7\x41\x7f\x0b\xc4\xf1\x54\x8c\x45\x1b\x53" "\x54\xad\x0d\x4d\x7c\x90\x07\x57\xa8\xf0\x06\x8a\x7c\x5b\x6b\x8f\x7f\xa4" "\x0a\x42\x48\x89\x10\xda\x82\x75\x76\x19\x47\xa0\x24\x97\xdb\x8f\x3a\x3a" "\x2f\xbf\xc0\x0a\x70\xd6\xf8\x6c\x4f\x7e\x7d\xb8\x3e\x34\x59\xc1\x55\x59" "\x69\x62\x00\x85\x22\xa9\xaa\x8d\x46\x01\xbd\x26\xf2\x8d\x93\xda\xbc\xc8" "\x64\xc5\x83\x83\xd5\xcf\x83\x96\xeb\x39\x81\x4f\x3a\xdf\x50\x1c\x53\x13" "\x3a\x26\xbb\x01\x6e\x25\x6d\xa2\xa8\xd7\xb6\x91\x25\xa3\x5a\x44\xbe\x0a" "\x77\x7c\x9f\x88\x02\x85\xff\xc3\x35\x67\xf0\x22\x5c\x4c\xa5\x6a\x1b\x6a" "\x73\x7f\xba\x79\x41\xd9\x0c\xd2\xc4\xb2\x3b\x5f\xe5\x45\xe2\x8c\x60\x66" "\x9a\x47\x98\x1d\xb5\xd2\x02\x1b\xb5\xd6\x62\xf6\xb0\x33\xe4\x68\xa6\x01" "\x11\xb2\x6a\xa1\x0a\x9b\x5d\xce\x9f\x7e\xc2\xcd\x15\xc0\x38\xaf\x05\x2a" "\x10\x82\x5f\x5a\xe9\xaa\x4f\x41\x35\x47\x56\x71\x09\xd0\x45\x91\x6b\xb5" "\xe2\x99\x64\xdb\xe5\x4f\x0e\x1c\x34\x9b\x7a\xc8\x94\x99\xbb\xb1\xaa\xa2" "\x95\xb8\xc8\x13\x33\xbf\x97\xcc\x89\x41\xae\x50\xa5\x45\xb5\x3b\x0c\xc7" "\x9a\x12\xc8\x0e\x37\x71\x79\x83\x38\x59\xfa\xc0\x8b\x81\xf7\x07\x12\x58" "\xee\xf3\xb1\x38\x1d\x65\xd6\xd9\xce\xce\x13\xbc\x43\x9b\x42\xfa\x69\x3f" "\x5b\xa4\x06\xc6\xde\x69\x7b\xfb\x40\x6a\x07\x0a\x3d\x67\xf6\x60\xfa\xc0" "\x15\x21\x51\x29\x56\x10\x2f\xd4\x05\x56\xe9\xd7\x65\xc8\xf1\xdc\x3d\x24" "\x97\xb2\x6a\x94\x13\xa3\x91\x0f\x97\x25\xf4\x78\x17\x83\x35\x4b\x99\x2d" "\xbb\x43\x0f\x09\xeb\xb4\x7d\x8f\x1e\x92\xf1\xb5\xbb\x94\xd3\xcd\xf2\xd3" "\x57\x9b\x0b\x9c\x0b\x40\x80\xc5\x6f\x5f\x9d\xb5\x08\x82\x72\x9d\xa6\xe8" "\xb6\xb2\x57\x26\x08\x60\x32\xc4\xb2\x7c\x1d\xb3\x9a\x08\x64\x54\x25\x82" "\xd8\x5e\xd4\xe6\x54\x19\xca\x93\x67\x82\x5b\x4a\x9c\x75\x8b\xb3\xd1\x07" "\xcc\x26\x82\x7d\x33\x04\x05\x7c\x4c\x20\x66\x52\x42\x8f\x48\x25\x46\x81" "\xb8\x86\x68\x3d\x51\xa4\x7f\x73\x7f\xc7\x85\x0e\x7c\xcf\x54\xfc\x60\xa7" "\x90\x7f\x99\x2f\x6f\x6f\xd0\x31\x89\x3f\xae\x4e\x2a\x59\xd6\xb3\x11\x38" "\x4b\x4f\x46\x1e\x10\x7a\xdc\x33\xa9\xa5\x76\x88\x08\x59\x16\x92\xbb\x57" "\xdb\x18\x9a\x33\x9c\xa1\x33\x40\x20\xb4\x6c\xb4\xe4\x33\x3a\x7c\xe8\x00" "\x60\xb8\x7c\x04\x33\x17\x87\x2a\x75\x85\x61\xe3\xcd\x73\x02\x7f\x71\x78" "\xf9\x1e\x06\x04\xb0\xa3\xd0\x79\x15\x25\xcc\x42\xa5\xfa\x9f\x7d\xdb\xe9" "\x89\x55\x69\x91\x17\x0d\xd2\x9c\xdf\x3e\x28\x27\x48\x81\x32\x59\xbc\x5d" "\x1b\x7a\x4c\x3e\x03\xe1\x6d\x07\xbe\xce\x0d\x3e\x4c\xd2\x23\xe9\xfd\xaa" "\x39\xa1\x21\xbb\x41\x9c\xe3\x01\xe6\x50\x00\xc9\x30\xaa\x89\xfe\xf0\x0e" "\x6e\xe5\xd3\xf7\xe8\xf9\x7a\x0f\x07\xb0\x66\x38\xfb\x9a\x3e\xa4\xb5\x43" "\xb7\x58\x04\xfd\xc2\x1b\xce\xdc\x08\x09\xd5\x3a\xe6\x46\x63\xc8\xe2\x4f" "\x5e\xfa\x2b\x00\x8b\x12\x26\x87\x9c\xec\x54\xef\x04\xa7\xf7\x50\x0c\x83" "\x77\x29\x5e\x2c\xcc\x9e\xc7\x2d\xf8\x0d\x53\xec\xb7\x4c\x72\x5a\x13\xd5" "\x2a\x1d\xee\x27\xdd\x51\x9e\x92\x4e\x23\x55\xbd\xdc\xc4\xac\x9c\xfa\xae" "\x5d\x7b\x94\x13\x28\x40\xa4\x26\x92\x98\x56\x08\xe8\xca\x17\xc6\x12\x1e" "\xf4\xca\x18\xa4\xc0\xea\x8c\x8c\x84\xd0\x8f\xd2\xdb\xc0\x35\x37\xd0\xc3" "\x22\xcd\x49\x39\x56\x50\xc1\x94\x12\x2a\x75\x48\x4a\x25\xcb\xc9\xe2\xd9" "\x39\x11\xfb\x80\xb6\x37\x41\x6d\xc6\x81\x9e\xc4\x0f\xea\x08\xc3\xd3\x57" "\x6b\xc7\x2a\xa0\xcb\xd6\x93\x82\xe7\x16\xcd\x81\x1b\x07\xfb\x7c\x51\xef" "\x4e\xea\x1c\x15\x8e\xde\xfa\xe3\x4b\x6c\x92\x1c\x86\x72\x95\x38\x15\x0c" "\x1a\xce\x47\x99\x9c\xc9\xd2\xc5\x63\x09\x28\x1b\x50\xdc\xc4\x05\x54\x88" "\x28\x2a\x2a\xbe\x9c\xc0\x02\x21\xde\x18\x2e\x4a\xf4\x0a\xc0\xad\x5c\x18" "\xa8\xca\x79\x4f\x16\xc7\x07\x97\x7b\x29\xb8\x68\x70\xa3\xf6\x14\xe5\x57" "\xa8\x94\x77\xc2\xe3\xd0\x0c\xe7\xe2\x99\x3c\xf2\x17\x9a\xdc\xf9\xb8\xc0" "\x6f\x6a\x91\xa6\x3f\xcd\xb7\x73\x7a\x71\x17\x1a\x09\x54\x2b\xad\xd2\x5b" "\x09\x8c\x1d\x85\x26\x17\xba\x06\xb6\x11\xd6\x72\x49\x30\xde\xec\x0d\x41" "\x32\x5d\x4b\x9f\x65\x32\x0a\xc8\x79\x1d\xe8\x96\xac\x6a\x11\x56\xd0\x4e" "\x60\x3c\x57\x7d\x7f\x47\x04\x31\x66\xb8\x0a\x35\x32\xeb\x9f\x22\xe0\x86" "\xfd\xa4\xe4\xc2\x43\xe3\xa0\xf4\xd4\xd4\xde\xe8\x50\x10\x00\xec\xce\x98" "\x50\x77\x3e\x7c\x0e\x86\xc8\xe3\xd5\x78\xf4\x84\x6c\xae\xa4\xf3\x67\x23" "\x07\x93\xe4\x63\x29\xb5\x59\xc8\x6d\xff\x29\x2a\xb9\x45\x85\x32\xe6\x3d" "\x98\x02\x87\xd5\x4a\x66\xec\xf0\x58\x26\xe9\x38\xac\x4e\xa6\x1e\x0b\x1f" "\xe3\xac\x6d\xa1\x93\x57\xcb\x52\xac\xcd\x20\x98\x89\x6a\xeb\x92\x68\x3b" "\xc7\xd8\xd4\xb7\xe7\x91\xf2\x0e\x65\xdb\xa7\x2d\x97\x86\x07\x84\x44\x4c" "\x21\xd0\x62\xce\xb2\xa1\x24\x0a\xad\x4f\xe0\xab\x13\x22\x9b\x1f\xa2\x04" "\xa7\xe6\x3d\xa4\x0d\xf5\xe8\xc7\x23\xa9\x78\x75\x41\x73\x6a\x96\xfb\xd5" "\x7f\x30\xbc\xd1\xcf\xa1\x47\xa5\x1a\x18\xb3\x99\x70\x0a\x63\x8f\x3e\x5c" "\x4e\x90\x59\xc9\x7f\xe5\x04\xfa\xfb\x41\x13\x63\x29\x18\x20\xec\xa7\x2a" "\x2c\x6d\x81\x1e\x19\xd8\xa5\xb0\x43\x0e\x66\x53\x12\x36\x11\x1e\x9f\x8c" "\x9c\x88\x3a\x85\x8f\x5e\xe9\xe4\xc7\x56\xf1\x55\x5a\xa0\x6f\x73\xe6\x43" "\xbb\xa5\xf8\xe8\xca\x45\xac\x6e\x99\xec\x5f\x73\x6e\xf1\xed\x96\x6e\xe2" "\xcd\x7b\x48\xf1\x2b\x59\xdd\xb1\x04\x2e\xb2\x76\xc7\x22\x38\xcd\x25\x52" "\xf3\xb3\x4f\x47\x8d\x57\x47\xb0\xf1\x8d\x30\x57\xc7\x78\x1b\x05\xe2\x87" "\x1b\x5b\x96\x05\x55\x4b\xfa\x3e\x7d\xde\x98\x89\x18\x95\x40\x55\x0d\xc3" "\x07\x9d\x74\x59\x81\x13\xb6\xf4\xcc\x2b\xac\xb7\xc7\x52\x7e\x97\xae\x2f" "\x05\x8d\xab\xa3\x80\x38\x53\x2e\x5d\x51\x19\x7a\x82\xa1\x54\x17\x72\x51" "\xd0\xad\x6b\x90\x10\xdb\xc1\x01\xb2\x5f\x4b\x6b\xfb\x13\x55\x9b\x76\x84" "\x6f\xaa\xb2\x32\xd0\xc2\x5e\x70\x1b\x77\xef\xa7\x7c\x7d\x13\x1d\x7d\x13" "\xd2\x0d\x62\x59\x71\x2b\xc0\xd0\x5c\x0a\xd4\x78\xfa\x9b\xf7\xb0\x2a\xc8" "\x6e\xd1\xd9\xa5\xa1\xf1\xa0\x8d\x61\x59\x42\x7d\x12\x03\x79\x5c\x5b\xf2" "\x6f\x64\x99\xba\x10\xb3\xec\x58\x1a\xb3\x91\x05\x82\xb1\x86\x3d\xf4\x20" "\xcd\x3c\x42\x46\xb1\x5a\x96\xdf\x8c\x4f\x69\xed\x70\x1f\x61\x9a\xaa\x2f" "\x65\xd1\xdf\x35\xa7\x27\x4a\x9b\xed\xff\x76\x4c\x30\x62\x4e\x46\x2e\xae" "\xca\xa2\x0e\x78\xd9\x14\x3a\xa0\x4b\x3b\xe9\x59\x1a\x81\x21\x59\xcf\xad" "\xe7\x71\x52\x00\x92\x62\xa1\xe0\x3a\xae\xea\x1b\xdf\x19\x80\x85\x5f\x0c" "\x33\xe8\x65\x99\xbd\x26\x33\xbf\x50\x6d\x1c\xf6\x05\x08\x3e\xe7\x41\x03" "\x5d\x76\x79\x49\xa4\x01\x59\x9b\xfc\xd4\xc6\xea\x85\x5a\x0b\x3f\xe5\x1b" "\x9d\x32\x3a\xd5\x4c\x8c\x39\xa4\xf2\x24\xa9\xa9\x4e\xa0\xc1\x58\x1f\x5a" "\xd3\x99\xfb\x96\xcc\xad\x20\x5e\xa0\x26\xec\x50\x3a\xa1\x16\x35\x1b\x67" "\x6c\xc7\xc9\xbe\xae\x4b\xcc\xca\x43\x95\xe0\xda\x6c\xdf\x14\x13\xf1\xe3" "\xca\xb9\xf8\x7f\xaa\x94\x3a\x2d\xa2\x64\x85\x2e\xa0\x79\xb6\xda\x1f\xd3" "\x5e\x76\x83\x37\x66\x75\xc5\x42\xc6\x61\x24\x93\xe5\x48\x10\xdf\xd6\x98" "\x7e\x16\x78\x44\x7e\x91\x1a\x20\xd3\x5e\x5c\xea\x10\x40\x1e\xba\xf9\x22" "\xa4\x46\xf7\xa7\x85\x56\xde\xdd\xd9\x64\xc4\xc3\x2e\xdb\x0c\xde\xff\x21" "\x65\x84\x90\xdb\xd0\x02\xd0\x5a\x37\x25\xbf\x48\x96\xda\x80\x99\xd8\xc3" "\xc2\x48\xe3\xc8\x8a\x82\xf2\xbd\x02\x93\x76\x26\xd3\x74\xb1\xef\x52\x1a" "\x94\xbf\x73\x7a\x0a\x62\xde\x3a\xc5\x81\x72\xf4\x8b\x30\xc5\x45\xd6\x49" "\x2c\x9d\x3d\xca\xad\x86\x63\x3f\xad\x52\x1f\x32\x4c\x98\x1d\x93\x30\x00" "\xe7\x52\xb9\x78\xf1\xee\x23\xed\x36\xd6\xc0\xee\x40\x90\x3f\x58\x25\x2f" "\x4f\xb8\x75\x0a\x1b\xca\x75\xd3\xd6\x0b\x77\x35\x83\x69\x4c\x9c\xeb\x4f" "\x27\xa7\xb2\x4e\x01\x19\x33\x2d\x30\x97\x4e\x8f\xca\x6b\x87\x5f\xd2\xbd" "\xcd\x46\xfe\x58\xb7\x8d\xac\xce\x1a\x7a\x88\xa4\xfe\xf2\x58\x07\x79\x25" "\x18\x8b\xcc\xe1\x41\xa1\x28\x5f\xc2\x4a\xc2\x92\xb1\x46\x32\x88\x26\x50" "\xb6\x08\x3f\x9a\xf0\xec\xec\x27\x4e\x8f\xd1\x86\x6a\xa7\xf6\x33\x8a\xe1" "\x7b\xc7\xd6\x06\xb4\x29\x31\x1d\x3d\xb9\x60\xb2\x77\xae\x55\xb5\xd0\x3f" "\x6c\xcf\x95\xce\xe7\xaa\xf5\x72\xb6\x72\xfb\xc8\xb7\x78\xe2\xef\xc1\x43" "\x32\x66\x84\x50\x04\xb4\x8f\x2d\xed\xe1\x47\xa8\xe9\x3f\xee\x7b\x4e\x66" "\x2b\xd0\xd7\xfc\xf5\x11\xce\x97\x26\x5a\x75\xe0\x22\x63\x87\x84\x9a\x9f" "\xcd\xb0\x16\x71\x72\xa3\x5e\x4d\xa8\x5c\x75\x88\x93\xca\x51\xd9\x7f\x8c" "\x17\x53\x4f\xc3\xd6\xa9\x55\x53\xa3\x25\x72\xaa\x77\x90\xf5\x01\x6b\x90" "\x74\x9a\xc5\x75\xa7\x2e\x34\x86\x96\x47\x59\x78\x17\xe6\xd1\x86\xa7\x81" "\xb2\xb1\x8a\xb0\x37\x63\x21\x86\xe0\xf2\x58\x43\x95\x44\x02\xed\x8a\x37" "\x71\x96\x19\x88\xa7\x12\x43\xa7\x21\x5a\xef\xd8\x1a\x8d\x03\x25\x3e\xbe" "\x85\xd1\x8e\x49\xab\xfb\xf6\x04\xf2\x9d\x49\x92\xc8\x2f\x53\xda\x4a\x50" "\x0c\x12\x87\x6a\x6b\x06\x10\x9d\x7c\xfb\x11\xca\x2c\x45\x72\xc6\xb0\xfd" "\xf6\x81\x2f\xb3\xf7\x1b\x3b\x72\x38\x94\xc8\xdb\xc6\xb4\x61\xa9\xa0\x2e" "\x86\x1c\x58\xbb\x45\x75\xa4\xe8\xf0\xfb\x14\x48\x28\x52\x46\x0c\x6a\x31" "\x1b\xb3\xc5\x64\xc6\xb5\x3b\x5b\x22\x4a\xb8\x92\xf8\xaa\x04\x03\x46\xc4" "\xea\xc7\x31\xf1\xb7\x29\xb6\xd0\x06\x6c\xad\xad\x9c\x05\x6e\xcf\x40\xb3" "\x59\xbd\xa0\xcc\x35\xf2\xfc\xba\x32\x6f\x05\x7e\xbd\xbd\x28\xf1\xf8\xf9" "\xb6\x2a\xdb\x69\xa3\x5b\xb9\x6d\x05\x01\xb2\x9b\x8e\x99\xfb\xf1\x4d\x2f" "\x7b\xfb\xe8\x24\x8b\x2d\xfa\x53\x54\x50\x86\x0d\x3b\x1b\x42\xe4\xd6\xbb" "\x28\x6e\xc4\xcb\xf6\xc3\x4d\x30\xb3\xe4\xcd\x41\xc2\xe2\xa8\xec\x22\x36" "\xcf\x66\x69\x11\x45\xf7\x4b\xdf\x83\x73\x60\x9a\x40\x3f\x41\x8c\x49\xfc" "\x6d\xba\xb9\xba\xb7\xd5\xf1\x76\x23\x0c\x2d\xc2\xf8\xd1\x21\xfa\xc8\x5c" "\x77\x31\xd2\x3b\xfc\xe9\x08\x8c\x76\x44\x66\x6c\xe0\xd7\x8e\x90\x2a\x50" "\x17\xc1\xa2\x85\x10\xe7\x9a\x47\xa3\x40\x41\xda\x14\xfd\x89\x8c\xec\x87" "\x44\x68\x15\x4a\xfb\xde\x4c\xd5\xee\x4f\x86\x21\x7c\x55\x5d\xab\x69\xd4" "\x27\x0e\x19\xbc\xf7\x4e\x91\x42\xd5\x76\x9d\xca\x60\x0c\xda\xab\xf7\xdd" "\x5d\x3d\x0e\x0f\xa5\xfe\x90\x3e\x7a\xc1\x8d\xcf\x15\xa5\x89\xa0\xbf\x7c" "\x29\x8f\x38\xbb\x03\xa1\xa8\x82\x4b\x01\xb8\x0f\xdd\xf4\x78\x04\x7f\x0f" "\x2f\x04\x6d\x34\x6f\x78\xed\x92\x0d\xc2\x7c\x21\xfb\xfc\x9a\xe1\xcb\x38" "\xfb\x8e\x1e\x52\x8a\x85\x52\x07\x45\x7b\xb4\x47\x79\x07\x4a\x6e\xb4\x1f" "\xce\xbb\x98\xc1\xd3\xa8\x26\x3a\x93\x02\x6c\xf1\xbc\xd5\x54\x4e\x53\x70" "\xe8\x73\xe1\x8a\x55\xef\x5b\x00\x5d\x83\x19\x04\x2d\xd2\xc4\xbb\x16\xe0" "\x7f\xa5\xc7\xd0\xa4\x63\x0d\xa1\x4e\x11\x74\x7e\x26\xca\x26\x5a\x7b\x3c" "\x92\x76\x8e\x3e\x46\xab\xb7\x3c\x73\x2d\xdb\x7b\xa1\x3d\x16\x7a\xb5\x33" "\xd1\xc3\xe3\x76\xfe\x96\x51\x61\x6a\x43\x63\x3d\xc5\x48\x09\x98\xe8\x5d" "\x15\x53\x53\x0c\x20\xca\xc3\xbd\xa6\xa0\x94\x53\xb2\xcd\x69\xd6\x0e\x28" "\x36\x3f\x6f\x24\x2d\xb4\x82\x6e\x4d\xd3\x66\xe4\x50\x5f\x29\x7c\x21\x25" "\xaf\x57\x8a\x64\x12\x1a\xe4\xe5\x29\xf7\x08\xc5\xaa\x91\x3d\xb7\xd4\x84" "\xa2\xf8\xe7\x3d\x1c\x18\x66\x32\x4b\x21\xcb\x3e\xdf\x0e\x8b\x2b\x6e\xfc" "\x30\x4b\xd5\xec\xc5\x8a\xd3\x8e\xa8\x9d\xaf\x6e\xdc\x9d\x74\xcb\x18\x33" "\x54\xbf\x27\xcb\x33\x8b\x66\x6e\xde\x87\x44\x41\x06\x12\x65\x25\x81\x82" "\xd9\x2b\x64\xf4\x85\x67\x87\xbd\xe4\x61\xc4\x22\x43\x3f\x80\xa0\x55\xc1" "\x03\xe1\x03\x09\x81\x91\xff\x98\xe6\xab\x70\xd6\x38\x29\xa6\xf7\x7d\x20" "\x16\xc2\xb6\x51\x5f\x5d\x0c\x8a\x06\xf1\xb7\x4b\x80\x01\xf3\x8a\x45\x46" "\xdd\xc1\x3c\xed\x2b\x68\xe4\x52\xb5\xa5\xe2\x90\xcb\xc1\x5a\x01\x71\xb5" "\x74\xc4\xbd\x4a\xb7\xa9\x8b\xff\xed\x98\x01\x43\x00\x62\x73\xeb\x89\x4b" "\x6a\x8f\xe2\x21\x08\xaa\x65\x1b\xa4\xbd\xa9\xfe\xb1\x9f\x21\x86\x8d\x0a" "\x31\xbb\xc8\x6f\xa0\xdc\x18\xcd\xb6\x54\xad\xb9\x43\x8f\x32\xec\x2e\xed" "\x0f\xb6\x98\xb5\xc1\x46\xd0\x3f\x55\xbb\x3f\xba\xf2\xc6\x43\xd2\x2e\xcd" "\xa4\x6b\x03\xd8\x2f\x90\x24\x9b\x9c\xc0\x30\xaa\xf7\xbd\xfb\x66\x15\x3f" "\x8a\xe5\x17\x48\xc2\x58\x8b\xdd\x88\xeb\xae\x9e\x9a\x4a\x7d\x8e\x37\x0d" "\x31\xc8\x95\x3b\x40\x21\xbf\xbb\x4e\x7d\x60\x9b\x02\xe2\xe0\x39\x84\xb4" "\xaa\x1c\x78\x04\xa7\x10\x72\x4e\x35\x26\xc9\xff\xb2\x31\x34\x6f\x5c\x34" "\x7b\x22\xb4\x55\xdc\xb4\x7f\xde\xfa\x0e\x1e\x6d\x57\x9b\xa5\x49\x20\xd1" "\x22\xb9\xdb\xb3\xbe\x36\x87\x06\xca\x14\x1b\xf1\x99\x1d\x28\x95\x57\x2c" "\xa0\x09\xaa\x78\xcc\x55\x8d\x2c\x5c\x87\x69\xa7\xe3\xbb\x72\xd9\x4d\x61" "\x0f\x8a\x0e\x50\x70\xca\x60\x65\x3f\x16\x4e\x0e\xb1\xdc\xe3\xe5\xc5\x90" "\x87\xf0\x08\xa7\x21\x44\xe4\x96\x8e\x88\x25\xd3\x32\xb4\x3f\x4d\x73\xa1" "\xd5\xc9\xf6\x05\x12\x3d\x73\xdb\xb2\x69\x35\x6f\xc5\xdf\x5a\x99\xbd\xea" "\xd8\xd7\x89\xb3\x37\xda\xb8\x8c\x75\xbf\xfe\xad\x83\x3f\xce\xda\xd0\x00" "\xff\x02\xf4\xef\x86\x4a\x1a\xcc\x4f\x15\xa0\xad\x15\x2a\xd2\x39\x1e\x76" "\x8d\x32\xce\xb5\x90\x9a\x30\xe5\x9f\xde\x1f\x23\xcc\xd9\x02\x1f\xd4\x91" "\xfe\x7b\x9c\x3e\x7d\x44\x90\x9c\xd8\xb3\xaf\x81\x8c\xa9\x47\x62\xe1\xbc" "\x71\x81\xf5\x55\x32\x4c\xfd\x3a\x4e\x1b\xad\x09\xda\x0d\x75\x8b\x87\x16" "\x7a\x55\x08\x37\x6e\x6f\xca\xec\x65\x78\xe9\xef\x30\x19\x1e\xd9\x48\x50" "\x55\x71\x3f\xe7\x68\x31\x4d\xef\x2b\x50\x99\x9e\xcb\x2d\x44\x62\x1b\x22" "\xf1\x44\xae\x80\xd9\x0a\xba\x66\xeb\xe6\x15\xc9\xba\xf3\x12\x90\x20\x26" "\xe4\x3b\xf0\x1e\x49\x54\x7f\x49\x4e\x88\xc8\xeb\x59\x9b\xc2\x95\xa8\x32" "\x06\xad\x95\xe5\x65\x18\x93\xa1\xfd\x89\x76\xe3\x6c\x34\xc0\xaa\xa8\xc5" "\x14\xe3\x8e\xc9\x5a\x6f\x07\x71\x03\xf1\xdc\xd9\x3d\x51\x30\x09\x41\x55" "\x4a\xda\x9a\xee\xdc\x10\x5d\x1d\xb5\xb6\xa9\x7d\xad\x18\xff\x6e\x20\x85" "\xf4\x31\x46\x38\x81\x17\x15\x1b\x5b\x9d\x1d\x13\x9a\xf0\x07\x99\x1a\x00" "\xfe\x2b\xc3\xd2\x11\xd4\xe5\x00\x53\x6f\xc2\xfc\x85\x55\x1e\x07\xa1\x04" "\xd8\x47\x30\x7d\x67\xa5\x73\xee\xda\xe8\xa7\xca\x9d\x8a\x2f\xed\xab\x8e" "\x24\x24\x59\xb7\x5e\xcd\xf4\x3e\xec\x1d\xb2\xf7\x41\xd7\xd8\xe7\x33\x53" "\x41\x58\xbd\xe3\x64\xb9\x11\xca\x8a\x9b\x6d\xa5\xd6\xa3\x8e\x18\x34\x54" "\xca\x1d\x0f\x73\xdd\x3e\x8c\xc9\xc4\xd6\xdd\x1d\xfe\x36\xe6\x83\x2b\x61" "\x7c\xe0\x1b\x04\x6c\x54\x8a\xfd\x46\x83\x26\x1e\xfa\x8c\x42\xc8\x96\x73" "\xcb\xc6\x0f\x27\x26\xd7\xe6\xfe\x0e\x57\x3b\xc0\xd1\x21\xce\x98\x58\x2d" "\x34\x12\x16\x68\xee\x09\x7b\x6e\xd2\x3d\xd7\xee\xc4\x53\x7f\x13\x3b\x26" "\x84\xad\x6c\xf9\x2e\xe9\xe6\x1a\xd1\x6f\x75\xb9\x5a\xca\x5a\x94\x9d\xe4" "\x3e\x34\xef\xa7\x98\x5c\x39\x1d\x99\xec\x52\x19\xd3\x24\x80\x52\xa8\xd3" "\xd7\xf1\x65\x39\xf7\x2f\xd8\x3c\x1a\xc3\x1b\x7c\x55\x6c\x57\x5c\x73\xf2" "\x26\xcc\xcd\xa2\x6d\xc5\x90\x5d\xd6\x8e\x07\x12\xc8\x01\xc8\x83\x7c\x83" "\x03\x33\xa3\x9c\xce\x3c\x68\xf4\xba\x85\x00\x3a\xfe\x0e\xa1\xd3\x8d\x70" "\x2a\x00\x10\x99\x58\xfb\x89\xdf\xf3\x3d\x56\x3a\x6b\x54\x9a\x26\x1d\xa7" "\x7e\x92", 8192); *(uint64_t*)0x200051c0 = 0; *(uint64_t*)0x200051c8 = 0; *(uint64_t*)0x200051d0 = 0; *(uint64_t*)0x200051d8 = 0; *(uint64_t*)0x200051e0 = 0; *(uint64_t*)0x200051e8 = 0; *(uint64_t*)0x200051f0 = 0; *(uint64_t*)0x200051f8 = 0; *(uint64_t*)0x20005200 = 0; *(uint64_t*)0x20005208 = 0; *(uint64_t*)0x20005210 = 0; *(uint64_t*)0x20005218 = 0; *(uint64_t*)0x20005220 = 0; *(uint64_t*)0x20005228 = 0; *(uint64_t*)0x20005230 = 0; *(uint64_t*)0x20005238 = 0; inject_fault(4); syz_fuse_handle_req(/*fd=*/r[0], /*buf=*/0x20002a80, /*len=*/0x2000, /*res=*/0x200051c0); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=*/7ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); setup_fault(); use_temporary_dir(); loop(); return 0; }