// https://syzkaller.appspot.com/bug?id=8aa97c8f331730c91d216892a45e279362cddc8b // 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_quotactl #define __NR_quotactl 60 #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 bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, loopfd = -1, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } errno = err; return res; } 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"); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { 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; } } } uint64_t r[1] = {0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; memcpy((void*)0x20000040, ".\000", 2); res = syscall(__NR_openat, 0xffffff9c, 0x20000040ul, 0ul, 0ul); if (res != -1) r[0] = res; memcpy((void*)0x20001500, "exfat\000", 6); memcpy((void*)0x20000140, "./file0\000", 8); memcpy((void*)0x20000200, "dmask=00000000000000000000007,utf8,iocharset=iso8859-1,allow_utime=" "00000000000000000002001,fmask=00000000000000000000002,allow_utime=" "00000000000000000000005,umask=00000000000000000000001,gid=", 191); sprintf((char*)0x200002bf, "0x%016llx", (long long)r[0]); memcpy((void*)0x200002d1, ",uid=", 5); sprintf((char*)0x200002d6, "0x%016llx", (long long)-1); *(uint64_t*)0x200002e8 = -1; memcpy( (void*)0x20001540, "\x78\x9c\xec\xdc\x09\x78\x54\xc5\xb6\x28\xe0\x5a\x55\xb5\x21\xc4\x08\x6d" "\x44\x86\x40\xad\x5a\x1b\x5a\x0c\x50\x0c\x22\x22\x83\x88\xc8\x20\x22\x22" "\x22\x22\x22\x93\x08\x88\x18\x11\x11\x11\x10\x21\x20\x93\x88\x01\x11\x01" "\x19\x23\x22\x42\x40\x40\x64\x88\x21\x62\x98\xe7\x79\x1e\x44\x0e\x62\x44" "\x44\x64\x92\x49\xa0\xde\x87\xde\xf3\xb8\xe7\x78\xcf\xf3\xdd\x77\xce\xbb" "\xbc\x77\xb3\xfe\xef\xdb\x5f\xd7\xea\xdd\xab\x7a\x55\xaf\x4e\x7a\xef\xdd" "\xdf\xd7\x3f\x76\x1f\x51\xa7\x59\xdd\x9a\x4d\x88\x48\xfc\x53\xe0\xf7\x9b" "\x64\x21\x44\x8c\x10\x62\x88\x10\x22\x9f\x10\x22\x10\x42\x54\x8c\xaf\x18" "\x7f\x6d\x7f\x1e\x05\xc9\xff\xdc\x93\xb0\x7f\xad\x27\xd2\x6e\x74\x05\xec" "\x46\xe2\xfe\xe7\x6c\xdc\xff\x9c\x8d\xfb\x9f\xb3\x71\xff\x73\x36\xee\x7f" "\xce\xc6\xfd\xcf\xd9\xb8\xff\x39\x1b\xf7\x9f\xb1\x9c\x6c\xcb\xcc\xc2\xb7" "\xf0\x96\x73\x37\xbe\xfe\x9f\x93\xf1\xe7\xff\x7f\x23\xd9\x65\x26\x7e\xbb" "\xae\xcc\x6d\x3d\xfe\x13\x29\xdc\xff\x9c\x8d\xfb\x9f\xb3\x71\xff\x73\x36" "\xee\x7f\xce\xc6\xfd\xcf\xd9\xb8\xff\x39\x1b\xf7\x3f\x67\xe3\xfe\x33\x96" "\x93\xdd\xe8\xeb\xcf\xbc\xdd\xd8\xed\x46\xbf\xff\x18\x63\x8c\x31\xc6\x18" "\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31" "\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63" "\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6" "\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c" "\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18" "\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31" "\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\xe5\x0c\x17\xfc" "\x75\x5a\x08\x71\xed\x36\xf8\x47\x0f\x4e\xfe\xaf\xad\x8d\x31\xc6\x18\x63" "\x8c\x31\xc6\x18\x63\xff\x1a\x3e\xf7\x8d\xae\x80\x31\xc6\x18\x63\x8c\x31" "\xc6\x18\x63\xff\xf7\x81\x90\x42\x09\x2d\x02\x91\x4b\xe4\x16\x31\x22\x8f" "\x88\x15\x37\x89\x38\x71\xb3\xc8\x2b\xf2\x89\x88\xb8\x45\xc4\x8b\x5b\x45" "\x7e\x71\x9b\x28\x20\x0a\x8a\x42\xa2\xb0\x48\x10\x45\x44\x51\x61\x04\x0a" "\x2b\x48\x84\xa2\x98\x28\x2e\xa2\xe2\x76\x51\x42\xdc\x21\x12\x45\x49\x51" "\x4a\x94\x16\x4e\x94\x11\x65\x45\x39\x51\x5e\xdc\x29\x2a\x88\xbb\x44\x45" "\x71\xb7\xa8\x24\xee\x11\x95\x45\x15\x51\x55\x54\x13\xf7\x8a\xea\xe2\x3e" "\x51\x43\xdc\x2f\x6a\x8a\x07\x44\x2d\x51\x5b\xd4\x11\x75\xc5\x83\xa2\x9e" "\x78\x48\xd4\x17\x0f\x8b\x06\xe2\x11\xd1\x50\x3c\x2a\x1a\x89\xc7\x44\x63" "\xf1\xb8\x68\x22\x9e\x10\x4d\xc5\x93\xa2\x99\x78\x4a\x34\x17\x4f\x8b\x16" "\xa2\xa5\x68\x25\x5a\x8b\x36\xff\x47\xf9\xaf\x8b\xde\xe2\x0d\xd1\x47\xf4" "\x15\xc9\xa2\x9f\xe8\x2f\xde\x14\x03\xc4\x40\x31\x48\x0c\x16\x43\xc4\x5b" "\x62\xa8\x78\x5b\x0c\x13\xef\x88\x14\x31\x5c\x8c\x10\xef\x8a\x91\xe2\x3d" "\x31\x4a\xbc\x2f\x46\x8b\x31\x62\xac\xf8\x40\x8c\x13\xe3\xc5\x04\x31\x51" "\x4c\x12\x93\x45\xaa\xf8\x50\x4c\x11\x1f\x89\xa9\xe2\xe3\xe1\x7f\x7d\x45" "\xd3\xc4\x4c\x31\x4b\x7c\x2a\x66\x8b\x39\x62\xae\xf8\x4c\xcc\x13\x9f\x8b" "\xf9\x62\x81\x58\x28\x16\x89\x74\xf1\x85\xc8\x10\x8b\x45\xa6\xf8\x52\x2c" "\x11\x5f\x89\x2c\xb1\x54\x2c\x13\xcb\xc5\x0a\xb1\x52\xac\x12\xab\xc5\x1a" "\xb1\x56\xac\x13\xeb\xc5\x06\xb1\x51\x6c\x12\x9b\xc5\x16\xb1\x55\x6c\x13" "\xdb\xc5\x0e\xb1\x53\xec\x12\xbb\xc5\x1e\xb1\x57\xec\x13\xfb\xc5\x01\xf1" "\xb5\x38\x28\xbe\xf9\x4f\xe6\x9f\xff\xbb\xfc\x1e\x20\x40\x80\x04\x09\x1a" "\x34\xe4\x82\x5c\x10\x03\x31\x10\x0b\xb1\x10\x07\x71\x90\x17\xf2\x42\x04" "\x22\x10\x0f\xf1\x90\x1f\xf2\x43\x01\x28\x00\x85\xa0\x10\x24\x40\x02\x14" "\x85\xa2\x80\x80\x40\x40\x50\x0c\x8a\x41\x14\xa2\x50\x02\x4a\x40\x22\x24" "\x42\x29\x28\x05\x0e\x1c\x94\x85\xb2\x50\x1e\xee\x84\x0a\x50\x01\x2a\x42" "\x45\xa8\x04\x95\xa0\x32\x54\x81\x2a\x50\x0d\xaa\x41\x75\xa8\x0e\x35\xa0" "\x06\xd4\x84\x9a\x50\x0b\x6a\x41\x1d\xa8\x03\x0f\xc2\x83\xf0\x10\xd4\x87" "\xfa\xd0\x00\x1a\x40\x43\x68\x08\x8d\xa0\x11\x34\x86\xc6\xd0\x04\x9a\x40" "\x53\x68\x0a\xcd\xa0\x19\x34\x87\xe6\xd0\x02\x5a\x40\x2b\x68\x05\x6d\xa0" "\x0d\xb4\x85\xb6\xd0\x0e\xda\x41\x07\xe8\x00\x1d\xa1\x23\x74\x82\x4e\x90" "\x04\x49\xd0\x19\x3a\x43\x17\xe8\x02\x5d\xa1\x2b\x74\x83\x6e\xd0\x1d\xba" "\x43\x0f\xe8\x09\x3d\xe1\x75\x78\x1d\xde\x80\x37\xa0\x2f\xd4\x92\xfd\xa0" "\x3f\xf4\x87\x01\x30\x00\x06\xc1\x60\x18\x0c\x6f\xc1\x50\x78\x1b\xde\x86" "\x77\x20\x05\x86\xc3\x08\x78\x17\xde\x85\xf7\x60\x14\x9c\x83\xd1\x30\x06" "\xc6\xc2\x58\xa8\x2e\xc7\xc3\x04\x98\x08\x24\x27\x43\x2a\xa4\xc2\x14\x98" "\x02\x53\x61\x2a\x4c\x83\x4f\xe0\x13\x98\x01\x69\x30\x13\x66\xc1\x2c\x98" "\x0d\x73\x60\x0e\x7c\x06\xf3\xe0\x73\xf8\x1c\x16\xc0\x02\x58\x04\xe9\x90" "\x0e\x19\xb0\x18\x32\x21\x13\x96\xc0\x79\xc8\x82\xa5\xb0\x0c\x96\xc3\x0a" "\x58\x09\x2b\x60\x35\xac\x81\xd5\xb0\x0e\xd6\xc3\x3a\xd8\x08\x1b\x61\x33" "\x6c\x86\xad\xb0\x15\xb6\xc3\x76\xd8\x09\x3b\x61\x37\xec\x86\xbd\xb0\x17" "\xf6\xc3\x7e\x48\x81\x83\x00\xfa\xf7\x77\xdc\x61\x38\x02\x47\x20\x1b\xb2" "\xe1\x28\x1c\x85\x63\x70\x0c\x8e\xc3\x71\x38\x01\x27\xe0\x24\x9c\x82\xd3" "\x70\x0a\xce\xc2\x59\x38\x07\xe7\xe1\x02\x5c\x80\x4b\x70\x09\x2e\xc3\xab" "\x09\xdf\x37\xdd\x5d\x72\x6d\x8a\x90\xd7\x68\xa9\x65\x2e\x99\x4b\xc6\xc8" "\x18\x19\x2b\x63\x65\x9c\x8c\x93\x79\x65\x5e\x19\x91\x11\x19\x2f\xe3\x65" "\x7e\x99\x5f\x16\x90\x05\x64\x21\x59\x48\x26\xc8\x04\x59\x54\x16\x95\x28" "\x51\x92\x0c\x65\x31\x59\x4c\x46\x65\x54\x96\x90\x25\x64\xa2\x4c\x94\xa5" "\x64\x29\xe9\xa4\x93\x65\x65\x59\x59\x5e\x96\x97\x15\x64\x05\x59\x51\xde" "\x2d\x2b\xc9\x7b\x64\x65\x59\x45\xb6\x77\xd5\x64\x35\x59\x5d\x76\x70\x35" "\xe4\xfd\xb2\xa6\xac\x29\x6b\xc9\xda\xb2\x8e\xac\x2b\xeb\xca\x7a\xb2\x9e" "\xac\x2f\xeb\xcb\x06\xb2\x81\x6c\x28\x1b\xca\x46\xf2\x31\xd9\x58\xf6\x83" "\x41\xf0\x84\xbc\xd6\x99\x66\x72\x38\x34\x97\x23\xa0\x85\x6c\x29\x5b\xc9" "\xd6\xf2\x3d\x78\x46\xb6\x95\xa3\xa0\x9d\x6c\x2f\x3b\xc8\xe7\xe4\x18\x18" "\x0d\x9d\x64\x5b\x97\x24\x5f\x94\x9d\xe5\x04\xe8\x22\x5f\x96\x13\xe1\x15" "\xd9\x4d\x4e\x86\xee\xf2\x35\xd9\x43\xf6\x94\xbd\xe4\xeb\xb2\xb7\x6c\xe7" "\xfa\xc8\xbe\x72\x1a\xf4\x93\xfd\xe5\x0c\x18\x20\x07\xca\x41\x72\xb0\x9c" "\x0d\xb5\xe5\xb5\x8e\xd5\x91\xef\xc8\x14\x39\x5c\x8e\x90\xef\xca\x45\xf0" "\x9e\x1c\x25\xdf\x97\xa3\xe5\x18\x39\x56\x7e\x20\xc7\xc9\xf1\x72\x82\x9c" "\x28\x27\xc9\xc9\x32\x55\x7e\x28\xa7\xc8\x8f\xe4\x54\xf9\xb1\x9c\x26\x3f" "\x91\xd3\xe5\x0c\x99\x26\x67\xca\x59\xf2\x53\x39\x5b\xce\x91\x73\xe5\x67" "\x72\x9e\xfc\x5c\xce\x97\x0b\xe4\x42\xb9\x48\xa6\xcb\x2f\x64\x86\x5c\x2c" "\x33\xe5\x97\x72\x89\xfc\x4a\x66\xc9\xa5\x72\x99\x5c\x2e\x57\xc8\x95\x72" "\x95\x5c\x2d\xd7\xc8\xb5\x72\x9d\x5c\x2f\x37\xc8\x8d\x72\x93\xdc\x2c\xb7" "\xc8\xad\x72\x9b\xdc\x2e\x77\xc8\x9d\x72\x97\xdc\x2d\xf7\xc8\xbd\x72\x9f" "\xdc\x2f\x0f\xc8\xaf\xe5\x41\xf9\x8d\x3c\x24\xff\x22\x0f\xcb\x6f\xe5\x11" "\xf9\x9d\xcc\x96\xdf\xcb\xa3\xf2\x07\x79\x4c\xfe\x28\x8f\xcb\x9f\xe4\x09" "\xf9\xb3\x3c\x29\x4f\xc9\xd3\xf2\x8c\x3c\x2b\x7f\x91\xe7\xe4\x79\x79\x41" "\x5e\x94\x97\xe4\xaf\xf2\xb2\xbc\x22\xaf\x4a\x2f\x85\x02\x25\x95\x52\x5a" "\x05\x2a\x97\xca\xad\x62\x54\x1e\x15\xab\x6e\x52\x71\xea\x66\x95\x57\xe5" "\x53\x11\x75\x8b\x8a\x57\xb7\xaa\xfc\xea\x36\x55\x40\x15\x54\x85\x54\x61" "\x95\xa0\x8a\xa8\xa2\xca\x28\x54\x56\x91\x0a\x55\x31\x55\x5c\x45\xd5\xed" "\xaa\x84\xba\x43\x25\xaa\x92\xaa\x94\x2a\xad\x9c\x2a\xa3\xca\xaa\x72\xaa" "\xbc\xba\x53\x55\x50\x77\xa9\x8a\xea\x6e\x55\x49\xdd\xa3\x2a\xab\x2a\xaa" "\xaa\xaa\xa6\xee\x55\xd5\xd5\x7d\xaa\x86\xba\x5f\xd5\x54\x0f\xa8\x5a\xaa" "\xb6\xaa\xa3\xea\xaa\x07\x55\x3d\xf5\x90\xaa\xaf\x1e\x56\x0d\xd4\x23\xaa" "\xa1\x7a\x54\x35\x52\x8f\xa9\xc6\xea\x71\xd5\x44\x3d\xa1\x9a\xaa\x27\x55" "\x33\xf5\x94\x6a\xae\x9e\x56\x2d\x54\x4b\xd5\x4a\xb5\x56\x6d\xd4\x33\xaa" "\xad\x7a\x56\xb5\x53\xed\x55\x07\xf5\x9c\xea\xa8\x9e\x57\x9d\xd4\x0b\x2a" "\x49\xbd\xa8\x3a\xab\x97\x54\x17\xf5\xb2\xea\xaa\x5e\x51\xdd\xd4\xab\xaa" "\xbb\x7a\x4d\xf5\x50\x3d\x55\x2f\x75\x45\x5d\x55\x5e\xf5\x51\x7d\x55\xb2" "\xea\xa7\xfa\xab\x37\xd5\x00\x35\x50\x0d\x52\x83\xd5\x10\xf5\x96\x1a\xaa" "\xde\x56\xc3\xd4\x3b\x2a\x45\x0d\x57\x23\xd4\xbb\x6a\xa4\x7a\x4f\x8d\x52" "\xef\xab\xd1\x6a\x8c\x1a\xab\x3e\x50\xe3\xd4\x78\x35\x41\x4d\x54\x93\xd4" "\x64\x95\xaa\x3e\x54\x53\xd4\x47\x6a\xaa\xfa\x58\x4d\x53\x9f\xa8\xe9\x6a" "\x86\x4a\x53\x33\xd5\xa0\x7f\x9b\x69\xee\xff\x46\xfe\x47\xff\x41\xfe\xb0" "\xdf\x9e\x7d\xb3\xda\xa2\xb6\xaa\x6d\x6a\xbb\xda\xa1\x76\xaa\x5d\x6a\xb7" "\xda\xa3\xf6\xa8\x7d\x6a\x9f\x3a\xa0\x0e\xa8\x83\xea\xa0\x3a\xa4\x0e\xa9" "\xc3\xea\xb0\x3a\xa2\x8e\xa8\x6c\x95\xad\x8e\xaa\xa3\xea\x98\x3a\xa6\x8e" "\xab\xe3\xea\x84\x3a\xa1\x4e\xaa\x53\xea\xa2\x3a\xa3\xce\xaa\x5f\xd4\x39" "\x75\x5e\x9d\x57\x17\xd5\x25\x75\x49\x5d\xfe\xb7\xd7\x40\x68\xd0\x52\x2b" "\xad\x75\xa0\x73\xe9\xdc\x3a\x46\xe7\xd1\xb1\xfa\x26\x1d\xa7\x6f\xd6\x79" "\x75\x3e\x1d\xd1\xb7\xe8\x78\x7d\xab\xce\xaf\x6f\xd3\x05\x74\x41\x5d\x48" "\x17\xd6\x09\xba\x88\x2e\xaa\x8d\x46\x6d\x35\xe9\x50\x17\xd3\xc5\x75\x54" "\xdf\xae\x4b\xe8\x3b\x74\xa2\x2e\xa9\x4b\xe9\xd2\xda\xe9\x32\xda\xeb\x72" "\xff\x54\x7e\x59\x5d\x4e\xff\x59\x7d\x6d\x74\x1b\xdd\x56\xb7\xd5\xed\x74" "\x3b\xdd\x41\x77\xd0\x1d\x75\x47\xdd\x49\x77\xd2\x49\x3a\x49\x77\xd6\x9d" "\x75\x17\xdd\x45\x77\xd5\x5d\x75\x37\xdd\x4d\x77\xd7\xdd\x75\x0f\xdd\x43" "\xf7\xd2\xbd\x74\x6f\xdd\x5b\xf7\xd1\x7d\x74\xb2\x4e\xd6\xfd\xf5\x9b\x7a" "\x80\x1e\xa8\x07\xe9\xc1\x7a\x88\x7e\x4b\x0f\xd5\x43\xf5\x30\x3d\x4c\xa7" "\xe8\x14\x3d\x42\x8f\xd0\x23\xf5\x48\x3d\x4a\x8f\xd2\xa3\xf5\x68\x3d\x56" "\x8f\xd5\xe3\xf4\x38\x3d\x41\x4f\xd0\x93\xf4\x24\x9d\xaa\x53\xf5\x14\x3d" "\x45\x4f\xd5\x53\xf5\x34\x3d\x4d\x4f\xd7\xd3\x75\x9a\x4e\xd3\xb3\xf4\x2c" "\x3d\x5b\xcf\xd6\x73\xf5\x5c\x3d\x4f\xcf\xd3\xf3\xf5\x7c\xbd\x50\x2f\xd4" "\xe9\x3a\x5d\x67\xe8\x0c\x9d\xa9\x33\xf5\x12\xbd\x44\x67\xe9\xa5\x7a\xa9" "\x5e\xae\x97\xeb\x95\x7a\xa5\x5e\xad\x57\xeb\xb5\x7a\xad\x5e\xaf\xd7\xeb" "\x8d\x7a\xa3\xce\xd2\x5b\xf4\x16\xbd\x4d\x6f\xd3\x3b\xf4\x0e\xbd\x4b\xef" "\xd2\x7b\xf4\x1e\xbd\x4f\xef\xd3\x07\xf4\x01\x7d\x50\x1f\xd4\x87\xf4\x21" "\x7d\x58\x1f\xd6\x47\xf4\x11\x9d\xad\xb3\xf5\x51\x7d\x54\x1f\xd3\xc7\xf4" "\x71\x7d\x5c\x9f\xd0\x27\xf4\x49\x7d\x52\x9f\xd6\xa7\xf5\x59\x7d\x56\x9f" "\xd3\xe7\xf4\x05\x7d\x41\x5f\xd2\x97\xf4\x65\x7d\x59\x5f\xd5\x57\xaf\x1d" "\xf6\x05\x32\x90\x81\x0e\x74\x90\x2b\xc8\x15\xc4\x04\x31\x41\x6c\x10\x1b" "\xc4\x05\x71\x41\xde\x20\x6f\x10\x09\x22\x41\x7c\x10\x1f\xe4\x0f\x6e\x0b" "\x0a\x04\x05\x83\x42\x41\xe1\x20\x21\x28\x12\x14\x0d\x4c\x80\x81\x0d\x28" "\x08\x83\x62\x41\xf1\x20\x1a\xdc\x1e\x94\x08\xee\x08\x12\x83\x92\x41\xa9" "\xa0\x74\xe0\x82\x32\x41\xd9\xa0\x5c\x50\x3e\xb8\x33\xa8\x10\xdc\x15\x54" "\x0c\xee\x0e\x2a\x05\xf7\x04\x95\x83\x2a\x41\xd5\xa0\x5a\x70\x6f\x50\x3d" "\xb8\x2f\xa8\x11\xdc\x1f\xd4\x0c\x1e\x08\x6a\x05\xb5\x83\x3a\x41\xdd\xe0" "\xc1\xa0\x5e\xf0\x50\x50\x3f\x78\x38\x68\x10\x3c\x12\x34\x0c\x1e\x0d\x1a" "\x05\x8f\x05\x8d\x83\xc7\x83\x26\xc1\x13\x41\xd3\xe0\xc9\xa0\x59\xf0\x54" "\xd0\x3c\x78\x3a\x68\x11\xb4\x0c\x5a\x05\xad\x83\x36\xff\xd2\xf9\xbd\x3f" "\x57\xf0\x59\xd7\xc7\xf4\x35\xc9\xa6\x9f\xe9\x6f\xde\x34\x03\xcc\x40\x33" "\xc8\x0c\x36\x43\xcc\x5b\x66\xa8\x79\xdb\x0c\x33\xef\x98\x14\x33\xdc\x8c" "\x30\xef\x9a\x91\xe6\x3d\x33\xca\xbc\x6f\x46\x9b\x31\x66\xac\xf9\xc0\x8c" "\x33\xe3\xcd\x04\x33\xd1\x4c\x32\x93\x4d\xaa\xf9\xd0\x4c\x31\x1f\x99\xa9" "\xe6\x63\x33\xcd\x7c\x62\xa6\x9b\x19\x26\xcd\xcc\x34\xb3\xcc\xa7\x66\xb6" "\x99\x63\xe6\x9a\xcf\xcc\x3c\xf3\xb9\x99\x6f\x16\x98\x85\x66\x91\x49\x37" "\x5f\x98\x0c\xb3\xd8\x64\x9a\x2f\xcd\x12\xf3\x95\xc9\x32\x4b\xcd\x32\xb3" "\xdc\xac\x30\x2b\xcd\x2a\xb3\xda\xac\x31\x6b\xcd\x3a\xb3\xde\x6c\x30\x1b" "\xcd\x26\xb3\xd9\x6c\x31\x5b\xcd\x36\xb3\xdd\xec\x30\x3b\xcd\x2e\xb3\xdb" "\xec\x31\x7b\xcd\x3e\xb3\xdf\x1c\x30\x5f\x9b\x83\xe6\x1b\x73\xc8\xfc\xc5" "\x1c\x36\xdf\x9a\x23\xe6\x3b\x93\x6d\xbe\x37\x47\xcd\x0f\xe6\x98\xf9\xd1" "\x1c\x37\x3f\x99\x13\xe6\x67\x73\xd2\x9c\x32\xa7\xcd\x19\x73\xd6\xfc\x62" "\xce\x99\xf3\xe6\x82\xb9\x68\x2e\x99\x5f\xcd\x65\x73\xc5\x5c\x35\xfe\xda" "\xc1\xfd\xb5\x8f\x77\xd4\xa8\x31\x17\xe6\xc2\x18\x8c\xc1\x58\x8c\xc5\x38" "\x8c\xc3\xbc\x98\x17\x23\x18\xc1\x78\x8c\xc7\xfc\x98\x1f\x0b\x60\x01\x2c" "\x84\x85\x30\x01\x13\xb0\x28\x16\xc5\x6b\x08\x09\x8b\x61\x31\x8c\x62\x14" "\x4b\x60\x09\x4c\xc4\x44\x2c\x85\xa5\xd0\xa1\xc3\xb2\x58\x16\xcb\x63\x79" "\xac\x80\x15\xb0\x22\x56\xc4\x4a\x58\x09\x2b\x63\x65\xac\x8a\x55\xf1\x5e" "\xbc\x17\xef\xc3\xfb\xf0\x7e\xbc\x1f\x1f\xc0\x07\xb0\x36\xd6\xc6\xba\x58" "\x17\xeb\x61\x3d\xac\x8f\xf5\xb1\x01\x36\xc0\x86\xd8\x10\x1b\x61\x23\x6c" "\x8c\x8d\xb1\x09\x36\xc1\xa6\xd8\x14\x9b\x61\x33\x6c\x8e\xcd\xb1\x05\xb6" "\xc0\x56\xd8\x0a\xdb\x60\x1b\x6c\x8b\x6d\xb1\x1d\xb6\xc3\x0e\xd8\x01\x3b" "\x62\x47\xec\x84\x9d\x30\x09\x93\xb0\x33\x76\xc6\x2e\xd8\x05\xbb\x62\x57" "\xec\x86\xdd\xb0\x3b\x76\xc7\x1e\xd8\x03\x7b\x61\x2f\xec\x8d\xbd\xb1\x0f" "\xf6\xc1\x64\x4c\xc6\xfe\xd8\x1f\x07\xe0\x00\x1c\x84\x83\x70\x08\x0e\xc1" "\xa1\x38\x14\x87\xe1\x30\x4c\xc1\x14\x1c\x81\x23\x70\x24\x8e\xc4\x51\x38" "\x0a\x47\xe3\x18\x1c\x8b\x1f\xe0\x38\x1c\x8f\x13\x70\x22\x4e\xc2\xc9\x98" "\x8a\xa9\x38\x05\xa7\xe0\x54\x9c\x8a\xd3\x70\x1a\x4e\xc7\xe9\x98\x86\x69" "\x38\x0b\x67\xe1\x6c\x9c\x8d\x73\x71\x2e\xce\xc3\x79\x38\x1f\xe7\xe3\x42" "\x5c\x88\xe9\x98\x8e\x19\x98\x81\x99\x98\x89\x4b\x70\x09\x66\x61\x16\x2e" "\xc3\x65\xb8\x02\x57\xe0\x2a\x5c\x85\x6b\x70\x0d\xae\xc3\x75\xb8\x01\x37" "\xe0\x26\xdc\x84\x5b\x70\x0b\x6e\xc3\x6d\xb8\x03\x77\xe0\x2e\xdc\x85\x7b" "\x70\x0f\xee\xc3\x7d\x78\x00\x0f\xe0\x41\x3c\x88\x87\xf0\x10\x1e\xc6\xc3" "\x78\x04\x8f\x60\x36\x66\xe3\x51\x3c\x8a\xc7\xf0\x18\x1e\xc7\xe3\x78\x02" "\x4f\xe0\x49\x3c\x89\xa7\xf1\x34\x9e\xc5\xb3\x78\x0e\xcf\xe1\x05\xbc\x80" "\x97\xf0\x57\xbc\x8c\x57\xf0\x2a\x7a\x8c\xb1\x79\x6c\xac\xbd\xc9\xc6\xd9" "\x9b\x6d\x5e\x9b\xcf\xfe\x7d\x5c\xc8\x16\xb6\x09\xb6\x88\x2d\x6a\x8d\x2d" "\x60\x0b\xfe\x4d\x8c\xd6\xda\x44\x5b\xd2\x96\xb2\xa5\xad\xb3\x65\x6c\x59" "\x5b\xee\x0f\x71\x65\x5b\xc5\x56\xb5\xd5\xec\xbd\xb6\xba\xbd\xcf\xd6\xf8" "\x43\x5c\xcf\x3e\x64\xeb\xdb\x87\x6d\x03\xfb\x88\xad\x6b\x1f\xfc\x9b\xb8" "\xa1\x7d\xd4\x36\xb2\x4f\xd9\xc6\xf6\x69\xdb\xc4\xb6\xb4\x4d\x6d\x6b\xdb" "\xcc\x3e\x65\x9b\xdb\xa7\x6d\x0b\xdb\xd2\xb6\xb2\xad\x6d\x47\xfb\xbc\xed" "\x64\x5f\xb0\x49\xf6\x45\xdb\xd9\xbe\xf4\x87\x38\xc3\x2e\xb6\x6b\xec\x5a" "\xbb\xce\xae\xb7\xfb\xec\x7e\x7b\xc1\x5e\xb4\xc7\xec\x8f\xf6\x92\xfd\xd5" "\xf6\xb1\x7d\xed\x10\xfb\x96\x1d\x6a\xdf\xb6\xc3\xec\x3b\x36\xc5\x0e\xff" "\x43\x3c\xd6\x7e\x60\xc7\xd9\xf1\x76\x82\x9d\x68\x27\xd9\xc9\x7f\x88\xa7" "\xdb\x19\x36\xcd\xce\xb4\xb3\xec\xa7\x76\xb6\x9d\xf3\x87\x38\xdd\x7e\x61" "\xe7\xd9\x4c\x3b\xdf\x2e\xb0\x0b\xed\xa2\xdf\xe2\x6b\x35\x65\xda\x2f\xed" "\x12\xfb\x95\xcd\xb2\x4b\xed\x32\xbb\xdc\xae\xb0\x2b\xed\x2a\xbb\xfa\x7f" "\xd6\xba\xdc\x6e\xb4\x9b\xec\x66\xbb\xc7\xee\xb5\xdb\xec\x76\xbb\xc3\xee" "\xb4\xbb\xec\xee\xdf\xe2\x6b\xeb\x38\x60\xbf\xb6\x07\xed\x37\xf6\xa8\xfd" "\xc1\x1e\xb6\xdf\xda\x23\xf6\xb8\xcd\xb6\xdf\xff\x16\x5f\x5b\xdf\x71\xfb" "\x93\x3d\x61\x7f\xb6\x27\xed\x29\x7b\xda\x9e\xb1\x67\xed\x2f\xf6\x9c\x3d" "\xff\xdb\xfa\xaf\xad\xfd\x8c\xbd\x62\xaf\x5a\x6f\x05\x01\x49\x52\xa4\x29" "\xa0\x5c\x94\x9b\x62\x28\x0f\xc5\xd2\x4d\x14\x47\x37\x53\x5e\xca\x47\x11" "\xba\x85\xe2\xe9\x56\xca\x4f\xb7\x51\x01\x2a\x48\x85\xa8\x30\x25\x50\x11" "\x2a\x4a\x86\x90\x2c\x11\x85\x54\x8c\x8a\x53\x94\x6e\xa7\x12\x74\x07\x25" "\x52\x49\x2a\x45\xa5\xc9\x51\x19\x2a\x4b\xe5\xa8\x3c\xdd\x49\x15\xe8\x2e" "\xaa\x48\x77\x53\x25\xba\x87\x2a\x53\x15\xaa\x4a\xd5\xe8\x5e\xaa\x4e\xf7" "\x51\x0d\xba\x9f\x6a\xd2\x03\x54\x8b\x6a\x53\x1d\xaa\x4b\x0f\x52\x3d\x7a" "\x88\xea\xd3\xc3\xd4\x80\x1e\xa1\x86\xf4\x28\x35\xa2\xc7\xa8\x31\x3d\x4e" "\x4d\xe8\x09\x6a\x4a\x4f\x52\x33\x7a\x8a\x9a\xd3\xd3\xd4\x82\x5a\x52\x2b" "\x6a\x4d\x6d\xe8\x19\x6a\x4b\xcf\x52\x3b\x6a\x4f\x1d\xe8\x39\xea\x48\xcf" "\x53\x27\x7a\x81\x92\xe8\x45\xea\x4c\x2f\x51\x17\x7a\x99\xba\xd2\x2b\xd4" "\x8d\x5e\xa5\xee\xf4\x1a\xf5\xa0\x9e\xd4\x8b\x5e\xa7\xde\xf4\x06\xf5\xa1" "\xbe\x94\x4c\xfd\xa8\x3f\xbd\x49\x03\x68\x20\x0d\xa2\xc1\x34\x84\xde\xa2" "\xa1\xf4\x36\x0d\xa3\x77\x28\x85\x86\xd3\x08\x7a\x97\x46\xd2\x7b\x34\x8a" "\xde\xa7\xd1\x34\x86\xc6\xd2\x07\x34\x8e\xc6\xd3\x04\x9a\x48\x93\x68\x32" "\xa5\xd2\x87\x34\x85\x3e\xa2\xa9\xf4\x31\x4d\xa3\x4f\x68\x3a\xcd\xa0\x34" "\x9a\x49\xb3\xe8\x53\x9a\x4d\x73\x68\x2e\x7d\x46\xf3\xe8\x73\x9a\x4f\x0b" "\x68\x21\x2d\xa2\x74\xfa\x82\x32\x68\x31\x65\xd2\x97\xb4\x84\xbe\xa2\x2c" "\x5a\x4a\xcb\x68\x39\xad\xa0\x95\xb4\x8a\x56\xd3\x1a\x5a\x4b\xeb\x68\x3d" "\x6d\xa0\x8d\xb4\x89\x36\xd3\x16\xda\x4a\xdb\x68\x3b\xed\xa0\x9d\xb4\x8b" "\x76\xd3\x1e\xda\x4b\xfb\x68\x3f\x1d\xa0\xaf\xe9\x20\x7d\x43\x87\xe8\x2f" "\x74\x98\xbe\xa5\x23\xf4\x1d\x65\xd3\xf7\x74\x94\x7e\xa0\x63\xf4\x23\x1d" "\xa7\x9f\xe8\x04\xfd\x4c\x27\xe9\x14\x9d\xa6\x33\x74\x96\x7e\xa1\x73\x74" "\x9e\x2e\xd0\x45\xba\x44\xbf\xd2\x65\xba\x42\x57\xc9\x93\x08\x21\x94\xa1" "\x0a\x75\x18\x84\xb9\xc2\xdc\x61\x4c\x98\x27\x8c\x0d\x6f\x0a\xe3\xc2\x9b" "\xc3\xbc\x61\xbe\x30\x12\xde\x12\xc6\x87\xb7\x86\xf9\xc3\xdb\xc2\x02\x61" "\xc1\xb0\x50\x58\x38\x4c\x08\x8b\x84\x45\x43\x13\x62\x68\x43\x0a\xc3\xb0" "\x58\x58\x3c\x8c\x86\xb7\x87\x25\xc2\x3b\xc2\xc4\xb0\x64\x58\x2a\x2c\x1d" "\xba\xb0\x4c\x58\x36\x2c\x17\x96\x0f\xef\x0c\x2b\x84\x77\x85\x15\xc3\xbb" "\xc3\x4a\xe1\x3d\x61\xe5\xb0\x4a\xf8\xd4\x23\xd5\xc2\x7b\xc3\xea\xe1\x7d" "\x61\x8d\xf0\xfe\xb0\x66\xf8\x40\x58\x2b\xac\x1d\xd6\x09\xeb\x86\x0f\x86" "\xf5\xc2\x87\xc2\xfa\xe1\xc3\x61\x83\xf0\x91\xb0\x42\xf8\x68\xd8\x28\x7c" "\x2c\x6c\x1c\x3e\x1e\x36\x09\x9f\x08\x9b\x86\x4f\x86\xcd\xc2\xa7\xc2\xe6" "\xe1\xd3\x61\x8b\xb0\x65\xd8\x2a\x6c\x1d\xb6\x09\x9f\x09\xdb\x86\xcf\x86" "\xed\xc2\xf6\x61\x87\xf0\xb9\xb0\x63\xf8\x7c\xd8\x29\x7c\x21\x4c\x0a\x5f" "\x0c\x3b\x87\x2f\xfd\xe9\xfe\xe4\xb0\x5f\xd8\x3f\x7c\x33\x7c\x33\xf4\xfe" "\x61\xb5\x30\xba\x28\x9a\x1e\xfd\x22\x9a\x11\x5d\x1c\xcd\x8c\x7e\x19\x5d" "\x12\xfd\x2a\x9a\x15\x5d\x1a\x5d\x16\x5d\x1e\x5d\x11\x5d\x19\x5d\x15\x5d" "\x1d\x5d\x13\x5d\x1b\x5d\x17\x5d\x1f\xdd\x10\xdd\x18\xdd\x14\xdd\x1c\xf5" "\xbe\x6e\x6e\xe1\xc0\x49\xa7\x9c\x76\x81\xcb\xe5\x72\xbb\x18\x97\xc7\xc5" "\xba\x9b\x5c\x9c\xbb\xd9\xe5\x75\xf9\x5c\xc4\xdd\xe2\xe2\xdd\xad\x2e\xbf" "\xbb\xcd\x15\x70\x05\x5d\x21\x57\xd8\x25\xb8\x22\xae\xa8\x33\x0e\x9d\x75" "\xe4\x42\x57\xcc\x15\x77\x51\x77\xbb\x2b\xe1\xee\x70\x89\xae\xa4\x2b\xe5" "\x4a\x3b\xe7\xca\xb8\xb2\xae\xb5\x6b\xe3\xda\xb8\xb6\xee\x59\xd7\xce\xb5" "\x77\x1d\xdc\x73\xee\x39\xf7\xbc\x7b\xde\xbd\xe0\x5e\x70\x2f\xba\xce\xee" "\x25\xd7\xc5\xbd\xec\xba\xba\x57\x5c\x37\xf7\xaa\x7b\xd5\xbd\xe6\x7a\xb8" "\x9e\xae\x97\x7b\xdd\xf5\x76\x6f\xb8\x3e\xae\xaf\x4b\x76\xc9\xae\xbf\xeb" "\xef\x06\xb8\x01\x6e\x90\x1b\xe4\x86\xb8\x21\x6e\xa8\x1b\xea\x86\xb9\x61" "\x2e\xc5\xa5\xb8\x11\x6e\x84\x1b\xe9\x46\xba\x51\x6e\x94\x1b\xed\x46\xbb" "\xb1\x6e\xac\x1b\xe7\xc6\xb9\x09\x6e\x82\x9b\xe4\x26\xb9\x54\x97\xea\xa6" "\xb8\x29\x6e\xaa\x9b\xea\xa6\xb9\x69\x7a\xba\x9b\xee\xd2\x5c\x9a\x9b\xe5" "\x66\xb9\xd9\x6e\xb6\x9b\xeb\xe6\xba\x79\x89\xf3\xdc\x7c\x37\xdf\x2d\x74" "\x0b\x5d\xba\x4b\x77\x19\x2e\xc3\x65\xba\x4c\xb7\xc4\x2d\x71\x59\x2e\xcb" "\x2d\x73\xcb\xdc\x0a\xb7\xc2\xad\x72\xab\xdc\x1a\xb7\xc6\xad\x73\xeb\xdc" "\x06\xb7\xc1\x6d\x72\x9b\xdc\x16\xb7\xc5\x6d\x73\xdb\xdc\x0e\xb7\xc3\xed" "\x72\xbb\xdc\x1e\xb7\xc7\xed\x73\xfb\xb4\x70\x07\xdc\x41\x77\xd0\x1d\x72" "\x87\xdc\x61\x77\xd8\x1d\x71\xdf\xb9\x6c\xf7\xbd\x3b\xea\x7e\x70\xc7\xdc" "\x8f\xee\xb8\xfb\xc9\x9d\x70\x3f\xbb\x93\xee\x94\x3b\xed\xce\xb8\xb3\xee" "\x17\x77\xce\x9d\x77\x17\xdc\x45\x77\xc9\xfd\xea\x2e\xbb\x2b\xee\xaa\xf3" "\x2e\x35\xf2\x61\x64\x4a\xe4\xa3\xc8\xd4\xc8\xc7\x91\x69\x91\x4f\x22\xd3" "\x23\x33\x22\x69\x91\x99\x91\x59\x91\x4f\x23\xb3\x23\x73\x22\x73\x23\x9f" "\x45\xe6\x45\x3e\x8f\xcc\x8f\x2c\x88\x2c\x8c\x2c\x8a\xa4\x47\xbe\x88\x64" "\x44\x16\x47\x32\x23\x5f\x46\x96\x44\xbe\x8a\x64\x45\x96\x46\x96\x45\x96" "\x47\x56\x44\x56\x46\xbc\x2f\xb2\x2d\xf4\xc5\x7c\x71\x1f\xf5\xb7\xfb\x12" "\xfe\x0e\x9f\xe8\x4b\xfa\x52\xbe\xb4\x77\xbe\x8c\x2f\xeb\xcb\xf9\xf2\xfe" "\x4e\x5f\xc1\xdf\xe5\x2b\xfa\xbb\x7d\x25\x7f\x8f\xaf\xec\xab\xf8\xaa\xfe" "\x69\xdf\xc2\xb7\xf4\xad\x7c\x6b\xdf\xc6\x3f\xe3\xdb\xfa\x67\x7d\x3b\xdf" "\xde\x77\xf0\xcf\xf9\x8e\xfe\x79\xdf\xc9\xbf\xe0\x93\xfc\x8b\xbe\xb3\x7f" "\xc9\x77\xf1\x2f\xfb\xae\xfe\x15\xdf\xcd\xbf\xea\xbb\xfb\xd7\x7c\x0f\xdf" "\xd3\xf7\xf2\xaf\xfb\xde\xfe\x0d\xdf\xc7\xf7\xf5\xc9\xbe\x9f\xef\xef\xdf" "\xf4\x03\xfc\x40\x3f\xc8\x0f\xf6\x43\xfc\x5b\x7e\xa8\x7f\xdb\x0f\xf3\xef" "\xf8\x14\x3f\xdc\x8f\xf0\xef\xfa\x91\xfe\x3d\x3f\xca\xbf\xef\x47\xfb\x31" "\x7e\xac\xff\xc0\x8f\xf3\xe3\xfd\x04\x3f\xd1\x4f\xf2\x93\x7d\xaa\xff\xd0" "\x4f\xf1\x1f\xf9\xa9\xfe\x63\x3f\xcd\x7f\xe2\xa7\xfb\x19\x3e\xcd\xcf\xf4" "\xb3\xfc\xa7\x7e\xb6\x9f\xe3\xe7\xfa\xcf\xfc\x3c\xff\xb9\x9f\xef\x17\xf8" "\x85\x7e\x91\x4f\xf7\x5f\xf8\x0c\xbf\xd8\x67\xfa\x2f\xfd\x12\xff\x95\xcf" "\xf2\x4b\xfd\x32\xbf\xdc\xaf\xf0\x2b\xfd\x2a\xbf\xda\xaf\xf1\x6b\xfd\x3a" "\xbf\xde\x6f\xf0\x1b\xfd\x26\xbf\xd9\x6f\xf1\x5b\xfd\x36\xbf\xdd\xef\xf0" "\x3b\xfd\x2e\xbf\xdb\xef\xf1\x7b\xfd\x3e\xbf\xdf\x1f\xf0\x5f\xfb\x83\xfe" "\x1b\x7f\xc8\xff\xc5\x1f\xf6\xdf\xfa\x23\xfe\x3b\x9f\xed\xbf\xf7\x47\xfd" "\x0f\xfe\x98\xff\xd1\x1f\xf7\x3f\xf9\x13\xfe\x67\x7f\xd2\x9f\xf2\xa7\xfd" "\x19\x7f\xd6\xff\xe2\xcf\xf9\xf3\xfe\x82\xbf\xe8\x2f\xf9\x5f\xfd\x65\x7f" "\xc5\x5f\xf5\xde\xdf\xc0\x8b\xe8\x8c\x31\xc6\x18\x63\xff\xdf\x50\x7f\xb2" "\x5f\xfe\x83\xfb\xfe\x7a\x7f\x7f\x21\xc4\xcd\xdb\x0b\x67\xff\xfd\x9c\x1b" "\x0a\xfc\x3e\x1e\x28\x13\x3a\x46\x84\x10\x2f\xf6\xed\xfe\xc4\x5f\xb7\x5a" "\xb5\x92\x93\xff\xfa\x53\x02\x59\x4a\x04\xc5\x17\x08\x21\x22\xd7\xf3\x73" "\x89\xeb\xf1\x52\xd1\x41\x3c\x2f\x92\x44\x7b\x51\xfe\x3f\xac\x6f\xa0\xec" "\x79\x89\xfe\x64\xfe\xe8\xdd\x42\xc4\xfe\xbb\x9c\x18\x71\x3d\xbe\x3e\xff" "\x9d\xff\x60\xfe\x67\x9e\x1b\x9b\x51\x29\xbc\x10\xff\xbf\x98\x7f\x81\x10" "\x89\xc5\xaf\xe7\xe4\x11\xd7\xe3\xa5\xa2\xc3\x6f\xdf\xd1\xb6\x17\x15\xfe" "\xc1\xfc\x05\xdb\xfe\x49\xfd\x79\xbe\x4d\x15\xa2\xdd\xbf\xcb\x89\x13\xd7" "\xe3\x6b\xf5\xfb\x7c\xbf\x8f\x9f\x15\x2f\x89\xa4\xbf\x79\x24\x63\x8c\x31" "\xc6\x18\x63\x8c\x31\xf6\xbb\x81\xb2\x6a\xd7\x3f\x3b\x7f\xbe\x76\x7e\x9e" "\xa0\xaf\xe7\xe4\x16\xd7\xe3\x3f\x3b\x3f\x67\x8c\x31\xc6\x18\x63\x8c\x31" "\xc6\xd8\x8d\xf7\x4a\xcf\x5e\x2f\x3c\x93\x94\xd4\xbe\x2b\x0f\x78\xc0\x83" "\xff\xb7\x06\xea\x46\xfe\x79\xde\xe8\xff\x4c\x8c\x31\xc6\x18\x63\x8c\xb1" "\x7f\xb5\xeb\x07\xfd\x37\xba\x12\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31" "\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63" "\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x2c\xe7\xfa\xaf\xf8\x39\xb1\x1b" "\xbd\x46\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6" "\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c" "\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\xec\x46\xfb\x1f" "\x01\x00\x00\xff\xff\x32\xd6\x30\x3b", 5373); syz_mount_image(0x20001500, 0x20000140, 0x800, 0x20000200, 1, 0x14fb, 0x20001540); memcpy((void*)0x200001c0, "/dev/loop", 9); *(uint8_t*)0x200001c9 = 0x30; *(uint8_t*)0x200001ca = 0; syscall(__NR_quotactl, 0xffffffff80000801ul, 0x200001c0ul, 0, 0ul); } int main(void) { syscall(__NR_mmap, 0x1ffff000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 7ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x21000000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); loop(); return 0; }