// https://syzkaller.appspot.com/bug?id=5689aff48689f3ca418d44391fe4a4390a1ac21a // 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 static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } 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; } 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 setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); } #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); } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { int i, call, thread; for (call = 0; call < 7; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 45); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { 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 < 5 * 1000) continue; kill_and_wait(pid, &status); break; } } } uint64_t r[2] = {0xffffffffffffffff, 0x0}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x20000400, "./file0\000", 8); syscall(__NR_mkdir, 0x20000400ul, 0ul); break; case 1: memcpy((void*)0x20002080, "/dev/fuse\000", 10); res = syscall(__NR_openat, 0xffffffffffffff9cul, 0x20002080ul, 0x42ul, 0ul); if (res != -1) r[0] = res; break; case 2: memcpy((void*)0x200042c0, "./file0\000", 8); memcpy((void*)0x20002000, "fuse\000", 5); memcpy((void*)0x20002140, "fd", 2); *(uint8_t*)0x20002142 = 0x3d; sprintf((char*)0x20002143, "0x%016llx", (long long)r[0]); *(uint8_t*)0x20002155 = 0x2c; memcpy((void*)0x20002156, "rootmode", 8); *(uint8_t*)0x2000215e = 0x3d; sprintf((char*)0x2000215f, "%023llo", (long long)0x4000); *(uint8_t*)0x20002176 = 0x2c; memcpy((void*)0x20002177, "user_id", 7); *(uint8_t*)0x2000217e = 0x3d; sprintf((char*)0x2000217f, "%020llu", (long long)0); *(uint8_t*)0x20002193 = 0x2c; memcpy((void*)0x20002194, "group_id", 8); *(uint8_t*)0x2000219c = 0x3d; sprintf((char*)0x2000219d, "%020llu", (long long)0); *(uint8_t*)0x200021b1 = 0x2c; *(uint8_t*)0x200021b2 = 0; syscall(__NR_mount, 0ul, 0x200042c0ul, 0x20002000ul, 0ul, 0x20002140ul); break; case 3: res = syscall(__NR_read, r[0], 0x20004340ul, 0x2020ul); if (res != -1) r[1] = *(uint64_t*)0x20004348; break; case 4: memcpy( (void*)0x20006a40, "\xe1\xac\x8f\x69\x98\xf8\xca\xb4\x10\xe7\x4d\x21\x80\x55\x41\x24\x9c" "\x5b\x37\x2a\x55\x52\xdf\xb8\x54\x7b\x1b\xd2\x8d\x35\x0f\xdc\x53\x1b" "\x6f\x1c\x08\x9f\xb9\x1d\x3e\xd7\xe1\x21\xe7\x66\xa6\x46\x10\xd7\x83" "\xe4\x78\x50\xfd\x9d\x7a\xc0\x7e\x13\x9f\x9b\x96\x38\x8b\xe0\x80\x3b" "\x37\x70\x09\x39\x0c\xe8\x4e\xfc\x7a\x36\xc4\x23\x99\x65\x4a\x38\x8d" "\xcf\x04\x74\x81\x49\x62\x72\xe4\xcf\xd0\x18\xcb\xb0\xcc\x02\x6d\x7e" "\x70\x31\x2f\xcd\x28\x2d\x61\xf9\x54\xe2\xe6\xe0\x4c\xfa\x80\x5f\xeb" "\x3e\x20\x77\x92\x49\x20\x05\xd3\x28\x8c\x84\x4a\x41\xd1\x02\x10\xbf" "\x66\x2e\x61\x8c\x1b\x16\xc8\xcb\xa3\xe5\x05\x69\x96\xc8\x8d\xd6\x4c" "\xb7\x91\xe7\x94\xe3\x69\x7d\x68\x53\x6d\xfd\x97\x66\x97\x50\xb9\xa8" "\x6c\x0a\x02\xab\xb7\xfa\x35\x48\xe8\x11\x40\x95\x12\x3e\x50\x96\xfc" "\x26\xea\x99\xb2\xbe\xb7\x08\x8f\x1c\x9a\x2b\xa9\x4f\x64\x4b\x45\xca" "\x43\x58\xab\xb5\x37\x9d\x3b\x1b\xef\xbe\x9e\x31\xae\x9e\x82\x2b\xe4" "\xd9\x15\xaa\x7e\x89\xbb\x23\xa4\x9c\x05\x54\x88\x10\xbf\x11\x0f\xa6" "\x32\x8b\x7b\x2d\x4d\x9d\xb2\xed\xd1\xb2\x4c\xd6\xe0\x16\x52\x62\x24" "\xfe\xf5\x3c\x98\xcf\x00\x2b\x0f\x48\x74\x69\xf1\x1a\x58\x9e\x38\xf1" "\xd3\x65\xef\x1a\xa3\xdf\xb6\xbc\xe3\x8c\x35\xc7\x36\x26\xe0\x6d\xd6" "\xe7\xb3\x85\x96\x4b\xb5\xfe\x05\x1a\x43\x6f\x2f\xf1\x28\xaf\xd7\x0f" "\xc1\x27\x0c\x59\xa7\x5e\xa5\x7d\xd3\x86\xe6\xa9\x06\xd8\xf4\x22\xd4" "\xd5\x66\xb6\xc3\x55\x0e\x30\x12\xdf\x82\x5c\x05\x2d\x37\x43\x3a\xe8" "\xdd\x7c\x3b\xcd\x66\x77\x65\x5c\x4a\x68\x85\x94\x3d\x84\xcd\xe6\x1d" "\x7f\x88\x83\x17\x0f\x95\x3e\x49\xa1\xe6\xbc\x11\x9b\xce\x13\x0c\x88" "\x35\x1d\xde\x6d\x91\x4b\x3c\xa5\x51\xf6\x27\x49\x9e\xb5\x41\x3d\x7e" "\x1f\xc5\xc9\x6e\x75\x4f\x2e\x54\x67\x28\xf5\x62\xb2\xb1\xe4\xe2\xba" "\x49\xe5\xd1\x39\x86\x6f\x2c\x0e\x9a\x8c\x44\x3e\xb4\x7a\x4f\x87\x1b" "\x1d\x82\xd0\xaf\xb2\x90\x7f\x6a\x5e\x3e\x21\x9b\x0a\x2e\x88\x20\xef" "\x55\x2d\xb1\x4f\x09\xe9\xea\x8f\x76\xbf\xfe\xd3\x43\xa4\xd9\x08\x6a" "\xe3\xdf\xd6\xb5\xcc\xc0\x23\x80\x41\xca\x5b\x6f\x06\xf8\xfe\x9d\x84" "\x0d\xeb\x31\x25\x65\x8a\x1c\x83\x5e\x68\x0b\xbb\x44\xd8\xe0\x6c\x40" "\xc5\x7b\xa8\x4f\xdc\x09\xd8\x32\xa2\x5b\x89\xcc\x2f\x55\xa3\xd9\x4a" "\xf8\x76\x63\x5b\xac\x0f\x0f\x05\x5f\xd5\x49\xb9\x3e\x61\x45\x56\x2d" "\x02\xac\xb1\xb2\x8c\x72\xbc\x45\x46\x90\x0d\x5a\xff\xdd\x98\x41\xd2" "\x4c\x0b\xc9\x9b\xe1\xb1\xc2\x10\xcf\xe5\x90\x53\x49\xaf\x62\x85\x47" "\x2c\xec\xdd\xe7\xf8\xd2\xb7\x68\x50\x89\x89\x3f\xee\x91\xcb\x61\xb3" "\xf2\xf8\xec\x56\xc1\x03\x15\x11\x58\x45\xa6\x92\x02\x80\xcc\x17\x47" "\x57\x8d\xd2\xe3\x39\xfe\xf1\x20\xbd\x3c\xb3\x7e\xe7\xda\xc6\xad\xd2" "\xe1\xa8\x30\x4b\xb5\xb4\x99\xe6\xb2\x8c\x8d\x21\xf0\x74\xaf\x23\x38" "\xfd\x37\xdd\xff\x33\xe1\x23\x73\x58\x7d\x39\xd8\x81\xb7\xd6\xb3\xc6" "\xa5\x74\xf5\xbf\x8f\x78\xb2\xe2\xec\x61\xce\xab\x2e\x16\x06\x3e\xda" "\xf9\xe0\x44\xdd\x0e\x10\xe6\x66\xdf\x48\xa9\x30\x9a\x22\xbb\x1e\xee" "\xa2\x98\xe2\x4b\x6f\x4a\x92\xc5\x74\xe4\xc4\xd2\x0d\xb8\xef\xd1\xd0" "\x7e\x90\x66\x9f\x7f\xca\x5b\x2f\x36\x60\xab\xa0\x0c\x3b\x5d\x56\x49" "\x1d\xb6\x27\x06\x31\xef\xca\x37\x89\xf7\x1e\xe9\x12\x64\x1c\x6b\x51" "\x8b\xe9\xb2\xff\x42\x51\x0b\x64\x51\x44\xdb\x1b\xd6\x34\x5a\x8b\xb8" "\x9a\xd6\xb6\xd5\x0a\x6b\xf3\xb2\x4c\xeb\x3e\x57\x72\xd6\xbf\x74\x4f" "\xaa\x43\xe4\xfb\xbc\xd9\xa0\x3e\xca\xf2\x14\x31\x39\x39\x57\x4e\x90" "\x45\x2d\xbf\x4c\x6c\xed\xa5\x21\x43\xaf\x6c\x45\xdf\x29\xfa\xf7\x14" "\xe5\x0a\x3c\xce\x4c\xb7\x1b\x0b\xaa\x92\xd5\xd7\x9d\x58\x89\x4e\x78" "\x70\x87\x26\xb8\x59\x80\xe2\x70\xae\x51\x10\x74\x2c\x5e\x59\xe1\x0f" "\x03\x4f\x90\x79\xec\x4d\x5b\xc8\x27\x61\x98\x30\x71\x7a\x0d\xf9\xae" "\x51\xa4\xe5\xbe\x08\x0d\xd9\xf5\x27\xaa\xa8\xcb\x91\xf8\xbd\x65\xe6" "\x47\x82\x9c\x1b\x57\xa3\xf0\x0b\x78\x5b\x74\xa5\x52\x4c\xc9\xe1\x51" "\xb2\x98\x64\x14\xd8\xeb\x7b\xcf\x0c\x93\xf9\x64\x09\xa3\xfa\x45\x6e" "\xee\xfb\x3d\xf7\x42\xa3\x11\x15\x9c\x08\x55\x49\x99\xa9\xc3\x30\x5a" "\x24\x4a\xf1\xc9\x46\x75\x21\xb9\xba\xe0\x83\xa2\x81\x95\xcc\xca\x94" "\xe8\x29\xf2\x24\x5f\x6a\x16\x13\x9d\x23\x82\x92\x0e\x16\x5d\x88\x84" "\x65\x08\xf4\x2c\xb3\xf5\xdf\xd0\x4a\x41\xcb\xe2\x51\x95\x3c\x06\xe0" "\x66\xbc\xda\x08\x86\x3c\xdb\xf7\xfe\x49\x6d\x34\xd5\x2a\x1a\xca\xe7" "\x95\x59\x5c\x78\xfd\x58\x39\x68\xec\xca\x34\x9c\x09\xd8\x2d\x8a\xe1" "\xa1\xb9\x3d\x1a\x28\x37\xb3\xbd\x16\x36\x26\x95\x64\xbb\x06\x94\x11" "\x27\xc6\xe4\x51\x61\x4f\xa9\xa7\x2d\x9b\x73\x5a\x75\xf5\xa7\x6f\x26" "\xe0\x29\xad\x42\x39\xde\x75\xaa\x6c\x52\x13\x04\x86\x67\xeb\xa6\x57" "\x7a\x2f\xbc\x36\x0b\x6a\xc1\xe8\xc6\x1c\xb7\xd7\x28\xbe\xff\xb0\xc3" "\xd5\x08\x8a\x7d\x98\xa8\x27\x22\x04\xa8\x2f\x59\xe5\x89\x89\xae\xb4" "\x02\x8c\x0b\x84\x20\x65\x3b\x26\x49\x8e\xbd\x51\x3a\xa7\x06\xa9\xbd" "\x18\xdb\x82\x33\xd5\x76\x1a\x8a\x1e\xcb\x3a\xe2\x28\xe8\xde\x68\xa5" "\xbd\x61\xa9\x44\x94\x51\xc7\x18\x56\x6c\x01\xd6\xcd\x3e\xaa\x6f\xf1" "\x59\x04\xc8\xe3\xab\x64\xfe\xef\xe9\x11\x9c\x46\xf2\x5d\x15\x65\xc2" "\x02\x74\xa8\x33\xf9\x68\x3e\xc5\x7f\x6f\x18\x41\x90\xf6\x81\xe2\x3e" "\x41\xa6\x63\x8d\x80\xcc\xe2\xff\xa6\x68\x69\x09\x3b\x91\x95\x1a\xf2" "\x5d\x39\x5c\x49\x0e\xec\x08\x24\x3a\x87\xf8\xcb\xfa\x0e\x67\xaf\x03" "\x92\xd9\x49\xaf\x60\x13\xe9\xfd\xee\x64\xd0\x55\x73\xb6\x47\xa9\x3d" "\x38\xfe\xee\xa7\xb8\x40\x17\xcf\x45\xf9\x65\x04\xdf\x89\x72\x3b\x3a" "\xc1\x8a\x30\x32\x86\xc0\x14\x5d\xae\xd4\xfc\x33\xd9\x4a\x1f\xda\x5a" "\x5f\x47\x3c\x48\xd9\xcb\x04\x68\x7e\xf3\x09\x0e\x95\xe9\x1d\x0a\x98" "\xf1\x88\x1f\x1c\x62\xd1\x68\x4d\xdf\xd1\x54\x14\x37\xfc\x9d\x51\x03" "\x5c\xba\x8b\x58\x36\x26\x21\xb6\x60\x1c\x6d\x44\xd8\x06\x5c\x46\xee" "\xf0\x3b\x59\xe3\xa2\xe5\x7e\x81\xe6\xc9\xa9\x5c\x22\x3d\x8e\xf2\xd7" "\x47\x44\x66\x45\x2d\x2a\x54\xd4\x4d\xe2\x88\x09\x62\x11\x71\xff\xf2" "\x14\xe0\x6c\xdc\xc1\x73\xc4\xfd\x57\x5f\x34\xe8\xf3\xbb\x40\x5f\xb9" "\x1f\xf6\x3e\x58\x70\x5f\xbd\xae\xfd\x08\x02\x0d\xfb\x7e\x8c\x02\x66" "\x97\xb8\x19\x4c\x25\xea\xa7\x53\xc4\x75\x19\xcb\x27\x55\xa7\x2a\xd5" "\x92\x63\x83\xed\xf4\x00\x97\xa7\x41\x51\x64\x16\xbb\xd7\x7a\x78\xbc" "\xa8\x75\x0f\x72\x76\x80\x3c\x9c\x47\x73\x5f\x14\xb7\x7a\x84\xcd\xbf" "\x43\xe5\xe5\x56\x84\x0a\xdd\x6a\x24\xd9\x51\x27\x45\xdf\x87\xfb\xce" "\x8c\x9c\x6f\x8b\xef\x18\xfc\x53\x7a\xb3\x61\x17\x5b\xdf\x77\x54\x22" "\x00\x37\x2e\x83\xf4\xb7\xb7\x99\x1c\xf7\xec\xdf\x12\x7c\xab\x83\x06" "\xa7\x83\xe5\xc2\x0b\xd5\xb8\x3b\x49\xb7\x45\x22\x07\x0b\x1a\x5b\x82" "\x29\xb4\xce\xfb\x3a\xb2\xa4\x21\x73\x3f\x3f\xd3\xf2\xdb\xc6\x69\x7e" "\xdd\xd2\x9f\xcc\x3b\xdc\x09\xae\x06\x72\x05\x57\x57\x24\x3b\xe8\x20" "\xd0\x81\x00\xf7\x29\x5d\x6e\x85\xfe\x4b\xbd\x9d\xf7\xbf\xdc\x41\x6a" "\x03\x08\x9b\xbd\x3f\xe5\x63\x76\x64\x3d\x5a\xd9\x7a\x3f\xf1\xca\x04" "\xf9\x3b\x8a\xd6\x9a\x01\x08\x73\x4c\x9c\x23\x4d\xaa\x95\xe0\x65\xcd" "\x2b\xcc\x32\x57\x2d\x10\x1a\x54\xab\x01\x94\x90\xf1\x7b\x9a\x06\xef" "\x30\x80\xad\x53\x10\x62\xc6\x5e\xac\x7a\x6d\x6a\xab\x1b\x4f\x8b\x27" "\x2a\xc8\x9d\x83\x12\xe8\x09\x28\xb8\x5d\xf3\x45\x10\xba\xa0\x92\xc1" "\x09\xc8\x9e\x6c\xf4\xe4\xba\x33\xa4\xa4\x78\x29\xed\x24\x2b\xce\x3c" "\x45\x0c\x63\x86\x9f\x38\xef\x2e\xba\xb0\x1c\x70\x46\x56\x11\xdd\x35" "\x40\x54\x4c\x49\x0a\xac\xd8\xc0\x66\x41\x01\x27\xeb\xc3\x62\xf7\x11" "\x64\xcf\x97\x14\x1b\xa6\xda\x21\x25\xd1\x21\x14\x17\x43\x85\x09\xee" "\x25\x7f\x0c\x2e\xe5\x42\x5b\x18\x12\x2a\x82\x0f\x40\x20\x61\xba\xd0" "\x45\xa6\x27\x8d\x56\x2a\xfa\x25\x3b\x58\x1c\x06\xd5\xbc\x89\xbc\xe8" "\x74\xc7\x4f\x84\xef\xf6\x8d\x85\xd8\xc6\x67\xde\x38\x16\x44\x8f\x2e" "\x6b\xa5\x73\xce\xd3\xa7\x1c\xaa\x99\x5e\x1d\x08\x24\x7c\xb4\x4d\x54" "\xeb\x67\x79\x4d\x6b\x53\xf4\x34\x17\xf5\x21\x7d\x15\x98\x3f\x54\xea" "\x4a\xc0\xd2\x45\x34\xa4\xe5\x44\x40\x9c\x8c\xf7\xb4\x90\x80\x85\xf7" "\x0d\xd8\xa6\x3a\x7e\x22\x28\x68\x94\x66\xfa\xc1\x30\xd1\x08\x8c\xa2" "\x7d\xed\x05\x89\x22\x10\x3a\xd7\x2c\xab\xe7\x98\x11\x79\x2e\x99\x82" "\x45\x10\x0b\xd0\xcf\xff\x05\xe7\xfc\xbf\xd8\x5d\x0f\x34\xc5\x13\xeb" "\x8d\x40\x2a\xe1\x2c\x2a\x43\xf3\x9e\xcb\xdc\xef\xf0\x38\xb8\xe3\xe0" "\xba\x35\xe9\x2b\x46\x19\x70\x5c\x47\xc9\x85\x06\x5c\x33\x3b\x6b\xee" "\xf9\x93\x15\x7d\x55\x67\xfd\x40\x25\x56\xae\xf6\xa1\xca\x46\xf9\xc8" "\xe7\x2a\x7f\xfe\x88\x61\x28\x93\x3a\x00\xeb\x66\x19\x29\x7d\x0f\x71" "\x21\xc3\x8d\x4a\x50\x48\x95\x11\x6c\x48\xa2\xf4\xb7\x8b\xbd\x57\x0b" "\x5f\x95\x28\x99\x2b\x92\xb5\x3b\xd1\xd8\x40\xf4\x3c\xcb\x30\x3e\xb9" "\x85\x28\xcc\xee\x73\x4f\x8e\xce\xdd\x66\x30\xdb\x33\x0d\x82\xde\x7a" "\x4e\xe2\x2d\x09\x37\xe8\x4f\x57\x96\x9e\x2d\xe9\xa6\xf8\x3a\xae\xdf" "\xbb\xec\xf9\xec\x02\x70\xf6\x22\x7a\xe3\x82\xf1\x99\x38\x3f\x76\xb0" "\xe9\x0c\x6f\x91\xd5\x53\x0c\x49\x5d\x52\x3f\x24\x86\xad\x26\xb7\x05" "\xaf\xa7\x41\xba\x41\x33\xbc\xd3\x24\x1d\x2c\xdd\x4b\x09\x61\x0b\xd1" "\x5e\xc9\xd2\x9e\x26\xbc\x7b\x39\x14\x9e\xf0\xf0\x0a\xb2\x08\xcb\x43" "\x02\x47\x13\x4c\xf9\x95\xbc\x40\x24\xb7\xf0\xaf\xf7\xec\xbf\x04\x7a" "\xaf\xc5\x72\xc2\x32\x6b\x01\x3a\xe5\x40\xe9\x01\x68\xb3\xb6\xcb\x97" "\x77\x36\x28\x4e\x41\x67\x32\x42\xe3\x47\x07\x6a\xc1\xc6\x48\x29\xd3" "\x35\xe9\x31\x7f\x0f\x0e\xd3\xf8\xc3\xc2\x29\x56\x3b\xe2\xd4\x91\x4e" "\xc7\x97\xee\x30\x53\x31\x81\x9a\x18\xd9\xb3\xfd\xbf\x72\x39\xaf\x0d" "\x3d\x28\xba\xe7\x77\x04\xb7\x67\x1b\x23\x0b\xef\x0a\x64\xcf\xf9\xaa" "\xd3\x5d\x09\x7a\xbb\xaf\x40\x77\x80\x17\x20\xb3\xf0\xdd\x55\x1c\x94" "\xca\xef\x9e\xcc\x9a\xab\xaf\xd3\x28\x1a\x65\xb8\x92\xe6\x5c\xd5\x3d" "\x81\x3c\x17\x39\x4c\xe5\xd8\x86\x8d\x07\x4f\x91\x25\x38\x38\x10\x67" "\x6d\x26\xf3\xd4\x13\x99\xfc\x61\x56\x21\x63\x68\x1e\x04\x69\xb3\x51" "\xa1\x8e\x51\x85\x4b\x66\x94\x9e\x88\x7e\xf8\xf1\xe5\xfc\xac\xee\xd2" "\x5e\x08\x16\xd1\xad\xaf\x11\x3c\x7b\xc1\x6d\x69\x2e\xb3\x5c\xc1\x4d" "\x18\xaa\x1b\xb4\x9c\x1e\xe1\x3c\x79\x8c\xc1\xb8\x32\xee\x84\x88\x80" "\x5c\xc1\xcc\xd5\xd2\xd7\x7b\xf8\x0c\xbf\x4a\x51\x89\x56\x45\x3a\xd2" "\xab\x89\xc8\x67\x8c\x63\x48\xd4\x16\xaa\x27\x1b\x02\xcb\x16\x90\xf0" "\x13\xba\xe1\xe5\xc8\xa9\xcb\xbb\x5a\x76\x59\xc0\x36\xb0\xda\x95\x22" "\x6e\xfd\x6d\x4f\xa4\x16\x9c\x92\xfd\xae\x73\xd8\x23\xbf\x3b\x44\xf4" "\x70\x3c\x4a\x4a\x89\x9a\x49\x3a\x51\x2a\xd0\x17\x6c\x0e\x26\x85\x9f" "\x3f\x93\xe1\xc1\xad\x5f\x70\x56\xbf\x98\x94\x5b\x55\x29\x40\x95\x94" "\x26\x29\x1e\x49\x74\x31\x8c\xe9\x91\x02\x17\x13\xa1\xfb\xb4\x19\xc6" "\xf3\xad\xdc\x2e\xcd\xdf\x28\x36\x2b\x99\x5f\xab\x0a\x97\x18\x74\x2e" "\x2f\x66\x91\x4f\x4d\x71\xc5\xe8\x39\x24\xaf\xad\x6c\xf7\x69\x59\x1b" "\xbb\x0e\x35\x36\x25\xa3\x47\x52\xf1\xae\xb0\xa3\xf8\x00\xe8\x25\xeb" "\x94\xcf\xd7\x9a\x8b\x73\x09\xbe\x08\xed\x2e\x51\x46\xd2\x10\x3d\x01" "\x67\xc4\x30\xb6\x04\x28\xd4\xc9\xbf\x45\xea\x2f\x4c\x5a\x21\x64\x57" "\x81\xde\x83\x3b\x9e\x98\x9f\x58\x95\x92\x8c\x52\x61\xb2\x1a\xe7\x09" "\xb8\x9f\xcf\x77\xdb\xfa\x5d\x36\x69\xce\x77\xc0\xd9\x10\x7c\xaa\x77" "\x34\x87\x9c\x50\xd2\x98\x16\x2b\x65\xf9\xd1\xde\x8b\xf2\x40\xa7\x11" "\x95\xad\xbb\x88\xfc\x3f\x13\x98\xc8\x36\xe3\xcd\x18\xc7\x16\x1e\xb4" "\x13\x12\xfc\x9e\xad\x13\xcb\xb8\xc4\x3d\xfd\x04\xd6\xb2\x23\x33\xae" "\x21\x3a\x58\xa6\xcd\xbd\x3f\x7b\xe2\x98\x89\xa1\x69\xe5\xf9\x1f\xc8" "\xd9\x63\x11\x77\x84\xf6\x93\x72\xb3\x94\x24\x39\x7b\x23\xaa\xc6\x97" "\x92\x64\x1f\xe7\x33\x27\x07\x36\xca\x3c\x24\x24\xc2\x2f\x2e\xcc\x1a" "\x48\x7d\x85\xa7\x9d\xc9\xbf\xd0\xe7\x77\xe1\xd5\xc7\x14\x50\xe1\xc7" "\xd3\xfc\x66\x06\xdf\xda\x3c\xbc\x60\x20\xa3\x66\xba\x1e\xfb\xde\xbc" "\x51\xa1\x63\x33\xe7\x64\x22\x96\x9b\x99\xce\x5b\x15\xe9\x0f\x01\x13" "\x5b\xb0\xee\x00\xe6\xbd\x8e\x1f\x22\xeb\x9d\xd9\x5a\xcf\x0a\xda\xa7" "\x99\x30\xa1\x76\x90\x36\x73\x2e\x9c\xef\xef\x47\x24\xa3\x1f\xb8\x9b" "\x83\xed\x50\x18\x7e\x2c\x0d\x09\x18\x39\xd8\x84\xd8\xe2\x32\x67\x35" "\xf9\x67\xc8\x9b\x5d\xb4\xc9\x44\xa0\xdc\x7f\x7d\x18\xdd\xc1\x41\x90" "\x32\xe9\x5f\x48\x90\xb8\x25\x93\x3b\xf9\xf4\xf7\x6d\x75\x15\x09\xdb" "\x5b\x39\x46\x9f\x5f\xa9\x87\xa9\xbd\x64\x8b\x37\x26\xbf\xbc\x94\xa2" "\xb8\xf8\x16\x4f\x8e\xfc\xad\x4d\x14\xbe\xea\x0c\x8a\xc8\xae\x48\x45" "\x22\xe3\x5a\xc5\x6b\x37\x51\xa8\x12\xc2\xce\x0e\x5f\xc7\x0a\x7a\xf3" "\xf6\x6e\x34\x48\x8f\x4c\xd0\x38\xd1\x01\x46\x4b\x3b\x3e\xbb\xeb\x31" "\x4e\x10\x74\x53\xbf\x11\x7b\xea\xbc\x2d\xf0\x4e\xa6\x65\x04\xa9\x7f" "\x14\xb6\xd8\xe0\x24\xc5\xaf\x25\x78\x8e\x86\x5b\xff\x72\xfb\xcb\xcd" "\x77\xea\xa0\x8d\x38\xf1\x5f\xc2\x25\x10\x55\x71\x51\x26\x3e\x5e\x63" "\xb6\x73\xa1\x98\x73\xf4\xdf\x3a\x24\x4f\xc5\xa5\x81\x83\xfb\x04\x9f" "\xf1\xc3\x75\x92\x67\xe7\x1a\x48\x27\x2c\xb2\xb4\x81\x51\xdc\xb7\x6e" "\x2b\x1b\xd0\x7c\xb1\x06\xf5\x3f\x87\x77\xb1\x94\x7a\x75\x00\xe1\xa7" "\x66\x1c\x5d\xbd\xa9\x41\x25\x58\x47\x75\x2e\xf0\xc9\x13\x56\x5f\xa6" "\x29\xf7\x42\xeb\xaf\x5a\x96\xb2\xdf\x5e\x2f\x92\x4a\x96\x1a\x55\x64" "\x41\xe3\x6a\xf2\xa1\x60\x4e\xe0\x3c\xc2\x75\x8e\x86\xb7\x84\xe1\x66" "\xfa\xf3\x43\x0f\xb0\x13\x88\x63\x32\x59\xcf\x6d\xab\x02\x01\x7b\xdb" "\x67\x86\x50\x59\x9d\x74\xc7\x6b\x40\x55\xf6\x45\x71\xc6\xb9\xef\x0f" "\x70\x5b\x1f\x8b\xe2\xef\x63\x30\x2b\x53\x6d\x22\x27\xd3\x06\x64\x57" "\x4d\x21\x21\x7f\xc3\x0f\x56\xf4\xa1\x26\xbd\xa7\xf2\x34\xf4\xf2\xba" "\x45\x00\x4b\x08\xfd\x3f\x9f\xa6\x4e\xfc\xe4\xd6\xa0\x5a\xa0\x48\xd3" "\xb8\x2c\xa2\x63\xb3\x9a\x88\x97\x7b\x23\xff\xd0\x75\x24\xf7\xc0\x7f" "\x1b\xca\x37\xf3\x8e\x79\x7b\x1d\x92\xf3\x65\x9e\xcc\x1a\xc1\xf6\x89" "\xca\xed\x69\x09\xe5\x4b\x64\xdd\x9d\xd7\x15\xfa\x07\x45\x34\x7b\x85" "\x7a\x72\xed\x41\xaf\x9b\x86\x88\x35\xf4\x38\xfe\x90\x87\x0e\x4c\x9d" "\x66\x8e\x16\x06\x87\x09\xcf\xea\xb4\x66\xb7\x67\x07\xfe\xe2\xc6\x5b" "\xa2\xc9\x0c\x69\xcf\x57\xc2\xf7\x01\x3a\x6d\x7a\xb9\x93\x80\x9a\xb1" "\xb2\xbd\x7c\x39\xcf\x64\xeb\xf1\xfa\x4a\x60\x60\xd5\xbb\xa9\x83\x85" "\x2b\x6b\x96\xb2\x15\x3a\xa7\x5e\x24\x80\x96\x79\x6d\xdd\x86\x77\x65" "\x9d\xfa\x8f\x10\x52\xce\x7a\xa1\x7b\xf1\x3c\xc6\x83\x2e\x32\x3e\x92" "\xcd\x31\x2e\x0c\x28\xd4\x7e\x58\xe2\x0d\x2b\x4a\xda\xc7\x1c\xc1\xf2" "\x2d\x00\xb3\x52\x6a\x82\x36\x15\xf4\x8c\xa4\x3c\x61\x83\x1e\x8a\xc0" "\x41\x37\xaf\xa4\x30\x54\x79\x43\x81\x2d\x37\x8b\xbe\x4c\x66\x34\x63" "\x40\x89\x1c\xec\xf2\x6c\xd0\xdd\x54\x4f\x56\x0a\xa1\x21\xb4\xba\xd6" "\xcc\xfe\x7b\x42\x76\x7f\xc9\xbe\xff\x35\x2e\x14\xbc\x58\x74\x7d\xf4" "\x8d\xc1\x4f\xbd\x6f\xb3\x56\x7b\x98\xc0\xdf\x59\x2a\xdf\x85\x0d\x71" "\xe7\x53\x09\x64\x41\xd6\xc3\x77\x88\x80\x64\x1a\xd0\x07\x23\x3b\xa6" "\x87\x82\x71\x43\x3f\x32\x17\xa1\x75\x3c\x64\x8f\x02\x5f\x84\x40\x50" "\x38\x41\x5e\x73\xec\x82\x71\xe8\x92\xa7\xfc\x41\xf9\x06\x60\x61\x55" "\x33\x52\x97\x26\x6d\x71\x83\x8a\x9c\x59\x6c\xb8\xb2\x00\x5c\x83\x0a" "\x81\x28\xc0\x01\x00\x99\xa7\x11\x51\xe3\x3c\x7e\x20\x73\xe1\xd3\xb7" "\xd5\xb7\x36\x28\xc8\x55\x18\x2f\xb2\xbe\xe1\xaa\x5d\x76\x32\x2a\x55" "\xa8\x73\x02\xdd\x6a\x16\xa2\xfd\x36\xbc\x25\x9f\xc8\xca\x07\xd3\x59" "\xc3\x2e\xa8\x38\x67\xc0\xb3\x91\x57\xfe\xf4\xe0\x75\x8c\x94\x89\xa7" "\x4b\xdb\x90\x0e\x40\x9c\x96\xa7\xd1\x20\x4b\x64\xf1\x58\x7e\x14\xb0" "\x56\xfd\xbc\xb4\x21\xa7\x3f\xcb\xc7\xba\x50\x9f\x7d\xf6\xcf\xcb\xb2" "\x87\xac\x6b\x52\x5c\xee\x79\xff\xdc\xde\x11\xca\x3c\x9e\x3d\xaf\x29" "\xd9\x48\x49\xda\x7f\x1c\x36\xb7\x66\xd1\x44\x13\x68\x7c\x53\x9a\x3c" "\xc6\x36\x77\x37\x1b\xe2\xe9\xf4\xb8\x82\x0f\xdf\xf2\xdb\xaa\x23\xdd" "\xa4\x65\xe2\x63\x62\x21\x5c\x99\xf0\xab\xae\xfc\x33\x99\x63\xa0\x69" "\x30\x63\xb1\x5a\xa0\xa6\x11\x13\x54\x1a\x8b\x92\x56\x9f\xc3\x66\x1f" "\x55\xdc\xa1\x8c\x80\xe4\x42\xdd\x32\x1c\xa1\x46\x54\x1e\x23\x95\xbe" "\x84\x70\xb6\x3b\xbd\x10\x44\x6e\x7a\x89\xfb\x40\x81\x56\x58\x7c\xd9" "\x1b\x4f\xed\xb1\x99\x36\x78\x89\x68\x2f\x2c\x73\xff\x5e\x7e\x0f\x22" "\x40\x9c\x71\x89\xc6\x59\xa5\x98\xbc\x99\x0c\x53\x8f\x1b\x27\xe0\x24" "\x64\x8a\x47\x38\x4d\x2b\x19\x75\xbe\x91\x4c\x26\xfe\xb2\x4b\x64\x81" "\x4a\x20\xce\x0e\xfe\xe4\x6f\x48\x6c\xf2\x2c\x10\x37\x4d\x16\x44\x86" "\x51\x5e\x4f\xb2\x4b\xc7\x26\x8d\x53\xa9\x7f\x60\xc6\x28\xad\x26\xb8" "\xcf\x24\x90\x94\xd1\xd0\xb4\x6f\x17\xf8\xb3\xaf\x6a\xb6\x33\x11\xb9" "\xa4\x27\x0c\x45\x10\x7d\xba\xbb\xd7\x8b\x7a\x79\x5a\xe7\x7a\xd5\x38" "\x43\xd1\x64\xc5\x03\x79\x9a\x26\x2e\xdf\x6c\xe9\xcb\x7f\x6f\x84\x9b" "\xba\x26\xe7\x70\x1b\xd9\x0e\x47\xca\xa9\x81\xac\x41\x47\x03\x39\x9b" "\x09\x49\xa4\x6d\x8c\xca\x69\x33\x93\x5c\x78\xc3\x7d\xfa\x1a\x77\x7e" "\x8d\xc5\x3a\x43\x25\xdf\x7d\x0c\x73\x0f\x54\xc9\x3f\xd3\x13\x06\xb0" "\x76\x6e\x95\x9b\xb7\xb2\x5b\x57\xd2\x3f\xf9\x74\x7c\xec\x6b\xbb\x75" "\xab\x1e\x06\x5e\x55\x9e\xe7\xdf\xc7\x22\xe9\x41\xca\x65\xc7\x70\xc9" "\x3e\xaf\xbb\x93\x67\xcb\xf0\xec\xdb\x71\xdc\x7d\xc0\x57\x53\x15\xd1" "\xa1\x8b\xf1\x95\x19\x25\x21\xa3\x60\x50\xa7\x62\x87\x8b\xce\xc8\xc6" "\x12\xfd\xb3\x38\x69\xf5\x9c\x02\xbb\xe0\xbe\x5f\x80\x0b\x73\x45\x6f" "\x45\xeb\x2c\x42\x00\xef\x40\x19\xaa\x1c\xea\x02\x40\xfe\xd9\xc1\x86" "\xa2\x09\x5a\x71\xbf\xf5\x6e\x62\xf0\x30\x17\x01\xe1\x50\x6a\xe5\x4f" "\xd8\xbb\x05\xdf\xf9\x2d\x84\x44\x55\x44\x9e\xbd\x0e\x51\xbc\xb0\xa5" "\x58\x0e\x98\x57\x8f\x62\xfe\x40\x50\x8f\x2d\xd2\x97\xb9\xbe\x59\x84" "\xb9\x69\x00\xc5\xee\xb0\x57\x28\xed\xd7\xe9\xd0\x98\x07\x86\x21\x12" "\x3b\x41\x0d\x23\x3c\xce\x12\xae\x75\x78\x59\x08\xe3\xbd\x4e\x5a\x7e" "\x2b\x28\xb2\xa9\x9f\x7c\x35\x6c\xbb\x33\x0f\x84\xfa\x82\xa7\x7b\xd5" "\xd2\xeb\xe3\xb5\xa8\x3f\xf8\xbb\x99\x10\xb3\x24\xbe\x83\xb5\x97\x4c" "\xf1\xd2\x56\x9a\x2f\xfc\x84\x6c\xbd\xfd\xd4\xd7\x54\xb5\x49\xe1\xa4" "\xb1\xac\x47\xda\x2a\xb2\x69\x32\xfd\x9b\x30\xd1\x87\xac\xa2\x52\xde" "\x3e\x41\x57\x91\x42\x19\xbf\xf2\x99\x07\x99\xfb\x14\x1a\x64\x22\x47" "\x4c\x0c\x16\x66\xbc\x03\x17\x4c\xaf\x50\x53\xa9\xcb\x79\xa8\x1f\xdc" "\x1d\xeb\xea\xce\x18\xa6\x3d\x64\xd6\x97\xee\x9b\xc9\x77\xd1\x19\xcc" "\xb8\xb7\xaf\x97\x71\x79\x96\x2c\x8a\x18\x20\x05\x57\x09\xa0\x2e\x94" "\xee\xd8\x42\x58\x67\x5e\x38\x8a\x20\xb3\xeb\xe3\x29\xbd\x02\x05\xe4" "\xa8\xfb\xf2\x6c\xba\x78\xd4\x8f\xde\x65\x04\x9b\x03\xe6\xed\xd7\xa7" "\x90\xa2\x84\x1c\xed\xaf\xec\x74\xb2\x0d\xbd\x54\x32\xa3\xaf\x34\x61" "\x2c\xb4\x1d\xaf\x8b\x4a\x88\xc4\x02\xb3\x97\x36\x56\xbd\xf1\xf7\x65" "\x34\x1a\x98\x38\xfc\x9b\x73\xd8\x62\x79\xd9\x5c\x41\x7e\x07\xf8\x6d" "\xb6\x9c\x7c\x12\xe1\x8b\xa3\x80\x96\xa8\x0c\x07\xed\xe7\xa7\x6f\xf2" "\xba\x31\xf2\x68\xf4\x1a\x24\x56\x87\x6b\xe7\x0b\x11\x35\x78\x10\xe7" "\x6c\xe1\xd9\xc9\xbc\x49\x22\xa1\xc9\x9d\x58\x7e\x6c\x6e\x04\x86\xa8" "\xaa\x44\x9d\x70\x3a\xeb\xa3\x33\x1f\x06\x97\x91\xce\x1b\x50\xb6\x7a" "\xba\x42\x33\x50\xa8\xd5\x4f\x2f\x08\xaf\x55\x3a\x76\x1d\xd2\x68\xe3" "\x13\x17\x60\xaa\x43\xaf\x5c\x4a\x95\x6b\x23\x8d\xa6\x78\x46\xdd\xb2" "\x75\x66\x1b\x5e\xd2\xdd\x62\xd4\xe8\x30\xac\xe9\x76\xaf\xb8\xe8\x63" "\x5b\xf9\xfc\x2e\x1d\xbc\x93\x19\xda\x13\xdd\xd2\x3f\xe6\x7e\x2a\x25" "\xc1\xe7\x32\x44\x46\x29\xec\xe2\xcb\x1f\xd4\xef\x63\xf2\x61\x19\x3a" "\xb5\x2c\x33\xb5\x77\x9a\x53\x7f\xab\xd9\xd1\x89\xa5\x13\x1b\x3f\xa6" "\x97\x21\xea\x42\xf4\xea\x3c\x14\x26\xa4\x8f\x9f\x93\x1d\x43\xe4\x53" "\x74\x6b\xe5\xb6\x68\xbb\x27\x77\x5e\x34\xba\x9c\x59\x97\x53\x9e\xbd" "\x96\x04\x52\xc4\xab\xb3\xed\x51\x7b\x49\x20\x79\x47\x22\xed\x4c\x2c" "\x45\x77\x81\x4c\x3f\xd6\xf1\xb7\xd9\x79\x7e\x87\x92\xe1\x5f\x43\x9b" "\x2d\x1d\xa0\xf8\x20\x67\xc8\x49\x1b\x55\xc9\x68\xd8\xe1\xaf\x87\x11" "\x8a\x56\xbe\xf8\x88\xa3\xfd\xfa\x64\x30\x41\x9f\x6f\x3f\x31\x40\x62" "\x63\x52\x9f\x38\xf3\x9f\xea\x23\x8b\x09\xee\x7b\x4d\xd8\x13\xe9\x70" "\xe2\xfa\x4b\x9d\x85\xde\x1d\x65\x55\x61\x2d\x6d\xae\x1b\x8f\xe9\xd0" "\xdd\xdb\x43\xca\xf9\xd3\x4a\x03\xf1\x34\x82\xa8\x56\x27\x73\xe4\x80" "\xd5\x2f\x88\xf3\xb4\xd9\xa8\xb1\x85\xdc\xb6\x3d\xe9\xdc\xb3\xa7\x45" "\xdd\xb9\x82\x83\xdf\xd6\xa7\xe7\xe8\xc7\x09\xda\xf3\xe0\x1d\x98\x56" "\x94\x6a\x40\x4d\x82\x2d\x80\xf5\x51\x1c\x8c\x36\xc8\xe7\x86\x69\x1a" "\x80\x87\x14\x91\xd7\x2c\xe5\x46\x91\x36\x8b\x2b\x15\x9e\x61\x61\x87" "\xe0\x91\x66\xb8\x61\x2c\x41\x8d\x9b\x82\x8f\xb2\xa4\x2a\xca\x34\xd3" "\x65\xb9\xa2\xcc\x55\xf9\x4d\xab\x65\x81\xb7\x20\xe0\x35\x48\xfb\x49" "\x37\x39\x99\xf0\xb2\x4c\x71\xa7\x34\xf4\xba\x75\x3b\x51\x5a\xf6\x69" "\x58\x00\x53\xe8\xde\x24\xbb\xc3\xc0\xc9\xf7\x6e\xde\xd5\x74\xd5\x26" "\x6d\x33\x5e\x7f\xbe\x01\xb7\x3c\x92\xc2\x56\x01\xe8\x66\xad\xba\x5b" "\xc0\xae\x51\x02\x14\xff\x5d\xb8\xcb\x24\x69\xfd\x97\x33\x0c\xbb\x65" "\xd3\x83\xdc\x57\xe4\x2d\x71\xba\x2e\xab\x93\x4b\x3f\x49\x90\xf6\xb5" "\x15\xc4\x49\x2a\x11\x41\x6c\x1f\x52\xbc\x84\x5e\x56\xb1\x24\x07\xee" "\x6f\xc3\xe0\xdf\xac\x74\x87\x26\xb7\x67\x36\x26\x48\x6b\x31\x9d\xfa" "\xdb\x38\xe1\x7d\x9e\xf7\x3b\xed\x0a\x79\xe0\x95\x0b\xef\x5d\x2f\xd6" "\x1f\xcf\x6e\xfe\xab\x42\x32\x50\x08\x05\x95\x8e\x9a\x62\x38\x3e\x75" "\x1a\x65\xa0\x45\x7e\x91\x09\xa1\xc1\xe3\x2c\xe8\xdd\x71\xc0\xab\xe0" "\x1b\x48\x08\xeb\x6c\x8e\x35\xe9\x30\x8c\xd4\x24\xf3\x86\x59\xc6\x89" "\xd1\x80\x39\x19\x2c\xeb\xdd\x95\xce\x8f\x36\xfc\x94\x25\xd3\x85\x8c" "\x71\xb9\xc1\xc7\xb9\x69\x39\x91\x2a\xca\x2c\x74\xa3\xa9\xc1\x4f\x25" "\x63\xa2\x28\xde\x2e\x2f\xaa\x52\xb4\x95\xbd\x33\xd6\x59\x3c\xd1\x9c" "\x73\x83\xc4\x86\xbf\xf9\xbe\x10\xa9\xec\x39\x09\x6d\xe7\x5d\x1a\xdc" "\xa8\xb4\xe8\xab\x7b\xaa\x34\xc4\xc8\x38\xe9\x9a\x34\xf8\x95\xf2\x3f" "\xf8\x94\x84\x2e\x5c\xd6\xd9\x18\x20\x7a\xd2\x6c\xea\xa1\x6c\xb9\xc9" "\x46\xbb\xd4\x3c\x19\x8b\x0e\x31\x72\x78\xb2\x5a\xca\xd7\xd1\xa2\xf2" "\xe3\x01\x4d\x39\x93\x9b\xd4\xf6\x23\x10\xec\x7c\xc2\xd0\x98\xf2\x00" "\x84\xac\x90\x1d\x21\xe8\xee\xc0\xaa\x2d\x3e\xa4\xb3\xc4\x66\xc1\x33" "\xff\x26\x02\x87\x30\xb5\xb7\x17\xcd\x4a\xea\x39\xe2\x61\x34\xd3\xea" "\x9f\x51\xd8\x70\xce\xa1\xe0\xff\x3c\x96\xa0\xd7\xd2\xc2\x96\xdb\x70" "\xaa\x96\x3a\x3e\x13\x66\x10\xe1\xbe\x0b\x06\xf3\xbc\x4c\xbd\xf5\x49" "\xae\xc8\x8a\x5d\xc7\xbf\x71\x82\x10\xf7\xc5\x0d\xdb\x83\x70\xa9\x6e" "\xad\x10\x86\x48\x78\x29\xca\xc5\x31\x68\x48\x30\xbc\xb7\x02\x31\x5f" "\xdc\xe3\xae\xbc\x9b\x47\xf9\xe1\x83\x70\x6a\x3d\x73\x33\x2f\xb9\x34" "\x84\x19\x42\x6d\x1c\xae\x2e\xa5\x29\x62\xcd\x36\x88\x46\x25\x92\xb9" "\x28\xbb\xa4\xc4\x22\x1a\x67\x2a\x6d\xe2\x79\xa6\xde\x8f\x71\x70\x0b" "\x6b\x8f\x1e\x17\x28\xe6\xd7\xe7\xac\xba\xb4\xfd\x51\x7f\xed\x8b\x49" "\xf9\xae\xa6\x1a\x12\xb0\xd8\x01\x7a\x28\x79\x3e\x08\x05\xe2\x2f\x86" "\x75\x1b\x35\x49\x62\x76\x36\xa7\xed\x5c\x94\x7f\xe7\x26\x69\xe0\xfa" "\xb2\x4f\x9c\xd1\x72\x85\x85\x28\xa4\xe6\xd0\x40\x2f\x9f\x38\xe3\x74" "\x6d\x79\x89\xd6\x4a\xe9\x0d\xa2\xff\xa7\xe4\xed\xed\x72\xb5\xfe\x90" "\xf5\x2c\x01\x66\x73\xa4\xb7\x23\xcf\xd3\xda\x3a\x3a\x5b\x3d\x8a\x04" "\x1f\x24\x8f\xe9\xbc\x22\x4e\x78\x20\xed\x45\xbf\xe1\x7b\x72\x64\x48" "\xfa\xd2\x58\xf6\x9e\xd9\x09\xcf\xf6\xf3\x29\x87\xdb\xed\x5d\x57\x74" "\x7f\x70\xce\x37\x7c\xeb\x2a\xf2\x68\x28\x40\x53\x92\xe2\xb4\x1d\xb2" "\x0f\x5a\x15\x98\x3a\xc6\x0f\xbe\xd4\xb1\x6c\xc6\x45\x05\x20\x16\x99" "\x71\x61\xd3\xcc\x00\x6a\x68\xf9\x48\x6c\xc5\x61\xb3\x6b\x9e\xc0\x0a" "\x48\x0b\x81\x55\x82\x31\xbd\x08\xb5\x1d\xb2\x2a\xe0\x5e\x5f\xc8\x8d" "\x9c\x1f\xcb\xb5\xf3\x0b\x74\x09\x0f\xc2\x5e\xfe\x46\x80\x01\x2c\x42" "\xa0\x49\x02\x01\x78\x1f\xa5\x50\x92\xa7\x78\x58\xac\x36\x14\x0e\x65" "\xa9\x0c\x3f\xfa\xd4\x52\xd4\x76\x10\x5a\xff\xc7\x12\xc0\x28\xa3\x31" "\xb0\x63\xa9\xae\x3e\x03\xb0\x72\x19\xca\x11\x50\xc6\xae\xfe\x6f\x1b" "\x4e\x9e\xdf\x27\x1c\xbd\x75\x71\x49\xe4\xf8\x29\x17\xb6\x1f\x33\x0a" "\xda\x03\x50\x67\xfd\x3e\x99\xb6\x72\x3b\xd3\x5a\x59\x51\x0d\xce\x9c" "\x15\xab\x05\x65\xd6\x36\x9a\x29\x2d\x47\x23\x1d\x50\x67\x60\x82\x0d" "\xe5\x90\xe4\x6a\x61\xa8\x81\x19\x4d\x77\x6c\x5d\xb2\xe8\x61\x00\x9c" "\xde\xa6\x0a\xb4\xa0\x77\x5d\xb1\x4c\xc1\xf6\x0a\x51\x8f\x9b\x94\x2c" "\xc0\x9f\x7f\xb6\xfb\x31\xd8\x8d\x7d\x0c\xa5\x77\xad\xbe\x20\xc3\x49" "\xfd\xdd\x35\x38\xd5\xf5\x2c\xbb\x5f\x7e\x08\x22\x67\x96\x64\x1e\xe0" "\xf3\x2e\x96\x21\x2f\x88\x74\x3d\xc8\x8c\xe5\x69\x80\x6f\x71\x8b\xb3" "\x4b\x58\x88\xef\xb2\x4e\x57\x15\x93\xd5\xe1\x0a\x9a\x4d\xb7\xf1\x36" "\x3d\x1d\x8c\x88\x11\xed\x21\xda\x95\xa6\x54\x5e\xaa\x46\x52\x5a\xa9" "\x34\x46\x58\xf7\xdd\xed\xe6\x2a\xc9\xe0\x5f\xc5\xe5\x60\xfc\xbb\xe2" "\xf3\x37\xcc\x2c\x83\xc0\xd5\x70\xcc\x1b\xdf\xe5\x29\x06\x61\xe7\xf9" "\x42\x53\x36\x99\xff\xde\x44\x56\x6a\x44\x96\x49\x9d\x97\x58\x72\xfb" "\xe3\x81\x49\x3f\x97\x18\xf7\x78\x12\x29\x82\xe9\x03\x43\x71\x52\x22" "\xcc\xba\xed\xfe\x05\xda\x46\x91\xc3\xce\x50\x49\x76\xda\x4a\x85\x6a" "\xf1\x21\xe5\xb9\xa5\x03\x10\x8c\xf6\x8a\x74\x80\xfd\xd7\x34\x46\xe7" "\x45\x18\x63\x11\x8f\x65\xee\x31\x28\x4c\x16\x57\x06\xfb\x65\xdb\xce" "\x52\xd4\xe5\xd3\xd8\x67\x7c\x0c\xe9\xa2\xf4\x08\xde\x72\x93\x7a\xea" "\x4b\x43\x50\x2e\xc7\xa3\x6d\x23\x70\x53\xd9\xdc\x45\x0b\x0c\x24\xa5" "\x27\x4c\xba\x52\x4c\xda\x4f\x60\xa9\xbf\xe8\x77\xc8\x41\x07\x78\x29" "\x82\xb5\x8e\xb6\x6e\x55\x74\xaf\x30\x39\x4d\x3f\x03\xff\x36\xb5\xa7" "\xdd\x99\xa0\xf9\xde\x75\x6f\xe0\x92\x5f\x3b\x2c\xec\xc9\xf3\x6a\x25" "\xbf\x34\x85\x22\x94\x6a\x74\x13\xe2\xc9\x5f\x02\xd5\xb7\x32\x35\x90" "\x66\x78\x56\x3b\x07\xff\xc9\xa3\xdd\x01\x6f\x5a\xd6\xf9\xf9\x47\xd5" "\x9c\x58\xfa\x88\x96\x96\x3c\x45\x87\x49\xd3\x72\xff\xc7\x4f\x1d\x64" "\xda\xf4\x40\x5c\x5c\xec\x27\x5b\x36\xd3\x30\x58\x7d\xcf\xd5\x3b\x16" "\xcc\x83\xbe\x79\xe5\x23\xad\xc8\xa6\x3c\x45\xa7\xc0\xb7\xb9\xf2\x5a" "\xbb\xfd\x07\xc2\x1f\xac\x48\xb1\x5d\x29\x72\x53\x64\x9a\xd5\x98\x63" "\xe4\x6d\x46\x9e\xc1\x40\x32\xd6\x39\x1f\x61\x49\x58\xf8\xad\xf1\xac" "\xc2\xf3\x3f\x1e\xf0\x03\xdf\x3d\x7d\x33\x3f\x1c\x5b\x65\x16\x3d\x53" "\x8c\x34\xb3\x35\x6a\xca\x3b\xfa\xfd\x61\x8e\x5b\x92\x81\x5c\xa0\x08" "\x9c\xae\x2a\x9b\xd6\x58\x2d\xf1\xea\x56\x52\x02\x1d\x1c\xa2\xea\x3a" "\xf3\xb9\x22\x72\xd3\xee\x64\x34\xb1\x2a\x79\x59\xf8\x4f\xfd\x66\x54" "\xee\xf7\x24\x78\x7b\x51\xc0\x28\x42\xfd\xb0\x5a\xb2\xea\xb2\x8d\x4f" "\x3d\x1f\xb9\x60\x89\xc7\x6b\x7f\xe3\x98\xf6\x0b\x8d\xa9\xb4\xba\x63" "\xa8\xd8\xbf\xd4\x1d\x5e\x2a\x15\x0e\xa7\x2f\x03\xc5\x66\x20\x2e\x95" "\xe7\xf7\x26\xd8\x9b\x67\x7e\x8c\x66\x50\x6c\x57\x1a\x06\x50\x9d\xb3" "\xe5\x76\x4f\x13\x35\xb2\xcf\xc8\x32\xa0\x2d\xd8\x42\x97\xce\x59\x41" "\x5c\x5a\x5e\xb3\x69\xb8\x87\xc4\x7b\x42\x4c\x6c\xe8\x65\x9c\x9d\x96" "\x39\xe7\x91\xa4\xb3\x73\x5c\x7b\x8c\x3e\x01\x0b\x39\x7d\x04\xae\xe7" "\x4c\xfa\x0a\x46\x49\x8c\xa0\x8d\xd5\x22\xdd\x00\x32\x9f\x46\x06\x19" "\x95\xb3\x82\xbe\x68\x02\x63\xd5\x1a\x56\x97\x7a\x56\x5b\x04\x0e\x11" "\x0c\xf8\x3e\x1e\xf7\xed\x45\x14\x5e\x0a\x5b\x26\x9a\xef\x4d\xda\x21" "\xe3\x30\x3a\xd0\x4e\x05\x16\xc8\x21\xce\xb5\x26\x9e\xbd\x22\xc4\x4a" "\xb2\x3c\x82\xd9\x74\xa3\x4a\xcc\x24\xf1\x10\x97\x86\x76\x85\x35\x02" "\x99\xe3\xcd\xd5\xc4\x44\x62\x89\x84\xd0\x8d\xe9\x51\xa1\xbd\x0e\x1b" "\x41\x73\x5f\x7d\x16\xc9\x90\x21\x5a\xf9\x1c\x71\x4e\xca\x4d\x88\x24" "\xc8\x71\x1f\xf7\xb7\xb5\x3d\x57\xf8\x4c\x3d\x4b\x45\x70\x53\x3c\xe9" "\x18\x37\x10\x8c\xb6\x6a\x38\x01\xcc\x0a\x9c\x74\x3c\x79\x98\x3d\xfd" "\x6c\xe5\x70\x37\xa1\xfe\x3a\xc3\x6b\xb3\x50\xd3\x26\x6c\xd8\xb0\x93" "\x2a\x83\xb1\x7d\x2e\xda\x11\xe1\x5a\x2e\x1e\x61\xfc\xaf\x8e\x6e\x60" "\x66\xb9\x64\xb6\x5e\x92\xdf\x27\xed\x43\xed\x16\x49\xdd\xc9\x31\xbe" "\xfb\xd6\x29\x4f\x24\xb1\xbf\x85\x87\xcb\x2b\x3b\xa9\xee\xec\x24\x76" "\x1b\x62\x83\x38\xb5\x29\xbb\xae\x3b\xc5\x1b\x18\x23\x85\xe8\xfd\x21" "\xe5\xca\x7d\xce\x06\x43\x94\xcd\xd0\x87\x67\xf1\x94\x34\x20\xee\xea" "\x71\x89\x48\x3a\x63\x9b\xeb\x25\xbd\x93\xb6\x2b\x8e\xee\x0b\xba\x1d" "\x3d\xc1\xa9\x3a\x80\x96\xcc\xa4\x8d\x0b\xd8\x84\xde\xcb\x40\x40\xe4" "\x8f\x05\x94\x15\x1e\xa4\x2f\x4f\x9e\x0d\xc1\xbd\x39\x8b\xe0\x26\xa3" "\x7b\x80\x0c\x21\xe8\x57\xef\x1b\xcc\x91\x3f\xeb\x8c\x12\x45\x88\xe2" "\x21\xac\xd3\x17\xd1\xbe\x60\xec\xc2\x1a\x16\x8a\xc3\xf7\xb8\xab\x5a" "\xe1\xef\x81\x0a\x23\x47\x15\x49\x93\x74\x0f\x75\x72\x7b\xb7\xe2\x91" "\xee\xc1\x3e\x03\xa9\xf5\x9d\xe0\x58\x5a\x0c\xa4\xb5\xd4\x60\x37\xf3" "\x3e\xee\x3b\x05\xba\x5c\x71\x51\xd8\x14\xeb\x77\x2d\x4b\xd2\x10\xa7" "\xd1\x10\x23\x7c\x21\x2a\x09\xa2\xf1\xcd\xe4\xa1\x30\xb2\xb7\xf1\xfd" "\x2a\x4a\x0e\x4a\xac\x17\xb3\x90\xfa\x79\xfb\x49\x36\x30\xb9\xb6\x2e" "\x01\x4c\x23\xed\x6a\xe1\x1a\x95\x28\x82\xf1\xa3\x60\x5b\x1f\x0e\x1b" "\x5e\x66\x7d\xae\xde\xbd\x35\xa3\x63\xb6\xcf\x26\xfd\xab\xda\x2a\x44" "\xb8\x94\xab\x4e\x0c\xb1\x94\xfc\x44\x90\x2d\x28\x0a\x02\xff\x3c\x05" "\xac\x5f\x0b\xda\x79\x9d\x0a\xb7\xd4\x85\x31\x7f\x29\xa1\x12\x64\x9f" "\xc8\xdc\x8a\xc5\x36\x66\x83\x6d\x99\xed\x53\x6b\x55\x43\x3f\x49\x87" "\xe9\x50\x4a\x61\x66\xfd\x4e\x22\x76\x85\x42\xca\x9a\x6c\xf4\xf5\x0b" "\x49\x9b\x9f\x56\xe1\x93\x9f\xb0\x8b\xde\xc2\x4b\x12\x86\x15\xe3\x56" "\x84\xbb\x4d\x0f\x8b\xec\xee\xe6\xab\xdd\xa9\x8b\x6a\x55\x1a\x53\x75" "\x96\x5f\xce\xc6\xb5\x4b\x7c\x71\xe7\x6d\x67\x02\x19\x93\xe9\x93\x90" "\x5b\x03\x45\x88\x63\x34\xc3\xd7\x80\x68\x2e\xd6\x25\x74\xa4\xea\x3b" "\x55\x7e\x28\x60\x56\xd3\xc9\x99\x69\xc6\xc9\xfe\xd7\xbd\x01\xfe\xf4" "\xe7\x81\x7c\x57\x2c\x01\x48\x48\xe9\xda\x7a\x29\x0b\x25\xfd\x75\x4a" "\x93\x51\x96\x59\x5a\x40\x6f\xf4\x3b\x5d\x68\x1e\xb0\xad\x13\x7f\x2e" "\xe0\x84\x02\x9a\x10\x15\x82\x0b\x40\x26\xee\x0d\x5a\x5d\x86\xa2\x5e" "\xad\xe7\xd9\x44\x4b\xd6\x50\xa8\x5f\x14\x91\x2f\x54\x6c\x35\x91\x65" "\xa1\x74\x17\x32\x3c\xbd\xae\x3a\x07\x80\xae\xfd\xe2\x1a\xfe\x8f\x7b" "\x73\x63\xd6\xa7\xbe\xf8\xca\x6c\x36\xe6\x90\x0d\xe5\xd3\xbb\x9d\x25" "\xe5\xef\x87\xd8\xa8\xfb\x2f\x83\x6d\xb0\x3f\xf3\xee\x6f\xca\xd1\xe1" "\xfa\xf6\xeb\xa3\x9b\x4a\xfd\xd9\x6d\x97\xcc\x17\x41\x41\x13\x8c\xf2" "\x70\xe5\x61\xd8\xe5\x16\x12\x47\x31\x6d\xc2\x2f\xec\x0f\x11\x49\x05" "\x9e\x02\xa0\xf5\x79\x87\x39\xaa\xd9\x72\x9e\xe6\x95\xd9\xf5\xbc\x77" "\x61\xfa\x32\xa4\x8f\x84\x5f\x4b\xd1\x05\xf3\xa2\x30\x54\xd0\xaa\x53" "\x9e\x28\xc3\x8c\x9a\xcf\xa9\xe8\x8e\x55\x10\x81\x47\xe9\xaf\x65\x07" "\x08\x43\x41\xd4\xda\xb7\x28\x97\xd4\x97\x01\x1f\xa7\xcc\xd8\x53\x09" "\x9e\x52\x0e\x09\x8b\xd1\x64\x9f\xf6\xd0\x6a\x88\xe7\xe4\x10\xb7\x99" "\xd3\xf0\xd0\x16\x0f\xca\x26\x57\x0c\xa1\x56\x19\x47\xae\xbc\xdf\x4e" "\xd7\x41\xa3\xe6\xf4\x0c\xfe\x58\x88\x75\x81\xe6\x3b\x98\x66\x3c\x7f" "\x8b\xb4\x25\x09\x62\x05\x86\x26\x13\x29\x1a\x5e\xb8\x10\xb9\x12\x93" "\xef\xc2\xa1\x35\x66\x1b\xfd\xa9\x7f\x1b\x83\x0b\x99\x31\xba\x34\x67" "\x86\xd0\x9f\xcf\x2b\x50\x00\x0f\x1d\x86\xaf\xd0\x2e\x06\x31\x9e\x73" "\x1d\x0d\xd3\x9c\x5f\x61\x61\x13\x9f\x18\xbf\xec\x10\x43\xee\x3f\xb4" "\xad\xb6\xbe\xab\xa7\x4b\x32\x21\xb6\xbe\x62\x40\xec\xa4\x58\x01\x38" "\x71\x10\x44\x2f\x01\xcb\x9c\x80\x40\x96\x1d\x83\x4c\xd3\x0f\xc0\x57" "\x81\x56\x40\x5f\xec\x93\x72\x5d\xcf\x3f\xc1\xe6\xc4\xff\x92\x47\xf3" "\x0b\x03\x98\xdd\x71\x7f\xeb\x2d\x8c\x24\x89\xca\x41\x8c\x50\x5e\x39" "\x0a\x24\x76\x5c\x51\xe0\x5f\x49\x78\xea\x24\xf0\x30\x39\x32\xff\xb4" "\xe7\xb9\x98\xc9\x78\x6b\x2b\x99\x05\xf8\x81\xba\x45\xfb\x57\xa3\x9b" "\x35\x96\x9d\x95\x5b\x5f\xaa\x5c\xf7\xac\x2f\x38\x5b\xc5\xff\x1f\xb7" "\x05\x32\x24\x08\x1c\xc7\xf8\xb4\xeb\x8e\x92\x16\x2e\xa6\xf4\x8a\xdf" "\xa5\x13\xfa\x15\x59\x0b\x36\x52\x39\xe7\xfb\xa1\xe8\x83\x57\x9e\x8a" "\x6f\x22\xbf\xa7\xf6\xdf\x3d\xb9\xe3\x36\x19\xf2\x71\x38\x2e\x71\x1e" "\x97\x22\x12\x47\x9b\x52\x94\xc0\xc4\x01\x96\x62\x62\xe3\x4e\x13\xc0" "\xe1\x76\xf1\x2e\xc4\xb7\x58\x11\xde\x9e\x58\xd7\x6a\xf7\xe6\x76\xc7" "\x6c\x79\x9a\xd0\xe7\x0b\x91\xf0\x7b\x2e\x7d\x90\xf5\x17\xde\x7f\xc8" "\xdf\x6b\x34\x89\xa2\xce\x1e\x17\x3c\x69\xaf\x13\x66\x9c\x77\x42\x97" "\x9c\x49\xa8\x20\x37\x5a\x26\x26\x83\xc2\x70\xeb\x26\xac\x2f\x91\xf4" "\x46\xe6\xa7\x3d\x62\x28\x60\x39\xd1\xa1\x17\xb4\xd4\x91\xc0\x45\x6c" "\xb5\xf5\xfe\xa7\x85\x21\x75\x3d\x46\xb4\x34\xad\xd4\x3e\x3b\xb1\x5c" "\x79\xe1\x05\x7f\x8c\x69\xe9\x4c\x2e\x54\x15\x4c\x64\xd0\xd5\xa9\xd0" "\x6c\x03\x62\x80\x85\xdb\xa1\xcd\xbb\x56\xe2\x20\x94\xab\xd9\xd7\x93" "\xca\x5c\xab\xf8\xf2\x03\xaf\x40\x9a\xc2\xb5\xef\x6b\xb6\xa3\x83\x9a" "\xf6\xb9\x5e\x7d\xdc\x00\xde\x42\x63\x76\x79\xa0\x64\x94\x0f\xd9\xbe" "\xac\xb2\x25\xcf\xaf\x09\x78\x10\x6d\xc1\x95\xa6\xa0\x34\x82\x2f\x4b" "\x97\x65\x1a\x0b\x46\x9a\x52\x99\xcc\xc1\x7d\x11\x32\x51\xb1\xa3\xba" "\x01\x02\x0c\x92\x9f\xe9\xdf\x39\xf5\xfe\x1b\x85\x86\x13\x07\xcc\x6f" "\xf5\xb7\x5a\x2b\x83\x1c\x3a\x23\x61\x4a\x31\x01\x3f\xea\x23\x4d\x18" "\x11\xa8\xcc\x98\x1a\x95\xc6\xd2\x93\xd8\xf3\x91\x53\x6c\x6a\xd3\x01" "\xa3\xf6\x6e\xe4\x4d\x8f\xf4\xc5\x14\x94\xac\xea\x00\x8a\xa6\xda\xad" "\x90\x8b\x5f\x80\x84\xd5\x38\x9f\xfa\x8d\x04\x60\xdf\xae\x38\xba\x51" "\x7f\x94\x11\x6f\x68\xe8\x2b\x38\xbd\x54\x82\x86\x2f\x47\x25\xe8\x0b" "\x9a\x43\x0b\x2a\x59\x0d\x56\x06\xfc\x4d\x21\x48\xe7\x56\x6d\x8d\x52" "\x62\xc2\xa1\xb5\xc2\x8e\x74\x6e\xd5\x40\xa1\xbf\xc2\x67\x50\x15\x86" "\x01\x45\x3f\x2f\xb2\xe3\x0e\x9b\xd2\x37\xde\x96\x3f\x88\xb7\xc9\xa8" "\x71\x3b\x1c\x12\xd1\xa0\x80\x2d\x4e\xff\xc6\xc7\x9c\x96\xe0\x70\x18" "\x78\x77\x8a\x85\x9b\x10\x75\x82\x7e\xe8\x89\x7d\xd2\x35\x70\xa4\xd5" "\x20\x6c\x12\x80\x06\x35\xac\xd0\xd4\xec\xf4\x55\x3d\xa1\x7f\x75\x36" "\xf5\x2c\x70\x4b\x11\xb1\xf0\xbf\x84\x88\x01\x6a\x9c\x22\x74\x4f\x2a" "\xe6\x28\xda\x15\x3b\x3f\x41\xca\xe6\xbc\x77\xb2\x12\x75\xd8\x3e\xdb" "\x89\x48\x32\x66\x66\xcd\x8d\xc4\xe3\x7c\x81\xed\x27\xf6\x74\xe2\x1c" "\xdf\x09\xc2\xe9\x4b\x07\x81\x17\x99\x5f\x09\x71\x1d\x36\xea\x8e\x14" "\x3a\xed\x2f\x99\xb6\x29\xb4\x20\xc5\x46\x5d\x54\x8f\xab\x89\x63\x1e" "\x4f\x54\x00\xd3\x16\xa8\x0d\x6b\x5c\x94\x4a\xe5\xe9\xf8\x83\xed\xc5" "\x83\x3d\x42\xd2\x91\x9b\x4f\x0b\xce\xea\x7b\x8e\xc6\xe9\x0a\xff\x2f" "\x60\x4d\x53\x65\x90\x7c\xc7\x4f\x8a\x13\xb4\x63\xef\x33\xaf\xae\xf7" "\x75\x89\x3f\x4a\x0f\x16\xeb\x66\x46\xef\x17\xe3\x05\xf3\xa8\x4e\x14" "\x5c\xb5\xe6\x4b\x57\x63\x8a\x13\xbc\x14\xf2\x0c\xf5\x51\x07\xcd\xdf" "\xea\xd7\xfd\xee\x61\x73\xff\xc8\x3e\x2b\xbe\x40\xe0\x0a\x68\xb4\x28" "\xa4\xf6\x82\x66\xb7\x59\xf1\xd6\x51\x23\x53\x62\xa0\x39\x59\x7e\xda" "\x3d\x59\x57\x1d\xcd\x0b\xbb\x79\x92\xb8\xae\xa6\x02\xb9\x23\x88\xb1" "\xb4\x02\x2c\x97\x40\x4e\x30\x75\x45\x2d\x7f\x8f\xa7\x08\xca\x69\x13" "\xe7\x97\x8f\xc7\xef\x4a\x23\xdb\x1f\xf5\x2b\x21\x19\x1c\xde\x91\xdc" "\x30\x47\x93\x96\x42\x77\x20\xd2\x7d\x03\x7e\xe9\x9c\x24\x48\xbd\xd8" "\x5e\x55\x65\x41\xed\x28\x65\xc4\x51\x44\xce\x6e\x1f\x92\x21\x1c\xd4" "\x4b\x5b\x66\x20\xc9\x70\xec\x15\x09\x21\x6e\xd4\x2c\xf3\x7a\x58\xca" "\x45\x72\x95\x60\xba\x7c\x19\xf2\x95\xb9\x26\x52\x59\x2b\x59\xf5\x68" "\xf7\x81\xd6\x7d\x3f\x2d\x27\x15\xc3\x72\x36\x9d\x3b\x79\xe2\xe3\x80" "\x17\xe9\x2d\xc9\x5b\x6c\x18\x1f\xd6\x69\xc9\xf7\x4a\x48\x0a\x06\x40" "\x1f\x2e\x96\x64\x49\x90\x48\x71\xff\x6c\x6e\x08\x91\x9b\x1e\x52\x9c" "\xce\xfc\x4d\xaf\x93\x27\x42\xef\x40\x51\x1a\xc7\x25\x2c\x04\x15\x46" "\xca\xb3\xe7\x1f\x27\x0e\x8e\xfa\xa1\x3b\xb7\x6e\x65\xf2\x40\x41\x4e" "\xe1\x55\xc2\x35\x49\x2a\x9b\x72\x7a\x4d\xbc\x86\xd9\xbc\x4e\xd4\xd2" "\x30\x97\xd9\x48\x95\x88\x64\xc9\xfe\xe0\x62\x0b\x1e\x9e\x1e\x9f\xe8" "\x74\xb0\xaa\x91\xc6\x54\x04\x52\x34\xa8\xfe\xc0\xe3\xd6\x78\x4d\x01" "\xb7\x99\xbc\x97\xfb\x63\x44\xf1\x61\xf8\xfd\x01\xf2\x2c\x99\xda\x03" "\xaf\x75\xf9\x52\xab\xd2\x6b\x9b\x27\xcb\x73\xff\x25\x97\xcb\x93\xf0" "\x9a\xe0\x3b\xea\xeb\xc2\xd5\x5f\xbd\x6a\x15\x8a\x2a\xeb\x14\xf5\xc3" "\x20\x3e\x9d\x8b\x14\x10\x93\x0b\x32\x8c\x82\x7d\x83\xdb\xbe\x93\x53" "\x6a\xa4\xb5\x68\xd6\xe3\x36\xe2\x3a\xcd\x19\x04\xea\xe2\x63\x78\x70" "\xbc\x6d\xf1\x38\x78\xcc\xbe\xa5\x4d\x09\x0e\x77\xdf\x5b\xae\x34\xed" "\x75\xcc\x88\xb5\x20\x8f\x37\x89\xac\xe9\x92\x87\x4c\xa3\x7e\x00\xf3" "\xda\xba\xf5\x13\x49\x44\xf9\xec\x27\x06\x5e\xfc\x73\xc6\x3e", 8192); *(uint64_t*)0x200029c0 = 0; *(uint64_t*)0x200029c8 = 0; *(uint64_t*)0x200029d0 = 0; *(uint64_t*)0x200029d8 = 0; *(uint64_t*)0x200029e0 = 0; *(uint64_t*)0x200029e8 = 0; *(uint64_t*)0x200029f0 = 0; *(uint64_t*)0x200029f8 = 0; *(uint64_t*)0x20002a00 = 0; *(uint64_t*)0x20002a08 = 0; *(uint64_t*)0x20002a10 = 0; *(uint64_t*)0x20002a18 = 0x20002680; *(uint32_t*)0x20002680 = 0x90; *(uint32_t*)0x20002684 = 0; *(uint64_t*)0x20002688 = 0; *(uint64_t*)0x20002690 = 1; *(uint64_t*)0x20002698 = 0; *(uint64_t*)0x200026a0 = 0; *(uint64_t*)0x200026a8 = 0; *(uint32_t*)0x200026b0 = 0; *(uint32_t*)0x200026b4 = 0; *(uint64_t*)0x200026b8 = 0; *(uint64_t*)0x200026c0 = 0; *(uint64_t*)0x200026c8 = 0; *(uint64_t*)0x200026d0 = 0; *(uint64_t*)0x200026d8 = 3; *(uint64_t*)0x200026e0 = 0; *(uint32_t*)0x200026e8 = 0; *(uint32_t*)0x200026ec = 0; *(uint32_t*)0x200026f0 = 0; *(uint32_t*)0x200026f4 = 0x2000; *(uint32_t*)0x200026f8 = 0; *(uint32_t*)0x200026fc = 0xee01; *(uint32_t*)0x20002700 = 0; *(uint32_t*)0x20002704 = 0; *(uint32_t*)0x20002708 = 0; *(uint32_t*)0x2000270c = 0; *(uint64_t*)0x20002a20 = 0; *(uint64_t*)0x20002a28 = 0; *(uint64_t*)0x20002a30 = 0; *(uint64_t*)0x20002a38 = 0; syz_fuse_handle_req(r[0], 0x20006a40, 0x2000, 0x200029c0); break; case 5: *(uint32_t*)0x20004200 = 0x50; *(uint32_t*)0x20004204 = 0; *(uint64_t*)0x20004208 = r[1]; *(uint32_t*)0x20004210 = 7; *(uint32_t*)0x20004214 = 0x20; *(uint32_t*)0x20004218 = 0; *(uint32_t*)0x2000421c = 0; *(uint16_t*)0x20004220 = 0; *(uint16_t*)0x20004222 = 0; *(uint32_t*)0x20004224 = 0; *(uint32_t*)0x20004228 = 0; *(uint16_t*)0x2000422c = 0; *(uint16_t*)0x2000422e = 0; *(uint32_t*)0x20004230 = 0; *(uint32_t*)0x20004234 = 0; *(uint32_t*)0x20004238 = 0; *(uint32_t*)0x2000423c = 0; *(uint32_t*)0x20004240 = 0; *(uint32_t*)0x20004244 = 0; *(uint32_t*)0x20004248 = 0; *(uint32_t*)0x2000424c = 0; syscall(__NR_write, r[0], 0x20004200ul, 0x50ul); break; case 6: memcpy((void*)0x20002040, "./file0/file0\000", 14); syscall(__NR_openat, 0xffffff9c, 0x20002040ul, 0ul, 0ul); break; } } 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; }