// https://syzkaller.appspot.com/bug?id=5846b83498c01643e93aaf971e1569311ab53693 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_clone3 #define __NR_clone3 435 #endif #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define USLEEP_FORKED_CHILD (3 * 50 * 1000) static long handle_clone_ret(long ret) { if (ret != 0) { __atomic_store_n(&clone_ongoing, 0, __ATOMIC_RELAXED); return ret; } usleep(USLEEP_FORKED_CHILD); syscall(__NR_exit, 0); while (1) { } } #define MAX_CLONE_ARGS_BYTES 256 static long syz_clone3(volatile long a0, volatile long a1) { unsigned long copy_size = a1; if (copy_size < sizeof(uint64_t) || copy_size > MAX_CLONE_ARGS_BYTES) return -1; char clone_args[MAX_CLONE_ARGS_BYTES]; memcpy(&clone_args, (void*)a0, copy_size); uint64_t* flags = (uint64_t*)&clone_args; *flags &= ~CLONE_VM; __atomic_store_n(&clone_ongoing, 1, __ATOMIC_RELAXED); return handle_clone_ret((long)syscall(__NR_clone3, &clone_args, copy_size)); } uint64_t r[1] = {0xffffffffffffffff}; int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); install_segv_handler(); intptr_t res = 0; NONFAILING(memcpy((void*)0x20000000, "exfat\000", 6)); NONFAILING(memcpy((void*)0x20000040, "./file0\000", 8)); NONFAILING(memcpy((void*)0x20000680, "utf8", 4)); NONFAILING(*(uint8_t*)0x20000684 = 0x2c); NONFAILING(memcpy((void*)0x20000685, "utf8", 4)); NONFAILING(*(uint8_t*)0x20000689 = 0x2c); NONFAILING(memcpy((void*)0x2000068a, "errors=continue", 15)); NONFAILING(*(uint8_t*)0x20000699 = 0x2c); NONFAILING(memcpy((void*)0x2000069a, "iocharset", 9)); NONFAILING(*(uint8_t*)0x200006a3 = 0x3d); NONFAILING(memcpy((void*)0x200006a4, "maccroatian", 11)); NONFAILING(*(uint8_t*)0x200006af = 0x2c); NONFAILING(memcpy((void*)0x200006b0, "dmask", 5)); NONFAILING(*(uint8_t*)0x200006b5 = 0x3d); NONFAILING(sprintf((char*)0x200006b6, "%023llo", (long long)0x3e70ca1)); NONFAILING(*(uint8_t*)0x200006cd = 0x2c); NONFAILING(memcpy((void*)0x200006ce, "namecase=1", 10)); NONFAILING(*(uint8_t*)0x200006d8 = 0x2c); NONFAILING(memcpy((void*)0x200006d9, "fmask", 5)); NONFAILING(*(uint8_t*)0x200006de = 0x3d); NONFAILING(sprintf((char*)0x200006df, "%023llo", (long long)0x201)); NONFAILING(*(uint8_t*)0x200006f6 = 0x2c); NONFAILING(memcpy((void*)0x200006f7, "allow_utime", 11)); NONFAILING(*(uint8_t*)0x20000702 = 0x3d); NONFAILING(sprintf((char*)0x20000703, "%023llo", (long long)1)); NONFAILING(*(uint8_t*)0x2000071a = 0x2c); NONFAILING(memcpy((void*)0x2000071b, "gid", 3)); NONFAILING(*(uint8_t*)0x2000071e = 0x3d); NONFAILING(sprintf((char*)0x2000071f, "0x%016llx", (long long)0)); NONFAILING(*(uint8_t*)0x20000731 = 0x2c); NONFAILING(memcpy((void*)0x20000732, "iocharset", 9)); NONFAILING(*(uint8_t*)0x2000073b = 0x3d); NONFAILING(memcpy((void*)0x2000073c, "cp850", 5)); NONFAILING(*(uint8_t*)0x20000741 = 0x2c); NONFAILING(*(uint8_t*)0x20000742 = 0); NONFAILING(memcpy( (void*)0x20002c80, "\x78\x9c\xec\xdc\x0b\xbc\x4e\xd5\xd6\x30\xf0\x31\xe6\x9c\x8b\x4d\xd2\x93" "\xe4\x96\x39\xe6\x58\x3c\xc9\x65\x92\x24\xb9\x24\xe4\x92\x24\x49\x92\xe4" "\x96\x90\x24\x49\x12\x92\x5b\x6e\x49\x48\x42\xee\x49\xee\x21\xb9\xc5\x4e" "\xee\xf7\xfb\x3d\x49\x8e\x24\x49\x42\x42\x92\xf9\xfd\x54\xe7\xf5\x9e\xb7" "\xf7\x7c\xf5\xbd\xe7\x7c\x9f\x73\xbe\x3d\xfe\xbf\xdf\x62\x8e\xbd\x9e\x31" "\x9e\xb1\x9e\xb1\xf7\x7e\xd6\x5a\xbf\xbd\xf7\x37\xed\x07\x55\xae\x5b\xa5" "\x42\x6d\x66\x86\x7f\x08\xfe\xfa\x5f\x37\x00\x48\x01\x80\xbe\x00\x70\x0d" "\x00\x44\x00\x50\x3c\x4b\xf1\x2c\x97\xf6\x67\xd0\xd8\xed\x1f\x7b\x12\xf1" "\xcf\xf5\xd0\xd4\x2b\xdd\x81\xb8\x92\x64\xfe\x69\x9b\xcc\x3f\x6d\x93\xf9" "\xa7\x6d\x32\xff\xb4\x4d\xe6\x9f\xb6\xc9\xfc\xd3\x36\x99\x7f\xda\x26\xf3" "\x17\x22\x2d\xdb\x32\x2d\xe7\xb5\xb2\xa5\xdd\xed\xcf\xdf\xff\x77\xff\xfb" "\xdd\x72\xff\xff\xdf\x90\xbc\xff\xff\x7f\xeb\x4f\x7d\xa5\xc9\xfc\xd3\x36" "\x99\x7f\xda\x26\xf3\x4f\xdb\x64\xfe\x69\x9b\xcc\x3f\x6d\x93\xf9\xa7\x6d" "\x32\xff\xb4\x4d\xe6\x2f\x44\x5a\x76\xa5\xef\x3f\xff\x1b\x6c\x7f\x7d\xa9" "\xae\x74\x1f\x7f\xb0\x45\xff\xa3\xbc\x2b\xfb\xd9\x27\x84\x10\x42\x08\x21" "\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42" "\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84" "\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08" "\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10" "\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21" "\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42" "\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x22\xad\x38\x17" "\x2e\x33\x00\xf0\xd7\xf5\x95\xee\x4b\x08\x21\x84\x10\x42\x08\x21\x84\x10" "\xff\x3c\x21\xfd\x95\xee\x40\x08\x21\x84\x10\x42\x08\x21\x84\x10\xff\xf7" "\x21\x80\xd1\x60\x20\x82\x74\x90\x1e\x52\x20\x03\x64\x84\xab\x20\x13\x5c" "\x0d\x99\xe1\x1a\x48\xc0\xb5\x90\x05\xae\x83\xac\x70\x3d\x64\x83\xec\x90" "\x03\x72\x42\x2e\xb8\x01\x72\x83\x05\x02\x07\x0c\x31\xe4\x81\xbc\x90\x84" "\x1b\x21\x1f\xdc\x04\xf9\xa1\x00\x14\x84\x42\xe0\xa1\x30\x14\x81\x9b\xa1" "\x28\xdc\x02\xc5\xe0\x56\x28\x0e\xb3\x17\x02\xdc\x0e\x25\xa1\x14\x94\x86" "\x32\x70\x07\x94\x85\x3b\xa1\x1c\x94\x87\x0a\x70\x17\x54\x84\x4a\x50\x19" "\xaa\xc0\xdd\x50\x15\xee\x81\x6a\x70\x2f\x54\x87\xfb\xa0\x06\xdc\x0f\x35" "\xe1\x01\xa8\x05\x0f\x42\x6d\x78\x08\xea\xc0\xc3\x50\x17\x1e\x81\x7a\xf0" "\x28\xd4\x87\x06\xd0\x10\x1a\x41\xe3\xff\x51\xfe\x8b\xd0\x19\x5e\x82\x2e" "\xd0\x15\xba\x41\x77\xe8\x01\x2f\x43\x4f\xe8\x05\xbd\xa1\x0f\xf4\x85\x57" "\xa0\x1f\xbc\x0a\xfd\xe1\x35\x18\x00\x03\x61\x10\xbc\x0e\x83\xe1\x0d\x18" "\x02\x6f\xc2\x50\x18\x06\xc3\xe1\x2d\x18\x01\x23\x61\x14\x8c\x86\x31\x30" "\x16\xc6\xc1\xdb\x30\x1e\xde\x81\x09\xf0\x2e\x4c\x84\x49\x30\x19\xa6\xc0" "\x54\x98\x06\xd3\xe1\x3d\x98\x01\x33\x61\x16\xbc\x0f\xb3\xe1\x03\x98\x03" "\x73\x61\x1e\xcc\x87\x05\xf0\x21\x2c\x84\x45\x90\x0a\x1f\xc1\x62\xf8\x18" "\x96\xc0\x52\x58\x06\xcb\x61\x05\xac\x84\x55\xb0\x1a\xd6\xc0\x5a\x58\x07" "\xeb\x61\x03\x6c\x84\x4d\xb0\x19\xb6\xc0\x56\xd8\x06\xdb\x61\x07\xec\x84" "\x5d\xb0\xbb\xfc\x1e\xf8\x04\xf6\xc2\xa7\xb0\x0f\x3e\x83\xfd\xf0\xf9\xff" "\x61\xfe\x59\xf8\xdb\xfc\x0e\x08\x08\xa8\x50\xa1\x41\x83\xe9\x30\x1d\xa6" "\x60\x0a\x66\xc4\x8c\x98\x09\x33\x61\x66\xcc\x8c\x09\x4c\x60\x16\xcc\x82" "\x59\x31\x2b\x66\xc3\x6c\x98\x03\x73\x60\x2e\xcc\x85\xb9\x31\x37\x12\x12" "\x32\x32\xe6\xc1\x3c\x98\xc4\x24\xe6\xc3\x7c\x98\x1f\xf3\x63\x41\x2c\x88" "\x1e\x3d\x16\xc1\x22\x58\x14\x6f\xc1\x62\x58\x0c\x8b\x63\x71\x2c\x81\x25" "\xb0\x24\x96\xc2\x52\x58\x06\xcb\x60\x59\x2c\x8b\xe5\xb0\x1c\x56\xb8\x7d" "\x2e\x00\x56\xc4\xca\x58\x19\xef\xc6\xbb\xf1\x1e\xac\x86\xd5\xb0\x3a\x56" "\xc7\x1a\x58\x03\x6b\x62\x4d\xac\x85\xb5\xb0\x36\xd6\xc6\x3a\x58\x07\xeb" "\x62\x5d\xac\x87\xf5\xb0\x3e\xd6\xc7\x86\xd8\x10\x1b\x63\x63\x6c\x82\x4d" "\xb0\x29\x36\xc5\xe6\xd8\x1c\x5b\x60\x0b\x6c\x89\x2d\xb1\x15\xb6\xc2\xd6" "\xd8\x1a\xdb\x60\x1b\x6c\x8b\x6d\xb1\x1d\xb6\xc3\xf6\xd8\x1e\x3b\x60\x47" "\xec\x88\x2f\xe2\x8b\xf8\x12\xbe\x84\x5d\xb1\xa2\xea\x8e\x3d\xb0\x07\xf6" "\xc4\x9e\xd8\x1b\xfb\x60\x1f\x7c\x05\xfb\xe1\xab\xf8\x2a\xbe\x86\x03\x70" "\x20\x0e\xc2\xd7\xf1\x75\x7c\x03\x87\xe0\x19\x1c\x8a\xc3\x70\x38\x0e\xc7" "\xb2\x6a\x24\x8e\xc2\xd1\xc8\x6a\x2c\x8e\xc3\x71\x38\x1e\xc7\xe3\x04\x9c" "\x80\x13\x71\x12\x4e\xc2\x29\x38\x15\xa7\xe1\x74\x9c\x8e\x33\x70\x26\xce" "\xc4\xf7\x71\x36\x7e\x80\x1f\xe0\x5c\x9c\x8b\xf3\x71\x01\x2e\xc0\x85\xb8" "\x08\x53\x31\x15\x17\xe3\x59\x5c\x82\x4b\x71\x19\x2e\xc7\x15\xb8\x12\x57" "\xe0\x6a\x5c\x83\xab\x71\x1d\xae\xc7\x75\xb8\x11\x37\xe2\x66\xdc\x8c\x5b" "\x71\x2b\x6e\xc7\xed\xb8\x13\x77\xe2\x6e\xdc\x8d\x9f\xe0\x27\xf8\x29\x7e" "\x8a\x03\x70\x3f\xee\xc7\x03\x78\x00\x0f\xe2\x41\x3c\x84\x87\xf0\x30\x1e" "\xc6\x23\x78\x64\xeb\x55\x00\x78\x0c\x8f\xe1\x71\x3c\x8e\x27\xf0\x24\x9e" "\xc2\x93\x78\x1a\x4f\xe3\x19\x3c\x8b\xe7\xf0\x1c\x9e\xc7\xf3\x78\x01\x9f" "\xcf\xf5\x55\x9d\xdd\x05\xd6\x0e\x00\x75\x89\x51\x46\xa5\x53\xe9\x54\x8a" "\x4a\x51\x19\x55\x46\x95\x49\x65\x52\x99\x55\x66\x95\x50\x09\x95\x45\x65" "\x51\x59\x55\x56\x95\x4d\x65\x53\x39\x54\x0e\x95\x4b\xe5\x52\xb9\x55\x6e" "\x45\x8a\x14\xab\x58\xe5\x51\x79\x54\x52\x25\x55\x3e\x95\x4f\xe5\x57\xf9" "\x55\x41\x55\x50\x79\xe5\x55\x11\x55\x44\x15\x55\x45\x55\x31\x55\x4c\x15" "\x57\xb7\xa9\x12\xea\x76\x55\x52\x95\x52\xcd\x7c\x19\x55\x46\x95\x55\xcd" "\x7d\x39\x55\x5e\x55\x50\x15\x54\x45\x55\x49\x55\x56\x55\x54\x15\x55\x55" "\x55\x55\xd5\x54\x35\x55\x5d\x55\x57\x35\x54\x0d\x55\x53\x3d\xa0\x6a\xa9" "\xee\xd8\x1b\x1f\x52\x97\x26\x53\x57\x0d\xc4\x7a\x6a\x10\xd6\x57\x0d\x54" "\x43\xd5\x48\xbd\x81\x8f\xa9\x26\x6a\x08\x36\x55\xcd\x54\x73\xf5\x84\x1a" "\x86\x43\xb1\xa5\x6a\xe2\x5b\xa9\xa7\x55\x6b\x35\x0a\xdb\xa8\x67\xd5\x68" "\x7c\x4e\xb5\x53\x63\xb1\xbd\x7a\x41\x75\x50\x1d\x55\x27\xf5\xa2\xea\xac" "\x9a\xfa\x2e\xaa\xab\x9a\x88\xdd\x55\x0f\x35\x05\x7b\xaa\x5e\xaa\xb7\xea" "\xa3\x66\x60\x25\x75\x69\x62\x95\xd5\x6b\x6a\x80\x1a\xa8\x06\xa9\xd7\xd5" "\x7c\x7c\x43\x0d\x51\x6f\xaa\xa1\x6a\x98\x1a\xae\xde\x52\x23\xd4\x48\x35" "\x4a\x8d\x56\x63\xd4\x58\x35\x4e\xbd\xad\xc6\xab\x77\xd4\x04\xf5\xae\x9a" "\xa8\x26\xa9\xc9\x6a\x8a\x9a\xaa\xa6\xa9\xe9\xea\x3d\x35\x43\xcd\x54\xb3" "\xd4\xfb\x6a\xb6\xfa\x40\xcd\x51\x73\xd5\x3c\x35\x5f\x2d\x50\x1f\xaa\x85" "\x6a\x91\x4a\x55\x1f\xa9\xc5\xea\x63\xb5\x44\x2d\x55\xcb\xd4\x72\xb5\x42" "\xad\x54\xab\xd4\x6a\xb5\x46\xad\x55\xeb\xd4\x7a\xb5\x41\x6d\x54\x9b\xd4" "\x66\xb5\x45\x6d\x55\xdb\xd4\x76\xb5\x43\xed\x54\xbb\xd4\x6e\xb5\x47\x7d" "\xa2\xf6\xaa\x4f\xd5\x3e\xf5\x99\xda\xaf\x3e\x57\x07\xd4\x5f\xd4\x41\xf5" "\x85\x3a\xa4\xbe\x54\x87\xd5\x57\xea\x88\xfa\x5a\x1d\x55\xdf\xa8\x63\xea" "\x5b\x75\x5c\x75\x55\x27\xd4\x49\x75\x4a\x7d\xaf\x4e\xab\x1f\xd4\x19\x75" "\x56\x9d\x53\x3f\xaa\xf3\xea\x27\x75\x41\xfd\xac\x2e\xaa\xa0\x40\xa3\x56" "\x5a\x6b\xa3\x23\x9d\x4e\xa7\xd7\x29\x3a\x83\xce\xa8\xaf\xd2\x99\xf4\xd5" "\x3a\xb3\xbe\x46\x27\xf4\xb5\x3a\x8b\xbe\x4e\x67\xd5\xd7\xeb\x6c\x3a\xbb" "\xce\xa1\x73\xea\x5c\xfa\x06\x9d\x5b\x5b\x4d\xda\x69\xd6\xb1\xce\xa3\xf3" "\xea\xa4\xbe\x51\xe7\xd3\x37\xe9\xfc\xba\x80\x2e\xa8\x0b\x69\xaf\x0b\xeb" "\x22\xfa\x66\x5d\x54\xdf\xa2\x8b\xe9\x5b\x75\x71\x7d\x9b\x2e\xa1\x6f\xd7" "\x25\x75\x29\x5d\x5a\x97\xd1\x77\xe8\xb2\xfa\x4e\x5d\x4e\x97\xd7\x15\xf4" "\x5d\xba\xa2\xae\xa4\x2b\xeb\x2a\xfa\x6e\x5d\x55\xdf\xa3\xab\xe9\x7b\x75" "\x75\x7d\x9f\xae\xa1\xef\xd7\x35\xf5\x03\xba\x96\x7e\x50\xd7\xd6\x0f\xe9" "\x3a\xfa\x61\x5d\x57\x3f\xa2\xeb\xe9\x47\x75\x7d\xdd\x40\x37\xd4\x8d\x74" "\x63\xfd\x98\x6e\xa2\x1f\xd7\x4d\x75\x33\xdd\x5c\x3f\xa1\x5b\xe8\x27\x75" "\x4b\xfd\x94\x6e\xa5\x9f\xd6\xad\xf5\x33\xba\x8d\x7e\x56\xb7\xd5\xcf\xe9" "\x76\xfa\x79\xdd\x5e\xbf\xa0\x3b\xe8\x8e\xba\x93\xfe\x59\x5f\xd4\x41\x77" "\xd1\x5d\x75\x37\xdd\x5d\xf7\xd0\x2f\xeb\x9e\xba\x97\xee\xad\xfb\xe8\xbe" "\xfa\x15\xdd\x4f\xbf\xaa\xfb\xeb\xd7\xf4\x00\x3d\x50\x0f\xd2\xaf\xeb\xc1" "\xfa\x0d\x3d\x44\xbf\xa9\x87\xea\x61\x7a\xb8\x7e\x4b\x8f\xd0\x23\xf5\x28" "\x3d\x5a\x8f\xd1\x63\xf5\x38\xfd\xb6\x1e\xaf\xdf\xd1\x13\xf4\xbb\x7a\xa2" "\x9e\xa4\x27\xeb\x29\x7a\xaa\x9e\xa6\x7b\xff\x56\x69\xd6\x9f\xc8\x7f\xe7" "\xbf\xc9\xef\xff\xcb\xb3\x6f\xd6\x5b\xf4\x56\xbd\x4d\x6f\xd7\x3b\xf4\x4e" "\xbd\x4b\xef\xd6\x7b\xf4\x1e\xbd\x57\xef\xd5\xfb\xf4\x3e\xbd\x5f\xef\xd7" "\x07\xf4\x01\x7d\x50\x1f\xd4\x87\xf4\x21\x7d\x58\x1f\xd6\x47\xf4\x11\x7d" "\x54\x1f\xd5\xc7\xf4\x31\x7d\x5c\x1f\xd7\x27\xf4\x49\xfd\xa3\xfe\x5e\x9f" "\xd6\x3f\xe8\x33\xfa\xac\x3e\xab\x7f\xd4\xe7\xf5\x79\x7d\xe1\xb7\xd7\x00" "\x0c\x1a\x65\xb4\x31\x26\x32\xe9\x4c\x7a\x93\x62\x32\x98\x8c\xe6\x2a\x93" "\xc9\x5c\x6d\x32\x9b\x6b\x4c\xc2\x5c\x6b\xb2\x98\xeb\x4c\x56\x73\xbd\xc9" "\x66\xb2\x9b\x1c\x26\xa7\xc9\x65\x6e\x30\xb9\x8d\x35\x64\x9c\x61\x13\x9b" "\x3c\x26\xaf\x49\x9a\x1b\x4d\x3e\x73\x93\xc9\x6f\x0a\x98\x82\xa6\x90\xf1" "\xa6\xb0\x29\x62\x6e\xfe\x87\xf3\xff\x4e\x7f\xcb\x27\xff\x7a\xf2\x62\x1a" "\x9b\xc6\xa6\x89\x69\x62\x9a\x9a\xa6\xa6\xb9\x69\x6e\x5a\x98\x16\xa6\xa5" "\x69\x69\x5a\x99\x56\xa6\xb5\x69\x6d\xda\x98\x36\xa6\xad\x69\x6b\xda\x99" "\x76\xa6\xbd\x69\x6f\x3a\x98\x0e\xa6\x93\xe9\x64\x3a\x9b\xce\xa6\x0b\x82" "\xe9\x66\xba\x99\x1e\xe6\x65\xd3\xd3\xf4\x32\xbd\x4d\x1f\xd3\xd7\xbc\x62" "\xfa\x99\x7e\xa6\xbf\xe9\x6f\x06\x98\x01\x66\x90\x19\x64\x06\x9b\xc1\x66" "\x88\x19\x62\x86\x9a\xa1\xc6\x00\xc0\x08\x33\xc2\x8c\x32\xa3\xcc\x18\x33" "\xc6\x8c\x33\xe3\xcc\x78\x33\xde\x4c\x30\x13\xcc\x44\x33\xd1\x4c\x36\x93" "\xcd\x54\x33\xd5\x4c\x37\xd3\xcd\x0c\x33\xc3\xcc\x32\xb3\xcc\x6c\x33\xdb" "\xcc\x31\x73\xcc\x3c\x33\xcf\x2c\x30\x0b\xcc\x42\xb3\xd0\xa4\x9a\x54\xb3" "\xd8\x2c\x36\x4b\xcc\x52\xb3\xd4\x2c\x37\xcb\xcd\x4a\xb3\xd2\xac\x36\xab" "\xcd\x5a\xb3\xd6\xac\x37\xeb\xcd\x46\xb3\xd1\x2c\x31\x5b\xcc\x16\xb3\xcd" "\x6c\x33\x3b\xcc\x0e\xb3\xcb\xec\x32\x7b\xcc\x1e\xb3\xd7\xec\x35\xfb\xcc" "\x3e\xb3\xdf\xec\x37\x07\xcc\x01\x73\xd0\x1c\x34\x87\xcc\x21\x73\xd8\x1c" "\x36\x47\xcc\x11\x73\xd4\x1c\x35\xc7\xcc\x31\x73\xdc\x1c\x37\x27\xcc\x09" "\x73\xca\x9c\x32\xa7\xcd\x69\x73\xc6\x9c\x31\xe7\xcc\x39\x73\xde\x9c\x37" "\x17\xcc\x05\x73\xd1\x5c\xbc\x74\xda\x17\xa9\x48\x45\x26\x32\x51\xba\x28" "\x5d\x94\x12\xa5\x44\x19\xa3\x8c\x51\xa6\x28\x53\x94\x39\xca\x1c\x25\xa2" "\x44\x94\x25\xca\x12\x65\x8d\xae\x8f\xb2\x45\xd9\xa3\x1c\x51\xce\x28\x57" "\x74\x43\x94\x3b\xb2\x11\x45\x2e\xe2\x28\x8e\xf2\x44\x79\xa3\x64\x74\x63" "\x94\x2f\xba\x29\xca\x1f\x15\x88\x0a\x46\x85\x22\x1f\x15\x8e\x8a\x44\x37" "\x47\x45\xa3\x5b\xa2\x62\xd1\xad\x51\xf1\xe8\xb6\xa8\x44\x74\x7b\x54\x32" "\x2a\x15\x95\x8e\xca\x44\x77\x44\x65\xa3\x3b\xa3\x72\x51\xf9\xa8\x42\x74" "\x57\x54\x31\xaa\x14\x55\x8e\xaa\x44\x77\x47\x55\xa3\x7b\xa2\x6a\xd1\xbd" "\x51\xf5\xe8\xbe\xa8\x46\x74\x7f\x54\x33\x7a\x20\xaa\x15\x3d\x18\xd5\x8e" "\x1e\x8a\xea\x44\x0f\x47\x75\xa3\x47\xa2\x7a\xd1\xa3\x51\xfd\xa8\x41\xd4" "\x30\x6a\x14\x35\xfe\xa7\xd6\x0f\xe1\x4c\xf6\xc7\x7d\x17\xdb\xd5\xa6\x87" "\xee\xb6\x87\x7d\xd9\xf6\xb4\xbd\x6c\x6f\xdb\xc7\xf6\xb5\xaf\xd8\x7e\xf6" "\x55\xdb\xdf\xbe\x66\x07\xd8\x81\x76\x90\x7d\xdd\x0e\xb6\x6f\xd8\x21\xf6" "\x4d\x3b\xd4\x0e\xb3\xc3\xed\x5b\x76\x84\x1d\x69\x47\xd9\xd1\x76\x8c\x1d" "\x6b\xc7\xd9\xb7\xed\x78\xfb\x8e\x9d\x60\xdf\xb5\x13\xed\x24\x3b\xd9\x4e" "\xb1\x53\xed\x34\x3b\xdd\xbe\x67\x67\xd8\x99\x76\x96\x7d\xdf\xce\xb6\x1f" "\xd8\x39\x76\xae\x9d\x67\xe7\xdb\x05\xf6\x43\xbb\xd0\x2e\xb2\xa9\xf6\x23" "\xbb\xd8\x7e\x6c\x97\xd8\xa5\x76\x99\x5d\x6e\x57\xd8\x95\x76\x95\x5d\x6d" "\xd7\xd8\xb5\x76\x9d\x5d\x6f\x37\xd8\x8d\x76\x93\xdd\x6c\xb7\xd8\xad\x76" "\x9b\xdd\x6e\x77\xd8\x9d\x76\x97\xdd\x6d\xf7\xd8\x4f\xec\x5e\xfb\xa9\xdd" "\x67\x3f\xb3\xfb\xed\xe7\xf6\x80\x4d\xf9\xed\xfc\xfe\x4b\x7b\xd8\x7e\x65" "\x8f\xd8\xaf\xed\x51\xfb\x8d\x3d\x66\xbf\xb5\xc7\xed\x77\xf6\x84\x3d\x69" "\x4f\xd9\xef\xed\x69\xfb\x83\x3d\x63\xcf\xda\x73\xf6\x47\x7b\xde\xfe\x64" "\x2f\xd8\x9f\xed\x45\x1b\x2e\x9d\xdc\x5f\x7a\x7b\x27\x43\x86\xd2\x51\x3a" "\x4a\xa1\x14\xca\x48\x19\x29\x13\x65\xa2\xcc\x94\x99\x12\x94\xa0\x2c\x94" "\x85\xb2\x52\x56\xca\x46\xd9\x28\x07\xe5\xa0\x5c\x94\x8b\x72\x53\x6e\xba" "\x84\x89\x29\x0f\xe5\xa1\x24\x25\x29\x1f\xe5\xa3\xfc\x94\x9f\x0a\x52\x41" "\xf2\xe4\xa9\x08\x15\xa1\xa2\x54\x94\x8a\x51\x31\x2a\x4e\xc5\xa9\x04\x95" "\xa0\x92\x54\x92\x4a\x53\x69\xba\x83\xee\xa0\x3b\xe9\x4e\x2a\x4f\xe5\xe9" "\x2e\xba\x8b\x2a\x51\x25\xaa\x42\x55\xa8\x2a\x55\xa5\x6a\x54\x8d\xaa\x53" "\x75\xaa\x41\x35\xa8\x26\xd5\xa4\x5a\x54\x8b\x6a\x53\x6d\xaa\x43\x75\xa8" "\x2e\xd5\xa5\x7a\x54\x8f\xea\x53\x7d\x6a\x48\x0d\xa9\x31\x35\xa6\x26\xd4" "\x84\x9a\x52\x53\x6a\x4e\xcd\xa9\x05\xb5\xa0\x96\xd4\x92\x5a\x51\x2b\x6a" "\x4d\xad\xa9\x0d\xb5\xa1\xb6\xd4\x96\xda\x51\x3b\x6a\x4f\xed\xa9\x03\x75" "\xa0\x4e\xd4\x89\x3a\x53\x67\xea\x42\x5d\xa8\x1b\x75\xa3\x1e\xd4\x83\x7a" "\x52\x4f\xea\x4d\xbd\xa9\x2f\xf5\xa5\x7e\xd4\x8f\xfa\x53\x7f\x1a\x40\x03" "\x68\x10\x0d\xa2\xc1\x34\x98\x86\xd0\x10\x1a\x4a\xc3\x68\x38\xbd\x45\x23" "\x68\x24\x8d\xa2\xd1\x34\x86\xc6\xd2\x38\x1a\x47\xe3\x69\x3c\x4d\xa0\x09" "\x34\x91\x26\xd2\x64\x9a\x4c\x53\x69\x2a\x4d\xa7\xe9\x34\x83\x66\xd0\x2c" "\x9a\x45\xb3\x69\x36\xcd\xa1\x39\x34\x8f\xe6\xd1\x02\x5a\x40\x0b\x69\x21" "\xa5\x52\x2a\x2d\xa6\xc5\xb4\x84\x96\xd0\x32\x5a\x46\x2b\x68\x05\xad\xa2" "\x55\xb4\x86\xd6\xd0\x3a\x5a\x47\x1b\x68\x03\x6d\xa2\x4d\xb4\x85\xb6\xd0" "\x36\xda\x46\x3b\x68\x07\xed\xa2\x5d\xb4\x87\xf6\xd0\x5e\xda\x4b\xfb\x68" "\x1f\xed\xa7\xfd\x74\x80\x0e\xd0\x41\x3a\x48\x87\xe8\x10\x1d\xa6\xc3\x74" "\x84\x8e\xd0\x51\x3a\x4a\xc7\xe8\x18\x1d\xa7\xe3\x74\x82\x4e\xd0\x29\x3a" "\x45\xa7\xe9\x34\x9d\xa1\x33\x74\x8e\xce\xd1\x79\xfa\x89\x2e\xd0\xcf\x74" "\x91\x02\xa5\xb8\x0c\x2e\xa3\xbb\xca\x65\x72\x57\xbb\xcc\xee\x1a\xf7\x5f" "\xe3\x1c\x2e\xa7\xcb\xe5\x6e\x70\xb9\x9d\x75\xd9\x5c\xf6\xbf\x89\xc9\x39" "\x97\xdf\x15\x70\x05\x5d\x21\xe7\x5d\x61\x57\xc4\xdd\xfc\xbb\xb8\xa4\x2b" "\xe5\x4a\xbb\x32\xee\x0e\x57\xd6\xdd\xe9\xca\xfd\x2e\xae\xba\x66\xc7\xaf" "\x3f\x88\xee\xee\x73\x55\xdc\xdd\xae\xaa\xbb\xc7\x55\x73\xf7\xba\xea\xee" "\x3e\x57\xc3\xdd\xef\x6a\xba\x47\x5c\x2d\xf7\xa8\xab\xed\x1a\xb8\x3a\xae" "\x91\xab\xeb\x1e\x71\xf5\xdc\xa3\xae\xbe\x6b\xe0\x1a\xba\x46\xae\x85\x7b" "\xd2\xb5\x74\x4f\xb9\x56\xee\x69\xd7\xda\x3d\xf3\xbb\x78\xa1\x5b\xe4\xd6" "\xb8\xb5\x6e\x9d\x5b\xef\xf6\xba\x4f\xdd\x39\xf7\xa3\x3b\xea\xbe\x71\xe7" "\xdd\x4f\xae\x8b\xeb\xea\xfa\xba\x57\x5c\x3f\xf7\xaa\xeb\xef\x5e\x73\x03" "\xdc\xc0\xdf\xc5\xc3\xdd\x5b\x6e\x84\x1b\xe9\x46\xb9\xd1\x6e\x8c\x1b\xfb" "\xbb\x78\xb2\x9b\xe2\xa6\xba\x69\x6e\xba\x7b\xcf\xcd\x70\x33\x7f\x17\x2f" "\x70\x1f\xba\xd9\x2e\xd5\xcd\x71\x73\xdd\x3c\x37\xff\x97\xf8\x52\x4f\xa9" "\xee\x23\xb7\xd8\x7d\xec\x96\xb8\xa5\x6e\x99\x5b\xee\x56\xb8\x95\x6e\x95" "\x5b\xfd\x1f\xbd\x2e\x77\x1b\xdd\x26\xb7\xd9\xed\x71\x9f\xb8\x6d\x6e\xbb" "\xdb\xe1\x76\xba\x5d\x6e\xf7\x2f\xf1\xa5\xe3\xd8\xe7\x3e\x73\xfb\xdd\xe7" "\xee\x88\xfb\xda\x1d\x74\x5f\xb8\x43\xee\x98\x3b\xec\xbe\xfa\x25\xbe\x74" "\x7c\xc7\xdc\xb7\xee\xb8\xfb\xce\x9d\x70\x27\xdd\x29\xf7\xbd\x3b\xed\x7e" "\x70\x67\xdc\xd9\x5f\x8e\xff\xd2\xb1\x7f\xef\x7e\x76\x17\x5d\x70\xc0\xc8" "\x8a\x35\x1b\x8e\x38\x1d\xa7\xe7\x14\xce\xc0\x19\xf9\x2a\xce\xc4\x57\x73" "\x66\xbe\x86\x13\x7c\x2d\x67\xe1\xeb\x38\x2b\x5f\xcf\xd9\x38\x3b\xe7\xe0" "\x9c\x9c\x8b\x6f\xe0\xdc\x6c\x99\xd8\x31\x73\xcc\x79\x38\x2f\x27\xf9\x46" "\xce\xc7\x37\x71\x7e\x2e\xc0\x05\xb9\x10\x7b\x2e\xcc\x45\xf8\x66\x2e\xca" "\xb7\x70\x31\xbe\x95\x8b\xf3\x6d\x5c\x82\x6f\xe7\x92\x5c\x8a\x4b\x73\x19" "\xbe\x83\xcb\xf2\x9d\x5c\x8e\xcb\x73\x05\xbe\x8b\x2b\x72\x25\xae\xcc\x55" "\xf8\x6e\xae\xca\xf7\x70\x35\xbe\x97\xab\xf3\x7d\x5c\x83\xef\xe7\x9a\xfc" "\x00\xd7\xe2\x07\xb9\x36\x3f\xc4\x75\xf8\x61\xae\xcb\x8f\x70\x3d\x7e\x94" "\xeb\x73\x03\x6e\xc8\x8d\xb8\x31\x3f\xc6\x4d\xf8\x71\x6e\xca\xcd\xb8\x39" "\x3f\xc1\x2d\xf8\x49\x6e\xc9\x4f\x71\x2b\x7e\x9a\x5b\xf3\x33\xdc\x86\x9f" "\xe5\xb6\xfc\x1c\xb7\xe3\xe7\xb9\x3d\xbf\xc0\x1d\xb8\x23\x77\xe2\x17\xb9" "\x33\xbf\xc4\x5d\xb8\x2b\x77\xe3\xee\xdc\x83\x5f\xe6\x9e\xdc\x8b\x7b\x73" "\x1f\xee\xcb\xaf\x70\x3f\x7e\x95\xfb\xf3\x6b\x3c\x80\x07\xf2\x20\x7e\x9d" "\x07\xf3\x1b\x3c\x84\xdf\xe4\xa1\x3c\x8c\x87\xf3\x5b\x3c\x82\x47\xf2\x28" "\x1e\xcd\x63\x78\x2c\x8f\xe3\xb7\x79\x3c\xbf\xc3\x13\xf8\x5d\x9e\xc8\x93" "\x78\x32\x4f\xe1\xa9\x3c\x8d\xa7\xf3\x7b\x3c\x83\x67\xf2\x2c\x7e\x9f\x67" "\xf3\x07\x3c\x87\xe7\xf2\x3c\x9e\xcf\x0b\xf8\x43\x5e\xc8\x8b\x38\x95\x3f" "\xe2\xc5\xfc\x31\x2f\xe1\xa5\xbc\x8c\x97\xf3\x0a\x5e\xc9\xab\x78\x35\xaf" "\xe1\xb5\xbc\x8e\xd7\xf3\x06\xde\xc8\x9b\x78\x33\x6f\xe1\xad\xbc\x8d\xb7" "\x33\xf2\x4e\xde\xc5\xbb\x79\x0f\x7f\xc2\x7b\xf9\x53\xde\xc7\x9f\xf1\x7e" "\xfe\x9c\x0f\xf0\x5f\xf8\x20\x7f\xc1\x87\xf8\x4b\x3e\xcc\x5f\xf1\x11\xfe" "\x9a\x8f\xf2\x37\x7c\x8c\xbf\xe5\xe3\xfc\x1d\x9f\xe0\x93\x7c\x8a\xbf\xe7" "\xd3\xfc\x03\x9f\xe1\xb3\x7c\x8e\x7f\xe4\xf3\xfc\x13\x5f\xe0\x9f\xf9\x22" "\x07\x86\x18\x63\x15\xeb\xd8\xc4\x51\x9c\x2e\x4e\x1f\xa7\xc4\x19\xe2\x8c" "\xf1\x55\x71\xa6\xf8\xea\x38\x73\x7c\x4d\x9c\x88\xaf\x8d\xb3\xc4\xd7\xc5" "\x59\xe3\xeb\xe3\x6c\x71\xf6\x38\x47\x9c\x33\xce\x15\xdf\x10\xe7\x8e\x6d" "\x4c\xb1\x8b\x39\x8e\xe3\x3c\x71\xde\x38\x19\xdf\x18\xe7\x8b\x6f\x8a\xf3" "\xc7\x05\xe2\x82\x71\xa1\xd8\xc7\x85\xe3\x22\xf1\xcd\x71\xd1\xf8\x96\xb8" "\x58\x7c\x6b\x5c\x3c\xbe\x2d\x2e\x11\xdf\x1e\x97\x8c\x4b\xc5\x8f\xdc\x57" "\x26\xbe\x23\x2e\x1b\xdf\x19\x97\x8b\xcb\xc7\x15\xe2\xbb\xe2\x8a\x71\xa5" "\xb8\x72\x5c\x25\xbe\x3b\xae\x1a\xdf\x13\x57\x8b\xef\x8d\xab\xc7\xf7\xc5" "\xc5\xe2\xfb\xe3\x9a\xf1\x03\x71\xad\xf8\xc1\xb8\x76\xfc\x50\x5c\x27\x7e" "\x38\xae\x1b\x3f\x12\xd7\x8b\x1f\x8d\xeb\xc7\x0d\xe2\x86\x71\xa3\xb8\x71" "\xfc\x58\xdc\x24\x7e\x3c\x6e\x1a\x37\x8b\x9b\xc7\x4f\xc4\x2d\xe2\x27\xe3" "\x96\xf1\x53\x71\xab\xf8\xe9\xb8\x75\xfc\xcc\x1f\xee\xef\x16\x77\x8f\x7b" "\xc4\x2f\xc7\x2f\xc7\x21\xdc\xab\xe7\x25\xe7\x27\x17\x24\x3f\x4c\x2e\x4c" "\x2e\x4a\xa6\x26\x3f\x4a\x2e\x4e\x7e\x9c\x5c\x92\x5c\x9a\x5c\x96\x5c\x9e" "\x5c\x91\x5c\x99\x5c\x95\x5c\x9d\x5c\x93\x5c\x9b\x5c\x97\x5c\x9f\xdc\x90" "\xdc\x98\xdc\x94\xdc\x9c\x0c\xa1\x4a\x7a\xf0\xe8\x95\xd7\xde\xf8\xc8\xa7" "\xf3\xe9\x7d\x8a\xcf\xe0\x33\xfa\xab\x7c\x26\x7f\xb5\xcf\xec\xaf\xf1\x09" "\x7f\xad\xcf\xe2\xaf\xf3\x59\xfd\xf5\x3e\x9b\xcf\xee\x73\xf8\x9c\x3e\x97" "\xbf\xc1\xe7\xf6\xd6\x93\x77\x9e\x7d\xec\xf3\xf8\xbc\x3e\xe9\x6f\xf4\xf9" "\xfc\x4d\x3e\xbf\x2f\xe0\x0b\xfa\x42\xde\xfb\xc2\xbe\x88\x6f\xe4\x1b\xfb" "\xc6\xbe\x89\x7f\xdc\x37\xf5\xcd\x7c\x73\xff\x84\x7f\xc2\x3f\xe9\x9f\xf4" "\x4f\xf9\xa7\xfc\xd3\xbe\xb5\x7f\xc6\xb7\xf1\xcf\xfa\xb6\xfe\x39\xdf\xce" "\x3f\xef\x9f\xf7\x2f\xf8\x0e\xbe\xa3\xef\xe4\x5f\xf4\x9d\xfd\x4b\xbe\x8b" "\xef\xea\xbb\xf9\x6e\xbe\x87\xef\xe1\x7b\xfa\x9e\xbe\xb7\xef\xed\xfb\xfa" "\xbe\xbe\x9f\xef\xe7\xfb\xfb\xfe\x7e\x80\x1f\xe0\x07\xf9\x41\x7e\xb0\x1f" "\xec\x87\xf8\x21\x7e\xa8\x1f\xea\x87\xfb\xe1\x7e\x84\x1f\xe1\x47\xf9\x51" "\x7e\x8c\x1f\xe3\xc7\xf9\x71\x7e\xbc\x1f\xef\x27\xf8\x09\x7e\xa2\x9f\xe8" "\x27\xfb\xc9\x7e\xaa\x9f\xea\xa7\xfb\xe9\x7e\x86\x9f\xe1\x67\xf9\x59\x7e" "\x76\xfe\xd9\x7e\x8e\x9f\xe3\xe7\xf9\x79\x7e\x81\x5f\xe0\x17\xfa\x85\x3e" "\xd5\xa7\xfa\xc5\x7e\xb1\x5f\xe2\x97\xf8\x65\x7e\x99\x5f\xe1\x57\xf8\x55" "\x7e\x95\x5f\xe3\xd7\xf8\x75\x7e\x9d\xdf\xe0\x37\xf8\x4d\x7e\x93\xdf\xe2" "\xb7\xf8\x6d\x7e\x9b\xdf\xe1\x77\xf8\x5d\x7e\x97\xdf\xe3\xf7\xf8\xbd\x7e" "\xaf\xdf\xe7\xf7\xf9\xfd\x7e\xbf\x3f\xe0\x0f\x9c\x0b\xfe\xa0\x3f\xe4\xbf" "\xf4\x87\xfd\x57\xfe\x88\xff\xda\x1f\xf5\xdf\xf8\x63\xfe\x5b\x7f\xdc\x7f" "\xe7\x4f\xf8\x93\xfe\x94\xff\xde\x9f\xf6\x3f\xf8\x33\xfe\xac\x3f\xe7\x7f" "\xf4\xe7\xfd\x4f\xfe\x82\xff\xd9\x5f\xf4\xc1\x8f\x4b\xbc\x9d\x18\x9f\x78" "\x27\x31\x21\xf1\x6e\x62\x62\x62\x52\x62\x72\x62\x4a\x62\x6a\x62\x5a\x62" "\x7a\xe2\xbd\xc4\x8c\xc4\xcc\xc4\xac\xc4\xfb\x89\xd9\x89\x0f\x12\x73\x12" "\x73\x13\xf3\x12\xf3\x13\x0b\x12\x1f\x26\x16\x26\x16\x25\x52\x13\x1f\x25" "\x16\x27\x3e\x4e\x2c\x49\x2c\x4d\x2c\x4b\x2c\x4f\xac\x48\xac\x4c\x84\x70" "\xc3\xb6\x38\xe4\x09\x79\x43\x32\xdc\x18\xf2\x85\x9b\x42\xfe\x50\x20\x14" "\x0c\x85\x82\x0f\x85\x43\x91\x70\x73\x28\x1a\x6e\x09\xc5\xc2\xad\xa1\x78" "\xb8\x2d\x94\x08\xb7\x87\x92\xa1\x54\x28\x1d\x1e\x0d\xf5\x43\x83\xd0\x30" "\x34\x0a\x8d\xc3\x63\xa1\x49\x78\x3c\x34\x0d\xcd\x42\xf3\xf0\x44\x68\x11" "\x9e\x0c\x2d\xc3\x53\xa1\x55\x78\x3a\xb4\x0e\xcf\x84\x36\xe1\xd9\xd0\x36" "\x3c\x17\xda\x85\xe7\x43\xfb\xf0\x42\xe8\x10\x3a\x86\x4e\xe1\xc5\xd0\x39" "\xbc\x14\xba\x04\x1d\xba\x85\xee\xa1\x47\x78\x39\xf4\x0c\xbd\x42\xef\xd0" "\x27\xf4\x0d\xaf\x84\x7e\xe1\xd5\xd0\x3f\xbc\x16\x06\x84\x81\x61\x50\x78" "\x3d\x0c\x0e\x6f\x84\x21\xe1\xcd\x30\x34\x0c\x0b\xc3\xc3\x5b\x61\x44\x18" "\x19\x46\x85\xd1\x61\x4c\x18\x1b\xc6\x85\xb7\xc3\xf8\xf0\x4e\x98\x10\xde" "\x0d\x13\xc3\xa4\x30\x39\x4c\x09\x53\xc3\xb4\x30\x3d\xbc\x17\x66\x84\x99" "\x61\x56\x78\x3f\xcc\x0e\x1f\x84\x39\x61\x6e\x98\x17\xe6\x87\x05\xe1\xc3" "\xb0\x30\x2c\x0a\xa9\xe1\xa3\xb0\x38\x7c\x1c\x96\x84\xa5\x61\x59\x58\x1e" "\x20\x65\x65\x58\x15\x56\x87\x35\x61\x6d\x58\x17\xd6\x87\x0d\x61\x63\xd8" "\x14\x36\x87\x2d\x61\x6b\xd8\x16\xb6\x87\x1d\x61\x67\xd8\x15\x76\x87\x3d" "\xe1\x93\xb0\x37\x7c\x1a\xf6\x85\xcf\xc2\xfe\xf0\x79\x38\x10\xfe\x12\x0e" "\x86\x2f\xc2\xa1\xf0\x65\x38\x1c\xbe\x0a\x47\xc2\xd7\xe1\x68\xf8\x26\x1c" "\x0b\xdf\x86\xe3\xe1\xbb\x70\x22\x9c\x0c\xa7\xc2\xf7\xe1\x74\xf8\x21\x9c" "\x09\x67\xc3\xb9\xf0\x63\x38\x1f\x7e\x0a\x17\xc2\xcf\xe1\xa2\xfc\xce\x9a" "\x10\x42\x08\x21\xc4\x9f\xa2\xff\x60\x7f\xf7\xbf\x89\xd4\x7f\xfc\xab\x7e" "\xfb\x48\x0f\x00\xb8\x7a\x7b\xce\xc3\xff\xb5\xe6\x86\x6c\xbf\xae\x7b\xa9" "\x5c\x2d\x12\x00\xf0\x74\xd7\xf6\x0f\xfd\x75\xab\x58\xb1\x5b\xb7\x6e\xbf" "\x3d\x76\x89\x86\x28\xef\x5c\x00\x48\x5c\xce\x4f\x07\x97\xe3\xa5\xd0\x1c" "\x9e\x84\x56\xd0\x0c\x8a\xfe\xb7\xfd\xf5\x52\x1d\xcf\xf3\x1f\xd4\x4f\xde" "\x06\x90\xf1\x3f\xe5\xa4\xc0\xe5\xf8\x72\xfd\x5b\xfe\x4e\xfd\x91\xb3\xff" "\xb0\xfe\x5c\x80\xfc\x79\x2f\xe7\x64\x80\xcb\xf1\xe5\xfa\xc5\x7e\x57\x3b" "\xfa\xa5\x7e\xf6\x26\x7f\x50\x3f\xc3\x17\xe3\x00\x9a\xfe\xa7\xbc\x4c\x70" "\x39\xbe\x5c\xbf\x08\x3c\x0e\xcf\x40\xab\xbf\x79\xa4\x10\x42\x08\x21\x84" "\x10\x42\x08\xf1\xab\x5e\xaa\x74\xdb\x3f\xba\xbe\xbd\x74\x7d\x9e\xcb\x5c" "\xce\x49\x0f\x97\xe3\x3f\xba\x3e\x17\x42\x08\x21\x84\x10\x42\x08\x21\xc4" "\x95\xf7\x5c\xc7\x4e\x4f\x3d\xd6\xaa\x55\xb3\xb6\x7f\x67\x51\xfe\xef\xef" "\x92\x45\x5a\x59\xa4\xfb\xd7\x68\xe3\xdf\x7e\x01\xf0\x2f\xd1\xc6\x9f\x5b" "\x5c\xe9\xef\x4c\x42\x08\x21\x84\x10\x42\x88\x7f\xb6\xcb\x27\xfd\x57\xba" "\x13\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84" "\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08" "\x21\x84\x10\x22\xed\xfa\x7f\xf1\xe7\xc4\xae\xf4\x31\x0a\x21\x84\x10\x42" "\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84" "\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08" "\x21\x84\x10\x42\x08\x21\x84\x10\x57\xda\xff\x0a\x00\x00\xff\xff\xa5\xa4" "\x31\xb4", 5384)); NONFAILING(syz_mount_image( /*fs=*/0x20000000, /*dir=*/0x20000040, /*flags=MS_STRICTATIME*/ 0x1000000, /*opts=*/0x20000680, /*chdir=*/1, /*size=*/0x1508, /*img=*/0x20002c80)); NONFAILING(memcpy((void*)0x20000080, "./file0\000", 8)); NONFAILING(memcpy((void*)0x20000040, "./file0\000", 8)); NONFAILING(memcpy((void*)0x20000180, "incremental-fs\000", 15)); syscall(__NR_mount, /*src=*/0x20000080ul, /*dst=*/0x20000040ul, /*type=*/0x20000180ul, /*flags=*/0ul, /*opts=*/0ul); NONFAILING(memcpy((void*)0x20000040, "/dev/zero\000", 10)); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x20000040ul, /*flags=*/0ul, /*mode=*/0ul); if (res != -1) r[0] = res; syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1ffffful, /*prot=*/1ul, /*flags=*/0x11ul, /*fd=*/r[0], /*offset=*/0ul); syscall(__NR_madvise, /*addr=*/0x20000000ul, /*len=*/0x600003ul, /*advice=MADV_HUGEPAGE*/ 0xeul); NONFAILING(*(uint64_t*)0x20000240 = 0); NONFAILING(*(uint64_t*)0x20000248 = 0); NONFAILING(*(uint64_t*)0x20000250 = 0); NONFAILING(*(uint64_t*)0x20000258 = 0); NONFAILING(*(uint32_t*)0x20000260 = 0); NONFAILING(*(uint64_t*)0x20000268 = 0); NONFAILING(*(uint64_t*)0x20000270 = 0); NONFAILING(*(uint64_t*)0x20000278 = 0); NONFAILING(*(uint64_t*)0x20000280 = 0); NONFAILING(*(uint64_t*)0x20000288 = 0); NONFAILING(*(uint32_t*)0x20000290 = -1); NONFAILING(syz_clone3(/*args=*/0x20000240, /*size=*/0x58)); syscall(__NR_madvise, /*addr=*/0x20000000ul, /*len=*/0x600003ul, /*advice=MADV_COLLAPSE*/ 0x19ul); return 0; }