// https://syzkaller.appspot.com/bug?id=699e4f546c33df9781a67891d42766bbbe3ca30b // 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 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; } } #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 loop(void) { int i, call, thread; for (call = 0; call < 10; 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, 50); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } uint64_t r[3] = {0xffffffffffffffff, 0x0, 0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x20002040, "./file0\000", 8); syscall(__NR_mkdirat, 0xffffff9c, 0x20002040ul, 0ul); break; case 1: memcpy((void*)0x20000300, "/dev/fuse\000", 10); res = syscall(__NR_openat, 0xffffffffffffff9cul, 0x20000300ul, 0x42ul, 0ul); if (res != -1) r[0] = res; break; case 2: memcpy((void*)0x200020c0, "./file0\000", 8); memcpy((void*)0x20000280, "fuse\000", 5); memcpy((void*)0x20000180, "fd=", 3); sprintf((char*)0x20000183, "0x%016llx", (long long)r[0]); memcpy((void*)0x20000195, ",rootmode=00000000000000000040000,user_id=", 42); sprintf((char*)0x200001bf, "%020llu", (long long)0); memcpy((void*)0x200001d3, ",group_id=", 10); sprintf((char*)0x200001dd, "%020llu", (long long)0); syscall(__NR_mount, 0ul, 0x200020c0ul, 0x20000280ul, 0ul, 0x20000180ul); break; case 3: res = syscall(__NR_read, r[0], 0x200077c0ul, 0x2020ul); if (res != -1) r[1] = *(uint64_t*)0x200077c8; break; case 4: *(uint32_t*)0x20004200 = 0x50; *(uint32_t*)0x20004204 = 0; *(uint64_t*)0x20004208 = r[1]; *(uint32_t*)0x20004210 = 7; *(uint32_t*)0x20004214 = 0x1f; *(uint32_t*)0x20004218 = 0; *(uint32_t*)0x2000421c = 0x26000; *(uint16_t*)0x20004220 = 0; *(uint16_t*)0x20004222 = 0; *(uint32_t*)0x20004224 = 0; *(uint32_t*)0x20004228 = 0; *(uint16_t*)0x2000422c = 0; *(uint16_t*)0x2000422e = 0; memset((void*)0x20004230, 0, 32); syscall(__NR_write, r[0], 0x20004200ul, 0x50ul); break; case 5: memcpy((void*)0x20004280, "./file0\000", 8); res = syscall(__NR_openat, 0xffffff9c, 0x20004280ul, 0ul, 0ul); if (res != -1) r[2] = res; break; case 6: memcpy( (void*)0x200042c0, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x28\x60\x71\x48\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 8192); *(uint64_t*)0x200062c0 = 0; *(uint64_t*)0x200062c8 = 0; *(uint64_t*)0x200062d0 = 0; *(uint64_t*)0x200062d8 = 0; *(uint64_t*)0x200062e0 = 0; *(uint64_t*)0x200062e8 = 0; *(uint64_t*)0x200062f0 = 0; *(uint64_t*)0x200062f8 = 0; *(uint64_t*)0x20006300 = 0; *(uint64_t*)0x20006308 = 0x20006340; *(uint32_t*)0x20006340 = 0x20; *(uint32_t*)0x20006344 = 0; *(uint64_t*)0x20006348 = 0; *(uint64_t*)0x20006350 = 0; *(uint32_t*)0x20006358 = 0; *(uint32_t*)0x2000635c = 0; *(uint64_t*)0x20006310 = 0; *(uint64_t*)0x20006318 = 0; *(uint64_t*)0x20006320 = 0; *(uint64_t*)0x20006328 = 0; *(uint64_t*)0x20006330 = 0; *(uint64_t*)0x20006338 = 0; syz_fuse_handle_req(r[0], 0x200042c0, 0x2000, 0x200062c0); break; case 7: memcpy( (void*)0x20002100, "\xfd\xdf\xfa\x1c\x9f\x51\xbc\x73\xf9\x5a\x24\x21\xb5\x81\x33\xbc\xe4" "\x2b\x69\xaa\xda\x03\x9d\xe7\x64\x2f\xca\x38\x87\xe4\x04\x01\x1e\x84" "\x82\xe4\xa3\x00\x28\x2e\x95\x88\xfe\xa8\xb6\x63\xcb\xbd\x49\xdb\x92" "\x41\xc3\x23\x33\x78\x78\xdf\xc6\xf8\x88\xa3\x60\xe2\xc0\xcf\x8c\xc9" "\x90\x9d\xab\x40\x97\x3a\xc1\x0b\x59\xe7\xbc\xbc\xcf\x09\x91\x84\xd2" "\xda\x23\x37\xd5\x8f\x9c\xcd\x14\x7c\x0e\x49\x02\xde\x14\x64\xc2\x73" "\xc8\xdd\xd5\xf6\xca\x13\x62\x5e\x03\xee\x51\xc8\x3c\xd2\x18\x82\xc9" "\x5c\xff\x7a\xbf\x58\xc1\xfa\x89\x9e\xd6\xd0\x0d\x3e\x07\xf7\x88\xb3" "\x3b\x0b\xca\x49\x91\x21\x11\x5f\xcd\xd6\x66\xf1\xdf\x09\x84\xf4\x69" "\x9e\x1e\x0e\xdc\x04\xe0\xf3\x8e\x50\x60\x3a\xfd\x75\x46\x88\x44\x50" "\xf2\xb0\x45\xdf\x3e\x34\x3d\x68\x46\xa3\xc8\x90\xcd\xfa\xba\x8e\x3d" "\xc8\xfd\xf0\x42\xf8\xc1\x23\xf2\xf3\xee\x3f\xc4\xe4\x43\x4f\xda\x3f" "\x6d\x4a\xb8\xb2\x38\x37\x3f\xe3\x4b\xcb\xd3\x80\xf9\xb8\xa5\x45\xee" "\x12\xd1\x90\x1e\xad\x45\x45\xd5\x48\x4e\x15\xa9\xe9\x8f\x08\x03\xe3" "\x57\xf5\x3d\x45\xa0\x9c\xdb\xb5\x4e\x8f\xf3\xf3\x8d\xbf\x6d\x1b\x99" "\xbe\xa8\xc8\xd2\x93\x43\x01\x77\x19\xff\x0b\x85\xbe\x99\x25\x2f\x5a" "\xe2\x03\x07\xa3\x7c\x3a\x5d\x77\x7a\x5b\x4c\x32\xaf\x89\x29\x15\xdd" "\x01\xca\x5a\xb1\x47\x20\xe1\x86\x39\x7f\xd2\x29\x13\xea\x05\xcd\x87" "\x17\x4d\xf8\x91\x1d\x81\xcd\xa5\x98\x54\xb5\x0f\x7d\x56\xa1\x37\x22" "\xf7\x87\xec\x3c\xaa\xc7\x9e\xf1\x63\x94\x3b\x7f\xc4\x4b\xe6\x54\xcc" "\xb1\x72\x67\xfc\x4f\xe2\x05\xa8\x29\x25\xeb\x47\xf6\xab\x51\x93\x04" "\x6d\xae\xf8\x3a\x74\xe8\x47\xd2\xa7\x18\x1b\x21\x2e\xff\xc9\xb0\x60" "\x78\xb2\xd3\x4c\xa4\xd1\x35\xd9\xa6\x61\xbb\xe8\xb4\x98\x3f\x0a\x36" "\xdd\x49\xea\xfb\x92\xa4\x9f\xe3\xce\xe4\x21\xbf\xef\x07\xae\x3b\xdb" "\x4c\x11\x17\x9c\x15\xe8\x94\xec\x42\xf9\x9e\x25\x54\x09\x64\xa6\x68" "\x2e\xed\xd5\x16\x8f\xaa\xde\xf6\x29\x04\x77\xad\x65\x55\x52\x8f\x41" "\x99\xf1\xd6\xe4\x8b\x64\x20\xfa\xa2\xbf\x42\xe5\x31\x6b\x55\xa6\x6f" "\x1f\xbb\xa9\x23\x09\x95\xfe\xb3\xfd\x10\x07\xb0\xdc\xfd\x5f\x2b\x2b" "\x82\xc0\x5b\xd4\x42\x30\x0e\x97\x00\xdb\xc0\x23\xd5\x9f\x96\x8d\x57" "\xde\x75\x42\x78\x21\xb7\x44\x64\x8a\xc6\x42\xb2\x6d\xaa\x78\xf9\xd8" "\xa4\xac\xae\x0f\x44\xfc\xbc\x21\x32\x3a\x1b\xf7\x59\x80\x05\x6e\xf6" "\x8a\x52\xa4\x05\xa0\x25\x1a\xe5\x63\xc0\x9f\x30\xde\x06\x79\x30\x5d" "\xf1\xc3\x90\xdb\x8e\xe0\x1e\x2b\xfb\xeb\xb9\x32\xf2\x21\xe5\xf2\xbd" "\x38\x22\xe3\x35\xd3\xaf\xd0\x63\xf9\xf0\x9a\x6a\x3e\x2a\xf3\x2c\x1f" "\xea\x6d\x3d\x3e\x9a\xd8\xb3\xf4\x6e\x33\xd8\xf0\x42\xa2\x7a\x70\x02" "\x77\xb5\x8c\xf1\xdc\x32\xc8\x39\x89\x5c\xd5\x83\x7d\xa3\x45\x02\xf4" "\x1e\x6e\xe6\x61\x56\x73\x04\xbb\x2a\x5d\xe2\xcf\x72\x60\x56\x2b\x97" "\xa2\x55\x13\x28\x05\xac\x6f\x2c\xd7\xa9\x36\xa0\xa4\x12\xa2\xc9\xd9" "\x8f\x0e\x3b\xd2\xf4\x5b\x34\x01\x97\xf0\x3d\x4d\x29\x78\xbc\x72\x83" "\xae\xbc\x0f\xe3\x83\x36\x04\x81\xa3\x9d\x71\xea\x50\x8d\xb2\xef\xd3" "\x15\x0e\x1c\x71\x84\xd2\xa4\x64\xf5\xd4\x7d\x70\x00\x78\x40\x3a\x36" "\x05\xfc\x02\x52\x24\xd9\xac\xbc\x0b\x8d\xc7\xea\x76\x43\x2a\x48\x5a" "\x54\xfb\x50\xd9\xd2\xdc\x2d\x5d\xcc\xbb\x41\x0b\x42\x31\xe5\x15\xff" "\x31\x19\x45\x47\xfa\xd9\xa2\x3d\xba\xf4\x99\xba\xeb\xe7\xc8\xa8\xbc" "\x4c\x94\x1f\x28\xaa\xa8\x21\xed\xa0\x85\xd0\x2a\xc1\xf3\xad\x73\x92" "\x38\xd1\x04\x92\xd8\x5c\xb4\xb9\xaa\x12\x0a\x92\xa4\x1d\xf0\x57\x38" "\x0d\xe2\x15\xf4\xb3\x0d\x8c\x89\x1c\xed\xc8\x59\xc0\x57\x71\x48\x67" "\xb7\xae\x45\x98\xf4\xe0\xea\xfe\x28\xb2\x9b\xde\x9d\x28\xbf\x2c\x69" "\x94\x31\xa7\xdb\xa7\x62\x61\x17\xe3\xa0\x31\xa7\x44\xc3\xb1\x03\xa0" "\x03\x7d\xf8\x2c\x84\xe8\x58\xb9\xf2\x01\xf4\x7d\xc2\x34\x68\x39\xcd" "\xbc\xc5\x23\x8c\xcd\x8e\xcb\x41\xb4\xdc\x4f\x72\xaf\xeb\x6a\x4d\x03" "\x46\x79\x2d\xa6\xf1\xe7\xb8\x86\xd3\xaf\x8c\x30\x65\x80\xaa\xe8\x7e" "\x2f\x7b\xe6\x61\xbc\xa2\xa5\xb3\x44\x53\x72\xbf\xd1\x3d\xba\x08\x73" "\xb8\x84\xdb\x4d\xa7\xd7\xd6\x83\x16\xdc\x77\xbe\xb7\xf1\x0b\x33\xe7" "\x5a\x5d\xb3\xd3\x26\xa9\x6a\xb2\x58\x38\x27\x5f\x44\xb1\x64\xf9\x1d" "\x4a\x4c\xae\x72\x77\xbe\xb6\xc8\xcc\x8a\xf1\x3d\x9c\xc3\xf4\xae\x3e" "\xb6\x1b\xb6\x46\x96\x6f\x19\x9b\x10\x47\x68\x81\xde\xaf\x71\x7b\xaf" "\x1e\x4d\xce\xa9\x6a\x40\xfb\xda\xbc\xd4\x3e\x27\x63\x28\x16\x76\xec" "\x2c\x8a\xd4\xf7\x3b\x8d\xc4\xe1\xf5\x0b\xc6\x78\xe8\x8b\x1c\xe1\xa7" "\xa3\xd1\xfd\x13\x2c\x1b\x99\x92\x44\x69\x30\x74\x07\xfc\xfe\x64\xbe" "\xa5\xe1\x80\x62\x21\x49\xce\x76\xf7\x04\x2c\x39\x58\xaf\xc9\xc4\x02" "\x3c\x16\xc8\x2d\x97\x4f\x0a\x1a\x0f\xfd\xa2\x4b\x2c\x95\xf4\xd4\xe2" "\x9c\x2d\xdc\xb8\xb4\xf5\xf3\xbe\xf4\x72\x93\x38\x78\x7c\x00\x94\x52" "\xfc\xb6\x61\x42\xa9\xfb\x90\xc6\xfc\x87\xdd\xc6\x61\x5d\x83\x93\x6e" "\x99\xa3\xc8\xa8\xb7\x67\x85\x36\xb6\x7a\x2e\x88\x86\xba\x06\x29\x25" "\x58\x47\xe2\x82\xf2\xc7\x9b\xc6\x64\x6a\xfa\xcc\x22\x6f\xe2\x78\x7e" "\xc9\x78\xe6\x55\xc7\xe9\x86\x24\xc1\xba\x4b\x45\xfc\x02\x90\x70\xee" "\x29\x60\x5e\x90\x67\x90\x17\x96\x8c\x4d\xdf\xe9\x22\x29\x10\x86\x77" "\x5f\x4d\xa7\xe1\x4d\x75\xd4\x98\xd5\x29\x46\x30\xf8\xf4\x20\xf0\xdb" "\x22\x88\xe7\xd4\x3d\x41\x42\x15\xae\x0a\x09\x96\xa8\x25\x2f\x49\xce" "\xbf\x0e\x52\x22\x07\xff\x99\xad\x54\xd3\xa9\x2a\xd7\xfa\x3d\x56\xd5" "\x4f\x13\x86\x38\xcf\x4d\x41\x33\x6b\x11\x8c\xe6\x5c\x0a\xa9\x55\x05" "\xb2\xba\xd7\xe1\xa4\x78\x3e\x8c\xfb\x67\x72\xff\x24\x33\xc3\x99\x80" "\x5b\x8d\x79\xa6\x52\xa1\xe0\x9f\xed\x5f\x9e\x17\xb7\x71\x63\xe8\x6a" "\x47\x61\x8b\x6c\xe7\x79\xdb\xed\x5a\xb2\x7e\x49\x27\xa5\x9b\xff\x64" "\xdd\xa7\x52\xa1\xb1\x9d\x06\xe9\x1f\xf7\x59\x03\x8a\x15\x19\x6f\xe8" "\x90\x4a\x46\x76\x36\x9f\xba\xcf\xee\x38\x3f\x62\x3f\x54\xb1\x1b\xe9" "\xdc\xe9\xd3\xd3\xbb\x5e\x39\x80\x5d\x3a\x45\xfc\xa0\x27\xe5\xcd\xa6" "\xbe\xc9\x8a\xa8\x73\xf6\x01\x35\xf0\xda\x87\x92\x6a\x91\xc1\x48\x8e" "\x2b\x9f\xf4\x1c\x37\x42\xb6\x7c\xad\xc4\x30\x9a\x13\xf5\x7c\xac\x3e" "\x17\xba\x91\x68\x2d\x88\x92\x47\x2a\x64\xed\xc1\xc0\x57\xbe\x98\x01" "\x81\x0d\x01\x8d\x94\xfd\x5a\x3f\xe3\x54\xc1\x33\xda\x04\x84\xd7\x2b" "\x8b\x56\x01\x03\x42\x90\x42\x46\x7c\x32\x03\xb2\xfd\xaa\x47\x28\x64" "\xce\x13\x5f\x87\x42\x02\x6f\xb4\xbe\x4c\x7a\x49\x7e\x53\xd1\xec\x2d" "\xd9\xc1\x65\x8b\x81\x7e\x1d\x19\x5c\x87\x2d\xe7\x33\x75\xec\x4c\x74" "\xc4\x7a\x41\xda\xd6\x32\xbf\x04\x49\x16\x43\xd6\x52\x6e\x48\xbc\x17" "\x5c\x8a\x4f\x06\xfe\x56\x71\x49\x99\xbf\x20\xad\x71\x51\x27\xe4\x47" "\xbc\x07\x99\x5a\xe7\x5b\x7d\xa7\xb3\x16\xfa\x0b\x15\xd8\xf0\x0a\x12" "\xa7\x58\x6e\x1b\x34\x17\x38\x10\xc9\xb5\x6f\xe5\xb8\xa8\x0e\x10\x40" "\x58\x32\x11\x90\x82\xc9\x5f\x98\x91\xf8\x93\x85\x72\x14\x24\x37\x0f" "\x14\xb2\x13\xe3\xa4\x0f\xd9\x20\x9e\xbf\xab\x9b\x94\x73\x54\x0e\x77" "\x23\x93\x70\x1f\x2b\xa2\xdb\xa2\xad\x13\xa5\x98\xba\xa6\xcb\x60\x06" "\x58\xaa\xe5\x56\xbe\x9f\x21\x98\x7e\x60\xb3\xee\x80\x8c\x23\x5a\x86" "\x29\xd7\xc3\x8f\xa8\xf9\x86\x9c\xa9\x74\xb0\x32\x28\x2a\xfc\xdc\x09" "\x34\x83\xab\x80\xb4\x39\x6e\xea\xc0\x0c\xbb\x2e\x36\x3b\x8e\xd4\x74" "\xaa\xc5\x31\x38\x86\x68\xb7\xbd\x79\xac\x29\xef\x40\xf5\x76\xdf\xce" "\x88\xe6\x30\x89\x6d\x5a\xc1\xea\xf6\xf3\x28\xf0\xfe\xd7\x20\xec\x30" "\x50\x8c\x27\x11\x8a\x37\x49\x86\xd5\xd7\x28\xa4\xcf\x08\xe0\x3d\x8c" "\x21\x7e\x14\xf6\x75\xd6\xc9\xba\xc2\x7c\xc7\x55\xaf\xb4\x0b\x8a\xd1" "\x60\x5f\xda\x5c\x0f\x20\xc9\xd1\x11\x42\xe0\xe9\xe2\x22\x1c\x79\xa3" "\x95\x5f\xf8\x1c\x06\xb0\x06\xa3\xd3\x62\xb0\x52\x3f\x7b\x58\x6e\x3f" "\x3c\x5f\x40\xa6\x44\xd1\xfe\xe1\x73\x2c\x8e\xc2\xa0\xcb\x55\x9d\x83" "\x01\xe2\xaf\x11\xc0\x4a\x9c\x6e\x4b\x29\x2f\x0e\xd6\xd1\xb0\xb8\x4b" "\xd8\xd4\x9e\x26\xa7\xc7\x45\xa0\xd1\xc4\x9d\x71\x6b\x63\x7f\xd1\x58" "\x88\x7b\xf1\x43\x45\x7b\x47\x30\x04\xea\xa5\x4b\x08\x41\x8f\xe3\x4e" "\x82\x9b\x48\xbf\x9a\x8c\x60\x08\xbd\xc0\x42\x61\x44\x81\x66\x47\x3e" "\x0e\xae\x5f\x68\xb6\x4e\x3a\xb1\x1a\xdc\x15\x81\xeb\xa7\xfa\x8c\xdd" "\xc4\x65\xc7\xdc\x31\xb7\x89\x37\xac\x56\x69\xaa\x4a\x74\x7d\xac\x04" "\x7f\x97\x37\xe0\xbd\x31\x9f\x45\xcb\x41\xf9\x34\x4a\x0e\x06\xc9\xad" "\x27\x09\x76\xb1\xef\x46\x10\x3d\x0e\x0d\x5d\x1b\x79\x89\xb5\x68\xc4" "\x83\x10\x70\x06\x33\x33\x82\x95\x90\x5c\x0c\x20\x0c\xdd\x8e\x2f\x85" "\x11\xb1\xae\x50\x2f\xdf\x6c\x41\xd2\x92\x1c\x12\x80\x8a\x3b\xed\x16" "\x6d\x42\xb5\x1f\xc1\xad\xbc\x01\x3f\xa8\x0f\x11\xcc\xe7\xaa\xf4\xa7" "\x8f\x8a\x0d\x85\x4b\xcf\x33\xe9\xad\xbb\xa5\xcf\x62\x99\x93\x89\xb0" "\x82\x23\xb3\x04\xd1\xfc\x69\x33\x4c\x83\xc5\x56\x81\x4e\xa8\x28\xc2" "\x14\x16\xdb\x88\x21\x40\xbb\xdd\xc6\x8e\xef\x1e\x00\x9c\xb4\x84\xa7" "\x2b\x27\xa6\x22\x80\xf4\x71\xc7\xfb\x92\xfb\xb2\xd3\x4c\x7c\xe5\x03" "\x3c\x96\x9f\x24\xfa\x06\x04\xd9\xe5\xf8\x04\xba\x4d\xf7\xcd\x58\xe0" "\x14\x43\x29\x2b\x44\xc3\xfc\x9a\x18\x93\x52\x94\xdd\xea\x31\x38\xfb" "\x4d\x47\x89\x5d\x72\x22\x10\xc4\xf3\xa2\xb0\xca\x4a\x2d\xc8\x0b\x53" "\xd6\xa5\x95\x4d\xca\x72\x62\x7a\xa6\xf0\x36\x1a\x0f\x82\x82\x69\xb9" "\x80\x41\x9f\x91\xd5\xde\x63\xb3\x77\x05\x7c\x59\xbe\xcf\xd0\x6d\x46" "\x95\x80\xf7\xf8\x27\xd6\xfb\xab\x02\x42\xc1\x5d\x3e\xf3\x40\x54\x74" "\x39\x42\x0d\x7b\xf2\x2b\xc3\x9e\x10\x9d\x61\x7c\x52\xa3\xe2\x99\xe1" "\x1b\xb8\xa7\x00\x96\x2d\x17\x57\xed\xda\x52\x3a\x8c\x7d\x20\x96\x4c" "\x77\x87\xa1\x07\xaa\x82\xcb\x83\x52\x33\x45\x6c\x30\x2b\x9c\x99\x0d" "\xd4\x5c\x30\x0f\xc5\xdf\xce\x16\x09\xe5\x6a\x83\x43\xa0\x4d\xae\x5a" "\x28\xed\x53\x5b\x64\xd5\x77\x26\xe8\x9e\xf2\x22\x6a\x2b\x6f\x91\xab" "\xb5\x8f\xda\x34\x7f\x75\x9c\x3d\x8d\x63\x03\x96\x3b\xa3\xab\x3a\x9c" "\xa0\x15\x27\xb6\xf9\xfc\x01\x5b\x14\xa9\x98\xaf\x04\xe5\x45\x14\x3e" "\xea\xf1\x0d\x74\x11\x8c\x2b\x9f\x6f\xda\x58\x39\x00\x46\x7f\xe1\xae" "\x2a\xcb\xd4\x54\x34\x4a\x30\xfb\xd2\x3d\x6e\xbd\xa6\xe7\xcd\x3d\xf2" "\x01\xed\x12\x9d\x16\xa9\xe5\x6f\x9e\x1c\x7e\x2c\x03\x60\x74\x8e\x6f" "\x3a\x86\x1c\x75\xfc\x22\xaa\xd3\xe1\xc6\x35\x90\xdb\xcc\x0b\xc3\xcd" "\xb6\xdd\xfe\xec\xa8\x0b\x19\xac\x4e\x24\x1e\x24\xf5\x3c\xc4\x8e\x48" "\x1b\x17\x18\x9b\xa0\x52\x0b\xf2\xe6\x0f\x1c\x54\x5f\xa9\x25\xe4\x11" "\x03\xdd\x49\x69\xb0\x7b\xc4\xa1\xf5\xfe\x5f\x76\x56\x6f\xc3\x29\xae" "\x8a\x7f\x22\x13\xbe\x64\xa0\x03\x7e\xcd\xa3\x00\x5a\xa1\x7e\xe2\x2e" "\x90\x31\xee\x43\x22\x57\xe5\xd2\x7d\xb3\xfa\x0c\x35\x12\x91\x67\xfc" "\x3b\x7f\xe2\xde\x3f\x8f\x9c\x2e\x01\x8f\x6f\xb9\x04\xce\x94\x26\xde" "\x5c\x62\xe8\xac\xea\x3b\x78\x1f\x98\x7d\xbd\xa0\xbc\x27\xc5\xdf\x30" "\xd8\xd7\x90\x5f\xc8\xec\xe4\x10\x04\xb9\x7a\x84\x7b\xde\x8b\x05\x4f" "\x5b\x0e\x0d\x4b\xec\xdb\x60\xba\xbd\x04\x71\x48\x48\xa9\x67\x29\xe0" "\x12\xb2\x24\x00\xb2\xce\x80\xc2\x9b\x65\x4b\xf7\xa2\x01\x62\x4f\x4f" "\xdd\x54\xd4\xa6\x75\x79\xa9\xe6\x4c\x94\x2c\xb0\xbe\x44\x1a\x5c\x29" "\xe3\xb1\x53\x35\xc4\x56\x17\x7b\xe4\xc9\x11\x5d\x32\x14\x56\x4b\x47" "\x71\x6d\x87\x9e\xd1\x1d\xad\x37\x7d\xfe\x0a\xde\x4b\xb1\xf5\xcf\x10" "\x8d\x96\x0d\xa6\xe7\x51\x5c\xb1\x85\x0d\x2b\x84\x2b\xe9\x9d\xec\xfe" "\x9f\xbe\xef\x52\x45\x26\xba\xb1\x56\x48\x10\x26\xbb\x8e\x6d\xf9\xd9" "\x3f\x6d\x6f\xca\x30\xa1\xf2\x0d\x6d\x75\x50\xe6\x13\xfe\x80\x10\x94" "\xca\x20\x11\x4b\x6f\x6d\x61\x9a\xfa\xf7\x4c\xe0\x38\x0c\x17\x4c\xaf" "\x88\xd6\xf4\xdf\x29\x8f\x71\x0c\x8f\x9a\x94\xc4\x80\x86\x50\x47\x65" "\x06\x74\xa4\x45\xfb\xab\x2d\x98\xee\x72\xe3\x62\xb3\xed\x0f\xe8\x23" "\xb5\x8e\x58\x08\x0c\xc2\x1e\xed\xfb\x4b\x25\x83\x14\x9e\xcb\xaa\x26" "\xf2\x8d\xcb\x07\xd6\x74\xec\xc2\xbc\xaf\xeb\xf5\x5a\x7d\x9b\xef\xd9" "\x1f\x4b\x43\xd6\x81\xf0\x5a\xe7\x5b\xca\x9b\xc3\x90\xaa\x63\xe1\xf1" "\x50\xbe\xdd\x8f\x9c\x21\x56\x88\xa2\x1b\xe7\x76\x21\xfd\xc7\x57\xb5" "\x0f\x3b\x8a\x08\x64\x45\x46\xa3\xdf\xd5\x26\xc0\x19\xfb\xd6\x83\x2c" "\x26\x56\xb9\x10\x8d\xad\x38\x9e\xad\xfe\x59\xe6\x81\x8b\xb6\xe2\x1c" "\x0b\xd5\x50\x34\x9d\x14\x4a\xd2\x65\x7d\xfe\x2c\x12\x5a\xa9\x63\xe5" "\x7c\xf4\xac\xc2\x80\xc8\xb3\x35\x64\x6c\x2a\x79\x28\x45\xe6\x22\x06" "\xab\xaf\x34\xa6\x69\x09\xc3\x48\xa7\x81\x63\x1e\x31\x8f\x44\x66\x10" "\x26\x40\x84\x91\x83\x3b\xa1\xf0\xd8\xca\xac\x65\x07\x38\x05\x50\x33" "\xe6\x05\xbd\xf5\x45\xda\x74\xc7\xdc\xf4\x9f\xd7\x39\xbb\xc4\xd1\x6b" "\x73\x3b\xfb\x7d\xb5\x49\xbc\xf6\x55\x01\x82\xad\xc6\xd0\xb5\x23\xf3" "\xd5\x41\xc9\x83\x74\xc9\x51\xf6\xf3\xb2\x89\x8e\xd0\x05\x0c\xf5\x22" "\x21\xf5\xbf\x80\x26\xc8\xa7\x62\xe0\x79\xd8\xfb\x0a\x04\xe0\x6c\x81" "\xf9\xb9\xd2\xc6\x1d\x97\x4d\x18\xf3\x5c\xd7\x86\xc6\x6e\x98\xee\x5e" "\x0e\xeb\xe3\x43\x61\x7a\xd8\x31\xf8\x62\x00\x53\x9d\x39\x0a\x84\xe4" "\x46\x60\x62\x3a\xcf\x42\x53\xfa\xba\x06\x0e\xf3\x3a\xf2\x9d\xb7\x53" "\x31\x0b\x39\x1a\x2b\xf4\x99\xe2\xfe\x81\x3d\x33\x11\x72\x96\x36\x8f" "\x2c\x2a\x3e\x29\xe6\x9e\x45\xb9\x91\x81\xaf\xad\xc6\x6d\xf3\xcc\x92" "\x6c\x15\x60\xd3\x8d\xfc\x98\xac\xf7\x65\x44\x96\x00\xa0\x20\xdb\x15" "\x1a\xaf\x3f\x09\xd5\x07\x45\xa1\x44\x5e\xb7\x55\x51\x4b\xea\x19\xa6" "\x84\x0b\x28\x37\xc3\x87\xba\x6e\xb1\x3f\x65\x56\x21\x00\x6e\x95\x22" "\xac\xa8\x04\x52\xc4\x0c\xcd\x4e\xa0\xfa\xa4\xdc\x89\x74\x43\x55\x4e" "\x21\xf5\x13\x44\x3f\x3d\x69\x70\x5d\x2a\x4c\x5a\x51\x00\xd6\x45\xea" "\xf3\x8f\xbf\x38\x5f\xe3\x8d\x3e\x26\x33\x86\xb2\x7a\x3f\x9d\x8f\x53" "\xec\x87\xfa\x42\x96\xf5\x83\xea\x9a\x3f\xf4\x8c\x78\xb9\x5d\x05\x03" "\x01\x66\xc8\x58\x5a\x90\xd1\x16\xc9\x3f\x44\xef\xb4\x8e\x8f\x6a\x47" "\xe4\x1d\x22\x48\x11\xe2\xfa\x7a\x3a\x6f\x5e\xab\x91\x77\x24\xeb\xe8" "\x4a\xed\xbc\xae\x4d\x86\x26\x84\x0a\x4a\xfd\xd0\xff\x3d\x8d\xaa\xc6" "\x40\xce\x2d\x3c\x7e\x30\xa6\xf3\x14\xd5\x49\xe9\x89\xa1\x11\x87\x54" "\xd2\x56\x6a\x57\xd4\x48\x1c\x79\x01\x91\x48\xd6\x26\x85\x5d\xea\x34" "\x84\xc9\x9c\x3a\x8c\x72\xa0\x93\xbf\x65\x5b\xda\x92\x0a\xa9\xd4\xb5" "\x86\x38\x6e\xcf\xaf\x1f\x28\x67\xf9\x3a\x17\xa3\xbd\x5a\x03\xe8\x27" "\xc0\x93\xa5\x33\x11\x78\xd5\xd2\xee\x16\xce\xec\xbc\xe8\x66\x76\x60" "\x1e\x9e\x36\xcd\xc4\x7a\x63\xc5\x40\xe1\xc8\x14\xb3\x3b\x12\x38\xc8" "\x3e\x9a\xae\x4e\x45\x71\x5e\x4b\x9a\x07\x4e\x68\x4b\x8f\xf9\x29\xe7" "\xd7\x39\x9d\x3a\x54\xfb\x8a\x5a\x3f\x10\x09\xde\x47\xde\x17\xf1\xf0" "\x1b\x71\xcd\xe5\xe6\xae\x7d\x15\xec\x4d\x2e\x3f\x75\x6c\x44\x44\x17" "\x12\x06\x90\x60\x1d\x60\xcf\x5e\xf9\x04\xdc\x95\x2d\x47\x52\xd2\xf2" "\x70\x77\x7d\xb5\x60\x27\xb4\x8a\x6d\x24\x81\x02\x6a\x8d\x8b\xde\xaa" "\x2f\x39\x32\x9f\x0d\x86\xa4\xa7\x39\xfd\xb7\xb3\xd8\xd0\xf9\xad\x1d" "\x01\x25\x26\xa8\x40\xef\xdb\x05\x75\x51\x22\x11\x98\x4d\x0a\x92\xa3" "\x17\x4c\x39\x2e\xd5\x58\xbc\xe4\x71\x72\xa2\x29\x6c\xa8\x3a\x52\xeb" "\x0f\x98\x52\x86\xb4\x3b\x5b\x22\xc0\x21\x91\x64\x57\x40\xac\xca\x54" "\xf1\x0d\x35\x64\x30\xb0\xa5\x57\x13\x4f\xb0\x0e\xf7\x3f\xc1\x1f\x2e" "\x02\xe1\xbf\x05\x07\x2b\x96\xae\x2b\x19\x26\x7d\xcf\x8e\x5e\x06\xcc" "\x2f\x47\x1d\x47\x4c\x74\x1f\x56\x34\xc5\x62\xb4\x49\x62\x81\xda\xa0" "\x7d\x40\xbf\xf2\x3b\x0e\x1f\x67\x63\x74\x89\x4f\xaf\xd3\xd4\x2d\x48" "\x7f\xd7\x2f\x61\x82\x39\xad\xf8\x6c\x05\x2f\x3a\xc5\xb3\x1a\x83\x0e" "\xef\x68\xf5\x86\xad\xea\x73\xdf\xd6\xce\x83\x50\xe6\x75\xba\x2d\x93" "\xf8\x6c\xb6\x2a\x29\x9b\x01\x29\x33\xd9\xd0\x27\x23\x9e\x1f\x55\x99" "\x43\x16\xcb\xa6\xb0\x46\xc4\xfb\x85\xa4\x8c\x32\xaf\xac\xf2\x34\xf8" "\x29\x2a\x33\x57\x41\x63\xee\xc5\x4c\xdd\xc7\x5c\x10\x52\x18\x31\x1d" "\xe5\xb4\x53\xcb\x67\x23\xe2\x8e\x87\x82\x84\xbd\x6b\x9f\xaa\x6d\x2b" "\xb5\x57\xc0\x21\xe1\xcc\x0d\x96\xcb\xec\xd1\x6e\x02\x43\xa8\x25\x60" "\xee\x08\x24\x75\x1b\xa5\xbd\xb5\x2a\x8e\xff\x96\x1c\x19\xcd\x94\xb3" "\xb1\x75\xda\x77\xfe\xc5\xdb\xf5\xf2\x23\x16\x5d\x38\xe4\xf9\x30\x70" "\xa5\xbb\x94\xd7\xe8\xa6\x45\xfc\x06\xe4\xe6\x45\xbd\x41\x52\x5c\x57" "\xb0\xe5\x9b\xda\x28\x7a\x35\x45\x59\xb4\xc8\xf0\x4b\x61\xbb\x7f\x92" "\x29\x79\x08\xb0\xb1\x01\x96\xad\x22\x96\x67\x7c\x57\xe6\x00\xe4\x2a" "\x38\x7f\x4b\x5c\x97\xb6\x63\x1f\x97\xb1\xdf\x04\xfa\x7e\x3a\x03\xb5" "\x23\x85\xcb\x59\x45\xfc\xb8\x0e\x67\x89\x1e\x29\x7f\x36\x57\xb6\x60" "\x5c\x00\x5d\xe6\x86\x90\x63\xd3\xe4\xc4\x30\xaa\x99\x67\x84\xc9\xeb" "\x82\x77\xbb\xfa\x62\x99\xba\xb0\xde\x88\x60\x72\x99\x9d\x90\x82\x7b" "\xce\xa5\x5c\x3a\xac\x7f\x0a\xad\x36\xfa\xb0\xf5\x7a\x94\xe0\x56\x02" "\x3f\x96\x5b\x09\x5c\xf7\xd3\xfd\x81\xe7\x55\xd7\x23\x3c\xe0\x11\x01" "\xdc\x14\xe5\xb8\xbb\x72\x71\x27\xae\x91\xc4\x04\xab\xed\x3b\x59\xe1" "\x0c\xe3\xa9\x8b\x0c\x0c\x21\x57\x06\x2e\x78\x41\xb9\xe7\x1a\xc1\xe4" "\x17\x51\x92\x2c\x91\x59\x07\xac\x1f\x4f\xc5\xee\x1d\xa3\xf8\x4b\x43" "\x95\xba\x87\x41\xe2\x36\x10\x9e\x76\xed\xf9\xe4\xdc\x0a\xd6\x78\x31" "\xa5\x18\x1d\x01\x03\xaa\xe1\xc0\xd2\xde\x25\x99\xac\x9d\xf1\xf6\x6b" "\xd1\x4d\x53\xbf\x7d\x69\x0d\x09\x44\x24\xb7\xe7\x6e\x55\xb6\x08\xe8" "\xaf\x3c\xcf\x19\x87\x07\xa3\x22\xd4\x0a\x15\x07\x78\xa9\xb1\xdf\x16" "\x1f\x22\xd0\x80\x24\x17\xe5\xba\x69\x4a\x28\xfd\x57\xc4\xd1\xb2\x79" "\xb7\x7f\x43\x94\xde\x04\x10\x63\x8d\xab\x87\xba\x60\xc3\xdf\x71\xdf" "\xb9\xdd\x03\x76\xd5\x32\x03\x00\x3b\xad\x75\x11\xac\x91\x19\x9f\xf2" "\xb0\xdc\x27\x85\x59\x4e\x6a\x3c\xef\x90\x5e\xfd\x05\x20\xa4\xe3\x44" "\xa4\xfe\x8b\x41\xab\x68\x0d\x51\x5c\x71\x1c\xc2\x41\xcb\x6f\x85\x8c" "\xb9\x19\xe4\xce\x58\x29\xba\xd0\x7b\x1f\x16\x1b\xba\x31\xba\x0b\x7d" "\x27\xde\x99\x7b\x1c\xf4\xfe\x12\xf1\x8b\x52\xb4\x63\xa6\xd2\xf5\xb2" "\x2b\x73\xfd\x70\x89\x5d\x8e\x01\xec\xf8\x19\xde\xf7\x5b\x53\xe6\x5e" "\x2e\xd5\x44\x87\x23\x82\x74\xa2\x8c\xdf\xee\x22\x07\x6a\x59\x27\x5d" "\x76\xfb\x6b\x1a\x7e\x1e\x26\xbb\x8a\x2f\x6c\x64\x81\xec\xad\x2d\x95" "\xf0\x2b\x4a\x0d\x00\x96\x5b\xd1\x2a\xda\x5b\xc1\xc1\x91\x17\x7c\x43" "\x1d\xc5\x4a\xfe\x32\xc0\x93\xcc\x5f\x3a\xd3\xd4\xde\x85\x99\x7e\xf9" "\x2d\x09\x9a\x5d\x10\x65\x86\xf6\x13\x30\x1a\x8c\xdd\x48\xc1\x00\xa1" "\xcd\xa6\x42\x51\xdb\xd3\xd1\x04\x5f\xf1\x33\xbf\xdc\xc2\x69\x97\xa7" "\xb2\x96\x48\xd8\x63\x09\x9c\xbc\xb6\x36\x58\xaf\x10\x99\x89\x0e\x4a" "\x4c\x9d\x01\x1b\xf7\x4f\x63\xb3\x75\xec\x3c\x32\xed\x2d\xfc\x7d\x46" "\x3a\x01\xb1\x58\x03\xa9\xd5\x51\x5a\x14\xb7\x54\xb3\xaf\x85\xf3\x93" "\x46\xc5\x16\x0f\x81\xb0\x72\x13\xa6\x36\xd0\xe7\xa8\x69\xe8\x55\x8c" "\x84\x77\x93\x2e\x04\xd4\xc9\x20\x1a\x09\x42\x29\xc3\x21\x6b\x91\x9e" "\xb8\x8c\xd2\x1a\xa9\x70\xac\xa3\x20\xe9\xc0\xcf\xa2\xc0\xb4\x7c\xcb" "\xea\xea\xfb\x91\x25\x91\xad\xcb\x92\xae\xce\x73\x72\x26\x66\x49\xae" "\x07\xef\x5f\x3e\x83\x21\x1a\x05\x31\x37\x9e\xa8\x45\x33\x3a\x6a\xbd" "\x7e\xbd\x8b\xbc\x12\x83\x70\x56\xf9\xf1\x6f\x7d\xec\xe3\xf2\x2e\x8d" "\x69\x8f\x92\x94\x21\x69\x61\x88\x7f\x27\xfb\xce\x02\x7d\x27\xad\x2c" "\x5a\xe6\xe3\xac\x10\x42\xac\xf3\xd8\xe3\x96\x4e\x7f\x07\xc7\x40\xae" "\xee\xd9\xcf\x4f\xde\xae\xc8\xbf\x22\x0f\xf8\x57\xe7\xf8\xa7\xa7\x8f" "\x2f\xab\xdc\x29\x95\x60\x08\xf5\x6e\xbb\x5d\xd7\x90\x66\xed\x51\x28" "\xc3\x27\x72\x80\xf9\xe2\xb6\x0e\x60\x40\x90\xd5\x13\x74\xe1\xa2\xda" "\xf0\x01\x06\x1b\x45\x65\x3d\xa9\x32\xf3\x42\x1c\x68\xf2\x2e\x79\xbb" "\x13\x3e\xce\xf1\xe2\x9f\xd7\x7d\xf2\x9a\x4b\x15\xcb\xc0\x6c\xf4\xa4" "\xb3\xd3\xed\x4f\x07\xdc\x4b\x56\xa4\xd0\xf8\x3c\xc7\x62\x2b\xb5\x9f" "\xa4\x53\x4a\x21\x6b\xbc\x3d\x80\x57\x6d\x38\x7f\xc8\xa7\xb4\x3e\x5f" "\x7d\x4a\x9f\x27\x45\xfc\x8d\xb1\x5b\x30\x8c\xe9\xf9\xcc\xcd\x87\xf7" "\x3d\x27\x86\xe8\xed\xa6\x49\x1f\xb0\x97\x2c\x3b\xb9\xf5\xbd\xa7\xd2" "\xf6\x92\x80\xd7\x52\xbb\xbc\x37\x76\xd0\x11\x2b\xd8\xff\xf0\x85\x18" "\xa5\x5b\xae\xa6\x24\xbe\x77\x25\x4c\xd1\xc8\xd7\xef\xc5\x91\x34\xa1" "\xe2\xd0\xa5\x65\xdb\x4e\x8f\x05\x90\x64\x60\x48\x2b\xf1\x69\xfb\x28" "\xb2\x17\x52\xed\xe9\x0a\xdb\x7b\xc8\x11\xa8\x7e\x61\x23\x36\xb0\x3f" "\xef\x82\xbe\xc7\x6a\x88\x95\x1c\xe7\x12\x91\x62\x2d\xc9\x0a\x77\x87" "\xdb\xd4\xcb\x82\x24\x80\x66\x66\xa9\x24\x0a\x40\x73\x01\x08\x69\x58" "\x94\x68\x38\x3f\x1d\x2c\x04\xed\xbf\x48\x69\x22\x08\x98\xec\x96\x99" "\xd7\xa8\xa9\x4b\x6e\xf4\xca\x82\xf1\xdc\x1b\x76\x7f\xc5\x92\x23\xc4" "\x83\x2e\xbd\xcd\xb4\xe8\x14\x6c\x9b\x41\xb0\x0f\x03\x04\x64\x5d\xdb" "\x85\x51\x28\x5f\x78\x12\xc1\xae\x6a\xb4\x26\xef\x03\xe9\xb9\x68\xc6" "\x5d\x64\xa3\x92\xfb\x33\x88\x44\x14\x8c\x1b\xa0\x92\x64\x5d\x48\xf7" "\xd9\x3a\xfa\x59\x21\x4e\x04\x59\x69\x9f\xc8\xe1\x06\xf7\x0b\x79\xf4" "\x3b\x0f\xa4\x18\x2a\x63\x9d\x0c\xe7\xbb\x4d\x3c\x5a\x8d\xad\x2a\xe7" "\x60\x37\x20\xaa\x5b\x3e\x91\x1c\x06\xf0\xec\x31\xad\xd1\x42\x12\x4e" "\xc5\x03\x41\xb3\x58\x60\x88\x6b\xfa\x1c\x30\x2d\xb6\xa0\x0e\x1e\x62" "\xca\x0f\x2c\xe5\xda\x21\x65\x26\xe2\x19\x2f\xd4\xed\x50\x3e\x95\x0a" "\xdc\x92\x4e\x36\x0e\xaa\x6b\xcd\xd1\xff\xde\x5c\x77\x76\x01\x0c\x7c" "\x67\x09\x0f\x24\x93\x60\xf0\x65\x52\x49\x4e\x0f\x11\xf1\x76\xea\x37" "\x4a\xb8\x21\xff\x79\x93\xa2\x43\xb5\x15\x58\xf4\x8e\xf0\x08\x78\x7c" "\xd9\x25\x2a\xf9\x23\xb9\xf1\x84\xe4\xb1\x67\x35\x02\xd9\xb6\x64\xb4" "\x14\xb8\xa2\xd8\xd0\xac\xb2\x58\x3d\x52\xa3\x2f\x1a\xba\x9b\x25\x20" "\xf8\x88\x77\xeb\x6c\xe5\x50\x09\x27\x5d\xa0\xd6\x2b\x5d\xfc\x9a\x8e" "\xea\x41\x33\xcb\xee\xec\xa0\x76\x13\x25\x92\x17\x2a\xf8\xf8\x2a\x19" "\xba\xf1\xad\xdb\x82\x0d\x9c\x0f\xb5\x2b\x47\xd8\xf5\x3c\x51\x4e\x36" "\x48\xf4\x84\xb6\xbf\x24\x65\x01\x50\x8e\x6f\x3d\x79\x92\x97\xf8\x7f" "\x45\xe6\xda\xa8\x86\x74\xe1\xc3\x2b\x91\x61\x52\x49\xea\xcc\x65\x78" "\x08\x09\x58\x7c\x76\x92\x82\x07\x4c\xdc\xcc\xc9\x8e\x6c\x33\xac\x26" "\xa6\xa2\xfa\x1d\x68\x1a\xa6\xeb\x51\x11\x46\x58\x10\xb1\xd4\x35\x0f" "\x54\x43\x04\x12\xd3\x87\x3a\x2d\x73\xd5\x0d\x75\xff\x81\xff\x2d\x23" "\xca\x16\x46\x81\xea\xec\x14\xa5\x90\xe7\x93\xc7\x22\xae\xd8\x5e\x58" "\xb4\x02\xad\x74\xa7\x9b\x7d\xf1\x5d\x29\x96\xec\x41\xf5\x6f\x00\x01" "\x02\xa2\x8c\x1e\x80\x26\x36\x31\xe6\x4e\x0d\xd4\x88\xc1\x3d\x8e\x9d" "\xe6\x27\xe8\xf3\x07\x07\xe7\x33\x2f\xfc\xb4\x7e\x00\xcb\xc1\x23\x78" "\x39\xa5\x89\x66\x92\xcb\xe0\xb9\x0c\x07\x88\xae\x8c\x5c\x90\x9e\x2f" "\x33\xd8\x69\x7d\x2f\x05\x7d\x9c\x0f\x82\x9d\x4f\x32\xb6\x76\xf1\x66" "\x22\x22\x45\xda\x91\x50\xf5\xab\x79\xa1\x58\x3a\x2b\x94\x5a\x8e\xb7" "\x70\xd0\xf0\x18\xa9\xe1\xd7\x8a\x58\x2e\xd8\xbc\xd5\x76\x68\x42\x49" "\xdf\x6f\xad\xc4\xbc\x34\xbc\x3f\xce\xb9\x91\x41\xb9\xfb\x02\x61\x75" "\xdc\x79\x46\xc4\x2f\x4f\x34\xcb\x68\x7d\x20\xba\xca\x41\x4b\xe6\x14" "\x23\x95\x6c\x76\xed\x2b\x8b\xfe\x32\xec\xdc\x86\xc7\x77\xfb\x18\xb9" "\xbe\xdd\x10\x6b\xc9\x50\x87\x93\xca\x5b\x05\xf7\x19\x4d\x5d\x19\x1d" "\xff\xab\x4d\x83\xcd\x91\xb5\x54\xc5\x34\xfa\xba\xe7\xb2\x22\x0c\x83" "\xa5\x0c\xf7\x17\xc4\xdf\xb5\x8b\xa0\x39\x72\x66\xa0\x37\x16\x7e\x1b" "\x1b\x71\x24\xeb\xfa\x83\x90\x25\xb1\xe4\x35\x0b\xdc\x3e\x6f\xa2\xea" "\xf7\x69\xb0\xa0\x53\x84\x97\x3d\x32\xd7\x33\xe8\xfb\x51\xaa\x5e\xa6" "\x36\x8c\xc5\xb0\x35\x11\xdb\x18\x8e\x4a\x4f\x59\x25\x87\x52\x6b\x5a" "\x8c\x3c\x46\xc1\x00\xc2\x3c\x0f\x55\xbb\x72\x8e\xc6\x7c\xf0\xc8\x21" "\x50\x06\xfb\xf6\xbd\x49\x07\x3c\x28\xf2\xc8\x02\x0f\x97\x65\x56\xb8" "\x00\x84\x33\xd0\xae\x54\x43\x41\xc0\xdd\x27\x9c\xdf\x38\xeb\x6b\x7e" "\xb6\xca\xc2\x90\x56\x7e\xfd\x8e\x8a\x4f\x1a\xd6\x73\x90\x9d\x44\xf7" "\x90\xbc\x43\x64\x9a\x60\x33\x34\x3c\x1e\xa0\xff\x1a\x41\xe2\x5c\xcc" "\x87\x88\x49\x27\xf4\xc0\x25\xe3\xfb\xb8\x37\x63\x16\xbe\xe3\x90\x9c" "\x61\xdc\x9d\xc1\x17\x88\x3e\x4f\x01\x59\x3b\x54\x24\xde\x85\x8c\xd6" "\xaa\xd0\xd4\x00\x0e\x0b\x44\xce\x30\x44\xa3\xc9\x8b\x71\x1d\x01\xdb" "\x09\x7f\xbd\xfb\xda\x88\x43\xc2\xbc\x70\xf6\x9d\x94\xf0\x6c\x44\x0a" "\xce\x15\x19\x50\x27\x54\x60\x8e\xd8\xe9\x51\x91\x9a\x80\x19\xd3\xe8" "\x65\x70\x36\x4e\xbe\x6d\x80\xa1\x4d\x66\x80\x26\xef\xa1\xc4\x48\x85" "\x02\x50\xb4\x74\xe0\x6d\x68\xe0\xb2\xc1\xce\x89\xa4\x28\xe6\xee\xfa" "\x6f\x46\x83\x0b\x3d\x56\xf7\xdf\x83\x99\x64\x8c\x20\x92\xe4\xf1\x01" "\x29\xb8\x80\xda\x17\x41\x5c\x85\x62\x03\x33\x6b\x53\xd0\xc3\x26\x61" "\x0f\x5d\x6b\x00\x2e\xc3\xc1\x10\xcf\xc9\xcf\xb2\x2e\xe1\x2b\x53\xe5" "\x1b\x17\x50\xf0\x41\x97\x64\x25\x02\x5b\xaf\xc8\x62\x2e\xe0\xce\xe1" "\xec\x0f\x44\x92\x9e\xcd\x8b\xca\x7c\x89\x68\x98\x35\x68\x76\x0d\x30" "\x3b\xf6\xf2\x4d\x08\x04\xa2\x18\xee\xfc\x27\xd8\x57\x53\x9c\x78\x2a" "\x40\x3b\xb2\xa7\xa5\xbc\xca\x43\xc3\xc0\x0a\x4a\x67\xf6\x7e\x6c\x56" "\x6b\xca\x70\x52\x78\xea\x46\x20\x3d\x63\xae\x73\x8a\x76\x3d\x11\xeb" "\x92\x0e\xad\xa1\x8d\x31\x4d\x74\x29\xab\x1e\xa2\x01\xbc\xcd\x00\xdd" "\xf2\xbd\xb9\x30\x76\x02\x94\xad\xa4\x39\x46\xd4\x49\x3d\xa6\xd6\x98" "\xa3\x49\x10\xcd\xbe\xcc\x06\x3e\x1a\xc2\x7d\xb3\x8e\xca\x67\xec\x1e" "\xa1\x8a\x89\xe1\x08\x96\xba\xd0\x2b\xc1\xe2\xd3\xfc\x63\xdb\x9b\x31" "\xe0\x87\x1b\xcc\x7e\x77\xd7\x75\x78\x33\x62\x5c\xbf\xb6\x35\x47\xd5" "\x5a\xc4\xc0\x93\xf2\x80\x8e\x8c\x23\x32\x77\x08\x02\x6b\x71\x31\x7c" "\xca\x3d\xfb\x8e\x7d\x96\x2a\x55\x18\xb6\xa9\xc9\x06\x5f\x4f\x88\x05" "\xba\xbf\x90\x82\x2e\x72\xaf\x21\xdc\xb4\x23\x44\x65\x1e\x6f\xaa\x1d" "\x4a\xa3\x11\xeb\x88\x5e\x11\xc1\x20\xce\x7f\x78\xb0\xb5\xfe\x5b\xde" "\x2d\xb4\xb6\xb3\xc7\xf3\xc8\x23\xfd\x5e\x1b\xec\x2a\x30\xe1\x2f\xef" "\xb2\x96\xf0\x36\x5b\x34\xbb\xda\x5d\x2d\xe2\xed\xb2\xd9\x2f\xaf\x20" "\x76\xd0\x6c\x15\x25\x3c\x51\x4b\xd7\x25\x68\x32\x6e\x6f\x25\xf7\x92" "\xc0\xa1\x9b\xe4\xcc\x11\x33\x2c\x01\x92\x07\x83\xb4\xa6\x8d\x62\x07" "\xb4\xcc\x1c\xa4\x31\x3d\x0f\x7e\x56\x5d\x9e\x11\xcf\xc0\x03\x3d\xcc" "\xae\xd7\x78\xe4\x7e\xd8\xa5\xc5\x94\x6e\x1e\xb1\x81\xf4\xbb\x2e\xa2" "\x67\x46\xe2\xfe\x9d\xc7\x43\x6b\xa7\x8f\xce\x08\x00\xc7\xbd\xff\x12" "\xae\xce\x1d\x02\x5c\xff\xbf\x13\xf1\x1a\x74\x40\xf2\x08\xb8\xc4\xbd" "\x26\xf9\xfa\xe2\x22\x3f\x04\xa4\x45\x0a\x8f\xff\xd5\xce\x71\x77\x85" "\xec\xe7\x8b\xd1\xaa\xe5\x69\xe5\x76\x06\x2e\xfb\x6a\x58\x8c\xf8\x43" "\x9d\x9f\x19\x14\x31\x22\x6c\x2e\x61\xc8\x06\xd9\x64\xb8\xa7\x3f\x36" "\x92\x13\xbb\x57\xeb\x1f\x77\xf2\xb7\x5b\x8f\x2e\xe4\x48\x00\x5c\x3b" "\x96\x80\xa7\xbb\x4c\x29\xe3\xa4\x4a\x06\xc2\x13\x6a\xde\x09\x33\x49" "\x04\x08\x8c\xfc\xe8\xb8\xeb\x4e\x33\x9d\x43\x7f\x74\xd6\x34\x4f\x97" "\x11\xfe\x8e\xc0\xc7\xd1\x3b\x3a\x92\xf9\xb6\xff\x4e\xe5\xdc\x6b\x84" "\xa6\x8d\x66\xce\x5c\x7f\xfb\xa5\xb1\x8c\x13\x89\x46\xc6\xcf\x4f\x83" "\x33\x8e\x42\x8e\x9c\x18\x85\x63\xa4\x16\x31\x04\x52\x9b\x66\x30\xee" "\x5d\x32\x37\x3e\x9c\xdb\x5b\xab\x7c\x22\x75\x68\xef\x02\x8e\xa4\x8f" "\x8e\xde\xb0\x1e\xd7\xf3\xc5\xf6\x74\xbd\x13\x62\xa1\xb4\xf2\x31\x35" "\xe8\xb7\x80\x1e\x7d\x30\x9d\x54\xbe\xe6\x83\x09\xac\x6c\x26\x68\x7a" "\x49\x10\x52\x7f\xa7\x64\xa9\x62\x4f\x1a\x83\x00\x20\x2d\x2b\x04\x6b" "\x90\x6f\xe7\x48\xad\x4e\x8b\xd3\xa7\xc0\xc1\x03\xcc\x99\x44\xac\x70" "\x39\xcb\x6c\xe5\x5a\x4c\x90\xa6\x9a\x87\x5d\xaf\xf4\x0f\x0b\x50\x9e" "\xe0\x39\x99\x9a\x8b\xc4\x98\xf4\x7c\x67\x27\xa5\x7c\xe9\xfa\x05\xcc" "\xc2\xc8\x11\xe9\xdf\x49\x17\x5b\xf7\xe1\x83\xb9\x40\x10\x80\x19\x1c" "\x41\xb6\x2a\x4e\x91\xb5\x30\xd0\xdb\xf4\x73\x84\x67\x35\xc9\xdf\x70" "\x2d\xe4\xc0\x56\x77\xdf\x96\xf7\xa4\x9f\xda\xf1\x6c\x72\x65\x48\xcd" "\x67\xe0\x88\xe5\x03\x09\xc1\x78\xae\x85\x5b\x6d\x20\xa2\x02\x30\xd3" "\x3e\x2a\x2d\x4c\xf4\x93\xfe\x2d\xe2\xf1\xdc\x5b\xb7\xb3\xef\xd6\xf1" "\x15\x0b\x46\xa7\xbf\x65\x6c\x79\x19\x9b\x8a\x62\x21\xff\x5f\x16\x57" "\x2d\xcb\xcf\xb9\x82\xaa\xa4\x37\x9e\x6e\x94\xe8\xdf\xd5\x00\xa8\xea" "\xfb\x7e\x03\xde\x01\xbf\xdc\xbb\x5c\xe6\xd3\xe8\xe4\x0a\x86\x63\x41" "\x03\xc2\x1a\x65\xc1\x14\x20\x87\xce\x16\x48\xae\xcf\x8f\x96\xf5\xad" "\x84\x87\x87\x4f\xf4\x46\xa5\x61\x0a\xcb\xab\x7b\x22\xaf\x93\x11\xd2" "\x01\x3d\x00\x8c\xd3\xfb\x38\x2b\x15\xe4\x67\x31\xad\x44\xc6\xdd\xb9" "\x93\xf9\x79\xa1\xed\xfd\xa8\x4e\x09\xbd\x41\x62\x36\x61\x23\xda\x2f" "\x6e\x11\x34\x4f\xde\xc3\x51\xd3\x93\x31\x49\x73\xb2\xb7\x1d\x61\x5f" "\x9f\x4b\x4a\x45\x76\x90\x3b\x3d\xad\xd6\x6f\xe1\x7a\x9c\x05\x59\xd1" "\xad\x8b\x17\x43\x0b\xc2\x7e\xff\x15\xc0\x7f\xf0\x70\x96\xab\xf0\x1c" "\xaf\x14\x66\x9b\x2c\x93\x48\x4d\x9a\x0a\xca\x2f\x5a\x49\x06\x9e\x37" "\x09\xd1\x47\x68\x46\x7e\x5b\xe7\x1c\xfa\x1e\x4f\x67\x17\x89\x64\x97" "\xf5\xe7\x7c\xbf\xbd\xaf\x66\xb1\xc5\x97\x23\x15\xeb\xad\x17\xc7\x7c" "\x38\x71\x50\x68\xe5\x46\xe7\x96\xbf\x61\x9f\xed\x9f\x3b\x90\x68\xa4" "\xcd\x26\xf3\x79\xff\x78\x4a\xb3\x80\x66\x49\x19\x93\x19\x9c\xe5\x52" "\x13\x43\xce\x72\x57\x84\x93\xd3\xfb\x54\x68\x62\x48\x9e\x3e\xc0\x81" "\xd7\x7e\xf1\xbd\xad\xed\x61\xd6\xd2\xa5\x93\xcd\x00\xc1\x18\x74\x48" "\x7a\x9a\xfa\x30\x82\x88\x84\x09\xf0\x45\xad\xca\x7b\xf3\x90\x58\x93" "\x09\x72\x70\xbb\x3a\x91\xed\xc0\x03\x5c\x43\x0f\x7e\x64\xb2\x42\xaf" "\x6b\xe6\x66\x64\x6c\x83\x27\x8a\x66\xd7\x49\x91\xb3\xd7\x1c\x93\xde" "\x65\x6f\xd5\xbb\xed\x37\xc6\x19\x37\x3f\x1b\x42\x8c\x21\x3d\x54\xd9" "\xa3\x3d\x77\x93\x86\x8a\xfa\x86\x11\xf1\x50\xec\xd8\x3a\xaa\x94\x3a" "\x39\x8f\x9e\x2b\x2e\x00\x86\xee\x14\xd9\x0c\xc4\x96\xc4\xa4\xb2\x77" "\x48\xf3\x74\xd9\x66\x0f\xc7\xa3\x6e\xfa\x61\x37\xd1\xe4\xef\x5c\xfe" "\x3b\xfa\xf6\xc7\x67\xeb\xf8\x2b\x40\x3b\x7a\xff\x6f\x59\x4c\x24\x30" "\xc5\x73\x82\x8c\x01\x1f\x25\x20\xb4\x07\xf1\xb4\xd9\x28\x17\xc9\x6e" "\x4c\x4d\x68\x25\x81\xb0\x9d\xf5\xb9\xc1\x72\x45\x78\x6a\x9b\x86\x46" "\x9c\xb2\x34\x97\x82\xca\x7e\x7c\x14\x48\xff\x8a\xdf\xd7\xff\xd2\x11" "\xe6\x80\xba\x23\x7f\x7e\xb3\x33\x4a\x09\x43\x93\x4f\xb7\x1a\xfd\x22" "\xc8\xc9\x17\xeb\xf0\x43\xf5\xdc\xa6\xcb\xb1\x3d\xcd\xd9\xd4\x2a\xf4" "\x69\x66\x1b\x70\xe1\x27\x1d\xc6\x9d\x7b\x6c\x15\xdb\x5c\x2b\x86\xc4" "\x9c\x2a\x9f\xc6\x54\xda\x3d\xd3\xe4\x7c\x6d\x84\xa3\xfe\xc9\x8d\x51" "\x36\x07\x4f\xcd\xb2\x21\x71\xc8\x0b\x9b\x85\x04\xfb\xe4\x81\x6e\xeb" "\x27\x10\x91\x9e\xd0\x5d\x7a\xf0\x7b\x56\x8e\x7b\x32\x5b\x7b\x75\x5c" "\x9d\xca\xeb\x1e\x40\x95\xfe\x0e\x63\x06\x8c\x17\x4d\xa9\x91\xfe\x37" "\x42\x69\x14\x49\x55\x49\xdf\xdf\x3e\x55\xae\x3a\xa6\xbe\x1e\xc4\x53" "\x43\xd1\xe9\xee\x56\x78\x99\xe7\x18\x97\x55\x72\x6f\x58\xf1\xf7\xd6" "\x83\x48\x74\x16\x01\x1a\x73\xd9\x5b\x11\x9a\x3a\xe8\x56\x3e\x89\x96" "\xf9\x16\x4a\xfb\x11\x01\xe9\x6a\xf9\x9b\x3c\x4e\xc8\x58\xde\x0a\x73" "\x8b\x69\x7a\x42\xef\xae\xbe\x96\x33\x05\xef\x0f\xbc\x58\x6c\x3f\x50" "\x45\xe0\x5c\x01\x93\x12\x67\x1b\xdb\xd3\x4d\x4d\x01\xad\x59\xd9\xf8" "\x2c\xfd\x9f\x98\x70\x69\x51\xd2\x65\x7a\xe5\xab\x48\xd2\xa2\xb8\xb7" "\x6b\xf4\x9b\x72\xe2\xc3\x13\xd4\x56\xdc\x9c\xa2\xb3\x8a\x9f\xeb\x64" "\x09\xed\x86\xc7\xc9\xcc\x3e\x31\x33\x32\xa9\x5e\x2a\x2b\x22\x44\x48" "\xa1\x22\xbe\x67\xf9\xef\x60\x2d\xcf\x50\x63\x14\x41\xdb\xcf\x5d\x09" "\xe4\x47\xc8\x2c\xab\x6f\x34\x66\x72\x51\xbb\xce\xec\xe1\x3f\x70\x56" "\x87\xb1\xb3\xb6\x7a\xac\x56\x78\x0f\xa3\x1a\xa3\x1f\xad\xa4\x93\xcd" "\x43\xf7\x12\xbb\xc1\x72\x29\xa5\xea\x6e\xe0\x05\x79\x8b\x7b\x89\x4b" "\x01\x9d\xb9\x14\x64\xd5\x37\x5d\x76\x23\x63\x01\x3c\x6d\x34\xe9\x54" "\x32\x0f\xa7\x51\x00\x6f\x4a\x1a\x2c\x0b\xbe\x33\x49\x59\x4f\xf5\x75" "\xd4\xe8\x7e\x6c\x85\x89\xaf\x92\x28\x00\xeb\xde\x2a\x90\x78\x04\x55" "\xbb\xd5\x3c\x10\x9d\xbd\xab\x27\x7e\x7d\x16\x2f\x12\x25\xb0\xdc\x72" "\x40\xa5\xa8\xbb\x94\xea\x46\x9a\xa9\x31\x0b\x9d\xed\x09\x52\x22\x7a" "\x5f\x07\x52\x65\x5c\xaf\xe5\xee\xcc\xeb\x69\x2e\x43\x5b\xc6\xf9\xc4" "\x27\xe7\xd7\x4e\x57\x55\x11\x68\xcf\xab\xde\xec\xb9\xaf\xbf\x43\x76" "\xf7\xb3\xf3\xe0\x1a\x38\x3f\x71\x6e\x50\x98\xcd\x74\x2c\x2e\x27\x2c" "\x88\x0b\xfa\x93\x40\xae\x54\xf3\x3c\x19\x27\x26\xf1\x3e\x25\xec\x5f" "\x82\x26\x83\xb0\x8a\xc0\x55\x2a\x0d\x10\x0f\x20\xe5\xd7\x71\xcd\xe6" "\xb8\xf2\xe3\xb0\x4b\xef\x88\xa9\x98\xfa\x8e\x14\xea\xa6\xfe\x78\x51" "\x74\xd0\x91\xf5\xc1\x2a\x04\x0f\x16\x22\x8e\xa8\x9a\x25\x22\xea\xab" "\x34\x9a\x4e\xff\xa3\x74\xee\xd0\x86\x1c\x75\x94\xda\xb4\x5e\x5b\x5f" "\x29\x09\x68\x7d\x34\x9d\x24\x0d\x8f\x89\x1b\x29\x1a\x39\x49\x65\xf1" "\x06\x25\xa6\x6c\x78\xec\xf1\xcf\xe2\xab\x29\x60\x3f\xd2\xe2\x3b\x16" "\x98\xc2\x74\x26\x03\xc0\xfd\x09\x7d\xe9\x40\xf2\xeb\xfa\x45\x9e\x08" "\xc9\xb5\xd0\x04\x1e\xa7\x69\x87\x15\x90\x20\x85\xca\x05\x85\x20\xd9" "\x98\x27\xeb\x4d\x1c\xb2\xac\x18\xf3\x00\x35\xb2\x9c\xaf\x74\xbf\xd7" "\x9c\xf2\xae\x1b\xe8\xf1\x9f\x8b\xee\x53\x86\xb0\x7a\x55\x2f\x3e\x58" "\x30\xf9\xa9\x20\x8c\x0a\x42\x4f\x26\x48\x0b\x68\x66\x1a\x75\x7d\x8e" "\x93\xb2\x6d\xb3\x56\x19\xee\x41\x7e\x2a\x9f\xf7\xc5\xfd\x9b\xf1\xf2" "\xd7\xda\xf8\xcd\xbb\xea\x2a\x18\x49\x48\x61\xc6\xcc\x0e\x46\xe5\x3a" "\x59\x25\xf5\x3a\x54\xe3\x6c\x5f\x11\x61\xaa\x15\x2f\x23\xc3\x08\x98" "\xbf\xd6\x93\x32\x36\xc8\x73\xe6\x30\x8d\x15\xec\x11\x46\x15\x1d\x7e" "\xa5\x22\xf3\x13\x2a\x96\x21\xc3\x4c\x2e\x10\xfe\xa9\x39\xb3\x3b\xed" "\x7a\xf5\xff\xde\xc1\x24\xfb\x3d\x80\x4b\x9a\xa5\x19\xfb\x22\x6c\xdf" "\xe8\xa1\x5d\xdc\x4b\x88\x3e\x51\x02\x77\x04\x01\xa0\x53\x21\x41\x67" "\xff\x32\x67\xc5\xfa\xb1\x39\xc1\x68\x82\x61\xdf\xee\x7a\x81\x23\x7d" "\xbe\x9b\xb5\x29\xd2\xf1\xc1\xef\x7d\xe0\xf5\x6d\xc0\xd7\x53\xf6\xcb" "\xc8\x7a\xdb\xcd\xf7\x19\x49\x6c\xe0\x31\x42\xd2\x95\x0e\xd5\xbb\x47" "\xb5\x1a\xf9\xfd\x49\x14\x8f\xa5\x59\x82\x96\x8e\x6a\x2c\x58\xa9\x04" "\xe3\xd6\xf3\xa7\x59\xad\x1e\x27\x34\xa0\x2e\x89\x94\x0e\xb8\xad\x97" "\xf8\x2a\xe3\xa0\x54\x81\xbc\xaa\x62\xe4\xee\x2a\x69\x12\xce\xb1\xcb" "\x49\xcc\x8e\x5e\x9e\xd7\x80\x99\xf9\x33\x70\x8c\x3a\x4e\x63\x2b\x3a" "\x84\xf2\x6a\xbe\xbf\x02\x94\xbe\x39\x92\xe7\x53\xf3\x72\x67\xeb\xff" "\xcb\x59\x9f\x93\x8e\x6d\x0f\xbc\xda\xa1\xd1\x56\x69\x04\xd3\x8a\xe1" "\x64\xcb\x10\xe4\xd6\xba\x1b\x2a\xaf\xb3\x14\xf4\x29\xd4\xa4\xec\xf2" "\x61\x22\xf4\x24\xd8\x79\x1e\x73\x71\x99\x3e\xd6\x9a\xb4\x8c\xb3\x6a" "\xc4\x09\xb7\x1d\x3a\x40\xc2\x97\xef\x89\x65\x00\xd1\x05\x5f\xd3\xa5" "\x55\x6a\xfd\x11\xaf\x4c\xf8\x85\x0c\xe1\x69\x87\x2d\xb6\xee\xd1\xb1" "\x68\xeb\xbc\x9c\x44\x36\x34\x0f\xcd\x9e\x50\x8b\x5e\xb1\x8c\x18\x98" "\x9c\x60\xe4\xcc\xca\x2b\x53\x3e\x98\x47\x45\x5e\xcc\x01\xd3\x70\xc4" "\x34\xf9\x09\x2c\x88\x29\x75\xf7\x00\xc1\xbb\x7b\xf8\x54\x47\x02\x5c" "\xa0\x3f\xa4\xd6\x16\x93\x7f\xae\xed\x96\xaa\x8e\x67\xf9\x75\x14\x64" "\x2c\x12\x8f\xf2\x42\xfa\x17\xb2\x2d\xa3\xcc\x55\xf0\xe6\x5a\x03\x80" "\x8c\x1e\xa4\xe8\xdd\x07\x39\x2e\x44\x51\xfe\x28\x8a\x87\xf2\x85\x07" "\x37\x3e\xc3\x92\xf8\xd8\x29\x79\x4c\x58\xfb\xe8\x02\x3a\xbe\x4d\x6b" "\x2f\xe7\xe6\x0a\xca\xe8\x56\xb8\x4c\x56\x8a\xda\xbd\x2f\x5d\xb7\x51" "\x0c\xe6\xfb\x6a\xbc\xca\x15\x96\x5e\xc0\x3f\x4d\x53\x73\x7a\x4b\xe5" "\x69\x6d\xd9\x1d\xe8\xba\x01\x9a\xd2\x43\x98\x62\x93\x5f\xf5\xd0\xa3" "\x27\x75\xc2\x4d\x6a\xe9\x63\xd3\x90\x1b\xce\xfd\xeb\xb6\xe6\x8e\xef" "\xbf\xc8\x63\x1d\x7d\xcf\x60\xfb\xb6\x20\x3f\xda\x20\x1f\xd5\xd8\xa8" "\x89\xcd\x52\x25\x74\xf7\x3f\xe5\x30\x34\xd3\xee\x8c\x51\xc0\xf2\x09" "\xa4\x0e\x3a\xe8\x25\x0e\x2c\xbb\x22\xe5\x58\x16\x72\x8d\x62\xa8\x9b" "\x5c\x63\x94\xa6\x71\xc0\xf0\x3d\xec\x1f\xc8\xbd\x30\xcb\xae\x80\x60" "\xb0\x98\xba\x23\x5a\xbb\xb4\x5f\xa0\x82\x5e\xf8\x1b\xdf\x24\xa2\x27" "\xcb\x56\x2d\x3a\xc7\xe4\x2e\xfa\x0c\x68\x90\x42\x62\x38\xaa\x59\xd3" "\x82\xc6\x78\x2e\x15\x2b\xf1\x1f\x4c\xdf\x2c\x80\xb7\xf2\xf6\x0d\xc5" "\xa7\xa1\x58\x1a\x8d\x32\x3f\xa4\x1b\xc4\xc9\x53\x3a\xcf\xe7\x7a\x38" "\x25\x13\x26\xd5\x63\x2b\x7f\x90\xf5\x03\xb3\x28\x33\x8a\xec\x89\x3f" "\xfa\x4e\xd6\xdc\x20\x53\xf9\xc1\xec\xe0\xde\xb9\xcf\xe6\xe6\x38\xc5" "\xa5\x87\x5b\x25\x34\x77\xac\x53\x2a\x66\xbe\xdd\x10\x2c\xe5\xce\xd0" "\x90\x75\x8f\xc5\x09\xfc\xd9\xc9\xcd\x6d\x9a\x62\xe8\x35\xa2\x83\x48" "\x1c\x69\xa8\x4e\x8d\x2c\xc8\x44\x33\xcd\x7a\x07\x98\x59\xe4\x86\x8a" "\x42\xcd\xd6\x79\x4a\xb2\x37\xd6\x6d\xb2\xb7\x0b\x16\xce\x4e\x47\x43" "\xff\xb2\xda\xb9\x4f\x2a\x8d\x97\xa9\xa8\xff\xe0\x18\xad\x58\xf2\x19" "\xb8\xb6\x1a\x1c\xd0\x00\x77\xcd\x00\xe9\xc4\xd3\xe0\xc2\xa9\x8e\xe8" "\x9d\xde\xf0\x98\xbd\xac\x59\xf5\x0a\x6f\xcd\xd7\xd2\x4a\x02\x75\x2d" "\x2a\x46\x78\xb5\x09\x63\x22\xa9\xf7\xff\xe6\x9f\x37\x58\xe0\x1e\x91" "\xe0\x25\xa7\x34\x1c\x96\x9a\x67\x09\x86\x11\x93\x9a\x65\xf7", 8192); *(uint64_t*)0x20001180 = 0; *(uint64_t*)0x20001188 = 0; *(uint64_t*)0x20001190 = 0; *(uint64_t*)0x20001198 = 0; *(uint64_t*)0x200011a0 = 0; *(uint64_t*)0x200011a8 = 0; *(uint64_t*)0x200011b0 = 0; *(uint64_t*)0x200011b8 = 0; *(uint64_t*)0x200011c0 = 0; *(uint64_t*)0x200011c8 = 0; *(uint64_t*)0x200011d0 = 0; *(uint64_t*)0x200011d8 = 0; *(uint64_t*)0x200011e0 = 0; *(uint64_t*)0x200011e8 = 0x20000a80; memcpy((void*)0x20000a80, "\x50\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x60\x00\x00\x00\x00\x00\x00", 124); *(uint32_t*)0x20000afc = 0; *(uint32_t*)0x20000b00 = 0; memcpy( (void*)0x20000b04, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00\x00\x00\x00\x00" "\x00\x00\x66\x75\x73\x65\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00", 152); *(uint32_t*)0x20000b9c = 0; *(uint32_t*)0x20000ba0 = 0; memcpy((void*)0x20000ba4, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00\x00\x00" "\x00\x00\x00\x00\x66\x75\x73\x65\x00\x00\x00\x00", 44); *(uint64_t*)0x200011f0 = 0; *(uint64_t*)0x200011f8 = 0; syz_fuse_handle_req(r[0], 0x20002100, 0x2000, 0x20001180); break; case 8: syscall(__NR_getdents, r[2], 0ul, 0ul); break; case 9: *(uint32_t*)0x200000c0 = 0x2e; *(uint32_t*)0x200000c4 = 6; *(uint64_t*)0x200000c8 = 0; *(uint64_t*)0x200000d0 = 1; *(uint64_t*)0x200000d8 = 1; *(uint32_t*)0x200000e0 = 5; *(uint32_t*)0x200000e4 = 0; memcpy((void*)0x200000e8, "fuse\000", 5); *(uint8_t*)0x200000ed = 0; syscall(__NR_write, r[0], 0x200000c0ul, 0x2eul); 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; }