// https://syzkaller.appspot.com/bug?id=d5850dae2dacb945701d38d3295420c303de3c70 // 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 < 4; 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); if (call == 2) break; event_timedwait(&th->done, 50); 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 < 5000) continue; kill_and_wait(pid, &status); break; } } } uint64_t r[1] = {0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x20000100, "/dev/fuse\000", 10); res = syscall(__NR_openat, 0xffffffffffffff9cul, 0x20000100ul, 2ul, 0ul); if (res != -1) r[0] = res; break; case 1: memcpy((void*)0x200001c0, "fd", 2); *(uint8_t*)0x200001c2 = 0x3d; sprintf((char*)0x200001c3, "0x%016llx", (long long)-1); *(uint8_t*)0x200001d5 = 0x2c; memcpy((void*)0x200001d6, "rootmode", 8); *(uint8_t*)0x200001de = 0x3d; sprintf((char*)0x200001df, "%023llo", (long long)0); *(uint8_t*)0x200001f6 = 0x2c; memcpy((void*)0x200001f7, "user_id", 7); *(uint8_t*)0x200001fe = 0x3d; sprintf((char*)0x200001ff, "%020llu", (long long)0); *(uint8_t*)0x20000213 = 0x2c; memcpy((void*)0x20000214, "group_id", 8); *(uint8_t*)0x2000021c = 0x3d; sprintf((char*)0x2000021d, "%020llu", (long long)0); *(uint8_t*)0x20000231 = 0x2c; *(uint8_t*)0x20000232 = 0; syscall(__NR_mount, 0ul, 0ul, 0ul, 0ul, 0x200001c0ul); break; case 2: memcpy((void*)0x20000140, "./file0\000", 8); memcpy((void*)0x20000040, "fuse\000", 5); memcpy((void*)0x20000180, "fd=", 3); sprintf((char*)0x20000183, "%020llu", (long long)r[0]); memcpy((void*)0x20000197, "\x2c\x72\x6f\x6f\x74\x6d\x6f\x64\x65\x3d\x30\x30\x30\x30\x32\x30" "\x30\x30\x30\x30\x30\x30\x61\x10\xfc\x2a\xef\xed\x2e\x3a\xff\x1f" "\xaa\x63\x75\x73\x65\x72\x4f\x69\x64", 41); syscall(__NR_mount, 0x20000000ul, 0x20000140ul, 0x20000040ul, 0ul, 0x20000180ul); break; case 3: memcpy( (void*)0x20003040, "\x69\x7f\x7d\xbc\x3d\xab\x75\x8e\xad\xba\xeb\xb7\xe1\x43\x66\x10\x0e" "\xd6\x2b\xa6\x0f\xa3\x8d\xbd\xa4\x18\xd1\x1d\x98\xb1\xd0\x90\xee\x07" "\x17\x62\xa3\x91\xe8\x8a\xad\xa7\x1e\xbd\x75\xae\x61\xae\xb5\xc5\x52" "\x29\x25\x69\x46\x12\x88\x28\x93\x44\xc7\x8e\x2a\xd3\xee\x29\x21\x9e" "\x46\xa0\xd7\x60\x82\xff\x6b\x9f\x37\xed\x43\xbf\xef\x8e\x57\xb6\x6f" "\x5e\x10\x1f\x70\xdc\x0d\x94\xfd\xd6\x60\xa1\x9d\xa3\x0c\x62\x87\x5d" "\x48\x09\x0c\xe6\x9a\xa3\x23\x7b\x81\xac\x27\x23\xec\x39\x19\x01\x7c" "\xe4\x14\xd8\xbf\xdc\x77\x6b\xcf\x28\xb4\xe7\x39\x02\x7d\x24\x23\xe2" "\xc8\x2c\x59\x4d\x36\x92\xdb\xf6\xed\x6d\x03\xf8\xf3\x4e\x60\x9e\xa0" "\xee\x38\xbb\x90\x31\xb1\x3f\x2f\xd5\x99\x85\xe2\xb2\x14\x89\x27\xdc" "\x78\xbf\xda\xb6\x11\x68\x85\x60\x5e\xaf\x73\xdb\xb4\xbf\x65\x0f\xeb" "\xe7\x8f\x4a\xdb\xa0\x44\xb6\xe1\x42\x40\xbb\x66\xfc\x24\x71\x12\x6f" "\x81\xf1\x7e\x5e\xde\xfd\x6b\x7b\x86\x24\x82\x07\x61\xf2\x0d\xc6\x23" "\xed\xbd\x10\x74\x03\x5b\x2b\x27\xfd\x3e\xbc\xe1\xab\x58\x24\xa4\x27" "\xcc\x23\xbd\x46\x67\xdb\x5c\x3b\x6a\x3d\xf6\xa2\xd9\x86\x1c\x8f\xd4" "\x03\x44\x03\x51\xae\x91\x8d\xf5\x83\x38\x6f\x65\xfc\x6c\xd9\xd0\xe4" "\xca\xf1\x0d\x28\x3d\x76\x80\xf2\x12\x90\x5f\xb2\x85\xdb\xb0\x6f\x73" "\x19\xfc\xd4\x90\xd6\x4d\x4d\x18\x59\x17\x7d\x8f\x5f\xf2\xcc\xc8\x0b" "\xc8\x59\x88\xc8\xeb\x6d\x9e\x42\x6c\x72\xc6\x2c\x29\x1e\xa0\x85\x37" "\xb3\x09\x40\xa0\x90\xc5\x4a\xda\xb7\x62\x94\x71\x9d\xba\x7e\x98\x87" "\x3a\x68\xbe\xdc\xb2\x94\x4d\x10\x8b\x8b\xb0\xe6\x2d\x24\x7d\x29\xd8" "\x99\x4a\xd1\x48\x2b\xb5\x28\xfe\xb6\x35\xdb\x8a\x20\x7b\x9e\xd5\x4c" "\xc6\x30\xba\xf4\x5d\xa9\xf3\x9e\x28\x6e\xe2\x0b\x00\x53\xfd\x88\x39" "\x6d\x5c\x4f\xbf\x49\xf8\x49\x1a\x25\x98\x03\x2a\x59\xab\x0a\xea\xfd" "\xab\x46\xb0\x19\x7d\x75\x75\x93\x8e\x6c\xb3\x37\xab\xd1\x07\xf0\x91" "\xfb\x1c\x3f\xa1\x85\x33\x41\x49\x67\xe1\xb4\x6f\x23\x4e\xcc\xf1\x71" "\x61\xfd\xeb\xc9\x26\x44\xbd\xc3\x77\x8a\xf6\x55\x15\x09\x4b\xba\x2e" "\x91\x6a\x98\x93\xd4\x21\x1f\x0f\xbd\xd7\x92\x5b\x80\x17\x29\x27\xe7" "\xb0\x7f\xab\xae\xf6\x0e\x8f\x42\x59\xc7\xf9\xce\x94\x9c\xc3\x06\x31" "\xbd\xa6\x1e\x1a\x2e\xa1\xe5\x6c\x38\x9a\x7e\x95\x9a\x12\x0c\x77\xb5" "\x60\x51\x0c\x99\x82\xdd\xd1\xb3\x1c\xea\x59\x95\xaa\xee\x90\x3a\x22" "\xe7\xb0\x9c\xe5\xbb\x93\xa7\x91\x7e\x62\x36\x84\xc6\xd0\x39\x7c\x14" "\xb9\x06\x53\x64\x34\x84\xce\x86\x76\xfc\x4b\x00\xbc\x83\x0b\x13\x94" "\x5a\xad\x20\xea\x06\xef\xdf\x50\x46\x57\x4d\xb7\x1f\xdd\xbb\x35\xec" "\x00\xf8\x7d\xe8\x3d\x64\x43\x76\x6c\x4f\x88\x9d\xff\x34\xbd\x7b\xb1" "\xc0\x17\x6d\xe1\xc9\x29\xf0\x8d\x92\x5c\xde\x4c\xda\x1c\x37\x3a\xd6" "\x33\xaf\xf6\x6c\x96\x9e\x4b\x2f\x54\xf2\x9c\xbe\xbd\x58\xcb\x8c\xcc" "\x65\x56\xee\xea\x19\x48\x4e\xd9\xcf\x46\x24\xe2\xa1\x82\x1e\x30\xbd" "\xd7\x73\xd7\xd9\xb2\xd2\x58\x54\x4d\xdd\x34\x35\x35\x26\xbd\x43\x9a" "\xc2\x95\xf0\x94\x87\xd7\x22\x1c\x09\x4f\xb9\xa2\x70\xfa\x83\x6a\x6d" "\xfc\x16\xe6\xe7\x07\xc0\x35\x65\x21\xe5\x22\x23\x96\xbb\xf0\x78\xcc" "\x9e\x90\x1a\x16\x02\x27\xd1\xe4\x56\xc9\x69\x12\xb8\x2c\x5b\xb3\x8c" "\x15\x85\x78\x6c\x75\x4d\x67\xaa\xfd\x91\x8c\x72\x39\x29\xe1\x0b\x97" "\xa6\xfd\x39\xc1\x48\xbb\x5a\x21\x8c\xe1\xfb\x75\x23\xad\x70\x76\x5d" "\x79\x8c\x75\x99\x1c\xfa\x06\x83\x90\xb9\x66\x99\xbc\xcc\x58\x53\x37" "\xe3\xfc\xd6\xf3\xb4\xb3\x84\x97\x80\xc2\xc2\x5b\x0e\x59\xed\xc2\x89" "\x1d\xe5\xb1\x6b\x49\xf6\xb8\x85\x72\x81\xfa\x45\x7d\x3a\x38\x6c\xda" "\x67\x9d\x92\xde\x25\x77\xfa\xa3\xb5\xf0\x74\xa6\x06\xb7\x4e\x97\x5b" "\x12\x25\x81\xda\x88\xb7\x8b\x30\x78\x83\xc2\x6f\xee\x7a\x94\x80\x17" "\xef\x86\xd4\x1e\x28\xc2\xd0\x8a\xa8\x6b\xfb\x74\x84\x42\x9a\x01\x9d" "\xc7\x5d\x33\xe7\x26\x34\x07\x1c\xfd\x89\xdf\x5c\xa1\x44\x38\x0f\x2a" "\x42\x4e\x0c\xf0\x19\x39\x8f\xec\xf9\x6c\x2d\xc2\x16\xcc\x2a\x60\x78" "\x4d\xb3\xa2\x09\xfc\xf6\x50\xd0\x0a\x05\x61\x0f\xd8\xb9\x2d\x5b\x63" "\x19\xb3\x6e\x48\x02\x97\xd8\xad\xcc\x9b\x0f\x30\xaa\xfa\x0b\xe6\x1b" "\x2b\x75\xb6\x44\x4c\x78\xff\x81\x72\xed\x62\x6b\xe8\x3e\x66\x5d\xd3" "\x60\x0c\x6f\xa7\xf6\x1b\x49\xc0\xd7\x87\xe8\x41\xdc\xd8\xb8\x5f\x1d" "\x01\x4a\x27\x72\x73\xb7\xa7\x62\x8a\x9e\x0f\xfa\xbc\xe0\x8d\x39\xa3" "\x82\xc7\x8f\xd1\x4c\xdd\xb1\xf1\x60\xf4\x9f\xb5\xd8\xe9\xe7\x4f\x11" "\x35\x08\x24\xa0\xdb\x58\x59\x68\xfd\xfa\x19\xc5\xdf\x95\x79\xa1\x54" "\x8f\xf0\x18\x5f\x59\x4b\xe6\xb4\xcd\x97\xcc\xf8\x20\x6a\x5e\x8a\xf3" "\xd3\xef\x1f\x03\x05\xd0\x32\xb1\x54\x98\xa9\xf7\x95\xd9\x0c\xfa\xd9" "\x6b\x25\x46\x3d\xd5\x68\x23\xa7\xe5\x4d\xb4\x33\xbd\x0b\x45\xb7\xe8" "\xcd\xdb\xa9\x29\xf5\x3f\x4b\xce\x8e\xbe\x3c\x29\xd7\xe7\xd2\xcb\x40" "\xfc\x86\xad\x4f\xb6\xb7\xd2\x7a\xbb\xdf\x18\x5c\x57\x85\x63\xfc\x8e" "\x69\xa2\x68\xdb\xa2\x82\x85\x20\xcd\x3c\x8a\xf4\x2c\x95\x99\xae\xaf" "\xb8\xd4\xf2\x0d\xb8\xa7\x57\x6b\x9d\xb4\xe3\xb1\xd4\xd5\x4f\x34\x84" "\x7a\x98\x10\x50\xd2\x7f\xc9\xb2\x0a\x8e\xc3\x01\x44\x52\xe1\x1d\xcb" "\xbe\xea\xe0\x8b\x53\x50\xbe\x55\xbc\x32\xe8\x42\x7c\x1c\x20\x8e\x95" "\xfc\x1b\x39\x19\x05\x48\xf7\x0d\x54\x16\x18\xf5\x69\x85\xda\x18\x61" "\x52\xf9\x03\xb5\x9f\x4f\x4e\xf7\x8a\x88\xd1\xfb\x30\xa2\x77\xf3\x24" "\x80\x6e\xec\x22\x93\xd4\x16\xff\xb6\x30\x69\x14\x2c\xff\xab\x48\x27" "\xfd\x50\x99\x01\x04\xd4\x67\x23\xdd\x0f\xc2\xbe\x74\x8c\xcf\x24\xf6" "\xbb\x4d\x79\x7b\x64\x0f\x76\x64\xbb\x55\x2b\xdb\x60\x13\xcf\x78\x52" "\xeb\xd0\xa0\x5e\x18\x70\xbf\x53\x74\x7e\x24\x5c\x8c\x4c\xc1\xc0\x02" "\xe4\x8d\x5d\x71\x7e\x10\x8d\x8e\x8e\xbb\x3d\xb4\x87\x74\x85\x0d\x29" "\x2b\xb2\x0c\x21\xae\x13\xed\x56\xae\x50\x02\x39\xf5\x37\x50\x46\x91" "\xb4\x08\x54\x41\xe9\x27\xf3\xc8\x6d\x45\x10\x76\x96\x25\xf3\x23\xfc" "\x00\x3c\x09\x9c\x07\x3e\x7a\xdc\xd4\x40\x00\x40\x49\x43\x83\xb2\x2d" "\x35\x34\x85\xa6\xbb\x81\xb1\x84\xf8\x70\xc9\xd3\xcf\xd4\x21\x93\x13" "\xfc\x56\xa8\x3a\x31\xb2\x2c\xf6\x28\x2c\x56\x76\xd6\xe3\xfa\xfd\x19" "\x88\x70\x25\xf9\x94\x08\x1b\x41\xed\x25\x90\xc1\xd8\x29\x6b\x8c\x62" "\x62\x3c\x6c\x72\xcf\x7a\x03\x65\xc4\x8a\x77\x6c\xce\xba\x87\xbb\x7d" "\x7a\x33\x1e\x83\xd2\xcc\xc4\x47\xec\x42\xfa\x9e\x68\xe1\xe4\xc0\x42" "\x42\xb8\x8d\x95\x7b\xc8\xf6\xc5\x0d\x0a\xca\x43\x54\xa2\x9e\xfa\x17" "\x4c\x88\x4c\xb2\x9c\xc8\xb7\xe5\x87\xe8\x97\x2f\xe5\xef\x5a\xf8\x41" "\x24\x23\x83\xac\x20\x9b\xc4\xd3\x3a\x25\x8a\x6e\xc2\x8d\xd6\x5f\x19" "\x58\x87\x8a\xe9\xab\x72\x30\xb7\x43\xee\x3f\x94\x57\x7a\x0c\x9c\x62" "\x61\x8d\x3d\x92\x6e\x31\x97\x7e\xf0\x08\x70\x3a\x0c\x28\x2f\xd8\x21" "\xec\x0c\x1e\x84\x80\xc5\x1e\x4e\x1e\xe9\xb0\x8e\xf5\x13\x82\x18\x7a" "\xea\xc3\x7e\x6d\xfa\x27\xa0\x6a\x4e\x7f\x65\x40\x88\x02\x02\x05\x0c" "\x7a\xe3\x0f\xd0\x5f\xe0\x7b\x76\xcc\xf5\x18\x11\x14\x94\xe4\x2d\x04" "\x45\x74\x73\xe4\xa9\x96\x55\xca\x2f\x66\xb0\x1f\x3b\x3f\x5e\xc3\xb9" "\x49\x5b\x6a\xde\xe0\xf8\x22\xb0\xa8\xfb\x7e\xb3\xf9\x5d\xb4\xc5\x6f" "\xd9\xb2\x2e\x69\x91\xa6\xf4\x52\xc5\xbb\x90\x11\x76\x52\x67\x24\x8d" "\x85\x8e\x9d\x83\xa1\xd4\x47\x91\x1a\x71\x12\x1e\x63\xbf\xec\x80\xed" "\x5e\xe3\x0a\x75\xd1\xfe\xaa\x4d\x60\x86\xb6\x4a\x49\xc5\x03\xfd\x03" "\xe9\xba\x22\x79\x91\x3e\x00\xb1\x1a\xf9\x1f\x6a\x2d\xfd\x70\xa8\x62" "\xcb\x86\xe4\x52\xc0\x84\xae\xc0\x71\x09\x41\x5f\x39\xa9\x64\xb0\xb0" "\xbc\xc6\x01\xac\x42\x0f\xf6\x9c\x2f\xbe\x0d\x3b\x9a\xee\x8e\x34\x76" "\xfa\x15\x32\x49\x75\x94\x24\x4d\x4a\x71\x07\x58\xad\xf6\x0a\x79\x9c" "\x99\xd2\xa9\x19\xee\x26\xbc\xe4\x7a\x20\x97\x46\xe8\xb9\xe1\x67\xb1" "\xe8\x7b\x8f\x20\x61\x03\x4c\x98\xa8\x89\x59\x0e\xe9\x5b\x9e\x27\x32" "\x99\x22\x39\x95\x77\x6f\x74\x75\x09\x24\x0c\x0b\x52\x41\x5a\x97\xef" "\xb2\x1f\xe3\xf9\xc5\x56\x73\x13\x9a\x10\x96\x06\x37\x28\x62\x48\xde" "\x6a\xe3\x19\x72\x9a\x99\xba\x87\xd4\xf8\x01\x12\xe1\xee\x17\x37\xb7" "\xca\x39\xbb\x08\xf5\xcb\x22\xd0\x0d\xc5\x73\x89\xc0\xf6\xef\x24\x99" "\xe1\x91\xe2\xc5\x00\xc9\xf5\xa7\x75\x78\x3d\x40\x0e\x65\x2d\xe6\x31" "\xd8\xad\x98\x50\xf3\x6b\x55\xca\x57\xfe\x8b\xa6\xdb\x88\xb9\xda\x27" "\xc8\xbf\xc0\x26\x33\x0b\xd3\x83\xc3\x78\x73\xd1\x9f\xc9\xfe\x13\xdd" "\xdf\x99\x05\xa2\xe8\xb6\x03\x81\x9e\x87\x7c\x92\xf5\x04\xaf\xd9\xa2" "\x9d\x13\x1c\x2b\x3e\xde\x88\xcf\x06\xa0\x7e\x3c\x49\x15\xcc\x0d\x2f" "\x01\x4b\x39\xb9\xc6\xd3\x37\xa0\x84\xb1\xcc\x48\xff\x51\x1a\x45\xe6" "\x2b\xdc\x82\x8f\xbf\xa2\xb5\x96\xd6\x0e\x1d\x1c\x6a\x6a\x07\x0d\xaf" "\xa1\x45\x62\xb8\x92\xc0\xc4\xf7\x03\xf5\xbc\x6e\x95\x6e\x2e\x0b\x6b" "\x32\x6e\x4b\xf9\x1d\x0c\xe2\xc5\x70\x50\x52\x21\x38\xf1\x96\xc9\x66" "\x29\x27\x0b\x5b\x75\xcc\x0a\xfa\x31\x44\x6e\x20\xe1\x1d\x1c\x03\x0e" "\xa5\xb5\x13\x96\x3e\x7e\xe8\x95\x0e\xe6\xad\xfa\xa9\x25\x26\x54\x36" "\x2b\xec\xe1\x53\xab\xd8\x70\x1b\x53\x2f\x44\xd7\x89\x1c\x79\x22\xfa" "\xff\x5e\x69\x25\xd7\x72\x0e\xdc\x56\xee\xe4\x4e\x4d\x0a\xce\xf0\x12" "\xb7\xa8\xe5\xf0\x04\x90\x9a\xc8\xb5\x39\x0a\xae\x52\xc0\x74\x14\xe5" "\xa6\x21\xc9\xa1\x5b\x31\xc9\x9f\x77\x2e\xf1\x42\x36\x05\x72\xc3\x58" "\x53\x8e\x0c\xf5\x2e\x80\x39\xe5\x5e\xe4\x25\x8c\xe1\x47\x81\xd9\xd0" "\x0b\x12\x49\x25\xb4\x40\x5d\x4c\x22\x81\x14\x9f\xa1\x9c\xa2\xc0\x54" "\x63\x70\x2b\x88\x58\x64\xa6\x61\xf2\x86\xd7\xad\x93\xe8\xa6\x3d\x5a" "\xec\xe6\x0e\xde\x0f\xe4\x9a\xc9\x97\x45\x91\xee\xbb\x63\x48\x6b\x0d" "\x04\x80\x03\x53\x22\x4d\xf6\x8b\x84\xa1\x8c\x89\x0d\xd9\x13\x7f\x39" "\x83\x19\x89\xe9\x20\x57\xef\x9d\x63\xea\xce\x82\x81\xbe\x88\xb1\xb7" "\xc5\x56\x16\x68\x1f\x77\xf3\x73\xe0\xe3\x74\x86\x91\x5b\xbc\xf8\x25" "\xdf\x4e\x8c\x2b\x8b\x3e\x56\xae\xf4\x8b\xd3\x8c\xf5\x1d\x98\x71\x9e" "\x56\x95\x98\x28\x74\x23\xd2\x3a\x4a\x6b\x19\x4a\xf4\x24\x0b\xb2\xac" "\x40\x79\x00\x65\x6a\x30\x2a\x45\x85\x5d\xd0\x40\x7f\x1b\xfc\x0c\x9a" "\x64\xd4\x74\x6c\xe1\x2c\x16\x53\xc0\x35\x42\x72\x09\x9c\x3f\x96\x95" "\x4d\xa6\x67\x2e\x90\x5e\xe8\x16\x92\x7e\x8e\x0f\xc6\x2f\x0a\x78\x14" "\xbb\xda\xac\x53\x5d\xec\x38\xa9\xc5\xb7\xe0\xf5\x94\x4f\x1e\x26\x64" "\x09\xf5\xfa\x98\xe4\xe5\xad\xa8\xcb\xe5\x22\x5b\x49\x63\x3d\x18\x66" "\xa7\xdc\xf5\x2f\x62\x0c\xe9\x47\xbf\xbf\xb3\xa7\x48\x25\x69\x8d\x02" "\x0b\x63\x06\x44\xc1\xf3\x78\xb1\x59\x59\x95\xa2\x2b\xb2\x94\x93\x25" "\x5c\xa0\x27\xb4\x7f\x87\x8e\x23\x40\xfc\x0b\x58\x26\x04\x81\x16\x51" "\x3f\x7f\x87\x53\x4a\xc0\x4b\xaf\x8d\x7c\x18\x04\x51\xc1\x7f\x9c\x86" "\xaa\xd6\x83\xc5\x98\xef\x6a\xde\x8a\x54\xcf\xb6\x17\x76\x01\x19\xd8" "\xf4\xa7\x6e\xe2\xd7\x10\xf6\x7c\xb8\xae\x7d\x49\xb8\xf5\x1e\x50\x61" "\xd8\x26\x51\x11\x19\x95\xd7\xb6\x81\x74\xc5\x26\x6b\x9f\xbb\xd8\x7f" "\x02\x78\xc0\xfe\x61\x5d\x97\xfe\x02\x90\xd0\x00\x5b\x2e\x57\xd9\xa5" "\x22\x1b\x21\x6d\x67\xab\x1e\xcf\xfb\x99\xbd\x9c\x4e\x51\x1b\xe2\x2c" "\x31\xb3\xd1\x50\xa4\xfe\x0f\xf5\x78\xf3\x9e\xb0\x6c\x8f\x22\x3b\x59" "\x55\x59\x17\x37\xb0\xf0\xb6\xc8\x3e\xf9\x44\xbc\xe8\x07\x40\x36\xf0" "\x8a\xc9\x49\x06\x06\xe9\x6c\x74\x5b\x52\x6b\x00\x42\xcb\x55\xb5\xd3" "\x6e\x9c\x74\xf9\x1e\xae\x74\x16\xa5\xda\x7a\x29\x9d\xe6\x1e\xcf\x55" "\x38\x02\x3c\x3d\x3d\xad\x7a\x53\x80\x9a\x8c\x3e\xb0\x0b\x92\xc2\x0b" "\xd5\x7f\xd2\xb0\x48\x19\x5b\xcd\x17\xf3\xc3\x4c\x27\x03\x9a\x17\x44" "\x70\xec\xbb\x6b\xe8\x37\x06\xe6\x9a\x61\xae\x89\x84\x70\x6f\x98\x8d" "\x32\xb1\xd7\x27\x74\xd0\x2d\xca\x65\xdb\xc3\xc1\x4d\xfd\x38\x00\xcc" "\x81\xf4\xf8\x14\x2a\x6f\xed\x21\xd7\x80\xad\xcc\xce\x17\x94\xe8\x3e" "\xfd\xcc\xbb\x7b\xe4\xc4\x5f\x18\x3f\xba\x1e\x05\x57\x84\x6d\xa6\xee" "\xc3\x4d\x5c\xde\x41\x2f\x0f\x99\xb9\x5c\x6d\x2b\xbc\xfa\xa6\x70\xa1" "\x16\x45\x9e\x38\xff\xa3\x9d\xbd\x9e\xfe\x68\xb4\x5c\x39\x3f\xa3\x74" "\x0a\xbd\x47\xe5\x10\xc9\x53\x2c\x81\x2b\x72\xd5\x9c\x47\x01\x14\x7f" "\xe1\x12\x0c\xaf\xf5\x3f\x22\xb9\xfe\x03\x4d\x96\x31\x7d\xe8\xe1\x8d" "\xc0\x5f\xc4\xe2\x80\x76\xfd\x38\x9b\xa4\x51\x25\x63\xcb\x59\xe0\x31" "\x09\xc9\x7c\x14\xf4\x3f\x59\xb1\xb7\xa2\xd7\x18\x89\x35\x5f\xf9\xf2" "\x11\xcc\x7c\x69\x95\x35\xed\xcb\x59\xc0\x5f\xab\xb5\xed\x93\x76\x5d" "\xa7\x4c\xe4\x9b\xd8\x3d\x7a\xc3\xa1\x52\x78\x7d\x3f\x01\x90\x2a\x57" "\x47\x7a\x66\xac\xf1\xd5\x6c\xed\x33\xe3\x04\x22\xc5\x99\xe1\xbe\xd5" "\x4b\x61\x0f\x55\xdd\x93\x34\x06\x71\x61\xd3\xa0\x08\xeb\x73\x4a\x5a" "\x93\x8e\xb1\x31\xc9\x10\x3a\x70\x70\x19\x0b\x2b\x95\x46\xa4\xbb\x36" "\x2e\xa7\xba\x1c\x1b\x61\x63\x4f\xf1\x23\xa6\x6f\x8c\xa1\x03\x00\x82" "\x74\x9b\x31\x41\xc8\xb9\x78\x86\x01\x97\x6e\x49\xed\x58\xe5\xdc\x7a" "\xb9\x49\x05\x97\x5c\xb7\x43\x37\x66\xa4\x71\x59\x0e\xf3\x64\x67\x91" "\x2a\x69\x0a\x8b\x93\xb8\x7f\xb3\x51\xe1\xf8\xc2\x87\xa8\xc4\xe7\x45" "\x2b\x35\x75\x80\x33\xc4\xb9\xf3\x67\x5d\xe1\x83\x0f\x4c\x7e\x05\x8b" "\xd3\x71\xf6\x27\xc4\x64\x8a\x58\xfc\xf6\x74\xd3\xd3\x99\xf0\xd5\xd2" "\xad\xff\x8c\x5d\xf8\xb2\x4b\xe6\xe2\x08\x8c\x6b\xc0\xc0\x3f\x84\x65" "\x67\x82\x6f\xa0\x3f\xa6\x6b\x7f\xdf\x16\xbe\x97\x31\x3c\x6f\xb5\x93" "\x07\x70\x35\x4d\xab\x00\x97\x48\xbd\x7f\x19\x9e\xd5\xb1\x05\x3b\x2b" "\x4d\x0c\x0e\x52\x5f\x99\x7b\x4e\xfa\x1a\x41\xd7\xd0\x39\x4f\x1f\x79" "\x20\x73\xa7\x07\x68\xc3\xf5\x70\x27\xb8\xbb\xb0\x0d\x30\xa3\x41\xd1" "\x03\x07\x48\x35\x18\x13\x7e\xa6\xc0\x78\x11\xc0\x83\xdc\x3e\xa4\x8f" "\xf2\x7f\x02\x66\x0f\x9e\x63\xe5\x62\x5d\x2b\xf8\x7f\xb8\xc2\x8f\x8c" "\xb4\xdf\x79\x69\x3d\xc2\xd5\xc8\x1c\x8a\xbc\xa9\x45\xe0\xba\x4f\x25" "\x81\x69\x30\x0a\xef\x9a\x2f\x83\x57\x8c\x44\xff\xd1\xbc\xbd\xc3\xef" "\x59\xa3\x84\x29\x24\x67\xc1\xa7\xff\x93\x54\x65\x80\xee\x5d\xdb\x6c" "\x27\xe5\x70\xf9\x15\x60\x1d\x4c\x57\x32\x59\x96\xfa\x55\xeb\x0a\x07" "\x6c\xe1\x0f\x8d\x93\x34\xb9\xba\x51\x56\x4c\x42\xb7\x8a\xcd\xdf\xfa" "\x28\x2e\x5f\xaa\x72\xd7\xe0\xe0\x1e\x85\x74\xc7\x91\x10\x30\xa2\xa4" "\x3e\xa5\xbd\x8b\x25\x20\xf7\x30\xbf\xe4\xa4\x03\x97\x07\x7a\x75\x2f" "\x5f\x86\x03\x8d\x74\xf6\x10\xe1\xf6\x02\x75\x25\xf4\xfb\x08\xea\xee" "\xc2\xda\x57\x90\x89\x73\xed\x0f\xc9\x6c\x8f\x02\x06\x84\x70\x17\x49" "\xa3\xdb\xca\xf1\x39\xbb\x73\x98\xe3\x1b\x09\x58\xec\xb4\xb9\x54\xae" "\xd4\x55\xa4\x46\x20\xed\x73\x3a\x96\x73\xfe\xfd\x95\xfd\xf8\xea\x99" "\x57\x66\x88\x75\x07\xca\x06\xee\xcc\x2a\x26\x08\x62\x23\x0e\xe3\x7c" "\x5b\x5d\xa5\xc8\xae\xcc\xc5\x38\x48\xa0\x8a\xe2\xed\x15\xd8\x87\x1e" "\x1d\xbe\x31\x46\x05\xd1\x77\x52\xaa\x67\x5c\x2f\xba\xca\x77\x89\x52" "\x9a\x56\x34\xc9\x60\x8b\xe8\x1b\xed\xc1\x8c\x90\xa2\x96\xe8\xed\x99" "\xce\x14\x39\x01\x69\x5d\x34\x95\x62\x4b\x3e\xb8\xb9\xdf\x7d\xa5\x10" "\x03\xb1\x18\x14\x0e\x8f\xe7\x38\x94\x75\x6a\xee\xb2\x0e\x5d\xce\x43" "\x65\xda\x1a\xe7\xad\xc6\xb3\xb9\xb8\xb7\x86\x36\x10\x9d\x38\x26\x59" "\x24\x47\x6f\xdd\xea\x83\x13\x76\x94\x92\x09\xb1\x0d\xcc\xd3\xf9\xb4" "\xa9\xa1\xa9\x11\x4b\x8e\xde\x5d\x4d\xe8\x5c\xb0\xde\x75\xbc\x98\xfb" "\xdc\xd8\xcf\x42\x70\x97\x57\x7f\x53\x33\x14\x22\x8d\x19\x99\x22\xbc" "\x8e\x5d\x35\xd0\x0b\x45\x77\xe9\xcc\x91\xd0\xcf\x5b\x1f\xc2\x61\x6b" "\xb5\x79\x15\x2e\xa4\x30\x4b\x8c\x76\x64\x9f\xda\x32\x3f\xc2\x97\x91" "\x91\xc3\xd6\xf4\xb0\x1a\x65\x9d\x83\xfa\x03\xf8\x9a\x8f\x2d\x49\xb3" "\xa8\x3a\x60\x59\x27\xf7\xbc\xdb\x68\xae\x48\x09\xbb\x4f\x89\x08\x74" "\x01\xe6\x12\x31\x96\xaa\x15\x82\x8c\x48\x82\x9a\x83\x56\xbf\x44\xe8" "\x67\x53\x09\xf5\x28\x19\xaf\xfb\xe3\x5b\x5a\x43\x28\xcb\x73\x79\x1d" "\x5e\x11\x59\xf0\xd2\xe8\x4d\x16\x3b\x4b\x30\xb1\xdc\xd4\x19\x35\xa7" "\xe1\xe6\xb5\xa2\xbe\x23\xa0\x98\xd1\x39\x75\x5c\x90\xed\xa1\x36\x80" "\xd0\x68\xa4\x13\x4f\x91\x3d\x38\x12\xea\xeb\xc1\x97\x3d\x39\x18\xc8" "\xf9\x06\xd5\x13\xdf\x1f\x22\x1a\x58\x5d\x77\x20\x98\x13\xcb\x35\x99" "\x9a\x65\x5d\xf6\x81\x83\xfb\x0a\x46\x67\x86\x6a\x05\xc5\xed\xcf\x04" "\xa9\x7e\x00\x12\x2f\x4f\x66\xb7\x72\xe3\x94\xe4\x0f\x26\xb6\x64\x37" "\x06\x5a\x4b\x42\xa0\x68\x76\xc0\xe9\x5c\xf9\x57\x39\x18\xe6\x6e\x3f" "\x6c\xa3\xed\x2f\x55\xfc\x44\x97\x53\xd2\x37\x98\xa4\x8c\xcf\x3a\x08" "\x53\x0c\x86\x0b\x6f\x76\x87\x5e\x15\x0f\x77\xe9\x65\xbd\xee\x26\xd6" "\xbe\xb1\xa0\xeb\xcd\x2d\x41\x9c\x60\x0d\x82\x3a\xa3\xf6\x49\xa4\x11" "\x57\xbd\xe1\x8c\x5d\x4f\x45\x49\xa5\x89\x55\xbf\x29\xfe\xa3\xeb\x86" "\xd3\x76\x20\x15\xc1\xf8\x96\xcb\x7b\xd4\x40\x0c\x01\x17\xb0\xbb\xac" "\xf1\xae\x0f\x2d\x27\x0a\xb1\x5f\xf2\x6e\x04\x0b\x64\x7c\x9f\xba\xdd" "\xe7\x62\xf4\xb2\xaf\x74\x3a\x74\x66\x35\x8d\x42\x31\xea\xaf\x34\x7a" "\x4b\xe2\xc6\x31\xb7\x0a\x71\xa6\x93\xbc\xeb\x27\xd9\x28\x14\x4a\x6a" "\x08\x5f\x83\xc9\xd9\xcc\x1d\x47\x03\x5d\xd0\x8a\xa3\xaf\xce\x00\xed" "\x13\x6f\xf3\x50\xf3\x48\x0e\x41\x11\x43\x35\x1f\x73\xb6\x2b\xaa\xbe" "\x1a\xcf\xf5\x7f\x0e\x4e\x25\xa6\x1d\x41\x50\xbf\x00\x6c\xb8\x93\x6f" "\x3b\x44\x01\x88\x2f\x58\xea\x2a\xed\xcb\x3f\x9a\x95\xec\xe1\x80\x39" "\xb5\x6d\x40\x6c\x87\xde\x1c\xb8\x17\x50\x47\x11\x77\xfe\x9b\x40\x3d" "\x63\xa1\x54\x29\x21\xa7\x8c\x5e\x2d\x54\x4b\x03\xc5\x63\x6b\xb6\x7e" "\xd1\x6f\xb6\x49\xb2\xba\x32\x54\xcd\x4a\x6a\xb2\x01\xce\x57\xfd\x6a" "\x08\x7e\xad\xf5\xaa\xfc\x98\x31\x8b\x61\xe6\x4c\xf1\x8f\x4d\xb0\xce" "\xca\x55\xbe\xdb\xf1\xe2\x8c\xe6\x2d\x3b\xc0\xd0\x67\xb8\xc5\xd1\xa4" "\x65\x87\xa1\xe9\x57\xad\x2f\x40\x3d\x92\xb4\x88\xec\x16\xd5\x03\x34" "\x65\xa5\xea\x35\x60\x38\x1c\xf3\xab\xbe\xdb\xc6\x9f\x7e\x10\x31\x51" "\xd8\x0a\x76\x99\x44\xe3\x86\x55\xe6\xde\xb0\xae\xe4\x70\x6d\x81\xd5" "\x09\xe7\xed\xb4\xa8\xcb\xaa\xa3\x98\x4f\xcd\xf4\xb5\xa3\xc0\xc2\x07" "\x3b\xcf\x0c\x5c\x15\x84\xbb\x8f\xd5\xaf\x06\xff\xe7\x3c\x4b\xe1\x2b" "\x75\x3e\xe1\x47\xe6\xc4\x97\xc7\x8d\xff\x57\x49\xd1\x8f\x1f\x80\x3f" "\xbf\xc3\xcb\x93\xc2\x87\xda\xcc\xc5\x55\x1d\x57\xdc\x52\x3e\x42\xee" "\x9a\x54\xec\xfa\x2d\x79\xa6\x4f\x87\xc5\xf4\x61\x1b\x66\x85\xc3\xb1" "\x08\x79\x0c\x76\x4a\xf7\x40\xa8\xd1\x3e\x8d\xe8\xc7\xad\x17\x84\xd2" "\xb6\xd7\xaa\x5e\x2d\x57\x57\xe1\xf6\xa6\x4a\xc4\xc0\xe6\x7f\xe9\x29" "\x1a\x51\xc6\x8d\xd1\xb1\xf2\x6d\x80\xac\x10\x27\x01\xe9\xf6\xd7\xa8" "\x52\x65\x68\x23\xc7\xe2\x21\x44\x83\x8b\xca\x64\x70\x89\x58\x8c\x13" "\x25\xb1\xb7\x8f\x75\x52\x58\x68\x32\x47\x8a\xf2\xe4\xac\x18\x0d\x74" "\xa1\x72\x07\x88\x82\x28\x17\xc2\x42\x6e\x81\xea\x82\x69\x73\x6b\x4d" "\xfc\x46\xb7\xbf\xdf\x96\xbe\x2f\x6e\xc4\x79\xae\x45\xf7\x65\x60\x90" "\xed\xec\x6f\x16\x38\x69\x02\x25\xfa\xf8\x71\x59\x6a\xcc\x16\xbc\x52" "\x27\x61\x92\xe8\x50\xdd\x17\x34\x05\x2b\x62\xb9\x31\x6a\x17\xe7\x33" "\x83\xcc\x5d\x5c\x18\xf5\x1c\x2b\x1a\x62\x23\x13\xcd\xfa\xc9\x53\xd2" "\xba\x4e\xcb\x60\xf6\x3d\x3b\xbf\x6e\xcd\x4c\xef\x1b\x87\x5d\x9d\xd6" "\xd1\x4d\x7e\x40\x87\xdf\x64\x4e\x2f\x68\x89\xd6\x48\xc2\x29\xcc\x31" "\x7e\xc2\x2d\x21\x6c\x8d\x6d\x20\x4d\xc4\xd5\xdd\xbe\x99\xdd\x36\xaf" "\x58\xb6\xdb\x42\x55\x69\xfe\x3a\xbd\xd7\xa4\x69\xa1\x8e\x70\xac\xdd" "\x8f\x04\x0c\x71\x1c\x17\x47\x03\xcb\x69\x40\xa3\x2a\x52\x73\x54\x04" "\xe7\x30\x20\x67\xce\x6d\x85\xa8\x67\x37\x81\xa1\x53\xca\x76\xb3\xea" "\xbb\xb9\xd9\xff\xe5\x4e\x02\xa4\x24\x70\xf8\x6a\xd0\x29\xa2\xc9\x34" "\x46\xf0\x4b\x11\x93\xbb\x99\x89\xcb\xa6\xda\xc4\x10\xa2\xad\xb0\xa1" "\x34\x8c\xf7\x59\x4a\xbc\xd9\xcb\x95\x95\xf7\x7a\x30\x60\x6d\xbf\xb1" "\x74\x6f\xad\x6b\x81\x98\x6c\xc4\xf4\x51\x8c\xb8\x78\xdf\x7c\xa8\x7f" "\x5b\x34\xf3\xc9\xd3\xab\x71\xcb\x1e\x5e\xf1\x49\x0d\xb3\xa2\x98\x1c" "\xc2\xc7\x19\x25\xca\xd3\xe8\x17\x2e\xfa\x02\xf0\x26\xc6\x6b\xfc\x9a" "\xa6\xe6\x70\xa4\x8b\x1e\x30\x53\x1c\x50\x44\xb3\x64\xb3\x38\xd2\xe8" "\x6e\x0a\xa5\x87\x67\x7f\x7a\x7a\x23\x96\x39\xae\xbd\x0c\x20\x3f\xdd" "\xf9\xb3\xbf\xbf\x3d\x9b\xe0\xdd\x98\x70\xe1\xe0\x8b\xa1\x21\x60\x9a" "\xed\xb6\x20\x2a\xa7\x83\xa7\x1d\xf9\x72\x60\x8d\x1c\x4c\xa7\xbe\xfd" "\xcf\x52\x7f\x56\xc1\xdc\x89\x2d\x4f\xbb\x7d\x1b\xb9\x71\x45\x39\x8e" "\xb8\x5e\x34\xab\x7b\x47\xb0\xcb\x07\xf5\x39\x2d\x3c\xcf\x63\x12\x24" "\xde\xad\x02\x6b\xb4\x21\x15\x59\x37\x23\xc7\x09\x42\x63\x83\x12\x97" "\xe7\x75\xaa\x86\x00\x31\x2f\x9e\xb9\xce\x09\xf6\x41\xab\x05\x0a\xf0" "\xc1\x15\x5a\xf3\x50\xcd\xc6\x2b\x73\x38\xea\x16\xad\x11\x3f\x27\xfc" "\xd0\x91\xd4\xb8\xb6\x9b\x62\x3b\x4b\x28\xf9\x89\xdc\x22\xd6\xd2\xc8" "\x6e\x76\x49\xae\xae\xec\x4e\xea\xe1\x70\x52\x23\xe0\x0f\x0b\xea\xaf" "\xf8\xde\xb8\xd9\x10\xeb\x05\x6a\x18\xeb\x26\x1a\x83\xd3\x6e\x40\x72" "\x28\x0f\x58\xbd\xae\x67\x14\xb5\x1e\xd4\xd8\xe6\x15\x85\x4c\x67\xec" "\x2b\x1b\xbf\x35\x31\x76\xfa\x88\x2b\x79\x14\x3d\xc0\xf2\xeb\xf2\xf3" "\x77\x9b\xdc\xc5\x07\x60\x94\x39\x79\x35\xe2\xc4\x00\xe4\x5e\x00\xc5" "\x73\x1a\xa8\x0f\xcc\x14\x98\xa9\xfd\xad\xe4\x2b\x0a\x77\x8d\xf9\xcd" "\x4c\x98\x54\xf1\x51\x9b\x46\x32\x3d\x13\x27\xed\x05\xca\x1b\x5b\x9a" "\xca\x8f\x4f\x28\x12\x31\xe4\xea\x03\x7c\x22\x4c\xd4\x6f\xc4\xb0\xb5" "\x30\x51\x1c\xf2\x07\xc7\x8e\xc4\x89\xb1\x7e\x56\x82\xfd\xa9\xaa\xe3" "\xc2\x04\x78\x63\x99\x28\x6e\x2a\x87\x6c\xdd\xad\x8a\x62\x03\x67\x9e" "\x93\x8d\x82\xee\x1b\x3b\x8b\xcf\x25\xb5\x1c\x0d\x09\xa6\xe0\x5c\x71" "\xf7\xba\x84\x2e\xa4\xed\xa1\x1b\x98\x1d\xb1\x8b\x55\x9d\x62\x4c\x63" "\x01\xf6\xe2\x08\x96\x16\xda\x47\xc4\x4e\x0b\xfb\x8d\x0e\xc1\xe0\x2a" "\x8c\x04\xa0\xc4\xe8\x23\x44\xfc\x99\x82\x21\xdb\xb0\x90\x77\x66\x01" "\x2e\xfc\xd5\xc8\xc0\x9d\xbc\xe2\xb2\xd1\xd5\xc1\xe8\xfb\x90\x80\xaf" "\xdc\x34\xdf\x03\x21\x3f\x71\xaa\xfd\x75\xf5\x2b\x07\x9e\x50\xf8\x3f" "\x56\xdc\x97\x97\x72\x84\xc9\x0c\x83\xbe\xa6\x01\x7c\x96\xea\x4e\x40" "\x18\xf7\x18\x76\xb0\xb5\x55\xa6\xf9\x89\x97\x03\xaa\x88\xdf\xe0\x5d" "\x8a\x6f\x12\x24\x26\xef\x0b\x3f\x07\x91\x28\xdc\xcd\x46\xa5\xb4\x35" "\x5a\xb1\xc4\x27\x6d\xb2\x17\x4d\x52\xa1\x2c\xfe\xf9\x7a\xcb\xea\xd8" "\x41\x79\x40\x01\x35\x00\xcb\x64\x63\x1c\xff\x17\x0b\xf0\x30\x6f\x94" "\x81\x0d\xa3\x74\xb6\xa6\xd8\xa8\x4c\xaa\x5d\x85\x60\x96\x6f\xe6\x43" "\x8a\x25\x64\xea\x86\x49\x16\x77\x93\xaa\xd2\xd8\x61\x75\x77\x87\xdd" "\x32\x37\x54\x43\x79\x9f\xe9\x5d\xca\x7f\x24\xa2\xa8\x08\x62\x8d\x83" "\x60\xa1\x1d\x3a\x50\xf8\x11\x9c\x78\x2b\x49\x9a\x18\x49\x16\xce\x74" "\xb6\xaa\x1b\xa7\x5e\x9b\x19\x95\xf1\xf2\x69\x77\x53\x71\xd2\xa8\xf3" "\xbc\xc3\xe0\x9f\x3e\x60\xee\xef\x82\x5d\x87\x04\x7b\x13\x4b\x68\xc3" "\xf1\x72\x34\xa7\xc4\xde\x9b\x5e\x27\xb9\x5d\x8f\x85\x09\x5d\x21\x8a" "\xff\xe1\xd3\x7a\x78\x77\xf7\x65\xe8\xe6\xaf\xa5\xe8\x43\x2f\xeb\x87" "\xae\x34\x21\x9a\x37\x49\xb1\x60\x49\x41\x41\x1f\xaa\x03\x0f\xce\x28" "\xdd\xb7\x2a\x24\x84\x3d\xb8\x75\x53\xf8\x0b\x64\x79\x47\x2f\x3c\xfc" "\xf6\x8d\xff\xe6\xf9\x5a\x6d\xad\x7a\x61\x87\x19\x09\xb5\xa1\xbb\xac" "\x60\x6b\x36\xce\xba\x3a\x8e\x0b\x70\x07\xd1\x3e\xe9\xf2\x41\x70\x4e" "\x71\x47\x96\xd2\x45\xb9\xab\x96\x52\xff\x94\x88\xc5\xc0\xe2\xd2\x31" "\x2a\x51\x9b\x86\x5d\x11\x06\xb9\x50\x47\xb9\x25\xac\x5e\x1a\x5e\x6b" "\xd0\xbd\xec\x0f\x50\x67\x3b\xf3\x6f\x29\x74\xf5\x6d\x70\xc4\x7a\x99" "\xc4\x90\x63\x21\x71\x88\x24\xab\x73\x6f\x06\xae\x10\xe9\xa9\x09\x80" "\x80\x86\x78\xbc\x5f\xdc\xc1\x5c\x7c\xba\xea\xd0\xae\x6f\xef\x2c\x95" "\xab\x9e\xda\x83\xbe\x5e\x2f\x2b\xfc\xdf\x11\xbf\x04\x7d\x34\xad\xb8" "\x53\x2d\xbf\x80\xbd\x8d\xdd\xaa\x4f\xb5\x72\x18\x19\x44\xe5\x28\x94" "\xe4\xf5\xdb\x97\x70\x33\xbd\x11\x81\xd6\x2b\x0f\x0e\x33\xf2\x26\x9a" "\x89\x4e\x53\x18\x55\x42\xc7\x23\x0d\x7e\xec\x36\xc4\xec\xc5\xc4\xf9" "\x8f\x03\xf6\x1e\xb2\x65\x4d\xf4\xba\x9e\xb9\x21\xcf\x0b\x62\x73\x7b" "\xf5\xd6\x5d\x38\x23\xe7\x2a\x6f\xce\xeb\x69\x12\xc0\xd6\x25\x50\x29" "\x52\x8d\xa6\x5d\x2b\xf7\xcd\x79\x62\x91\x91\x92\x67\xed\xbc\x93\x85" "\xb0\x1c\x5e\xa9\x07\x14\xf6\x3c\xc2\x4c\xa8\xdf\xb2\x37\x85\xfe\xe9" "\x64\x68\x87\x4f\xd9\xa0\x4a\xc2\x1c\x34\x54\x7c\x5c\x34\xcb\x5e\xe0" "\xe9\x97\xa8\x98\x03\xab\xe6\xc2\x4b\xdc\xad\xea\x1b\x00\x97\xa9\x51" "\xc3\x3b\xb2\xfa\x1d\xc5\x35\x1b\x1a\x32\xe8\xfc\xcb\xed\x92\x06\x59" "\x72\xb6\x44\x2f\x54\x66\x95\x5c\x26\xc9\x66\x95\xb6\xc2\x95\xab\x93" "\xce\xe6\x34\x4d\x57\x32\xd2\xef\xb4\xe1\xc7\x68\x02\xe1\x3e\x1e\x7f" "\xab\x42\x67\xea\x85\x46\x92\x43\x92\xc0\x21\xb3\x4c\x49\x08\x5b\xed" "\x1d\x8d\x9d\xe7\xe0\x18\x89\xa1\x42\x5e\xbd\x47\xc7\x07\x02\x1f\xba" "\x35\xd5\x2d\x72\x45\xf7\xe0\x6c\xe4\x5c\x9b\x47\x5b\x1e\x82\x13\x53" "\x85\xb7\xde\xe2\x14\xe7\x3b\xfd\x71\xa1\x94\x47\x19\xb5\x41\x5c\x1a" "\x6b\x6a\x7a\x12\x22\xea\x8c\xd6\x24\x1b\x9f\x4a\x59\x93\x84\xe6\x5d" "\x95\xaf\x59\x3e\xb3\x6f\x4a\xc8\x02\xb1\x46\xc0\x90\x1b\xd6\x66\xdc" "\x41\x61\xf7\x9f\xc3\xb3\xc8\x28\xba\x7c\x65\x2f\xc1\xe9\x51\xaf\x4b" "\x43\xa5\x7a\x89\xc8\x84\x3e\xaf\x69\x32\x26\x96\x54\x06\x60\xa6\xed" "\x1a\xdf\x34\x27\xb7\x48\x89\xd3\x78\x31\x79\xec\x73\x62\xf4\x5f\xa0" "\x22\x63\x2a\x1f\x88\x74\x91\xe6\xc3\x79\x60\x05\x48\x12\x08\x63\xf1" "\x20\xc9\xb1\x4f\x9c\x70\x8c\x4a\xad\x95\xf4\x9b\x9c\x76\x18\x24\x3c" "\x49\x53\x58\x09\xad\x60\xa5\xc6\xd5\x68\x9c\x18\x6e\xcf\x69\x73\x23" "\xbf\x84\xf6\xd0\x51\x60\x3b\x6b\xcb\xa9\xfe\x37\xe9\xfd\xd3\x12\x21" "\xc8\xba\xa1\x9b\xe1\xcc\x6b\x1e\x5f\x4a\x1e\x70\xaa\xff\x0f\x2d\x3d" "\xa2\x24\x16\x8d\x70\x96\x85\x3f\x5f\x36\x97\x8e\x72\x6e\xec\xb9\x2f" "\xd0\x87\x5c\x87\x45\x62\x97\x4c\x37\xe4\x1d\xc3\x5f\x8f\xe1\x24\x17" "\xda\x18\xf0\xe2\x4b\x0c\x5f\x9b\xf8\x33\x7b\xce\x14\xb7\x7f\xd6\x15" "\x27\xab\x99\x0d\xef\xb1\x56\x73\x93\x83\xce\x0c\xb8\x0f\x9e\xd4\x64" "\x73\xe1\x6b\x7f\x71\xd9\x80\xa5\x2c\xc7\x2f\xcc\x71\xac\xb9\x08\x70" "\x64\x8c\x70\x2e\x2a\xcd\x0c\xe8\x5b\x8c\xff\xff\x18\xd7\xa2\x51\xac" "\x81\xa7\x5e\xea\x3c\x96\xdf\xfa\x47\xe8\x96\x38\x0e\xea\xf6\xa6\x57" "\xe5\xba\x5a\xcd\xad\xba\x1e\x5a\xb1\xab\xbb\xc6\x40\x17\x93\x92\xc6" "\xb8\x03\xbe\x73\x5a\xae\x83\x77\x97\xaa\xa9\xfa\xda\x60\xc4\xd4\x6e" "\xaa\x72\xd1\x77\x69\xda\x44\x43\x2c\x9e\xdf\xde\xe9\x81\xc6\xe0\x63" "\x7b\xf7\x89\x84\xdd\x2a\x60\xa3\x17\x5d\x59\x0e\xd0\x68\x3d\x8b\xd0" "\xd3\xdf\x74\xab\xf5\xb4\x83\x9f\x19\xb5\x9f\xfa\x8e\x96\x66\x21\xb8" "\x34\xe7\xed\xbe\xce\x88\xa7\x50\x37\x73\x5a\xee\x2a\xa0\x6c\x36\xd7" "\xa2\x97\x47\x13\xa8\x67\x82\x75\xd1\x38\xdb\x17\x0d\x45\x2c\xa1\x97" "\x0a\xea\xf4\xc4\xbc\xba\x73\xfb\x42\xf0\xf9\x27\x89\x77\xa3\x31\x3e" "\x19\x96\x34\x04\x2d\x72\x5e\xd3\x0b\x1c\xdd\xa3\x20\xc6\x5d\xb8\x34" "\x51\x99\x61\xd9\xda\x19\x75\x38\x77\xe5\x34\x81\xf3\xdb\xf5\x3c\x93" "\xd0\x1b\x49\x79\xbc\x99\xdf\xf4\x80\x03\x43\xfe\xad\xf7\x37\x79\x28" "\xc3\xc0\xda\x3b\xbe\xf9\xf7\x7a\x9b\x90\xdc\xcd\x92\x4f\x6a\x7a\xf4" "\xdb\x5d\xc7\xb3\x3f\xd7\xae\x21\x61\x26\x89\x28\x7e\x6e\x53\xce\x28" "\xcb\x09\x3e\x91\x49\xd8\x6f\x36\x68\xc2\x72\xc2\x9b\x58\xe0\x07\x60" "\xa3\x37\x7b\x25\x10\xf2\x36\x0e\xc9\x99\xaa\x7f\xaa\x5a\x3e\x8c\xd6" "\xf2\x13\xea\xf1\xaa\x5e\x4a\x2b\x44\x4f\x44\x83\x56\x9c\x87\xdd\x86" "\x70\x6f\x5b\x9c\x2b\x6b\x01\xe5\x62\xb3\xcb\x75\xfc\x15\x44\x05\xd8" "\xbe\x99\x6f\xa3\xcf\xf6\xf6\xdf\x95\x1a\xbd\xfd\x80\x91\x3e\xa6\xe9" "\x55\xe6\x70\x42\x18\xfd\x21\x5d\xf8\x6e\xfa\xf9\x4a\x54\xfb\xd8\x02" "\x4d\x08\xce\xae\xa0\x7d\x74\xba\x36\x9b\x43\xb6\xa3\x80\xc2\x7c\x3e" "\x3f\x1d\xa7\x76\x5c\x3c\x74\x14\xbb\xef\x1b\x7b\x3b\xf0\x8e\x06\xe4" "\x6c\xfc\x10\xa7\x3a\x33\xb7\x68\x39\x88\x23\xa5\x32\xd0\x1a\xf5\xff" "\x5b\xe0\x46\xb1\x45\xce\xfe\xd7\x7c\x31\xde\xc9\x31\xed\x79\x54\x59" "\xdf\x94\xbd\x6d\xf5\x35\xa7\xe6\x5d\x36\x50\x99\x49\xed\xa1\xc2\xba" "\xb3\xaa\x7c\xf7\x7d\x8d\x78\xa7\xe5\x14\x7f\xce\xc3\xea\x78\xad\x54" "\xa4\xde\xe4\x0f\x6f\xcf\xb5\x12\xae\x8f\x0a\x70\xcb\x46\x34\xff\xea" "\xf3\x76\xe1\x1f\xe1\x58\xb2\x4e\xc3\xea\x76\x66\xbd\x31\xee\x08\xca" "\x89\xfe\x2c\xa6\xe4\xbd\x30\xe0\x78\x6f\xa2\xfe\x96\x4c\xf1\x06\x5c" "\xc0\x46\x7c\x27\xfd\x5d\x47\x58\x21\x70\x53\xc7\xcb\xa3\x85\xe1\x3f" "\xbe\x51\x48\x9e\xc8\xe1\x67\xe1\xa4\x55\x7b\xa2\x92\x22\xb5\x68\x4c" "\xc3\x3b\x83\xb3\x09\x2d\xb6\x95\x9e\xaa\xbe\xc1\x59\xc3\x4a\x21\xd7" "\xe3\x52\xaf\xe3\x24\x26\x2c\x5e\xe3\xc3\x26\x59\xaa\x01\x35\x95\xcd" "\x38\xc6\xe3\xef\x20\xfa\x77\xb9\xf4\x00\x87\x30\xe9\xde\x80\xc4\x77" "\xb2\x3e\x3e\x9c\x6b\xfe\xc3\x68\x8c\x4f\x22\x2e\x61\x0c\x02\x6d\xd1" "\xb7\x62\xce\xcb\xce\x18\xfd\x39\x35\x9a\xc0\xa7\x7b\xf1\xb2\xe6\x15" "\x99\x2d\x02\x15\x97\x36\xb6\x83\xa4\x2d\x41\x9b\x9c\x5d\xda\x8f\x29" "\xf8\x5e\x78\x58\x22\x18\x03\xb4\x2b\x4e\x82\xe2\x34\x3f\xaf\x01\x61" "\x93\xef\x73\xa7\x51\xe4\x2e\x92\xc8\xfd\x5d\x92\x4f\xa5\xa1\x92\x5e" "\xd9\x9f\x24\x73\x4f\x25\xad\xe7\x58\x42\x12\x42\x44\x29\x77\xfd\x32" "\x84\x40\x37\xd4\xca\x4e\x43\x78\x4f\x9b\xc1\x20\x6c\x28\x61\x4c\xb8" "\x6e\x37\x4a\x95\xac\x1c\x88\x07\x3e\x4c\x36\x38\x02\xab\xd7\x36\x7b" "\xdc\x4c\x2e\x1b\x82\xc9\xbe\xdf\xb2\x1b\xc5\xe1\x13\x62\x8d\x47\xa7" "\x52\x76\xeb\xb2\x57\xbd\x70\xc0\x93\xf0\x8c\x0d\x70\xa7\x26\xb2\xc4" "\x85\xfc\xfa\x6e\x96\xdd\xe4\xba\x58\x1b\xa0\xe1\x17\x2c\x80\xf5\x33" "\xce\x1f\x19\x87\x43\xda\x01\x68\x1f\x7f\x29\x88\x19\x65\x04\x5e\xbc" "\x58\x34\x8a\xbf\x83\xfc\x63\x5a\xbd\x9a\x91\x0e\x73\xae\x6c\x2e\x24" "\xe6\xa2\x2f\x04\xb6\x4d\x2b\x63\x8d\xd5\x24\xe6\x85\x19\x9e\x86\xdf" "\xd0\xda\xcd\x4b\x73\x01\xf3\xbe\xae\x4e\x3e\x1a\x34\x08\xc9\xe8\xd5" "\xa4\xe7\xe8\x44\x15\xaa\x23\xf6\x28\x48\xcf\xb0\xfb\xf2\x1d\x12\x0e" "\x4f\x21\x74\xa7\x5e\xde\xc0\x5e\xc0\x6d\x56\x82\xd2\x99\x88\x27\x7d" "\xc3\xed\x71\x98\x65\x79\x97\xa8\x94\x74\x27\x96\x9a\x8e\xdc\xa3\x90" "\x73\xe3\x58\x46\x65\xdb\xb9\x0c\x20\x2c\x0b\xc8\x0b\x0b\xb9\x77\xbb" "\x95\xf9\x43\xdb\x0b\xed\x8d\x00\xca\x70\x54\x5a\xa0\xcd\xae\x52\xd1" "\x57\x89\xce\x09\xc2\x0f\xe1\xae\x23\x07\xa4\x47\xe7\x35\x15\xe3\xaa" "\x5b\xfa\xfd\x1c\xe1\x4a\x1f\xf7\x3c\x54\x1b\x15\x8f\x4c\xf7\x26\x9d" "\xaf\xf9\xfb\x6e\x70\x0d\x05\xe6\xf8\x11\x17\xff\x60\x8a\xcf\xd8\xa9" "\xf4\xe3\x4b\x05\x85\xc8\x98\xc4\xf7\xcc\x52\x1b\xa4\xff\xbb\x7e\x71" "\xaf\x94\xb4\x68\xa4\xa6\x6f\xf0\xaf\xcd\x10\xc5\x3d\xf4\xa8\x3f\x8d" "\x76\x50\x4d\x67\xe4\x36\x86\xa2\xad\x0d\x45\xe6\xed\x05\x64\x93\xa8" "\xf9\x2c\xe3\x57\xa4\xe7\x77\x2e\xa7\xf9\xde\x5b\x94\xc2\xa8\x78\x72" "\xc1\x46\xc6\xff\x9c\xc3\xa9\xc5\x52\x97\x2c\x7d\x2d\xf7\x49\x13\xcd" "\x8c\x0d\x46\x38\x4e\x8e\x6d\x2e\xa0\xf1\x9a\x7c\x02\xe9\x8f\x8b\x0f" "\x7d\x98\xf1\xf2\xef\x2d\xb3\xe9\x95\x7b\xde\xee\x70\x83\x46\x44\x6b" "\x9c\x01\xbb\x45\xba\x16\x00\x8a\x0b\x9f\x54\x9a\xdb\x7b\x84\xf0\xe6" "\x33\xec\x40\x0a\xb5\x69\x71\xef\x9a\xad\x2a\x0e\x6f\x4d\x3a\xbb\xdb" "\xf0\xb7\x03\x19\xfc\xd9\x80\x53\x81\x75\xd5\xa3\x46\x0e\x1c\x3b\x31" "\xaa\x79\x83\x0f\x43\x24\x3b\xf1\x6b\xdf\x95\xfe\x7a\xec\x3d\xbf\xc8" "\xb7\x9f\x42\x3c\x0a\x8c\x35\x64\x0e\x55\xc2\xd8\x01\xd2\xee\xa8\x97" "\xb5\x0c\xb3\x37\xdc\x93\x1e\x76\xde\x4b\x35\xcc\x0d\xde\x0c\x4a\xbd" "\xcf\x1a\xf1\x5a\x59\xe4\x3e\x43\xba\x26\x74\x75\xfe\x4a\x04\xe1\xb2" "\xc3\x58\x34\x32\xb7\xa2\xf1\x9a\xe9\xee\x3a\x30\xae\xbc\x4f\x0c\xbd" "\xd3\x65\x7c\x9f\x9b\xb2\xa9\xa1\x44\xd3\xa1\x41\xf8\xbe\x03\x28\xfa" "\xc1\xf7\x98\x77\x54\x07\xaa\xcc\x03\xa7\xcd\xb3\xae\x94\x73\x63\xd0" "\x55\xdd\x26\x7d\x66\x02\x38\xbf\x95\x50\x5f\x6e\x9e\xdc\x18\x1c\x8e" "\xb2\x23\x38\xa5\xaa\xf6\x79\xcb\xcb\x24\x0a\x77\x6a\x2e\x3c\x38\x5e" "\xf7\x3d\xa5\x32\xf2\x66\x07\xe3\x56\x09\x46\x97\xc9\xcb\x0d\x3d\x24" "\x8f\x49\x4d\x04\x4b\xd2\xfc\xab\x70\x29\xce\xa8\x5a\x79\x26\x65\x96" "\x97\x4a\xed\xf9\x53\x14\x6f\x80\x90\x2e\x39\x42\xce\x78\xd5\x42\xe3" "\xcc\xed\x58\x84\xe3\x7b\x3a\x23\x90\xbc\x2d\xa2\x73\x6c\x7e\xb4\xdb" "\x48\x81\xbc\x13\x61\x5b\xf7\x17\xb6\x8c\x94\x88\x69\xfa\x94\x0c\x33" "\xc0\x34\x55\x5f\x89\xde\xf1\x8a\x54\x9e\x0c\xe7\x67\xa3\xd7\xfa\x3f" "\xd7\x53\x11\xc1\xb4\x8e\xe8\xf4\x01\xed\xa3\xfa\x89\xe9\x3d\x21\xf1" "\x7e\xd6\xdd\x10\xe5\x67\x0b\xc0\x0a\x09\x65\x75\xcf\x54\xba\x88\x33" "\xca\xaa\x5e\xf0\x8a\x48\xa6\x6a\x6c\xd7\x3d\x97\x7c\xe8\xba\x33\xbe" "\x42\xd9\x02\xdc\x80\xab\x43\x19\x69\xfb\x5d\x44\x1c\x2e\x53\xb3\xa8" "\x9b\x90\x79\xb1\xc7\xb0\x67\x11\xdc\x43\x4d\xf1\x39\xec\xbb\x9d\x46" "\x2b\x5b\x00\xc8\xa6\xde\x39\x8c\x28\xc5\x92\xcb\xa3\x91\x15\x96\x72" "\x99\x8d\x72\x9c\xcc\xa6\x7a\xb4\xad\xfe\x4b\x5c\xd6\xf2\x01\xde\x33" "\xe8\x4f\xf7\x62\xe8\xa8\x62\x4b\x9a\xb1\xf9\x9f\x0b\x37\x63\x7d\x26" "\xe0\x36\x8b\x4a\x84\x0a\x49\x1f\xf5\xaa\x34\x0a\xca\x99\xda\x34\xfe" "\xd9\xd1\x1b\x74\xfa\xc5\x0b\x08\x18\xc2\x4a\xa8\x26\x63\x29\xab\xa9" "\x6b\xfd\x23\x9e\x44\x0a\x66\x68\x6e\x26\xe1\xf0\x8b\xad\x16\x12\xc3" "\xec\x28\x0d\x45\xd1\x9e\xed\xa0\xab\x2c\xa8\x3f\x57\xef\x2d\x8f\x09" "\x3c\x06\x3a\x9d\xc6\x64\xd9\xac\x74\x39\x6d\xc6\xb8\x1e\xc6\x3c\x26" "\x1a\x52\x8f\x06\x91\x28\x61\x28\x29\xf5\x4f\xd6\x9c\xa0\x50\xd5\x59" "\xc2\xc0\xaf\x63\x0d\x3f\xb6\x8b\xda\x5e\x04\x07\x49\xb0\xc1\x94\xa8" "\xf6\x6a\xf9\xa7\xf7\xb6\x5c\x1f\x82\x9e\xb2\xda\x73\x74\xea\x10\x49" "\xcd\x45\x82\xb1\xb3\x4e\x0a\xeb\xdd\x91\x79\xb2\x77\x22\xda\x30\x10" "\x1e\x31\xbf\x72\x8b\xc3\x55\x7b\x44\x50\x4d\xd0\x11\xd0\x0f\x00\x43" "\x49\xca\x35\x69\x90\xdf\xe3\x82\xe5\xf0\xc7\x24\xca\x69\x28\xc4\xe8" "\x28\xb3\xc8\x9c\x89\xaa\xb9\xb3\x67\xa3\xb7\x38\x35\xd3\x32\x6d\xaf" "\x82\x1c\xe4\xfa\x27\x9d\x53\xae\x1f\xf9\x7e\x7f\x9c\xb2\x6f\xca\xe0" "\x6b\x66\x4c\x6c\xa7\x3c\xdd\xb3\x79\x66\x85\x5b\x82\x43\xd4\x52\xa0" "\xfe\xcf\xf1\x80\xf2\x8e\x7e\x7b\x86\x9c\xa7\xe3\x12\xe2\xa6\x39\xba" "\xc7\x06\xc6\xd6\xad\x1e\x74\x6f\x29\xa6\xfc\xb7\x6f\x26\x28\xbe\xd6" "\x0a\x1e\x79\x46\x70\xf9\x80\x47\x6a\xf9\x8b\xe7\xcd\x23\xcd\x0d\xec" "\xa0\xcb\x6b\x04\x63\x35\xf6\xb9\xc5\x67\xcf\x08\x7c\x8c\xe0\xc9\x46" "\x5b\x15\x9e\x68\x71\xe5\x4b\x5f\x26\x71\x4e\xdc\xb2\x83\x46\x8e\x67" "\xca\x97\xf5\x11\xec\x9e\x52\x9c\x35\x1e\x90\x79\x94\x34\x15\xab\xf5" "\x0b\x74\xc6\xd0\xee\x25\xd3\x78\x89\x8d\x55\xfb\x78\xdb\x56\x6c\xe6" "\x1c\x93\x1e\x5a\x2a\x9c\x9f\xcb\x57\x65\x2e\xad\xcd\xd9\x45\x83\xc8" "\xbf\xc9\xa4\x06\x6c\x54\xd6\x80\x57\xe7\x9c\x28\x97\x92\xfe\xc6\xe0" "\x7b\xf2\x15\x6a\xd1\xc6\x5e\xb6\x98\xa8\x03\x49\x71\xbd\x62\xe3\x63" "\x5e\x3d\xc6\x12\xdf\xec\x90\xd9\x64\xb2\xd3\x5c\x7f\x65\x7b\x5f\x13" "\x8c\x59\x55\x50\x2e\xb9\x66\xc9\xe8\xc2\x05\x29\x19\x93\x8c\x23\x61" "\x9f\x41\xe1\xeb\xf6\x25\x67\x4c\x7c\x7a\xfc\xfb\xe5\xff\xbe\x88\x4e" "\xc6\x1a\x3e\x1d\x3b\x96\x91\x20\x57\x3e\x9e\xf6\x10\x89\xe4\xf3\x21" "\x3d\x6b\x10\xe6\xe8\xca\x98\xdd\x97\x5d\x1a\x6f\xfd\x73\x90\x80\xaf" "\x47\x76\x27\x57\x75\x0d\xb1\xac\x07\x33\xef\xb8\x25\x2d\xa1\xc4\xdd" "\xe9\xa5\x39\x5d\x58\x30\x25\xfb\x64\x41\xcf\x66\x25\xec\xe5\x82\xba" "\x65\x0a\x20\x2f\xd2\x0b\x63\x90\x9e\x7d\x5a\xa5\x53\xff\x9f\xda\x86" "\x87\x72\x30\x55\x89\xbe\xea\xb9\x34\x25\x96\xd2\x13\x29\x24\x96\xb4" "\xcb\xd9\x57\x94\xca\xf5\x00\x9a\x4b\xda\xfd\x41\xa1\x09\xfe\x7c\x95" "\xed\xd5\xc9\x4c\x66\xbc\x42\x21\x51\x28\x50\x82\xc5\x01\x7b\xa9\x76" "\x0f\x2d\xe2\x8f\xc2\xe6\x3e\x5e\xd3\x99\x9b\xb6\x59\xcb\xc0\x60\x30" "\x00\x55\x94\xbb\x7b\x23\x2f\x9d\x11\x64\xc2\x53\xd5\x4a\xf6\xcb\x66" "\xac\x28\x9c\x36\x1d\x75\x44\xc6\x2f\x80\x11\xd7\x19\xcb\xfd\xe3\xc7" "\xd2\x26\x32\x12\x2d\x4e\x44\x62\x2e\x6e\xf9\x5f\x15\xbf\xa0\x43\x97" "\x7e\x69\x93\xc1\x97\x79\x05\xb6\xa6\xc6\x37\x0d\x86\x78\xf8\xff\xa9" "\xc7\x38\xea\x3b\x4b\x4d\xb3\x48\xf7\x2a\xef\xf9\x77\xd1\xf5\x81\xf0" "\x3c\xed\x82\x7e\x45\x7e\x8f\x02\x69\x38\x97\x5e\xeb\xd9\x42\xf0\x30" "\xa1\x56\xcd\xbc\x4a\xfa\x2c\xb0\xfd\x3e\x0f\xa5\xf1\x4f\xf8\x66\x80" "\x04\x22\x39\xc0\xbc\xee\x70\x04\x95\x41\x4e\xe7\xc4\x56\x0b\x95\xa6" "\x70\x48\x57\xee\x77\x61\x7d\x10\x00\x71\x8e\x2b\x8e\x2f\x33\x03\x0b" "\x73\x9d\xf2\x6b\xa8\xc3\xde\xc3\x7d\x17\x33\x32\x02\xef\x62\x0b\x55" "\xbc\xcd\x27\x1f\x4d\x1f\x54\xf0\x65\x8c\x06\xb8\x8e\xd8\xb4\x82\x0c" "\x64\x1f\xbd\x87\xd3\x8a\x44\x98\x64\xd1\xea\x09\x28\x70\xe4\x9a\x01" "\x24\xdb\x20\x50\x4f\x07\x3d\x87\x6c\xa4\xf0\x77\x3e\x7a\x75\x91\x3e" "\xf0\xa8\x8c\xd0\xfa\x4f\x51\x82\xdd\x1f\x2c\x9e\x3f\x70\xfa\x7f\x6f" "\x24\x6c\x51\x50\xe9\x0d\xa0\x55\x04\xf8\x62\x0a\x49\xcb\xc7\x52\x57" "\x95\x84\x9c\x0c\x36\xbf\x9e\xad\x84\xfb\x58\x72\xc1\x78\x44", 8192); *(uint64_t*)0x20005500 = 0; *(uint64_t*)0x20005508 = 0; *(uint64_t*)0x20005510 = 0; *(uint64_t*)0x20005518 = 0; *(uint64_t*)0x20005520 = 0; *(uint64_t*)0x20005528 = 0; *(uint64_t*)0x20005530 = 0; *(uint64_t*)0x20005538 = 0; *(uint64_t*)0x20005540 = 0; *(uint64_t*)0x20005548 = 0; *(uint64_t*)0x20005550 = 0; *(uint64_t*)0x20005558 = 0; *(uint64_t*)0x20005560 = 0; *(uint64_t*)0x20005568 = 0; *(uint64_t*)0x20005570 = 0; *(uint64_t*)0x20005578 = 0; syz_fuse_handle_req(r[0], 0x20003040, 0x2000, 0x20005500); 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; }