// https://syzkaller.appspot.com/bug?id=d17e76cc8e989744073c23cae08ec5f86a99d843 // 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, FUSE_SYNCFS = 50, FUSE_TMPFILE = 51, FUSE_STATX = 52, 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; struct fuse_out_header* statx; }; 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; case FUSE_STATX: out_hdr = req_out->statx; 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) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 11; 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: // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: open_flags = 0x40 (4 bytes) // mode: open_mode = 0x1 (2 bytes) // ] // returns fd memcpy((void*)0x20000000c380, "./file0\000", 8); syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000000c380ul, /*flags=O_CREAT*/ 0x40, /*mode=S_IXOTH*/ 1); break; case 1: // openat$fuse arguments: [ // fd: const = 0xffffffffffffff9c (8 bytes) // file: ptr[in, buffer] { // buffer: {2f 64 65 76 2f 66 75 73 65 00} (length 0xa) // } // flags: const = 0x42 (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd_fuse memcpy((void*)0x2000000000c0, "/dev/fuse\000", 10); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x2000000000c0ul, /*flags=*/0x42, /*mode=*/0); if (res != -1) r[0] = res; break; case 2: // mount$fuse arguments: [ // src: const = 0x0 (8 bytes) // dst: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // type: ptr[in, buffer] { // buffer: {66 75 73 65 00} (length 0x5) // } // flags: mount_flags = 0x0 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {66 64 3d} (length 0x3) // } // union ANYUNION { // ANYRESHEX: ANYRES64 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {2c 72 6f 6f 74 6d 6f 64 65 3d 30 30 30 30 30 // 30 30 30 30 30 30 30 30 30 30 30 30 31 30 30 30 30 30 2c 75 73 // 65 72 5f 69 64 3d} (length 0x2a) // } // union ANYUNION { // ANYRESDEC: ANYRES64 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {2c 67 72 6f 75 70 5f 69 64 3d} (length 0xa) // } // union ANYUNION { // ANYRESDEC: ANYRES64 (resource) // } // } // } // ] memcpy((void*)0x2000000020c0, "./file0\000", 8); memcpy((void*)0x200000000100, "fuse\000", 5); memcpy((void*)0x200000002140, "fd=", 3); sprintf((char*)0x200000002143, "0x%016llx", (long long)r[0]); memcpy((void*)0x200000002155, ",rootmode=00000000000000000100000,user_id=", 42); sprintf((char*)0x20000000217f, "%020llu", (long long)0); memcpy((void*)0x200000002193, ",group_id=", 10); sprintf((char*)0x20000000219d, "%020llu", (long long)0); syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x2000000020c0ul, /*type=*/0x200000000100ul, /*flags=*/0ul, /*opts=*/0x200000002140ul); break; case 3: // read$FUSE arguments: [ // fd: fd_fuse (resource) // buf: ptr[out, fuse_in[read_buffer]] { // fuse_in[read_buffer] { // len: len = 0x2020 (4 bytes) // opcode: int32 = 0x0 (4 bytes) // unique: fuse_unique (resource) // uid: uid (resource) // gid: gid (resource) // pid: pid (resource) // padding: int32 = 0x0 (4 bytes) // payload: buffer: (DirOut) // } // } // len: bytesize = 0x2020 (8 bytes) // ] res = syscall(__NR_read, /*fd=*/r[0], /*buf=*/0x2000000021c0ul, /*len=*/0x2020ul); if (res != -1) r[1] = *(uint64_t*)0x2000000021c8; break; case 4: // write$FUSE_INIT arguments: [ // fd: fd_fuse (resource) // arg: ptr[in, fuse_out_t[fuse_unique, fuse_init_out]] { // fuse_out_t[fuse_unique, fuse_init_out] { // len: len = 0x50 (4 bytes) // err: fuse_errors = 0x0 (4 bytes) // unique: fuse_unique (resource) // payload: fuse_init_out { // major: const = 0x7 (4 bytes) // minor: const = 0x1f (4 bytes) // max_readahead: int32 = 0x0 (4 bytes) // flags: fuse_init_flags = 0x1410400 (4 bytes) // max_background: int16 = 0x0 (2 bytes) // congestion_threshold: int16 = 0xfff9 (2 bytes) // max_write: int32 = 0x2 (4 bytes) // time_gran: int32 = 0x0 (4 bytes) // max_pages: const = 0x0 (2 bytes) // map_alignment: const = 0x0 (2 bytes) // flags2: fuse_init_flags2 = 0x0 (4 bytes) // max_stack_depth: int32 = 0x0 (4 bytes) // unused: buffer: {00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00} (length 0x18) // } // } // } // len: bytesize = 0x50 (8 bytes) // ] *(uint32_t*)0x200000000040 = 0x50; *(uint32_t*)0x200000000044 = 0; *(uint64_t*)0x200000000048 = r[1]; *(uint32_t*)0x200000000050 = 7; *(uint32_t*)0x200000000054 = 0x1f; *(uint32_t*)0x200000000058 = 0; *(uint32_t*)0x20000000005c = 0x1410400; *(uint16_t*)0x200000000060 = 0; *(uint16_t*)0x200000000062 = 0xfff9; *(uint32_t*)0x200000000064 = 2; *(uint32_t*)0x200000000068 = 0; *(uint16_t*)0x20000000006c = 0; *(uint16_t*)0x20000000006e = 0; *(uint32_t*)0x200000000070 = 0; *(uint32_t*)0x200000000074 = 0; memset((void*)0x200000000078, 0, 24); syscall(__NR_write, /*fd=*/r[0], /*arg=*/0x200000000040ul, /*len=*/0x50ul); break; case 5: // syz_fuse_handle_req arguments: [ // fd: fd_fuse (resource) // buf: ptr[in, buffer] { // buffer: {00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 08 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 dc 4e 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 40 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ba 04 5a bc d5 // df c6 7d 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 23 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 05 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 0a 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 80 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 20 9b fd 66 ee a2 10 56 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 04 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 13 54 c4 b6 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00} (length 0x2000) // } // len: bytesize = 0x2000 (8 bytes) // res: ptr[in, syz_fuse_req_out] { // syz_fuse_req_out { // init: nil // lseek: nil // bmap: nil // poll: nil // getxattr: nil // lk: nil // statfs: nil // write: nil // read: nil // open: ptr[in, fuse_out_t[int64, fuse_open_out]] { // fuse_out_t[int64, fuse_open_out] { // len: len = 0x20 (4 bytes) // err: fuse_errors = 0x0 (4 bytes) // unique: int64 = 0x88 (8 bytes) // payload: fuse_open_out { // fh: const = 0x0 (8 bytes) // open_flags: fuse_open_flags = 0x0 (4 bytes) // padding: const = 0x0 (4 bytes) // } // } // } // attr: nil // entry: nil // dirent: nil // direntplus: nil // create_open: nil // ioctl: nil // statx: nil // } // } // ] memcpy( (void*)0x200000008380, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xdc\x4e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xba\x04\x5a\xbc\xd5\xdf\xc6\x7d" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x23\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\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\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x20\x9b\xfd\x66\xee\xa2\x10\x56\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x13\x54\xc4\xb6" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\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*)0x2000000062c0 = 0; *(uint64_t*)0x2000000062c8 = 0; *(uint64_t*)0x2000000062d0 = 0; *(uint64_t*)0x2000000062d8 = 0; *(uint64_t*)0x2000000062e0 = 0; *(uint64_t*)0x2000000062e8 = 0; *(uint64_t*)0x2000000062f0 = 0; *(uint64_t*)0x2000000062f8 = 0; *(uint64_t*)0x200000006300 = 0; *(uint64_t*)0x200000006308 = 0x200000000480; *(uint32_t*)0x200000000480 = 0x20; *(uint32_t*)0x200000000484 = 0; *(uint64_t*)0x200000000488 = 0x88; *(uint64_t*)0x200000000490 = 0; *(uint32_t*)0x200000000498 = 0; *(uint32_t*)0x20000000049c = 0; *(uint64_t*)0x200000006310 = 0; *(uint64_t*)0x200000006318 = 0; *(uint64_t*)0x200000006320 = 0; *(uint64_t*)0x200000006328 = 0; *(uint64_t*)0x200000006330 = 0; *(uint64_t*)0x200000006338 = 0; *(uint64_t*)0x200000006340 = 0; syz_fuse_handle_req(/*fd=*/r[0], /*buf=*/0x200000008380, /*len=*/0x2000, /*res=*/0x2000000062c0); break; case 6: // syz_fuse_handle_req arguments: [ // fd: fd_fuse (resource) // buf: ptr[in, buffer] { // buffer: {a2 80 96 c8 0a bf 35 43 ec de 75 64 ab ff 50 85 d2 22 7e bc // b0 f1 64 ae 92 70 6a d0 b0 83 a3 f4 69 a3 ef d1 5b 49 21 e9 c3 06 3b // 98 b3 08 20 68 e7 c3 19 50 dd e8 42 ea c5 5d f0 f9 91 45 3c ad 62 a6 // 95 6b 0b 6f 7b 8c f4 9b 50 6a 30 60 fe 11 27 ec a9 96 63 ad e8 ef a8 // 9e e1 89 ac b5 f3 b9 2f 6b c4 c4 66 21 c8 03 ee d0 d0 bb 5f 32 38 48 // 70 ed 08 f8 9d 4f 74 44 57 62 fb 99 71 5e 08 3c 4c 92 a8 87 8b e1 9f // fa cc 30 d0 f2 da 64 f9 71 cd 40 56 31 63 ad c1 56 70 ec f2 5c d3 ad // 96 13 89 67 c4 b5 3a d9 d0 4b 51 93 ab 5f b6 74 aa 00 30 a9 d7 03 d1 // ba f8 10 ce 89 7f 96 91 21 f1 42 16 19 19 e5 83 c2 75 67 1b 99 9e 7f // 36 38 91 df df df 35 56 d0 1b 86 ee 29 ec a8 fc cb fe af 17 71 39 51 // 48 70 6c c6 e6 be 7c e2 9f c9 ff ef 06 1b 54 20 95 0c 1a 52 5b f7 5a // d0 6e de c5 15 38 d1 c5 bb c7 7d a7 2d c9 0f d9 99 89 36 ff fd da 24 // 27 e5 a6 89 66 c7 e2 20 8f 76 30 46 80 18 2e c7 30 07 e4 82 f0 34 19 // 57 12 af 92 2d b2 72 61 95 d9 97 70 87 34 db 9e 78 25 a8 64 be 00 b2 // a4 f8 00 88 1f c0 36 3f 5e 61 83 98 45 4f 35 b1 48 b4 cc b8 8d 41 82 // 69 fa c8 68 a8 ba 4a 2d 5b 4f 06 a1 ac 01 b5 ad 15 8b 84 2e 05 ad ca // 22 c7 37 25 85 bf 4c e9 55 60 b6 c1 e0 21 a3 ed 2f f7 bd 3b 6b 3c 77 // 34 c3 b6 6d 7e 4c 46 00 96 31 20 82 f8 9b 16 ba a6 e7 38 14 aa 60 92 // 57 80 cd 92 cd 65 08 7e 26 0e c0 46 fc 36 32 64 36 6a 9d f2 c8 49 c0 // 64 49 11 30 39 46 ad ad 54 45 21 ce b4 69 a3 e1 93 ec c9 a7 87 64 03 // fa c4 61 a4 a7 0d 61 93 b2 45 11 89 a5 c5 12 0b 35 35 e9 ed f6 19 10 // 8a f7 f5 17 b5 8a bd 3f a7 fb 1a b8 32 21 34 30 d2 e6 90 10 76 fb a9 // c9 e1 ac c6 c6 f4 8f f0 e4 19 bb c4 55 89 74 5a 17 6f 52 a7 40 7a d5 // e3 dd 49 ac b3 1b 47 86 28 06 f4 70 77 dd a0 49 05 e4 5a 80 a1 2c bc // d4 d2 dd 9f e6 6c 2d 1f 99 39 4f ed 8e c6 09 61 cd 2d c7 11 5a 96 ec // e4 32 fa c8 6d 51 be bb 08 b9 5f 44 7a 83 79 2f e8 02 91 fc a7 b2 98 // c9 04 3e f2 c2 6f 0f 7e 42 79 8d 3f 54 c8 4b 94 c2 4c 76 c5 55 d8 3c // cc 53 b9 9b b2 2d 71 84 5e 5c f2 1a 5b a7 fb ef fe b6 30 6e 17 30 db // 14 56 1b 95 0a 3f 24 bc fd 78 d4 ab 0d 97 de 80 54 bb 1a 60 77 ae 7c // ca 6e 45 d8 46 d3 df 82 29 8d 07 21 29 22 74 2c b0 fa ca c3 b7 7e df // ba b9 0e 9e e2 d4 f7 b0 ee 9b 17 bb 11 ec 5e 57 21 34 0d 84 cb 6b d9 // 34 28 16 7e 69 b4 77 59 17 25 57 ac da 31 3c 3d ec df c6 fe 93 36 bf // ad e4 59 f4 3b 39 d0 f2 28 9f 91 42 db 28 0f 4e e6 68 e6 50 e1 28 58 // c5 77 e1 2e 2b 9a 57 ee 66 c8 34 be 97 97 9b cb e9 47 47 fa 5d 8d 0b // 7d 3a 9f 8f 21 8d f1 bf 96 0f 82 84 29 a1 ef e8 38 61 6b 18 fa f6 62 // 92 36 dd bd ed 43 a0 93 ef ae 16 32 28 e5 c3 8f d7 71 47 43 c2 fc ca // 47 e3 38 2b cf b1 ab 89 3f d7 37 75 27 b4 ec 43 f3 fa 60 eb d3 38 16 // 1d 8d e7 ca d6 5b 15 57 9e 4a f2 58 f5 fe 3a 63 c2 63 7a 15 70 32 07 // 02 9b 08 99 b5 42 77 67 64 7b ae f1 1e 29 13 58 e6 e5 4f 6f 13 d3 d2 // ca 7a 5e 79 69 e0 4d 27 33 b3 b9 ab 82 2c 69 a3 cf ac 09 73 84 de 50 // 71 a9 b7 4a 65 61 36 d5 5e b1 90 df 08 74 7b 50 9f d6 10 ff 62 b4 95 // 0e f7 1c 93 4f e2 1a 48 a4 93 1d 3d 94 58 b4 15 f1 12 ce e6 5c 66 0f // 54 90 e9 82 34 1d a1 c5 86 34 b3 96 7c a6 f3 59 6d 20 cc 90 f5 08 38 // 21 56 e3 6f 16 53 90 93 24 0e f5 f2 aa 6a 2c 0d ff 2a 67 df 30 dc f5 // 0b f6 e0 b8 2a 3d 49 f2 d5 32 a8 dd e1 b3 ce ef cf 08 37 19 0b 74 18 // 60 90 d1 c1 8b 59 91 7d 7e fc e1 ad fb 23 8e f4 a7 b1 d2 2c 4c ef 09 // 32 02 21 de 88 3e 97 e6 88 24 66 50 8d e0 6f cd ab ad 3b 74 1b dc a2 // cf f8 79 d5 7d dd a5 2f 42 b3 dc b8 a7 8c fc 05 82 6a f7 e4 ff 15 59 // 60 ff 84 91 19 4f 4d 32 1e f1 95 99 0a ba ee ef dc b8 52 d1 e1 e3 70 // 3f 31 73 85 a9 45 8b 6c 2d d9 db 83 0f 75 7e c2 9c 99 39 fc 73 13 e6 // 39 fe 48 5b c1 e4 1d da ae f3 fb f1 f7 cc 52 7c 8f ad 0d 21 b8 08 24 // 82 ca ad 7b ee 44 0e 50 97 66 5f 63 6c 3d fe c8 2f 8c 98 af b6 24 3b // c3 94 49 39 67 5a 59 42 77 d2 78 ba 43 61 46 1f 7d a5 2e 22 4e 4c e5 // de e4 a4 67 bf 6a e9 f6 7b 61 ac 6e b0 a4 40 40 6a ba c2 01 6e ec 90 // 7e 24 1c 57 f5 f4 4b e4 72 90 fd 0f ef 78 5f f0 4d f3 81 0c cd 63 7b // 4d 97 a8 4b ae 84 86 a3 6f 75 d8 72 e6 45 fe 46 62 59 69 fc 2d 1f 03 // 2c 56 ed 44 bd 98 ea 27 bd 9b 6d dc 8e b2 dc 2e c9 f9 0f 2f 1c a1 bd // 20 e3 7a c5 8b 03 c8 4c 87 2f 4b a4 73 10 65 49 86 64 14 60 df dd 53 // 1a c6 2a 76 ad 87 b8 9c 10 3a c5 c9 c2 e7 e7 0c 66 44 7b 34 12 d4 a1 // e5 cb c3 0e 16 93 95 05 11 6c 04 de 33 ae 05 4e d3 66 de 8d 1f 97 1c // 2d e4 39 95 7a 19 4e 22 a4 88 f5 8d 7e fd 46 43 91 77 f3 f3 c4 5a 14 // 75 92 7e ec d8 46 d3 d2 e6 a2 ab 5c 7f 8a dd d9 90 62 c2 fc 6b 27 2d // 1f 51 bb 8f 22 f1 b6 f8 bb 3f af 8a a8 5e 5e b9 ab f7 df 5c f8 f2 62 // 67 32 38 08 b0 83 3a 98 79 89 cb e5 92 05 e7 ad 06 55 6e 2d 1b 8a 48 // 73 ca 1c bc bc 8d 43 ab c1 45 fd 4e b8 32 e7 a5 8a b2 c7 93 d0 03 ce // 7b 18 50 ce 45 eb 74 80 41 7a 1e 9e b9 d3 9a 10 28 a2 a0 4a 2a a6 49 // c0 98 c4 f8 ee e5 14 db 5f 60 21 17 3b b2 54 b8 e2 2b 15 0b 2c a0 1d // c7 ff 23 5d b4 6e d7 8d 07 f4 3d 1a da b1 3b 84 45 d1 b3 20 69 eb 45 // f9 d3 89 fc f5 a3 f7 d3 eb e2 43 c5 b1 fe 17 b1 f5 a3 d5 71 b6 5f 21 // b9 e4 71 e8 18 17 25 54 dc 95 67 49 b9 9c b7 a5 f3 03 ec 48 0d 71 94 // a2 ba 86 e2 04 f0 6a a1 be cd dd c8 c4 90 82 c5 27 e7 06 4a c2 ad 77 // dc 05 63 9d 3d 2a 77 78 f6 94 3e d6 10 5e bf 6f 0b 9e 94 fd db e0 5c // 23 6e c0 00 f4 d1 d4 e4 96 b1 00 68 21 1a b6 8a da 4c 7f 7a c6 1f 5f // 5b a5 f1 81 0d 5b be 87 ff 4f 83 56 af 0d 3f 68 2b ae db 0a d8 f8 48 // 8b 27 74 21 f0 a0 3f c5 e3 09 5e e3 4b c4 47 2d 8f 17 e3 f7 01 3c f2 // f7 9f 5f f3 ea 4b 6b ae 56 d1 36 5a 33 b0 9b fa 9a 49 63 23 f7 da 92 // 3b 7e 29 dc e4 be b8 10 35 f1 31 30 00 4c 96 e5 6d 7e f6 ca 6c 10 1d // 20 c2 7a 21 8e 62 32 27 c3 3c 9e 48 8b 17 e7 ae 9a c2 0d a8 24 05 01 // f7 b6 14 a1 73 0f 16 45 53 fe 47 9e f1 49 86 6e 4e a4 72 96 81 42 84 // a3 d3 eb 7c bb 29 42 89 ff b9 96 e0 eb 05 3b 9c 16 e5 4c f2 67 83 2e // 3d 36 0e b1 96 ed 51 30 56 30 22 33 09 ea 97 21 56 28 f0 1e c9 d3 ea // 48 09 64 18 d5 e9 62 ca c5 06 34 60 f0 a1 87 72 ec 7c e6 6d 14 a1 cc // e1 4b 52 c4 0b bb fa fc cb f1 e7 6f 09 e5 7f f0 71 80 48 e5 b9 93 15 // 7a 6c f4 71 88 26 b1 e0 94 30 41 3a 35 96 a1 5c 4a 62 0f a8 c8 e1 d1 // 66 3e 57 39 f9 f7 90 dd bb 3b e0 e0 01 87 d4 37 17 d6 59 24 24 67 d8 // 68 1a c1 03 03 34 61 57 f8 94 d9 03 76 41 41 70 10 e9 65 4c 6a 5b 22 // 26 3e 73 a5 a3 71 28 f5 00 78 a9 80 c3 09 30 32 1a a5 c5 e7 85 1d 5d // 39 2d dc e3 a1 4a 96 91 6f a8 42 1a e6 72 8f 37 f5 de 7c 3e 98 fe b4 // ba bd 4e 1b d2 31 5d 59 5e 20 9d 52 74 8f 70 ad c2 28 4f cd aa 6a d8 // 80 47 0d 2a 07 1f 34 90 aa f3 49 1f b6 4b 45 47 41 9e 8e cc dc 49 1a // 89 21 15 6c b4 81 1a d1 e6 65 14 a3 2b 0b 31 b6 41 43 88 81 f2 8c 1e // 64 61 b4 f4 51 93 89 99 af 67 1e 8c 6a 5c d0 c0 72 a9 fe 4c db ef e2 // 4c a6 16 f3 d0 a1 5a c9 7c ca 83 5b 1a 44 0e 04 fa 28 34 0c 60 44 17 // 6c 8e cc 8e e0 d0 33 d4 7d b8 a0 aa cf a0 ea bd fa 1c 95 09 fc 26 04 // 00 8f 01 cb af eb 5b d2 b5 03 b8 09 ed 67 23 40 b9 a5 76 59 3f 1e f3 // 88 39 1b 54 b6 05 e7 a1 5b ef 7b 13 45 62 7a 34 fc a5 77 38 b0 f8 f4 // f1 9e ea 93 c9 03 49 52 74 a4 42 5a 1a 1c c6 c4 c6 e3 35 b6 31 df 51 // 85 c9 5b 48 5e 42 57 86 7b 53 47 a4 0e 4e 14 dc c5 60 f0 61 fd 4f d2 // 65 13 7d c6 8a fd 54 8a dd e7 78 f1 33 0f 76 9a cb 1c cf 5d a1 4f f6 // 99 2c 24 e2 10 ea 6e 61 79 42 18 81 b8 03 39 3b c6 97 4e 37 10 6c 5b // 5b 3b 5d 0b 34 69 f8 96 9b ff b7 e4 ce b2 c9 8e 92 8e 74 36 64 92 d2 // 72 35 ae 4c 74 a2 f4 85 11 ae ea a5 3a 2b ea fa 7a 33 1b 50 e4 54 c5 // 07 af 1b 63 35 0a 5c ef 35 66 8a 5b 93 25 01 41 92 27 7e 50 95 61 00 // 8b 36 01 08 8f 79 d4 2e aa 8b 1e 4a e2 00 0b 31 74 9e 2b 80 94 31 2d // db 7f 3c 1c d6 25 ef 88 5c 11 fa 22 a6 6e 37 4b 52 b3 42 5e 0b 80 16 // 15 4e 1f d8 47 13 39 e3 2e 73 73 d6 3a b6 46 d8 93 fb e0 9a e0 7b 06 // 07 4c 01 40 1e a7 6b 3c 38 2a 9d 32 f2 4f 93 c7 89 96 4e 16 bc 42 06 // ec d7 5c 10 91 7a b8 4f fd 8d 6c df 4c d2 8f d9 03 75 ff 28 51 8f 8c // 1a 3b ef c5 38 e1 b9 e4 27 fb 67 19 88 d2 9f 2f b2 fc d0 39 f4 d3 41 // c8 4e b4 d7 cf 60 0d da ba 88 bb 09 4e 4d 87 a1 41 91 80 14 9f 49 13 // 68 e6 48 b6 99 85 b0 5a c3 9a 4e cd d3 c5 13 5f 3a 5c 8a d7 79 2d ac // b6 47 01 44 bb 9e 67 80 5a 21 1e fb 3e c9 cc af 8e 09 01 34 5f b1 9e // 4d a5 79 e1 fb e8 6a 12 07 f4 f1 3c 34 36 00 9c 2c 64 0b 7c f3 f8 b7 // 7c a7 bd 99 4b f9 33 08 02 73 59 c6 dd 1b 7d b1 e1 53 fc 08 21 96 8e // f3 6c 00 3b 6c 73 fe 89 0f 4d e2 4f 5c 64 58 db aa f3 81 9e de aa 91 // 78 3c 3c fc 7e 77 36 89 23 62 48 19 5c 7b bd 60 11 3f 24 76 fa 36 87 // 62 1d 66 8d 17 28 ee 43 3d 2f 8f 4d b7 07 34 5d 30 f1 e5 2a b8 7a 2a // 0a fd 54 7c 6b 3f 00 00 f5 9f 17 fa cd e4 8f 69 34 90 e2 24 94 b7 5d // 11 df 1a 14 3b 85 06 8d 14 3e f6 a9 bb 59 37 a9 df 38 0c 89 48 f1 a0 // 1e 96 75 e1 84 09 ed b0 f6 b9 60 5b 68 e3 46 32 fc ce 47 2d c5 0b 90 // b0 f6 dc d5 79 31 f7 8e 1e 88 61 a0 fb 62 e7 2b 0b aa d6 f9 d2 3c 1c // fb 0f 19 b2 50 13 c8 d9 fc d7 86 a2 f6 f7 97 68 b5 fb 39 8f 7b 2b aa // 31 ce 81 56 d1 fc 4a 46 c1 c4 63 fd f3 03 60 d4 2a ee d2 ef 11 61 1d // 0b 7f 65 4b b5 10 52 fd 4d c3 93 28 f8 ec 4c 58 bb da 05 e6 f1 b3 c8 // f6 d8 ad ca 02 68 f2 41 0e 9a 4a 7d 63 b6 61 60 06 d0 e0 2f 6e da cc // 10 e5 c5 4f d8 5f 15 a8 bd 76 48 a2 93 f2 3d 6a 69 9b d9 a6 75 25 04 // 75 a7 3a 96 d7 47 5e 4f ab b8 9f b5 e7 de 5d 7a 34 79 aa 48 5c 0b ef // c6 0d 0a c4 fd 5a c6 db ec ce b0 6c ad 86 e2 19 fc 0c e4 72 07 58 91 // 78 11 a3 21 5f 8d 13 e4 13 bf b6 4f c0 65 fc 42 1a ed e0 b5 66 91 79 // 7d ac 42 8c 7e 46 34 79 fa 59 1b 90 72 c3 09 b7 53 3e 42 7c 5c c1 1a // 1f 6c f9 a5 b9 95 d3 28 d7 96 d8 74 c5 b5 5d fc 12 a5 03 9b 41 3c e3 // 19 cf 5b a1 f3 55 c4 e0 71 7d 32 65 0b 43 e1 80 10 f3 7f 04 87 31 93 // 1c 52 c4 f3 6e b9 69 dd a7 02 af e9 6c 2a 52 41 35 0a 67 ba 2d 02 69 // 46 18 9c 5e 28 12 93 c9 a8 e2 cf f3 78 47 53 f1 de 78 b9 17 10 1b 54 // e5 ab 00 c0 45 ea 15 f2 8a 0e 3f 50 99 62 cf 8b d3 38 5d 85 25 07 37 // ea e5 c3 4e ce 86 b8 66 69 c1 3b 00 30 8a 3b 13 c0 ac 3c 83 ff 26 fb // 52 a4 aa 83 c1 23 3a 94 90 cb 9c a9 17 a0 56 90 89 31 75 1b dd b8 8a // 62 37 9a 71 33 95 f0 76 4e 4a 39 3f af 25 3a 40 26 d0 47 22 70 e6 03 // 62 87 d5 68 50 df 17 51 54 34 84 d6 5b 30 62 15 5b 63 00 e0 02 42 41 // c5 9a 86 2a e7 69 c1 a9 23 2a 2d 9f b2 47 05 17 7a 09 cc eb 3e ef bf // 9f 10 6f 67 e0 1b e1 4c de b4 d2 fc 7d 86 61 df 3e 75 de 5c cd 09 a7 // e5 59 f0 28 fb 98 37 c6 21 ea 00 45 b4 d1 b6 79 06 7f 24 63 39 c9 74 // 63 1a a7 13 4d 4e 91 0e fb 28 d3 c4 89 29 ce f1 df 7e 6c 73 66 87 62 // d5 50 86 b6 c5 9c 36 ac 90 15 41 35 fd 7c a4 e4 04 7d d0 aa 16 1f a9 // 82 d8 ed f9 c0 cb 96 66 47 7e 09 6c 55 71 8f 6e 47 42 41 5f ef d4 f6 // 96 d1 f1 cc d6 32 2b c1 94 96 dd eb d3 62 82 a7 c7 07 d5 b4 41 13 e3 // 06 78 e6 e3 3a b7 d3 4b e0 4a 59 ac 61 4d 6a 54 13 44 90 99 8b e0 26 // 36 fa 91 63 3d 62 94 78 1c 2b 9a 54 c6 11 c0 04 5c fc fe 81 f4 9a a2 // 1b 29 d8 35 cd 20 47 c8 54 48 6f d8 e6 5a 2e bf 62 9f 7c ed 60 2b 9d // d1 07 bf de 48 3e 5c 9b 5c bb a4 a0 8c dc e0 99 20 bd a9 97 8b 7f c2 // b4 a8 9b f1 57 3a 26 38 9e 52 09 0f df 5d cc f2 21 11 dc 8c 42 fd 3c // 8c 47 70 92 89 53 98 08 6c c2 2c ca 66 52 69 e1 93 fc 65 07 42 a3 61 // a4 4b 85 7d 25 84 29 f7 01 f2 2e 9b 76 15 bc 3d ab 78 c1 47 9a 41 cf // 85 75 cd b1 71 69 47 0b 34 7a df c0 3e 03 da ea 3e 26 97 25 cf c7 2d // f5 66 4b 9d f3 6d 2f 2b 55 01 3b 71 13 3e 0b 80 57 7a 47 18 25 11 eb // b3 08 b6 24 8d 45 7b d2 af 7b 28 e7 71 82 c3 05 24 11 78 c4 12 4a b1 // 02 77 1f d5 a8 c3 da cb 87 75 de 88 13 01 d7 15 87 c7 6b cf 0a 97 a7 // 2a d2 44 d0 c4 2f d7 1a ce ec 32 dd 48 bb 5c 9a 95 b3 91 16 6c 83 2a // c5 ba c8 c7 ca e4 d1 8b 3f 7d 9f 2e 47 82 fd f9 77 32 e3 d5 1f 67 bb // b5 7f 98 9e e0 d7 58 9d bd 0c 2a 5c 63 84 0e 91 4b 9d 7d 72 0f a1 20 // ac bf fe bf 81 6b 58 8b 2c cc 05 2e 7f a7 89 92 e0 ea 39 dd 21 a1 22 // ad d4 11 95 f8 e2 e1 ac d7 77 c1 a4 e8 ef 43 62 fe f4 41 fe b4 d9 25 // 2c 6b fb d2 74 21 52 30 0a 32 02 77 76 e3 34 16 20 d3 c8 d9 36 5e 10 // e8 1a dc ca 7d 87 a0 e5 55 c9 8a 03 53 c6 92 55 7d 90 ee 9b e3 fb aa // b7 66 ab f9 3e 24 62 14 9f d9 9c 92 a5 fc 58 d8 99 ee 75 53 5c d1 fe // 13 86 c5 ab 0b 15 7c 21 02 03 9d 60 15 25 8f 59 ce f3 f1 5b 95 18 93 // a3 0a e8 39 f7 40 40 2a 30 b3 4e 7b e7 37 96 28 64 03 c5 be b0 85 3d // 85 6d 83 f1 b0 0b 48 32 8f 56 dc b3 2e 1f aa b0 8a 34 35 b1 48 2b f1 // 8b 21 c9 5a ef ea af a7 fd 76 1c 7f 28 d4 16 fc de 06 bf 7a ee 5c 6e // 9e b5 0e 55 87 42 53 ba 3f 1d 0c e2 50 5b 4f c7 c3 fc 99 6b fb b8 44 // 6b af e8 4f 5b ea 94 bf d7 ca 5a ea f2 37 fe 79 3b 66 e5 c5 21 d4 09 // 2e 4e 1f 9b de 1d fc fe 53 fa 55 00 5d 21 cf a8 33 a3 38 fd 97 92 61 // 41 29 33 60 60 e1 0d 19 11 86 20 70 76 1a a2 0c 29 02 eb 7c 5a 35 5e // ff 4c f6 25 3d 71 02 a2 ca 1f ea d4 c5 3b 57 d5 76 d1 04 c0 81 31 0d // 92 79 7e 4e 2e 8c 26 9d 19 91 0d 0d 4c ed f3 0f a2 8b a6 80 c0 01 37 // f8 3d e9 40 62 42 29 b6 a1 25 ce 52 33 c6 cf 4a 36 40 b7 4f 58 f2 88 // da d8 45 1f be 37 64 1c 55 59 a5 f3 ca f1 29 9c 8b fb 23 07 23 65 22 // 78 fe 37 8e fd 8e 45 9b 9d a2 6c ff eb 58 46 8a 63 01 db c0 6d 71 3b // a2 d8 d4 3d 90 38 f5 f2 dc 8b 83 1b a5 8a 88 ee b5 b1 78 6b 21 e3 98 // ae ee b7 c1 f3 d6 f0 1d 82 b3 94 78 62 fb 9e 7c bd 7d a5 d0 4c 5f cd // 34 da 28 d5 3e 22 46 e3 ac 1e 3a 61 9a d1 74 ef a6 43 5e aa 0f c9 4d // 61 07 99 ce 01 58 42 1d ce 04 63 06 eb 50 42 14 3d aa 33 6d 52 20 6b // 12 61 0e a6 38 9c dd a4 9b f5 af 1d 4e e4 2a c0 90 a9 4a e7 b7 61 20 // 73 f3 a5 c3 6a 22 05 ed a8 87 f4 14 78 f7 d2 0f 18 66 7f 94 1f 71 ee // bc fa 76 c1 ab 28 f2 a4 9a 3b d5 6b d3 f4 e6 bd 07 9a b3 fe 2d 94 78 // 22 36 e8 35 85 a0 3e 52 90 7a ba ef 74 56 a9 5d 5d 3f 3d 37 ef dc 03 // 5d bf d7 c4 1b 8b a0 af 2d f8 ad f1 cf 24 f7 ff 0b ec cd 3d 26 bc 91 // ca f4 23 14 ef 7e 46 6f 74 e1 9a e0 df 2e 22 98 fc 2f 69 4a 7e c1 34 // 63 20 35 58 5d 53 0e 7e 19 f6 5c 25 6f 00 1d 75 38 2d 98 25 ef 74 1b // c2 13 af 18 63 77 d9 ca 10 d3 72 23 54 e1 89 7c a5 c2 3a c6 a5 2c 9a // d0 e6 b6 86 e1 77 6f 7e c6 5d f0 33 e8 f4 d5 db 80 c1 bc 35 40 93 b3 // 19 cb 70 df 93 d6 10 66 76 75 81 63 28 c9 93 22 f1 4e 63 6b 95 f0 4e // 64 97 f1 39 d5 08 b4 53 f5 3d db 5c 28 9d 84 9f d5 40 7c 9b dc ef d1 // 64 2a bd 46 e2 8c b4 e9 43 71 bd c6 06 ee b6 7c 9f e1 77 47 c6 8f 2d // 50 e8 27 11 da 4d 3e db 0e da 06 f4 1b 7f 93 fa 8f b4 d8 3c f2 1c 79 // da 67 00 0b ac 22 75 50 82 17 ad e1 65 9f a8 d2 4e 5f 8e fb 9f 4b d2 // 10 73 eb ef 3d 06 36 8e b0 3f a3 cf 0d 63 84 48 bd 05 5e d2 0d 29 20 // 33 ff db a5 38 55 9c 8f f9 a2 a5 c8 f8 3b 5c 39 36 43 d6 58 5d 1d f9 // 94 c3 be 43 e7 2b 8f 3f 53 11 4d 2a 5f 6b ce db 57 38 42 b2 3b 6a 3e // b7 fc a8 49 5b f0 3b d0 3f de 7b 19 bd 39 a1 6c ec 49 e0 1f 38 e6 71 // af 33 ca e0 82 d9 78 8e 32 02 79 9b c4 66 ba be c2 08 05 28 d0 60 9c // 0b 73 19 64 71 90 93 73 5b 4c 1e 73 bd 07 05 63 7c 47 51 69 22 19 7c // 55 2b ae af 35 16 b5 e3 bb c2 cd 1a fa 3e f8 21 51 96 ed 58 0d 95 61 // 09 2f 62 0b 89 7e 98 e7 86 a0 c7 cb b0 ee dd a8 06 32 92 ba 64 82 49 // 7f 5f 6b b6 2f b5 ab 4c 97 cb 76 58 dc 65 79 71 8e b9 7b 54 7f cf 47 // ce d1 42 65 61 af 93 a1 5f b4 dc 6d 3d 93 b8 68 64 49 43 c2 c9 4b 23 // b0 57 0b bb 81 df 26 66 c2 4f 5a bc cf cd d7 1e 20 9f 3b b4 3c 01 d1 // 7f 9b c8 b9 af 2c 26 76 2f c6 a7 41 a1 50 b7 d1 18 6e 4f 35 17 5f 3c // 31 52 43 e1 c1 1e 92 c4 3a 1f c4 92 ee f5 a1 3c 77 a8 1f cf 51 4e bf // d0 f8 e6 45 da e1 5a 07 e8 6b 2f 01 fd a0 65 db 45 05 a5 ee a8 3c b6 // 16 f7 44 f6 be e7 31 be 19 1c 65 44 9c 02 60 35 56 d5 a5 14 22 cf 9c // 2f 19 f8 d6 84 3e 0c 10 91 e0 70 8a a2 71 e9 1f 71 c8 60 2b 9f a7 21 // 89 e0 36 b7 cb 6a f1 56 9f 21 26 92 83 de 94 a6 d7 fe 58 49 fd 43 3d // 5b 71 9c 80 41 98 73 db 05 87 fc 29 78 6c c5 98 d8 96 fb 16 36 0b dd // d2 ce 12 e5 4d 05 41 8f 4f 5e 5f 2d 7a af e9 fc d6 26 8c be 2e 9e 63 // 29 ff b6 c6 7f ab 8f 3c e6 73 02 8c c0 6a aa 6b 85 75 56 bb a3 b4 4d // 3f ab 5b 6e 87 5e 70 a2 f3 ad 4b 2f f7 6f 31 ea d3 46 2d 38 01 ba 37 // 3b 3c 2f 54 5e 94 f5 70 21 57 5e 29 47 f8 1f 53 28 3f c0 a5 13 7f d4 // 4f a3 d0 74 c9 2d e5 4a 0a 34 65 c8 58 f5 a7 ef 08 31 3f ad db c3 66 // 3e 4e 01 67 f3 cb a3 96 12 05 7a 75 18 fb fb 03 1f 5a d0 f9 f7 58 31 // 97 3e bd 73 3b 82 e5 54 bf 3f de c8 4e 51 f6 5d ab 60 28 c6 c5 13 66 // d9 d4 70 0f df 25 5e 4c 7b d7 07 66 e7 f2 28 1b 3f 2a 53 63 f8 5c e4 // 9f 91 35 90 4d 14 bc b1 17 ad 75 4c 25 94 dc dc a2 d3 0e 40 ff 26 5b // 5a cc fb 11 6f 64 ed 99 aa d5 70 c4 c5 a9 1e fd bb 98 4a c6 51 d8 72 // 14 05 a0 34 2c f7 7f 44 8c 17 a1 52 ea bf 29 e8 89 50 55 8a 86 d0 07 // 4e 1c ef ab 1e b7 c3 66 68 2f 68 6e e1 33 87 37 e6 75 ea 58 eb 8b 4c // 86 b9 f2 8a 6f 6e 96 45 9f 29 e3 b4 dc 59 ff 04 4c 61 a0 dc c5 c3 1d // 80 3e 6e 98 42 0e 44 62 29 cc de c3 d0 f7 05 e9 2f fe 01 6b b3 69 63 // 73 ea da b7 f3 5c cf 65 ab 4d 9b e0 9a 08 5c e2 1b bd 7c 05 55 37 6e // 4d 7f e6 8b 5e 7a 64 f4 8b 51 27 82 5f b2 be 59 8d 99 1f 9c 1a 54 bf // 52 71 34 17 dc c5 99 e8 12 d8 55 13 a5 37 e6 ea fa 73 8e dc 97 2b 67 // e0 65 59 5d 11 67 84 49 bc e6 cd 3d 69 80 0a 64 9b 56 0d 0e 05 7c 50 // 2c a3 e7 2e 97 82 08 29 ec fe a8 01 19 2c 3f 4e 2c 87 63 c0 95 a4 3e // e6 fe 45 fe 87 30 13 09 37 66 8d f1 d4 ee 57 7a da 28 23 8b e0 32 86 // 48 1f 2d 2a 00 4c c4 d4 88 56 e7 1f bd 64 f1 a0 04 3a 45 20 ec bb f1 // b3 ab dc 96 b8 7a 27 be 84 95 a2 05 42 96 7a a4 cd 3a 44 a1 15 02 41 // 9a 08 3d 84 e9 7a bf de 09 01 b6 6d de 48 38 86 49 a0 ed 6d 93 b9 f2 // 0c 53 0e 99 0c 7c 52 37 0a 11 4d 80 0d 6a b3 f6 68 7d 6b bc 10 5b 63 // 73 8f e0 5f a6 ca c9 8a d6 66 39 36 bb 18 cb 92 32 64 e4 43 12 c2 4c // 2c e8 e6 42 bb 73 c9 21 01 2b 68 a2 6a 70 97 74 46 b8 f1 5f 9d 62 46 // 7d 8b 35 65 60 c1 83 a6 bd 6c d7 6e c8 68 c3 bd 94 a5 95 cd 7b f9 96 // 75 5a 50 8a 81 49 80 c5 e5 88 b2 75 20 0c 45 af d9 00 c8 c2 de 32 9e // c2 48 4b 0e 3e cd 7b 09 60 e5 e3 42 58 81 d1 ff 7f 8b d8 b2 0f 5c c9 // 8f fc 3a cb 77 f5 e8 87 75 a4 bd 3a b9 f9 eb 02 7e 27 d3 af 55 eb df // 4e eb ab 48 ea 91 11 28 d6 68 d0 0f c3 f5 b5 48 0a a0 d9 a4 af 56 3b // a5 77 38 44 48 e5 42 51 57 13 3d 59 e1 ce f3 c7 22 f3 37 00 bd 37 28 // 25 04 6b 1f a5 82 4e 40 51 54 a3 af 14 40 bc 2b 75 ac fb d0 7c f9 2e // 8c 16 25 87 e7 4b 5a b6 6b 1c 6a ea b3 ad 5f a3 ee 91 da 49 00 ef 30 // ad 04 ba ea 32 6d f9 12 51 7d d9 6e 16 96 b4 a9 1f aa 66 67 59 78 a3 // 75 e8 1f 25 46 4a 10 73 dc 67 37 af 08 d7 e2 59 56 bb 31 d4 38 54 8a // 7d a3 86 62 d4 9d b8 12 a8 cf 1d 6c c6 5f 5c 63 87 9f d9 ee 7f d2 a6 // 6c a3 fc 1a 74 8c b2 39 aa b8 8c 87 20 64 70 b4 c6 05 92 af eb 6d 69 // ed 97 a8 f9 90 15 58 62 ba 4e 22 b6 48 04 14 2c 13 1a 23 79 29 37 aa // 8a 86 96 e1 65 c2 4d 76 92 a0 4b b4 47 1b 0f 0d 25 07 fe 7c 86 18 42 // 14 28 fc 7a 0a cc 98 4c a5 cc 6b ac b7 72 e8 a7 17 bb aa 64 6f 96 43 // 27 59 10 a6 03 7a fa f5 a8 06 78 d1 8e dd a1 38 a4 e1 3d 06 d0 4a 5d // 06 43 1e ab 48 73 82 25 cf 15 67 e9 60 e7 65 72 8d c1 2e 91 b9 1c 6f // 2b 33 df b6 e0 33 aa 68 c1 c2 33 4d 24 33 5a bc 4a 7a 1d f5 63 6d ec // 29 09 1d a5 4d 5f 5a 1f ff 41 e4 a3 5a 0c 2f 04 f9 68 f7 d7 8e 2f 51 // c7 35 77 e2 19 2b b2 0f 28 9a ab a5 a1 75 c2 ed 53 38 55 bd 9e d9 a8 // 42 ad 48 21 36 dd 5e 0c f4 5e b5 e2 d3 1f f6 2a 3b e1 cf 8a 94 a5 83 // 16 e7 4f 4a b9 fc 54 f3 a0 bb 83 be ef 0f 35 59 93 bd ea 2c 83 e6 1c // dc 79 6b f2 56 4a e5 1f ae 61 67 99 e8 71 19 98 cd 88 d3 5c d9 82 44 // 52 fd d6 52 26 17 4b 46 79 2c b8 7f 4d d2 82 e4 e6 f6 7e b6 6d a4 13 // ad 87 7e d6 ce 77 5f 7e 19 bc 93 f4 8b b9 e5 ec 04 00 9d e3 c0 42 ae // ac f7 f4 b2 5a d6 b3 0e 01 73 03 f6 4f e0 7a c7 9e 87 44 aa b6 92 6d // 11 7f 13 51 3d 04 69 ce f3 35 fe 1d 0d 78 7c 2d 0b 2c 03 1a 95 21 78 // 6a c1 0e 9f 8b 76 82 71 68 03 37 f2 c3 26 2a bd cc b5 d3 10 7c 63 2b // f1 f7 4c 83 ee 91 f4 99 88 22 2f b0 80 cc 8f aa 9b 1a 02 52 6d 8b 60 // 87 e0 b2 35 41 73 d2 90 16 b3 30 95 87 c1 6f 05 7d d8 12 aa 63 c3 16 // 91 50 de 81 f3 af 97 d0 82 a8 f8 da 4c e4 f9 09 ff 64 98 21 d7 f9 6d // 97 61 35 52 e8 cc 49 02 e0 46 ec fa 32 9b 1d 98 0f f5 ec e6 9b 8f 16 // 15 fd ff 52 44 f4 1c ec 0a f9 24 62 4a e1 64 1e ca e5 fa 26 c5 fb 90 // 06 e5 71 00 ee 71 37 7c ed 7c 25 5a e1 7a 08 45 e2 ee 02 87 c6 2c 18 // 52 f9 38 77 f9 f8 61 57 ca 96 75 d3 83 ff f5 cd 6f 2b 00 1e c0 13 6c // 07 cf 37 f5 ac e1 85 31 22 c2 ba a1 09 2d 41 8e 2a 49 0c 4a 5c 8f 56 // b8 28 ce 1b af ee f4 e7 7f 09 5d 6b 4e d9 9d 56 f6 68 12 cb 19 be 54 // 0e be 5d 52 e7 ef f2 d6 9c bb 84 77 e1 15 14 f7 e3 60 4b f9 99 9f 78 // c2 f1 ca 6f 60 a2 21 6b 87 fa 0f 25 26 9c 42 5b 7d 50 70 9b 20 09 12 // b3 b7 89 9c 95 e1 2d 6e 9c 4d ac c1 9e 32 77 21 86 0e 04 77 a5 3e 67 // 93 fb b7 fb 97 04 a8 48 f3 95 f4 8c 24 a6 e7 9b 9e 13 58 cc 34 97 25 // 1d e8 8b 8d 3a 7b 22 c6 d8 af 1a 7f ab 81 53 0d 9f 0c c9 8f 62 de bb // 22 2b 54 78 0d 89 79 42 38 53 27 17 b4 47 d7 1b 46 a6 0e d4 81 c2 1d // b8 5b 59 0b 31 72 00 09 69 5e cf fd 4e f0 29 96 4e 5d 51 49 62 22 33 // ac 01 3e 96 0a 00 5c 92 4f 73 ea 82 c3 18 45 55 46 c5 3d 74 aa 3f 7e // 2f f2 6a a0 74 c4 0a 55 ab a8 b0 80 27 fc 19 b5 96 ee c6 c4 f8 9b ae // 39 e7 4b 9a ad 88 34 4f 7c c5 ad 3e ef a5 09 5f 2a b4 72 22 e9 a3 57 // ec d7 1c 67 00 ac 57 60 25 20 14 90 d9 e4 46 60 3d fd 4b da 76 17 dd // 50 09 81 b2 d2 ab 8c 43 88 2a 52 08 49 4c b3 f8 eb c7 20 bc a8 a7 cf // 6c 80 bd 7a aa f8 95 07 bb 34 12 ea 49 0a 78 97 3f 12 cc 30 41 3e 9d // f1 45 89 17 ea 3d 68 b4 38 d4 24 c1 31 4b c8 d0 19 39 c5 a5 a8 42 43 // 82 81 e6 2d 0c 80 0d ee 70 4b 2a 6c d3 e1 e4 b8 85 a6 b2 6b 89 4a 98 // 76 5f a3 30 8c 9e 4b 87 f9 36 25 fa ec db 17 c2 9a 27 cd 24 3b f6 03 // 0a 67 87 4e c9 f2 44 3c f8 15 42 61 ac 2a 83 4c 01 cb e1 f3 14 ee 7a // a3 ca 55 2e 16 48 cf 8b 42 a6 3f 24 9e 35 38 02 6e 09 e4 4d 69 dc 25 // 9a db 0d 1a 0c bc cb 5a 5d d5 d0 dc cc 90 d0 23 da 79 d5 63 41 88 ff // 06 0f 7e 35 a5 f9 d7 ad 99 54 68 24 d6 39 75 d4 45 2d e8 76 09 3f 4e // 99 7d c4 6e ed cd 80 a9 ee bf 5e 4f 07 7f bb 10 c7 d9 e1 9a 34 19 e7 // b8 45 97 2a 3b 62 61 3c 54 04 a2 09 b1 6f a8 8e 0f f4 9d 7b 4f 21 fe // cc 1f 77 3c 5b 4b e6 10 21 e0 ca b8 60 2c 6e 82 57 64 93 03 aa ea fc // bb 17 8e 7a 46 0f f0 7f 21 9c 46 eb 6f e5 bf 81 13 72 3e 45 40 03 bd // 70 77 67 c1 07 da f4 25 57 51 da af 8d ec f3 52 62 64 00 58 92 4e b6 // 58 78 68 b2 c0 82 30 b3 17 e9 73 96 eb c9 28 ba 8d 27 4c a0 ee d0 bf // cb 63 76 76 00 3c 64 e8 c1 e1 a0 42 0b 6c 96 a4 42 26 06 1c ed 41 b8 // 44 83 82 ab d2 f3 d0 c4 72 af cd e2 31 fb c9 ee 90 c2 f1 13 2f 8e 23 // 91 24 6f 95 ad 93 35 4c 74 60 e2 0d e9 96 ad 0f 61 b1 3b 27 64 68 87 // a6 37 ce de 90 b9 4b 7d 8c 31 30 f0 fe 06 0e 8d 95 5c 71 1a 27 00 b3 // 02 a7 5b de b3 2a 0a 68 02 ea 79 5c b1 14 f5 f8 2a 1a 38 1a 86 bb ff // 88 b2 99 e4 77 28 b7 46 df f9 64 c9 4c 52 b6 61 b9 42 93 76 b1 32 0b // 46 08 14 26 b7 c3 40 20 6d c0 da 15 1b f8 4b e2 a4 9e 78 b6 b5 93 87 // 53 d2 b1 be 8d 9e 67 c4 3c 5d 70 e7 25 19 f5 f9 0d 9f 95 e8 4e e3 8f // 82 b1 91 ac 4d 96 8b 0a 37 90 1f d9 23 cb 28 9d 58 56 93 ac 3c 3f 8a // 94 fc a6 df 45 e6 94 e1 99 a9 cd 0b 1b c1 fa 73 94 bc c9 6a ae 67 0d // ca 66 05 a9 98 79 3b 7e 06 7a c4 10 ba 63 10 57 b8 b7 6f cb e9 52 4d // f8 20 c0 2e fe f1 60 8b 74 3c d2 aa 6d 60 d3 d8 e4 76 fa 12 d3 ac c3 // 29 f8 27 2b 08 7d 89 47 11 77 ed 53 1f ec 1f 9c 24 a9 75 ca 2f cd 8c // 24 6a 33 e2 91 a3 f0 0b 7f 23 40 52 06 7a 00 59 c8 67 62 47 52 56 bb // 5e 7d ac 6f 12 1a 09 25 50 6b 18 93 3c 6e 31 49 15 d4 b3 b2 13 0a af // c2 48 3e f2 2f f8 bb 7b 88 75 65 b1 bd 22 fa bc a2 20 37 d8 fc 94 37 // f6 75 c5 31 35 26 26 6f 60 bb 7c 7c 47 f3 0c 7d 56 7e d1 42 ea 5e c3 // 67 c4 29 83 28 d2 0e 53 44 f0 1c 0c 90 cf 8a 63 02 f4 d8 4b 6b a7 49 // 5f ba 31 4a 05 ba 29 b6 3b b6 d4 58 fd b0 5a 44 11 13 69 58 30 9f 41 // 8f b1 78 e1 9a a0 9f f9 e6 2b 29 73 2f b2 98 6c 96 e7 38 f7 a6 88 cb // 21 22 db b8 f2 ad 9a 5f 28 bc 49 ec 0c 46 24 13 55 2a fe e8 e4 03 25 // 9b 55 ad 6d c3 34 dd e7 f2 d3 06 92 9d d0 1f 2a a6 03 6c af d4 18 74 // 52 26 89 30 1b 81 c9 e5 0e 86 82 88 94 14 03 56 db 0a 33 17 b0 81 ed // 9d 81 48 c4 1e 77 e6 bd a6 28 77 62 53 2b 86 eb 91 f5 48 09 15 68 0d // eb 8a 91 fb 86 56 b7 f0 10 90 64 86 5d 2b 84 6a f0 86 1f 67 d3 f7 20 // d6 e3 06 54 0c d7 b6 8f 09 5e f3 69 0b 88 ea 93 fb 6a 40 2f f5 69 75 // 97 cd a8 31 71 f1 59 e8 53 07 d1 a8 c0 16 11 18 9b d4 eb 4f 04 53 ab // 88 d4 3a e1 81 a5 62 a7 69 02 a6 7c 68 75 14 07 9d 6f 43 04 d9 a7 c0 // fa 24 b6 e8 60 74 ea 0a 9f d8 18 7c 12 03 12 07 8f 5e bf a6 74 ad c0 // 30 37 34 bf 8f 6b 55 85 94 37 06 59 41 92 ad 24 c9 f7 d9 79 4f b8 37 // 58 92 4f 86 28 55 dd d5 0b ff 58 b5 22 c4 3d 73 c0 32 89 ba ec 62 8c // d6 93 ca b9 31 01 b1 e4 73 b7 65 32 51 0e 10 f0 3e 86 81 2f ea 6f 2d // 6f 54 67 dc f2 9e 6d 7c f8 52 4f 38 3a 0d ed 3f 09 51 c3 ff b1 71 a6 // b8 a6 d9 7b 5f a8 89 9a 19 f1 a3 d0 e9 34 a1 d4 74 10 76 e4 39 4b a2 // 25 15 8f 69 7b f7 d5 65 17 17 c6 95 02 29 a0 be 22 e8 12 0d 76 a4 14 // ed bc d0 3d 50 52 64 b7 ed e8 27 2c cb d6 db dc eb af 11 da f6 a6 52 // f6 f9 eb 74 ba 7a 3e cc 94 28 92 89 13 88 00 5a e5 d9 71 e4 e7 9d 69 // 65 64 90 6d ff d4 48 45 b7 04 a9 ab c2 fa 5b a1 bb 69 a5 48 42 3a 08 // 04 4a d6 d0 e3 65 db 7e 6b ea 0f 38 44 a4 52 75 97 16 cb 98 dc f3 26 // 00 1e c9 0c 1c 34 31 74 09 8c df 47 ea 2e 13 34 10 58 ca 01 4d 2a 30 // e9 ba 3c 52 6d e7 2a 6e 38 71 81 bf 76 a2 78 c9 cb c5 18 d8 c3 74 a3 // f1 d9 80 2a 39 46 4a 10 09 03 db ec 16 f8 f0 95 f5 d8 2d 9d 09 50 72 // 81 e4 f7 fe 0c e4 fb ec ed 19 39 02 a5 f6 58 af 2a 4c 1d 09 52 da bd // c6 ae 58 30 b6 b5 a2 c3 f5 b8 d3 3a 73 66 59 90 82 2e 5f 4a 7c e5 36 // 67 55 a1 61 55 43 bd f7 82 99 c7 1e 89 0e 0b ed b6 ec 27 7b 10 a3 89 // d6 a3 ba 9c 03 72 21 42 12 79 e5 1a b5 0f b1 15 de 20 76 cc 99 44 42 // 02 e8 8e bd 9d 0f be 4e 60 23 4b 7b 76 14 95 ac 6c 9e 61 5d da c8 17 // 61 64 a8 8f b6 d6 cc 2b 52 67 2c 89 49 af e3 ef c1 e8 7a 59 88 96 bc // 93 e4 21 42 38 44 fc aa fe 65 af 89 8a 01 5b 3b ca f6 23 eb ee f9 a5 // 71 55 af 52 78 ce b5 2b 99 5f 7c a4 66 d9 e1 8b 05 e8 63 80 67 9e 02 // 57 cf f6 d0 c6 75 00 78 46 2f 2e e4 70 1d 6d 82 89 ed 84 8b 87 7c f5 // 91 86 25 b7 93 70 60 d6 67 c1 11 19 88 1c 30 80 90 56 89 23 52 c6 c5 // 3c 01 e3 95 af 68 66 ea 35 0e 6f 21 fa 3d b7 72 c1 17 7c 75 99 99 97 // 3b 51 e1 1f fc 59 08} (length 0x2000) // } // len: bytesize = 0x2000 (8 bytes) // res: ptr[in, syz_fuse_req_out] { // syz_fuse_req_out { // init: nil // lseek: nil // bmap: nil // poll: nil // getxattr: nil // lk: nil // statfs: nil // write: nil // read: nil // open: nil // attr: ptr[in, fuse_out_t[int64, fuse_attr_out]] { // fuse_out_t[int64, fuse_attr_out] { // len: len = 0x78 (4 bytes) // err: fuse_errors = 0x0 (4 bytes) // unique: int64 = 0x0 (8 bytes) // payload: fuse_attr_out { // attr_valid: int64 = 0x0 (8 bytes) // attr_valid_nsec: int32 = 0x0 (4 bytes) // dummy: const = 0x0 (4 bytes) // attr: fuse_attr { // ino: int64 = 0x0 (8 bytes) // size: int64 = 0x0 (8 bytes) // blocks: int64 = 0x0 (8 bytes) // atime: int64 = 0x0 (8 bytes) // mtime: int64 = 0x0 (8 bytes) // ctime: int64 = 0x0 (8 bytes) // atimensec: int32 = 0x0 (4 bytes) // mtimensec: int32 = 0x0 (4 bytes) // ctimensec: int32 = 0x200000 (4 bytes) // mode: fuse_mode = 0x8000 (4 bytes) // nlink: int32 = 0x0 (4 bytes) // uid: uid (resource) // gid: gid (resource) // rdev: int32 = 0x0 (4 bytes) // blksize: int32 = 0x0 (4 bytes) // padding: const = 0x0 (4 bytes) // } // } // } // } // entry: nil // dirent: nil // direntplus: nil // create_open: nil // ioctl: nil // statx: nil // } // } // ] memcpy( (void*)0x200000004200, "\xa2\x80\x96\xc8\x0a\xbf\x35\x43\xec\xde\x75\x64\xab\xff\x50\x85\xd2" "\x22\x7e\xbc\xb0\xf1\x64\xae\x92\x70\x6a\xd0\xb0\x83\xa3\xf4\x69\xa3" "\xef\xd1\x5b\x49\x21\xe9\xc3\x06\x3b\x98\xb3\x08\x20\x68\xe7\xc3\x19" "\x50\xdd\xe8\x42\xea\xc5\x5d\xf0\xf9\x91\x45\x3c\xad\x62\xa6\x95\x6b" "\x0b\x6f\x7b\x8c\xf4\x9b\x50\x6a\x30\x60\xfe\x11\x27\xec\xa9\x96\x63" "\xad\xe8\xef\xa8\x9e\xe1\x89\xac\xb5\xf3\xb9\x2f\x6b\xc4\xc4\x66\x21" "\xc8\x03\xee\xd0\xd0\xbb\x5f\x32\x38\x48\x70\xed\x08\xf8\x9d\x4f\x74" "\x44\x57\x62\xfb\x99\x71\x5e\x08\x3c\x4c\x92\xa8\x87\x8b\xe1\x9f\xfa" "\xcc\x30\xd0\xf2\xda\x64\xf9\x71\xcd\x40\x56\x31\x63\xad\xc1\x56\x70" "\xec\xf2\x5c\xd3\xad\x96\x13\x89\x67\xc4\xb5\x3a\xd9\xd0\x4b\x51\x93" "\xab\x5f\xb6\x74\xaa\x00\x30\xa9\xd7\x03\xd1\xba\xf8\x10\xce\x89\x7f" "\x96\x91\x21\xf1\x42\x16\x19\x19\xe5\x83\xc2\x75\x67\x1b\x99\x9e\x7f" "\x36\x38\x91\xdf\xdf\xdf\x35\x56\xd0\x1b\x86\xee\x29\xec\xa8\xfc\xcb" "\xfe\xaf\x17\x71\x39\x51\x48\x70\x6c\xc6\xe6\xbe\x7c\xe2\x9f\xc9\xff" "\xef\x06\x1b\x54\x20\x95\x0c\x1a\x52\x5b\xf7\x5a\xd0\x6e\xde\xc5\x15" "\x38\xd1\xc5\xbb\xc7\x7d\xa7\x2d\xc9\x0f\xd9\x99\x89\x36\xff\xfd\xda" "\x24\x27\xe5\xa6\x89\x66\xc7\xe2\x20\x8f\x76\x30\x46\x80\x18\x2e\xc7" "\x30\x07\xe4\x82\xf0\x34\x19\x57\x12\xaf\x92\x2d\xb2\x72\x61\x95\xd9" "\x97\x70\x87\x34\xdb\x9e\x78\x25\xa8\x64\xbe\x00\xb2\xa4\xf8\x00\x88" "\x1f\xc0\x36\x3f\x5e\x61\x83\x98\x45\x4f\x35\xb1\x48\xb4\xcc\xb8\x8d" "\x41\x82\x69\xfa\xc8\x68\xa8\xba\x4a\x2d\x5b\x4f\x06\xa1\xac\x01\xb5" "\xad\x15\x8b\x84\x2e\x05\xad\xca\x22\xc7\x37\x25\x85\xbf\x4c\xe9\x55" "\x60\xb6\xc1\xe0\x21\xa3\xed\x2f\xf7\xbd\x3b\x6b\x3c\x77\x34\xc3\xb6" "\x6d\x7e\x4c\x46\x00\x96\x31\x20\x82\xf8\x9b\x16\xba\xa6\xe7\x38\x14" "\xaa\x60\x92\x57\x80\xcd\x92\xcd\x65\x08\x7e\x26\x0e\xc0\x46\xfc\x36" "\x32\x64\x36\x6a\x9d\xf2\xc8\x49\xc0\x64\x49\x11\x30\x39\x46\xad\xad" "\x54\x45\x21\xce\xb4\x69\xa3\xe1\x93\xec\xc9\xa7\x87\x64\x03\xfa\xc4" "\x61\xa4\xa7\x0d\x61\x93\xb2\x45\x11\x89\xa5\xc5\x12\x0b\x35\x35\xe9" "\xed\xf6\x19\x10\x8a\xf7\xf5\x17\xb5\x8a\xbd\x3f\xa7\xfb\x1a\xb8\x32" "\x21\x34\x30\xd2\xe6\x90\x10\x76\xfb\xa9\xc9\xe1\xac\xc6\xc6\xf4\x8f" "\xf0\xe4\x19\xbb\xc4\x55\x89\x74\x5a\x17\x6f\x52\xa7\x40\x7a\xd5\xe3" "\xdd\x49\xac\xb3\x1b\x47\x86\x28\x06\xf4\x70\x77\xdd\xa0\x49\x05\xe4" "\x5a\x80\xa1\x2c\xbc\xd4\xd2\xdd\x9f\xe6\x6c\x2d\x1f\x99\x39\x4f\xed" "\x8e\xc6\x09\x61\xcd\x2d\xc7\x11\x5a\x96\xec\xe4\x32\xfa\xc8\x6d\x51" "\xbe\xbb\x08\xb9\x5f\x44\x7a\x83\x79\x2f\xe8\x02\x91\xfc\xa7\xb2\x98" "\xc9\x04\x3e\xf2\xc2\x6f\x0f\x7e\x42\x79\x8d\x3f\x54\xc8\x4b\x94\xc2" "\x4c\x76\xc5\x55\xd8\x3c\xcc\x53\xb9\x9b\xb2\x2d\x71\x84\x5e\x5c\xf2" "\x1a\x5b\xa7\xfb\xef\xfe\xb6\x30\x6e\x17\x30\xdb\x14\x56\x1b\x95\x0a" "\x3f\x24\xbc\xfd\x78\xd4\xab\x0d\x97\xde\x80\x54\xbb\x1a\x60\x77\xae" "\x7c\xca\x6e\x45\xd8\x46\xd3\xdf\x82\x29\x8d\x07\x21\x29\x22\x74\x2c" "\xb0\xfa\xca\xc3\xb7\x7e\xdf\xba\xb9\x0e\x9e\xe2\xd4\xf7\xb0\xee\x9b" "\x17\xbb\x11\xec\x5e\x57\x21\x34\x0d\x84\xcb\x6b\xd9\x34\x28\x16\x7e" "\x69\xb4\x77\x59\x17\x25\x57\xac\xda\x31\x3c\x3d\xec\xdf\xc6\xfe\x93" "\x36\xbf\xad\xe4\x59\xf4\x3b\x39\xd0\xf2\x28\x9f\x91\x42\xdb\x28\x0f" "\x4e\xe6\x68\xe6\x50\xe1\x28\x58\xc5\x77\xe1\x2e\x2b\x9a\x57\xee\x66" "\xc8\x34\xbe\x97\x97\x9b\xcb\xe9\x47\x47\xfa\x5d\x8d\x0b\x7d\x3a\x9f" "\x8f\x21\x8d\xf1\xbf\x96\x0f\x82\x84\x29\xa1\xef\xe8\x38\x61\x6b\x18" "\xfa\xf6\x62\x92\x36\xdd\xbd\xed\x43\xa0\x93\xef\xae\x16\x32\x28\xe5" "\xc3\x8f\xd7\x71\x47\x43\xc2\xfc\xca\x47\xe3\x38\x2b\xcf\xb1\xab\x89" "\x3f\xd7\x37\x75\x27\xb4\xec\x43\xf3\xfa\x60\xeb\xd3\x38\x16\x1d\x8d" "\xe7\xca\xd6\x5b\x15\x57\x9e\x4a\xf2\x58\xf5\xfe\x3a\x63\xc2\x63\x7a" "\x15\x70\x32\x07\x02\x9b\x08\x99\xb5\x42\x77\x67\x64\x7b\xae\xf1\x1e" "\x29\x13\x58\xe6\xe5\x4f\x6f\x13\xd3\xd2\xca\x7a\x5e\x79\x69\xe0\x4d" "\x27\x33\xb3\xb9\xab\x82\x2c\x69\xa3\xcf\xac\x09\x73\x84\xde\x50\x71" "\xa9\xb7\x4a\x65\x61\x36\xd5\x5e\xb1\x90\xdf\x08\x74\x7b\x50\x9f\xd6" "\x10\xff\x62\xb4\x95\x0e\xf7\x1c\x93\x4f\xe2\x1a\x48\xa4\x93\x1d\x3d" "\x94\x58\xb4\x15\xf1\x12\xce\xe6\x5c\x66\x0f\x54\x90\xe9\x82\x34\x1d" "\xa1\xc5\x86\x34\xb3\x96\x7c\xa6\xf3\x59\x6d\x20\xcc\x90\xf5\x08\x38" "\x21\x56\xe3\x6f\x16\x53\x90\x93\x24\x0e\xf5\xf2\xaa\x6a\x2c\x0d\xff" "\x2a\x67\xdf\x30\xdc\xf5\x0b\xf6\xe0\xb8\x2a\x3d\x49\xf2\xd5\x32\xa8" "\xdd\xe1\xb3\xce\xef\xcf\x08\x37\x19\x0b\x74\x18\x60\x90\xd1\xc1\x8b" "\x59\x91\x7d\x7e\xfc\xe1\xad\xfb\x23\x8e\xf4\xa7\xb1\xd2\x2c\x4c\xef" "\x09\x32\x02\x21\xde\x88\x3e\x97\xe6\x88\x24\x66\x50\x8d\xe0\x6f\xcd" "\xab\xad\x3b\x74\x1b\xdc\xa2\xcf\xf8\x79\xd5\x7d\xdd\xa5\x2f\x42\xb3" "\xdc\xb8\xa7\x8c\xfc\x05\x82\x6a\xf7\xe4\xff\x15\x59\x60\xff\x84\x91" "\x19\x4f\x4d\x32\x1e\xf1\x95\x99\x0a\xba\xee\xef\xdc\xb8\x52\xd1\xe1" "\xe3\x70\x3f\x31\x73\x85\xa9\x45\x8b\x6c\x2d\xd9\xdb\x83\x0f\x75\x7e" "\xc2\x9c\x99\x39\xfc\x73\x13\xe6\x39\xfe\x48\x5b\xc1\xe4\x1d\xda\xae" "\xf3\xfb\xf1\xf7\xcc\x52\x7c\x8f\xad\x0d\x21\xb8\x08\x24\x82\xca\xad" "\x7b\xee\x44\x0e\x50\x97\x66\x5f\x63\x6c\x3d\xfe\xc8\x2f\x8c\x98\xaf" "\xb6\x24\x3b\xc3\x94\x49\x39\x67\x5a\x59\x42\x77\xd2\x78\xba\x43\x61" "\x46\x1f\x7d\xa5\x2e\x22\x4e\x4c\xe5\xde\xe4\xa4\x67\xbf\x6a\xe9\xf6" "\x7b\x61\xac\x6e\xb0\xa4\x40\x40\x6a\xba\xc2\x01\x6e\xec\x90\x7e\x24" "\x1c\x57\xf5\xf4\x4b\xe4\x72\x90\xfd\x0f\xef\x78\x5f\xf0\x4d\xf3\x81" "\x0c\xcd\x63\x7b\x4d\x97\xa8\x4b\xae\x84\x86\xa3\x6f\x75\xd8\x72\xe6" "\x45\xfe\x46\x62\x59\x69\xfc\x2d\x1f\x03\x2c\x56\xed\x44\xbd\x98\xea" "\x27\xbd\x9b\x6d\xdc\x8e\xb2\xdc\x2e\xc9\xf9\x0f\x2f\x1c\xa1\xbd\x20" "\xe3\x7a\xc5\x8b\x03\xc8\x4c\x87\x2f\x4b\xa4\x73\x10\x65\x49\x86\x64" "\x14\x60\xdf\xdd\x53\x1a\xc6\x2a\x76\xad\x87\xb8\x9c\x10\x3a\xc5\xc9" "\xc2\xe7\xe7\x0c\x66\x44\x7b\x34\x12\xd4\xa1\xe5\xcb\xc3\x0e\x16\x93" "\x95\x05\x11\x6c\x04\xde\x33\xae\x05\x4e\xd3\x66\xde\x8d\x1f\x97\x1c" "\x2d\xe4\x39\x95\x7a\x19\x4e\x22\xa4\x88\xf5\x8d\x7e\xfd\x46\x43\x91" "\x77\xf3\xf3\xc4\x5a\x14\x75\x92\x7e\xec\xd8\x46\xd3\xd2\xe6\xa2\xab" "\x5c\x7f\x8a\xdd\xd9\x90\x62\xc2\xfc\x6b\x27\x2d\x1f\x51\xbb\x8f\x22" "\xf1\xb6\xf8\xbb\x3f\xaf\x8a\xa8\x5e\x5e\xb9\xab\xf7\xdf\x5c\xf8\xf2" "\x62\x67\x32\x38\x08\xb0\x83\x3a\x98\x79\x89\xcb\xe5\x92\x05\xe7\xad" "\x06\x55\x6e\x2d\x1b\x8a\x48\x73\xca\x1c\xbc\xbc\x8d\x43\xab\xc1\x45" "\xfd\x4e\xb8\x32\xe7\xa5\x8a\xb2\xc7\x93\xd0\x03\xce\x7b\x18\x50\xce" "\x45\xeb\x74\x80\x41\x7a\x1e\x9e\xb9\xd3\x9a\x10\x28\xa2\xa0\x4a\x2a" "\xa6\x49\xc0\x98\xc4\xf8\xee\xe5\x14\xdb\x5f\x60\x21\x17\x3b\xb2\x54" "\xb8\xe2\x2b\x15\x0b\x2c\xa0\x1d\xc7\xff\x23\x5d\xb4\x6e\xd7\x8d\x07" "\xf4\x3d\x1a\xda\xb1\x3b\x84\x45\xd1\xb3\x20\x69\xeb\x45\xf9\xd3\x89" "\xfc\xf5\xa3\xf7\xd3\xeb\xe2\x43\xc5\xb1\xfe\x17\xb1\xf5\xa3\xd5\x71" "\xb6\x5f\x21\xb9\xe4\x71\xe8\x18\x17\x25\x54\xdc\x95\x67\x49\xb9\x9c" "\xb7\xa5\xf3\x03\xec\x48\x0d\x71\x94\xa2\xba\x86\xe2\x04\xf0\x6a\xa1" "\xbe\xcd\xdd\xc8\xc4\x90\x82\xc5\x27\xe7\x06\x4a\xc2\xad\x77\xdc\x05" "\x63\x9d\x3d\x2a\x77\x78\xf6\x94\x3e\xd6\x10\x5e\xbf\x6f\x0b\x9e\x94" "\xfd\xdb\xe0\x5c\x23\x6e\xc0\x00\xf4\xd1\xd4\xe4\x96\xb1\x00\x68\x21" "\x1a\xb6\x8a\xda\x4c\x7f\x7a\xc6\x1f\x5f\x5b\xa5\xf1\x81\x0d\x5b\xbe" "\x87\xff\x4f\x83\x56\xaf\x0d\x3f\x68\x2b\xae\xdb\x0a\xd8\xf8\x48\x8b" "\x27\x74\x21\xf0\xa0\x3f\xc5\xe3\x09\x5e\xe3\x4b\xc4\x47\x2d\x8f\x17" "\xe3\xf7\x01\x3c\xf2\xf7\x9f\x5f\xf3\xea\x4b\x6b\xae\x56\xd1\x36\x5a" "\x33\xb0\x9b\xfa\x9a\x49\x63\x23\xf7\xda\x92\x3b\x7e\x29\xdc\xe4\xbe" "\xb8\x10\x35\xf1\x31\x30\x00\x4c\x96\xe5\x6d\x7e\xf6\xca\x6c\x10\x1d" "\x20\xc2\x7a\x21\x8e\x62\x32\x27\xc3\x3c\x9e\x48\x8b\x17\xe7\xae\x9a" "\xc2\x0d\xa8\x24\x05\x01\xf7\xb6\x14\xa1\x73\x0f\x16\x45\x53\xfe\x47" "\x9e\xf1\x49\x86\x6e\x4e\xa4\x72\x96\x81\x42\x84\xa3\xd3\xeb\x7c\xbb" "\x29\x42\x89\xff\xb9\x96\xe0\xeb\x05\x3b\x9c\x16\xe5\x4c\xf2\x67\x83" "\x2e\x3d\x36\x0e\xb1\x96\xed\x51\x30\x56\x30\x22\x33\x09\xea\x97\x21" "\x56\x28\xf0\x1e\xc9\xd3\xea\x48\x09\x64\x18\xd5\xe9\x62\xca\xc5\x06" "\x34\x60\xf0\xa1\x87\x72\xec\x7c\xe6\x6d\x14\xa1\xcc\xe1\x4b\x52\xc4" "\x0b\xbb\xfa\xfc\xcb\xf1\xe7\x6f\x09\xe5\x7f\xf0\x71\x80\x48\xe5\xb9" "\x93\x15\x7a\x6c\xf4\x71\x88\x26\xb1\xe0\x94\x30\x41\x3a\x35\x96\xa1" "\x5c\x4a\x62\x0f\xa8\xc8\xe1\xd1\x66\x3e\x57\x39\xf9\xf7\x90\xdd\xbb" "\x3b\xe0\xe0\x01\x87\xd4\x37\x17\xd6\x59\x24\x24\x67\xd8\x68\x1a\xc1" "\x03\x03\x34\x61\x57\xf8\x94\xd9\x03\x76\x41\x41\x70\x10\xe9\x65\x4c" "\x6a\x5b\x22\x26\x3e\x73\xa5\xa3\x71\x28\xf5\x00\x78\xa9\x80\xc3\x09" "\x30\x32\x1a\xa5\xc5\xe7\x85\x1d\x5d\x39\x2d\xdc\xe3\xa1\x4a\x96\x91" "\x6f\xa8\x42\x1a\xe6\x72\x8f\x37\xf5\xde\x7c\x3e\x98\xfe\xb4\xba\xbd" "\x4e\x1b\xd2\x31\x5d\x59\x5e\x20\x9d\x52\x74\x8f\x70\xad\xc2\x28\x4f" "\xcd\xaa\x6a\xd8\x80\x47\x0d\x2a\x07\x1f\x34\x90\xaa\xf3\x49\x1f\xb6" "\x4b\x45\x47\x41\x9e\x8e\xcc\xdc\x49\x1a\x89\x21\x15\x6c\xb4\x81\x1a" "\xd1\xe6\x65\x14\xa3\x2b\x0b\x31\xb6\x41\x43\x88\x81\xf2\x8c\x1e\x64" "\x61\xb4\xf4\x51\x93\x89\x99\xaf\x67\x1e\x8c\x6a\x5c\xd0\xc0\x72\xa9" "\xfe\x4c\xdb\xef\xe2\x4c\xa6\x16\xf3\xd0\xa1\x5a\xc9\x7c\xca\x83\x5b" "\x1a\x44\x0e\x04\xfa\x28\x34\x0c\x60\x44\x17\x6c\x8e\xcc\x8e\xe0\xd0" "\x33\xd4\x7d\xb8\xa0\xaa\xcf\xa0\xea\xbd\xfa\x1c\x95\x09\xfc\x26\x04" "\x00\x8f\x01\xcb\xaf\xeb\x5b\xd2\xb5\x03\xb8\x09\xed\x67\x23\x40\xb9" "\xa5\x76\x59\x3f\x1e\xf3\x88\x39\x1b\x54\xb6\x05\xe7\xa1\x5b\xef\x7b" "\x13\x45\x62\x7a\x34\xfc\xa5\x77\x38\xb0\xf8\xf4\xf1\x9e\xea\x93\xc9" "\x03\x49\x52\x74\xa4\x42\x5a\x1a\x1c\xc6\xc4\xc6\xe3\x35\xb6\x31\xdf" "\x51\x85\xc9\x5b\x48\x5e\x42\x57\x86\x7b\x53\x47\xa4\x0e\x4e\x14\xdc" "\xc5\x60\xf0\x61\xfd\x4f\xd2\x65\x13\x7d\xc6\x8a\xfd\x54\x8a\xdd\xe7" "\x78\xf1\x33\x0f\x76\x9a\xcb\x1c\xcf\x5d\xa1\x4f\xf6\x99\x2c\x24\xe2" "\x10\xea\x6e\x61\x79\x42\x18\x81\xb8\x03\x39\x3b\xc6\x97\x4e\x37\x10" "\x6c\x5b\x5b\x3b\x5d\x0b\x34\x69\xf8\x96\x9b\xff\xb7\xe4\xce\xb2\xc9" "\x8e\x92\x8e\x74\x36\x64\x92\xd2\x72\x35\xae\x4c\x74\xa2\xf4\x85\x11" "\xae\xea\xa5\x3a\x2b\xea\xfa\x7a\x33\x1b\x50\xe4\x54\xc5\x07\xaf\x1b" "\x63\x35\x0a\x5c\xef\x35\x66\x8a\x5b\x93\x25\x01\x41\x92\x27\x7e\x50" "\x95\x61\x00\x8b\x36\x01\x08\x8f\x79\xd4\x2e\xaa\x8b\x1e\x4a\xe2\x00" "\x0b\x31\x74\x9e\x2b\x80\x94\x31\x2d\xdb\x7f\x3c\x1c\xd6\x25\xef\x88" "\x5c\x11\xfa\x22\xa6\x6e\x37\x4b\x52\xb3\x42\x5e\x0b\x80\x16\x15\x4e" "\x1f\xd8\x47\x13\x39\xe3\x2e\x73\x73\xd6\x3a\xb6\x46\xd8\x93\xfb\xe0" "\x9a\xe0\x7b\x06\x07\x4c\x01\x40\x1e\xa7\x6b\x3c\x38\x2a\x9d\x32\xf2" "\x4f\x93\xc7\x89\x96\x4e\x16\xbc\x42\x06\xec\xd7\x5c\x10\x91\x7a\xb8" "\x4f\xfd\x8d\x6c\xdf\x4c\xd2\x8f\xd9\x03\x75\xff\x28\x51\x8f\x8c\x1a" "\x3b\xef\xc5\x38\xe1\xb9\xe4\x27\xfb\x67\x19\x88\xd2\x9f\x2f\xb2\xfc" "\xd0\x39\xf4\xd3\x41\xc8\x4e\xb4\xd7\xcf\x60\x0d\xda\xba\x88\xbb\x09" "\x4e\x4d\x87\xa1\x41\x91\x80\x14\x9f\x49\x13\x68\xe6\x48\xb6\x99\x85" "\xb0\x5a\xc3\x9a\x4e\xcd\xd3\xc5\x13\x5f\x3a\x5c\x8a\xd7\x79\x2d\xac" "\xb6\x47\x01\x44\xbb\x9e\x67\x80\x5a\x21\x1e\xfb\x3e\xc9\xcc\xaf\x8e" "\x09\x01\x34\x5f\xb1\x9e\x4d\xa5\x79\xe1\xfb\xe8\x6a\x12\x07\xf4\xf1" "\x3c\x34\x36\x00\x9c\x2c\x64\x0b\x7c\xf3\xf8\xb7\x7c\xa7\xbd\x99\x4b" "\xf9\x33\x08\x02\x73\x59\xc6\xdd\x1b\x7d\xb1\xe1\x53\xfc\x08\x21\x96" "\x8e\xf3\x6c\x00\x3b\x6c\x73\xfe\x89\x0f\x4d\xe2\x4f\x5c\x64\x58\xdb" "\xaa\xf3\x81\x9e\xde\xaa\x91\x78\x3c\x3c\xfc\x7e\x77\x36\x89\x23\x62" "\x48\x19\x5c\x7b\xbd\x60\x11\x3f\x24\x76\xfa\x36\x87\x62\x1d\x66\x8d" "\x17\x28\xee\x43\x3d\x2f\x8f\x4d\xb7\x07\x34\x5d\x30\xf1\xe5\x2a\xb8" "\x7a\x2a\x0a\xfd\x54\x7c\x6b\x3f\x00\x00\xf5\x9f\x17\xfa\xcd\xe4\x8f" "\x69\x34\x90\xe2\x24\x94\xb7\x5d\x11\xdf\x1a\x14\x3b\x85\x06\x8d\x14" "\x3e\xf6\xa9\xbb\x59\x37\xa9\xdf\x38\x0c\x89\x48\xf1\xa0\x1e\x96\x75" "\xe1\x84\x09\xed\xb0\xf6\xb9\x60\x5b\x68\xe3\x46\x32\xfc\xce\x47\x2d" "\xc5\x0b\x90\xb0\xf6\xdc\xd5\x79\x31\xf7\x8e\x1e\x88\x61\xa0\xfb\x62" "\xe7\x2b\x0b\xaa\xd6\xf9\xd2\x3c\x1c\xfb\x0f\x19\xb2\x50\x13\xc8\xd9" "\xfc\xd7\x86\xa2\xf6\xf7\x97\x68\xb5\xfb\x39\x8f\x7b\x2b\xaa\x31\xce" "\x81\x56\xd1\xfc\x4a\x46\xc1\xc4\x63\xfd\xf3\x03\x60\xd4\x2a\xee\xd2" "\xef\x11\x61\x1d\x0b\x7f\x65\x4b\xb5\x10\x52\xfd\x4d\xc3\x93\x28\xf8" "\xec\x4c\x58\xbb\xda\x05\xe6\xf1\xb3\xc8\xf6\xd8\xad\xca\x02\x68\xf2" "\x41\x0e\x9a\x4a\x7d\x63\xb6\x61\x60\x06\xd0\xe0\x2f\x6e\xda\xcc\x10" "\xe5\xc5\x4f\xd8\x5f\x15\xa8\xbd\x76\x48\xa2\x93\xf2\x3d\x6a\x69\x9b" "\xd9\xa6\x75\x25\x04\x75\xa7\x3a\x96\xd7\x47\x5e\x4f\xab\xb8\x9f\xb5" "\xe7\xde\x5d\x7a\x34\x79\xaa\x48\x5c\x0b\xef\xc6\x0d\x0a\xc4\xfd\x5a" "\xc6\xdb\xec\xce\xb0\x6c\xad\x86\xe2\x19\xfc\x0c\xe4\x72\x07\x58\x91" "\x78\x11\xa3\x21\x5f\x8d\x13\xe4\x13\xbf\xb6\x4f\xc0\x65\xfc\x42\x1a" "\xed\xe0\xb5\x66\x91\x79\x7d\xac\x42\x8c\x7e\x46\x34\x79\xfa\x59\x1b" "\x90\x72\xc3\x09\xb7\x53\x3e\x42\x7c\x5c\xc1\x1a\x1f\x6c\xf9\xa5\xb9" "\x95\xd3\x28\xd7\x96\xd8\x74\xc5\xb5\x5d\xfc\x12\xa5\x03\x9b\x41\x3c" "\xe3\x19\xcf\x5b\xa1\xf3\x55\xc4\xe0\x71\x7d\x32\x65\x0b\x43\xe1\x80" "\x10\xf3\x7f\x04\x87\x31\x93\x1c\x52\xc4\xf3\x6e\xb9\x69\xdd\xa7\x02" "\xaf\xe9\x6c\x2a\x52\x41\x35\x0a\x67\xba\x2d\x02\x69\x46\x18\x9c\x5e" "\x28\x12\x93\xc9\xa8\xe2\xcf\xf3\x78\x47\x53\xf1\xde\x78\xb9\x17\x10" "\x1b\x54\xe5\xab\x00\xc0\x45\xea\x15\xf2\x8a\x0e\x3f\x50\x99\x62\xcf" "\x8b\xd3\x38\x5d\x85\x25\x07\x37\xea\xe5\xc3\x4e\xce\x86\xb8\x66\x69" "\xc1\x3b\x00\x30\x8a\x3b\x13\xc0\xac\x3c\x83\xff\x26\xfb\x52\xa4\xaa" "\x83\xc1\x23\x3a\x94\x90\xcb\x9c\xa9\x17\xa0\x56\x90\x89\x31\x75\x1b" "\xdd\xb8\x8a\x62\x37\x9a\x71\x33\x95\xf0\x76\x4e\x4a\x39\x3f\xaf\x25" "\x3a\x40\x26\xd0\x47\x22\x70\xe6\x03\x62\x87\xd5\x68\x50\xdf\x17\x51" "\x54\x34\x84\xd6\x5b\x30\x62\x15\x5b\x63\x00\xe0\x02\x42\x41\xc5\x9a" "\x86\x2a\xe7\x69\xc1\xa9\x23\x2a\x2d\x9f\xb2\x47\x05\x17\x7a\x09\xcc" "\xeb\x3e\xef\xbf\x9f\x10\x6f\x67\xe0\x1b\xe1\x4c\xde\xb4\xd2\xfc\x7d" "\x86\x61\xdf\x3e\x75\xde\x5c\xcd\x09\xa7\xe5\x59\xf0\x28\xfb\x98\x37" "\xc6\x21\xea\x00\x45\xb4\xd1\xb6\x79\x06\x7f\x24\x63\x39\xc9\x74\x63" "\x1a\xa7\x13\x4d\x4e\x91\x0e\xfb\x28\xd3\xc4\x89\x29\xce\xf1\xdf\x7e" "\x6c\x73\x66\x87\x62\xd5\x50\x86\xb6\xc5\x9c\x36\xac\x90\x15\x41\x35" "\xfd\x7c\xa4\xe4\x04\x7d\xd0\xaa\x16\x1f\xa9\x82\xd8\xed\xf9\xc0\xcb" "\x96\x66\x47\x7e\x09\x6c\x55\x71\x8f\x6e\x47\x42\x41\x5f\xef\xd4\xf6" "\x96\xd1\xf1\xcc\xd6\x32\x2b\xc1\x94\x96\xdd\xeb\xd3\x62\x82\xa7\xc7" "\x07\xd5\xb4\x41\x13\xe3\x06\x78\xe6\xe3\x3a\xb7\xd3\x4b\xe0\x4a\x59" "\xac\x61\x4d\x6a\x54\x13\x44\x90\x99\x8b\xe0\x26\x36\xfa\x91\x63\x3d" "\x62\x94\x78\x1c\x2b\x9a\x54\xc6\x11\xc0\x04\x5c\xfc\xfe\x81\xf4\x9a" "\xa2\x1b\x29\xd8\x35\xcd\x20\x47\xc8\x54\x48\x6f\xd8\xe6\x5a\x2e\xbf" "\x62\x9f\x7c\xed\x60\x2b\x9d\xd1\x07\xbf\xde\x48\x3e\x5c\x9b\x5c\xbb" "\xa4\xa0\x8c\xdc\xe0\x99\x20\xbd\xa9\x97\x8b\x7f\xc2\xb4\xa8\x9b\xf1" "\x57\x3a\x26\x38\x9e\x52\x09\x0f\xdf\x5d\xcc\xf2\x21\x11\xdc\x8c\x42" "\xfd\x3c\x8c\x47\x70\x92\x89\x53\x98\x08\x6c\xc2\x2c\xca\x66\x52\x69" "\xe1\x93\xfc\x65\x07\x42\xa3\x61\xa4\x4b\x85\x7d\x25\x84\x29\xf7\x01" "\xf2\x2e\x9b\x76\x15\xbc\x3d\xab\x78\xc1\x47\x9a\x41\xcf\x85\x75\xcd" "\xb1\x71\x69\x47\x0b\x34\x7a\xdf\xc0\x3e\x03\xda\xea\x3e\x26\x97\x25" "\xcf\xc7\x2d\xf5\x66\x4b\x9d\xf3\x6d\x2f\x2b\x55\x01\x3b\x71\x13\x3e" "\x0b\x80\x57\x7a\x47\x18\x25\x11\xeb\xb3\x08\xb6\x24\x8d\x45\x7b\xd2" "\xaf\x7b\x28\xe7\x71\x82\xc3\x05\x24\x11\x78\xc4\x12\x4a\xb1\x02\x77" "\x1f\xd5\xa8\xc3\xda\xcb\x87\x75\xde\x88\x13\x01\xd7\x15\x87\xc7\x6b" "\xcf\x0a\x97\xa7\x2a\xd2\x44\xd0\xc4\x2f\xd7\x1a\xce\xec\x32\xdd\x48" "\xbb\x5c\x9a\x95\xb3\x91\x16\x6c\x83\x2a\xc5\xba\xc8\xc7\xca\xe4\xd1" "\x8b\x3f\x7d\x9f\x2e\x47\x82\xfd\xf9\x77\x32\xe3\xd5\x1f\x67\xbb\xb5" "\x7f\x98\x9e\xe0\xd7\x58\x9d\xbd\x0c\x2a\x5c\x63\x84\x0e\x91\x4b\x9d" "\x7d\x72\x0f\xa1\x20\xac\xbf\xfe\xbf\x81\x6b\x58\x8b\x2c\xcc\x05\x2e" "\x7f\xa7\x89\x92\xe0\xea\x39\xdd\x21\xa1\x22\xad\xd4\x11\x95\xf8\xe2" "\xe1\xac\xd7\x77\xc1\xa4\xe8\xef\x43\x62\xfe\xf4\x41\xfe\xb4\xd9\x25" "\x2c\x6b\xfb\xd2\x74\x21\x52\x30\x0a\x32\x02\x77\x76\xe3\x34\x16\x20" "\xd3\xc8\xd9\x36\x5e\x10\xe8\x1a\xdc\xca\x7d\x87\xa0\xe5\x55\xc9\x8a" "\x03\x53\xc6\x92\x55\x7d\x90\xee\x9b\xe3\xfb\xaa\xb7\x66\xab\xf9\x3e" "\x24\x62\x14\x9f\xd9\x9c\x92\xa5\xfc\x58\xd8\x99\xee\x75\x53\x5c\xd1" "\xfe\x13\x86\xc5\xab\x0b\x15\x7c\x21\x02\x03\x9d\x60\x15\x25\x8f\x59" "\xce\xf3\xf1\x5b\x95\x18\x93\xa3\x0a\xe8\x39\xf7\x40\x40\x2a\x30\xb3" "\x4e\x7b\xe7\x37\x96\x28\x64\x03\xc5\xbe\xb0\x85\x3d\x85\x6d\x83\xf1" "\xb0\x0b\x48\x32\x8f\x56\xdc\xb3\x2e\x1f\xaa\xb0\x8a\x34\x35\xb1\x48" "\x2b\xf1\x8b\x21\xc9\x5a\xef\xea\xaf\xa7\xfd\x76\x1c\x7f\x28\xd4\x16" "\xfc\xde\x06\xbf\x7a\xee\x5c\x6e\x9e\xb5\x0e\x55\x87\x42\x53\xba\x3f" "\x1d\x0c\xe2\x50\x5b\x4f\xc7\xc3\xfc\x99\x6b\xfb\xb8\x44\x6b\xaf\xe8" "\x4f\x5b\xea\x94\xbf\xd7\xca\x5a\xea\xf2\x37\xfe\x79\x3b\x66\xe5\xc5" "\x21\xd4\x09\x2e\x4e\x1f\x9b\xde\x1d\xfc\xfe\x53\xfa\x55\x00\x5d\x21" "\xcf\xa8\x33\xa3\x38\xfd\x97\x92\x61\x41\x29\x33\x60\x60\xe1\x0d\x19" "\x11\x86\x20\x70\x76\x1a\xa2\x0c\x29\x02\xeb\x7c\x5a\x35\x5e\xff\x4c" "\xf6\x25\x3d\x71\x02\xa2\xca\x1f\xea\xd4\xc5\x3b\x57\xd5\x76\xd1\x04" "\xc0\x81\x31\x0d\x92\x79\x7e\x4e\x2e\x8c\x26\x9d\x19\x91\x0d\x0d\x4c" "\xed\xf3\x0f\xa2\x8b\xa6\x80\xc0\x01\x37\xf8\x3d\xe9\x40\x62\x42\x29" "\xb6\xa1\x25\xce\x52\x33\xc6\xcf\x4a\x36\x40\xb7\x4f\x58\xf2\x88\xda" "\xd8\x45\x1f\xbe\x37\x64\x1c\x55\x59\xa5\xf3\xca\xf1\x29\x9c\x8b\xfb" "\x23\x07\x23\x65\x22\x78\xfe\x37\x8e\xfd\x8e\x45\x9b\x9d\xa2\x6c\xff" "\xeb\x58\x46\x8a\x63\x01\xdb\xc0\x6d\x71\x3b\xa2\xd8\xd4\x3d\x90\x38" "\xf5\xf2\xdc\x8b\x83\x1b\xa5\x8a\x88\xee\xb5\xb1\x78\x6b\x21\xe3\x98" "\xae\xee\xb7\xc1\xf3\xd6\xf0\x1d\x82\xb3\x94\x78\x62\xfb\x9e\x7c\xbd" "\x7d\xa5\xd0\x4c\x5f\xcd\x34\xda\x28\xd5\x3e\x22\x46\xe3\xac\x1e\x3a" "\x61\x9a\xd1\x74\xef\xa6\x43\x5e\xaa\x0f\xc9\x4d\x61\x07\x99\xce\x01" "\x58\x42\x1d\xce\x04\x63\x06\xeb\x50\x42\x14\x3d\xaa\x33\x6d\x52\x20" "\x6b\x12\x61\x0e\xa6\x38\x9c\xdd\xa4\x9b\xf5\xaf\x1d\x4e\xe4\x2a\xc0" "\x90\xa9\x4a\xe7\xb7\x61\x20\x73\xf3\xa5\xc3\x6a\x22\x05\xed\xa8\x87" "\xf4\x14\x78\xf7\xd2\x0f\x18\x66\x7f\x94\x1f\x71\xee\xbc\xfa\x76\xc1" "\xab\x28\xf2\xa4\x9a\x3b\xd5\x6b\xd3\xf4\xe6\xbd\x07\x9a\xb3\xfe\x2d" "\x94\x78\x22\x36\xe8\x35\x85\xa0\x3e\x52\x90\x7a\xba\xef\x74\x56\xa9" "\x5d\x5d\x3f\x3d\x37\xef\xdc\x03\x5d\xbf\xd7\xc4\x1b\x8b\xa0\xaf\x2d" "\xf8\xad\xf1\xcf\x24\xf7\xff\x0b\xec\xcd\x3d\x26\xbc\x91\xca\xf4\x23" "\x14\xef\x7e\x46\x6f\x74\xe1\x9a\xe0\xdf\x2e\x22\x98\xfc\x2f\x69\x4a" "\x7e\xc1\x34\x63\x20\x35\x58\x5d\x53\x0e\x7e\x19\xf6\x5c\x25\x6f\x00" "\x1d\x75\x38\x2d\x98\x25\xef\x74\x1b\xc2\x13\xaf\x18\x63\x77\xd9\xca" "\x10\xd3\x72\x23\x54\xe1\x89\x7c\xa5\xc2\x3a\xc6\xa5\x2c\x9a\xd0\xe6" "\xb6\x86\xe1\x77\x6f\x7e\xc6\x5d\xf0\x33\xe8\xf4\xd5\xdb\x80\xc1\xbc" "\x35\x40\x93\xb3\x19\xcb\x70\xdf\x93\xd6\x10\x66\x76\x75\x81\x63\x28" "\xc9\x93\x22\xf1\x4e\x63\x6b\x95\xf0\x4e\x64\x97\xf1\x39\xd5\x08\xb4" "\x53\xf5\x3d\xdb\x5c\x28\x9d\x84\x9f\xd5\x40\x7c\x9b\xdc\xef\xd1\x64" "\x2a\xbd\x46\xe2\x8c\xb4\xe9\x43\x71\xbd\xc6\x06\xee\xb6\x7c\x9f\xe1" "\x77\x47\xc6\x8f\x2d\x50\xe8\x27\x11\xda\x4d\x3e\xdb\x0e\xda\x06\xf4" "\x1b\x7f\x93\xfa\x8f\xb4\xd8\x3c\xf2\x1c\x79\xda\x67\x00\x0b\xac\x22" "\x75\x50\x82\x17\xad\xe1\x65\x9f\xa8\xd2\x4e\x5f\x8e\xfb\x9f\x4b\xd2" "\x10\x73\xeb\xef\x3d\x06\x36\x8e\xb0\x3f\xa3\xcf\x0d\x63\x84\x48\xbd" "\x05\x5e\xd2\x0d\x29\x20\x33\xff\xdb\xa5\x38\x55\x9c\x8f\xf9\xa2\xa5" "\xc8\xf8\x3b\x5c\x39\x36\x43\xd6\x58\x5d\x1d\xf9\x94\xc3\xbe\x43\xe7" "\x2b\x8f\x3f\x53\x11\x4d\x2a\x5f\x6b\xce\xdb\x57\x38\x42\xb2\x3b\x6a" "\x3e\xb7\xfc\xa8\x49\x5b\xf0\x3b\xd0\x3f\xde\x7b\x19\xbd\x39\xa1\x6c" "\xec\x49\xe0\x1f\x38\xe6\x71\xaf\x33\xca\xe0\x82\xd9\x78\x8e\x32\x02" "\x79\x9b\xc4\x66\xba\xbe\xc2\x08\x05\x28\xd0\x60\x9c\x0b\x73\x19\x64" "\x71\x90\x93\x73\x5b\x4c\x1e\x73\xbd\x07\x05\x63\x7c\x47\x51\x69\x22" "\x19\x7c\x55\x2b\xae\xaf\x35\x16\xb5\xe3\xbb\xc2\xcd\x1a\xfa\x3e\xf8" "\x21\x51\x96\xed\x58\x0d\x95\x61\x09\x2f\x62\x0b\x89\x7e\x98\xe7\x86" "\xa0\xc7\xcb\xb0\xee\xdd\xa8\x06\x32\x92\xba\x64\x82\x49\x7f\x5f\x6b" "\xb6\x2f\xb5\xab\x4c\x97\xcb\x76\x58\xdc\x65\x79\x71\x8e\xb9\x7b\x54" "\x7f\xcf\x47\xce\xd1\x42\x65\x61\xaf\x93\xa1\x5f\xb4\xdc\x6d\x3d\x93" "\xb8\x68\x64\x49\x43\xc2\xc9\x4b\x23\xb0\x57\x0b\xbb\x81\xdf\x26\x66" "\xc2\x4f\x5a\xbc\xcf\xcd\xd7\x1e\x20\x9f\x3b\xb4\x3c\x01\xd1\x7f\x9b" "\xc8\xb9\xaf\x2c\x26\x76\x2f\xc6\xa7\x41\xa1\x50\xb7\xd1\x18\x6e\x4f" "\x35\x17\x5f\x3c\x31\x52\x43\xe1\xc1\x1e\x92\xc4\x3a\x1f\xc4\x92\xee" "\xf5\xa1\x3c\x77\xa8\x1f\xcf\x51\x4e\xbf\xd0\xf8\xe6\x45\xda\xe1\x5a" "\x07\xe8\x6b\x2f\x01\xfd\xa0\x65\xdb\x45\x05\xa5\xee\xa8\x3c\xb6\x16" "\xf7\x44\xf6\xbe\xe7\x31\xbe\x19\x1c\x65\x44\x9c\x02\x60\x35\x56\xd5" "\xa5\x14\x22\xcf\x9c\x2f\x19\xf8\xd6\x84\x3e\x0c\x10\x91\xe0\x70\x8a" "\xa2\x71\xe9\x1f\x71\xc8\x60\x2b\x9f\xa7\x21\x89\xe0\x36\xb7\xcb\x6a" "\xf1\x56\x9f\x21\x26\x92\x83\xde\x94\xa6\xd7\xfe\x58\x49\xfd\x43\x3d" "\x5b\x71\x9c\x80\x41\x98\x73\xdb\x05\x87\xfc\x29\x78\x6c\xc5\x98\xd8" "\x96\xfb\x16\x36\x0b\xdd\xd2\xce\x12\xe5\x4d\x05\x41\x8f\x4f\x5e\x5f" "\x2d\x7a\xaf\xe9\xfc\xd6\x26\x8c\xbe\x2e\x9e\x63\x29\xff\xb6\xc6\x7f" "\xab\x8f\x3c\xe6\x73\x02\x8c\xc0\x6a\xaa\x6b\x85\x75\x56\xbb\xa3\xb4" "\x4d\x3f\xab\x5b\x6e\x87\x5e\x70\xa2\xf3\xad\x4b\x2f\xf7\x6f\x31\xea" "\xd3\x46\x2d\x38\x01\xba\x37\x3b\x3c\x2f\x54\x5e\x94\xf5\x70\x21\x57" "\x5e\x29\x47\xf8\x1f\x53\x28\x3f\xc0\xa5\x13\x7f\xd4\x4f\xa3\xd0\x74" "\xc9\x2d\xe5\x4a\x0a\x34\x65\xc8\x58\xf5\xa7\xef\x08\x31\x3f\xad\xdb" "\xc3\x66\x3e\x4e\x01\x67\xf3\xcb\xa3\x96\x12\x05\x7a\x75\x18\xfb\xfb" "\x03\x1f\x5a\xd0\xf9\xf7\x58\x31\x97\x3e\xbd\x73\x3b\x82\xe5\x54\xbf" "\x3f\xde\xc8\x4e\x51\xf6\x5d\xab\x60\x28\xc6\xc5\x13\x66\xd9\xd4\x70" "\x0f\xdf\x25\x5e\x4c\x7b\xd7\x07\x66\xe7\xf2\x28\x1b\x3f\x2a\x53\x63" "\xf8\x5c\xe4\x9f\x91\x35\x90\x4d\x14\xbc\xb1\x17\xad\x75\x4c\x25\x94" "\xdc\xdc\xa2\xd3\x0e\x40\xff\x26\x5b\x5a\xcc\xfb\x11\x6f\x64\xed\x99" "\xaa\xd5\x70\xc4\xc5\xa9\x1e\xfd\xbb\x98\x4a\xc6\x51\xd8\x72\x14\x05" "\xa0\x34\x2c\xf7\x7f\x44\x8c\x17\xa1\x52\xea\xbf\x29\xe8\x89\x50\x55" "\x8a\x86\xd0\x07\x4e\x1c\xef\xab\x1e\xb7\xc3\x66\x68\x2f\x68\x6e\xe1" "\x33\x87\x37\xe6\x75\xea\x58\xeb\x8b\x4c\x86\xb9\xf2\x8a\x6f\x6e\x96" "\x45\x9f\x29\xe3\xb4\xdc\x59\xff\x04\x4c\x61\xa0\xdc\xc5\xc3\x1d\x80" "\x3e\x6e\x98\x42\x0e\x44\x62\x29\xcc\xde\xc3\xd0\xf7\x05\xe9\x2f\xfe" "\x01\x6b\xb3\x69\x63\x73\xea\xda\xb7\xf3\x5c\xcf\x65\xab\x4d\x9b\xe0" "\x9a\x08\x5c\xe2\x1b\xbd\x7c\x05\x55\x37\x6e\x4d\x7f\xe6\x8b\x5e\x7a" "\x64\xf4\x8b\x51\x27\x82\x5f\xb2\xbe\x59\x8d\x99\x1f\x9c\x1a\x54\xbf" "\x52\x71\x34\x17\xdc\xc5\x99\xe8\x12\xd8\x55\x13\xa5\x37\xe6\xea\xfa" "\x73\x8e\xdc\x97\x2b\x67\xe0\x65\x59\x5d\x11\x67\x84\x49\xbc\xe6\xcd" "\x3d\x69\x80\x0a\x64\x9b\x56\x0d\x0e\x05\x7c\x50\x2c\xa3\xe7\x2e\x97" "\x82\x08\x29\xec\xfe\xa8\x01\x19\x2c\x3f\x4e\x2c\x87\x63\xc0\x95\xa4" "\x3e\xe6\xfe\x45\xfe\x87\x30\x13\x09\x37\x66\x8d\xf1\xd4\xee\x57\x7a" "\xda\x28\x23\x8b\xe0\x32\x86\x48\x1f\x2d\x2a\x00\x4c\xc4\xd4\x88\x56" "\xe7\x1f\xbd\x64\xf1\xa0\x04\x3a\x45\x20\xec\xbb\xf1\xb3\xab\xdc\x96" "\xb8\x7a\x27\xbe\x84\x95\xa2\x05\x42\x96\x7a\xa4\xcd\x3a\x44\xa1\x15" "\x02\x41\x9a\x08\x3d\x84\xe9\x7a\xbf\xde\x09\x01\xb6\x6d\xde\x48\x38" "\x86\x49\xa0\xed\x6d\x93\xb9\xf2\x0c\x53\x0e\x99\x0c\x7c\x52\x37\x0a" "\x11\x4d\x80\x0d\x6a\xb3\xf6\x68\x7d\x6b\xbc\x10\x5b\x63\x73\x8f\xe0" "\x5f\xa6\xca\xc9\x8a\xd6\x66\x39\x36\xbb\x18\xcb\x92\x32\x64\xe4\x43" "\x12\xc2\x4c\x2c\xe8\xe6\x42\xbb\x73\xc9\x21\x01\x2b\x68\xa2\x6a\x70" "\x97\x74\x46\xb8\xf1\x5f\x9d\x62\x46\x7d\x8b\x35\x65\x60\xc1\x83\xa6" "\xbd\x6c\xd7\x6e\xc8\x68\xc3\xbd\x94\xa5\x95\xcd\x7b\xf9\x96\x75\x5a" "\x50\x8a\x81\x49\x80\xc5\xe5\x88\xb2\x75\x20\x0c\x45\xaf\xd9\x00\xc8" "\xc2\xde\x32\x9e\xc2\x48\x4b\x0e\x3e\xcd\x7b\x09\x60\xe5\xe3\x42\x58" "\x81\xd1\xff\x7f\x8b\xd8\xb2\x0f\x5c\xc9\x8f\xfc\x3a\xcb\x77\xf5\xe8" "\x87\x75\xa4\xbd\x3a\xb9\xf9\xeb\x02\x7e\x27\xd3\xaf\x55\xeb\xdf\x4e" "\xeb\xab\x48\xea\x91\x11\x28\xd6\x68\xd0\x0f\xc3\xf5\xb5\x48\x0a\xa0" "\xd9\xa4\xaf\x56\x3b\xa5\x77\x38\x44\x48\xe5\x42\x51\x57\x13\x3d\x59" "\xe1\xce\xf3\xc7\x22\xf3\x37\x00\xbd\x37\x28\x25\x04\x6b\x1f\xa5\x82" "\x4e\x40\x51\x54\xa3\xaf\x14\x40\xbc\x2b\x75\xac\xfb\xd0\x7c\xf9\x2e" "\x8c\x16\x25\x87\xe7\x4b\x5a\xb6\x6b\x1c\x6a\xea\xb3\xad\x5f\xa3\xee" "\x91\xda\x49\x00\xef\x30\xad\x04\xba\xea\x32\x6d\xf9\x12\x51\x7d\xd9" "\x6e\x16\x96\xb4\xa9\x1f\xaa\x66\x67\x59\x78\xa3\x75\xe8\x1f\x25\x46" "\x4a\x10\x73\xdc\x67\x37\xaf\x08\xd7\xe2\x59\x56\xbb\x31\xd4\x38\x54" "\x8a\x7d\xa3\x86\x62\xd4\x9d\xb8\x12\xa8\xcf\x1d\x6c\xc6\x5f\x5c\x63" "\x87\x9f\xd9\xee\x7f\xd2\xa6\x6c\xa3\xfc\x1a\x74\x8c\xb2\x39\xaa\xb8" "\x8c\x87\x20\x64\x70\xb4\xc6\x05\x92\xaf\xeb\x6d\x69\xed\x97\xa8\xf9" "\x90\x15\x58\x62\xba\x4e\x22\xb6\x48\x04\x14\x2c\x13\x1a\x23\x79\x29" "\x37\xaa\x8a\x86\x96\xe1\x65\xc2\x4d\x76\x92\xa0\x4b\xb4\x47\x1b\x0f" "\x0d\x25\x07\xfe\x7c\x86\x18\x42\x14\x28\xfc\x7a\x0a\xcc\x98\x4c\xa5" "\xcc\x6b\xac\xb7\x72\xe8\xa7\x17\xbb\xaa\x64\x6f\x96\x43\x27\x59\x10" "\xa6\x03\x7a\xfa\xf5\xa8\x06\x78\xd1\x8e\xdd\xa1\x38\xa4\xe1\x3d\x06" "\xd0\x4a\x5d\x06\x43\x1e\xab\x48\x73\x82\x25\xcf\x15\x67\xe9\x60\xe7" "\x65\x72\x8d\xc1\x2e\x91\xb9\x1c\x6f\x2b\x33\xdf\xb6\xe0\x33\xaa\x68" "\xc1\xc2\x33\x4d\x24\x33\x5a\xbc\x4a\x7a\x1d\xf5\x63\x6d\xec\x29\x09" "\x1d\xa5\x4d\x5f\x5a\x1f\xff\x41\xe4\xa3\x5a\x0c\x2f\x04\xf9\x68\xf7" "\xd7\x8e\x2f\x51\xc7\x35\x77\xe2\x19\x2b\xb2\x0f\x28\x9a\xab\xa5\xa1" "\x75\xc2\xed\x53\x38\x55\xbd\x9e\xd9\xa8\x42\xad\x48\x21\x36\xdd\x5e" "\x0c\xf4\x5e\xb5\xe2\xd3\x1f\xf6\x2a\x3b\xe1\xcf\x8a\x94\xa5\x83\x16" "\xe7\x4f\x4a\xb9\xfc\x54\xf3\xa0\xbb\x83\xbe\xef\x0f\x35\x59\x93\xbd" "\xea\x2c\x83\xe6\x1c\xdc\x79\x6b\xf2\x56\x4a\xe5\x1f\xae\x61\x67\x99" "\xe8\x71\x19\x98\xcd\x88\xd3\x5c\xd9\x82\x44\x52\xfd\xd6\x52\x26\x17" "\x4b\x46\x79\x2c\xb8\x7f\x4d\xd2\x82\xe4\xe6\xf6\x7e\xb6\x6d\xa4\x13" "\xad\x87\x7e\xd6\xce\x77\x5f\x7e\x19\xbc\x93\xf4\x8b\xb9\xe5\xec\x04" "\x00\x9d\xe3\xc0\x42\xae\xac\xf7\xf4\xb2\x5a\xd6\xb3\x0e\x01\x73\x03" "\xf6\x4f\xe0\x7a\xc7\x9e\x87\x44\xaa\xb6\x92\x6d\x11\x7f\x13\x51\x3d" "\x04\x69\xce\xf3\x35\xfe\x1d\x0d\x78\x7c\x2d\x0b\x2c\x03\x1a\x95\x21" "\x78\x6a\xc1\x0e\x9f\x8b\x76\x82\x71\x68\x03\x37\xf2\xc3\x26\x2a\xbd" "\xcc\xb5\xd3\x10\x7c\x63\x2b\xf1\xf7\x4c\x83\xee\x91\xf4\x99\x88\x22" "\x2f\xb0\x80\xcc\x8f\xaa\x9b\x1a\x02\x52\x6d\x8b\x60\x87\xe0\xb2\x35" "\x41\x73\xd2\x90\x16\xb3\x30\x95\x87\xc1\x6f\x05\x7d\xd8\x12\xaa\x63" "\xc3\x16\x91\x50\xde\x81\xf3\xaf\x97\xd0\x82\xa8\xf8\xda\x4c\xe4\xf9" "\x09\xff\x64\x98\x21\xd7\xf9\x6d\x97\x61\x35\x52\xe8\xcc\x49\x02\xe0" "\x46\xec\xfa\x32\x9b\x1d\x98\x0f\xf5\xec\xe6\x9b\x8f\x16\x15\xfd\xff" "\x52\x44\xf4\x1c\xec\x0a\xf9\x24\x62\x4a\xe1\x64\x1e\xca\xe5\xfa\x26" "\xc5\xfb\x90\x06\xe5\x71\x00\xee\x71\x37\x7c\xed\x7c\x25\x5a\xe1\x7a" "\x08\x45\xe2\xee\x02\x87\xc6\x2c\x18\x52\xf9\x38\x77\xf9\xf8\x61\x57" "\xca\x96\x75\xd3\x83\xff\xf5\xcd\x6f\x2b\x00\x1e\xc0\x13\x6c\x07\xcf" "\x37\xf5\xac\xe1\x85\x31\x22\xc2\xba\xa1\x09\x2d\x41\x8e\x2a\x49\x0c" "\x4a\x5c\x8f\x56\xb8\x28\xce\x1b\xaf\xee\xf4\xe7\x7f\x09\x5d\x6b\x4e" "\xd9\x9d\x56\xf6\x68\x12\xcb\x19\xbe\x54\x0e\xbe\x5d\x52\xe7\xef\xf2" "\xd6\x9c\xbb\x84\x77\xe1\x15\x14\xf7\xe3\x60\x4b\xf9\x99\x9f\x78\xc2" "\xf1\xca\x6f\x60\xa2\x21\x6b\x87\xfa\x0f\x25\x26\x9c\x42\x5b\x7d\x50" "\x70\x9b\x20\x09\x12\xb3\xb7\x89\x9c\x95\xe1\x2d\x6e\x9c\x4d\xac\xc1" "\x9e\x32\x77\x21\x86\x0e\x04\x77\xa5\x3e\x67\x93\xfb\xb7\xfb\x97\x04" "\xa8\x48\xf3\x95\xf4\x8c\x24\xa6\xe7\x9b\x9e\x13\x58\xcc\x34\x97\x25" "\x1d\xe8\x8b\x8d\x3a\x7b\x22\xc6\xd8\xaf\x1a\x7f\xab\x81\x53\x0d\x9f" "\x0c\xc9\x8f\x62\xde\xbb\x22\x2b\x54\x78\x0d\x89\x79\x42\x38\x53\x27" "\x17\xb4\x47\xd7\x1b\x46\xa6\x0e\xd4\x81\xc2\x1d\xb8\x5b\x59\x0b\x31" "\x72\x00\x09\x69\x5e\xcf\xfd\x4e\xf0\x29\x96\x4e\x5d\x51\x49\x62\x22" "\x33\xac\x01\x3e\x96\x0a\x00\x5c\x92\x4f\x73\xea\x82\xc3\x18\x45\x55" "\x46\xc5\x3d\x74\xaa\x3f\x7e\x2f\xf2\x6a\xa0\x74\xc4\x0a\x55\xab\xa8" "\xb0\x80\x27\xfc\x19\xb5\x96\xee\xc6\xc4\xf8\x9b\xae\x39\xe7\x4b\x9a" "\xad\x88\x34\x4f\x7c\xc5\xad\x3e\xef\xa5\x09\x5f\x2a\xb4\x72\x22\xe9" "\xa3\x57\xec\xd7\x1c\x67\x00\xac\x57\x60\x25\x20\x14\x90\xd9\xe4\x46" "\x60\x3d\xfd\x4b\xda\x76\x17\xdd\x50\x09\x81\xb2\xd2\xab\x8c\x43\x88" "\x2a\x52\x08\x49\x4c\xb3\xf8\xeb\xc7\x20\xbc\xa8\xa7\xcf\x6c\x80\xbd" "\x7a\xaa\xf8\x95\x07\xbb\x34\x12\xea\x49\x0a\x78\x97\x3f\x12\xcc\x30" "\x41\x3e\x9d\xf1\x45\x89\x17\xea\x3d\x68\xb4\x38\xd4\x24\xc1\x31\x4b" "\xc8\xd0\x19\x39\xc5\xa5\xa8\x42\x43\x82\x81\xe6\x2d\x0c\x80\x0d\xee" "\x70\x4b\x2a\x6c\xd3\xe1\xe4\xb8\x85\xa6\xb2\x6b\x89\x4a\x98\x76\x5f" "\xa3\x30\x8c\x9e\x4b\x87\xf9\x36\x25\xfa\xec\xdb\x17\xc2\x9a\x27\xcd" "\x24\x3b\xf6\x03\x0a\x67\x87\x4e\xc9\xf2\x44\x3c\xf8\x15\x42\x61\xac" "\x2a\x83\x4c\x01\xcb\xe1\xf3\x14\xee\x7a\xa3\xca\x55\x2e\x16\x48\xcf" "\x8b\x42\xa6\x3f\x24\x9e\x35\x38\x02\x6e\x09\xe4\x4d\x69\xdc\x25\x9a" "\xdb\x0d\x1a\x0c\xbc\xcb\x5a\x5d\xd5\xd0\xdc\xcc\x90\xd0\x23\xda\x79" "\xd5\x63\x41\x88\xff\x06\x0f\x7e\x35\xa5\xf9\xd7\xad\x99\x54\x68\x24" "\xd6\x39\x75\xd4\x45\x2d\xe8\x76\x09\x3f\x4e\x99\x7d\xc4\x6e\xed\xcd" "\x80\xa9\xee\xbf\x5e\x4f\x07\x7f\xbb\x10\xc7\xd9\xe1\x9a\x34\x19\xe7" "\xb8\x45\x97\x2a\x3b\x62\x61\x3c\x54\x04\xa2\x09\xb1\x6f\xa8\x8e\x0f" "\xf4\x9d\x7b\x4f\x21\xfe\xcc\x1f\x77\x3c\x5b\x4b\xe6\x10\x21\xe0\xca" "\xb8\x60\x2c\x6e\x82\x57\x64\x93\x03\xaa\xea\xfc\xbb\x17\x8e\x7a\x46" "\x0f\xf0\x7f\x21\x9c\x46\xeb\x6f\xe5\xbf\x81\x13\x72\x3e\x45\x40\x03" "\xbd\x70\x77\x67\xc1\x07\xda\xf4\x25\x57\x51\xda\xaf\x8d\xec\xf3\x52" "\x62\x64\x00\x58\x92\x4e\xb6\x58\x78\x68\xb2\xc0\x82\x30\xb3\x17\xe9" "\x73\x96\xeb\xc9\x28\xba\x8d\x27\x4c\xa0\xee\xd0\xbf\xcb\x63\x76\x76" "\x00\x3c\x64\xe8\xc1\xe1\xa0\x42\x0b\x6c\x96\xa4\x42\x26\x06\x1c\xed" "\x41\xb8\x44\x83\x82\xab\xd2\xf3\xd0\xc4\x72\xaf\xcd\xe2\x31\xfb\xc9" "\xee\x90\xc2\xf1\x13\x2f\x8e\x23\x91\x24\x6f\x95\xad\x93\x35\x4c\x74" "\x60\xe2\x0d\xe9\x96\xad\x0f\x61\xb1\x3b\x27\x64\x68\x87\xa6\x37\xce" "\xde\x90\xb9\x4b\x7d\x8c\x31\x30\xf0\xfe\x06\x0e\x8d\x95\x5c\x71\x1a" "\x27\x00\xb3\x02\xa7\x5b\xde\xb3\x2a\x0a\x68\x02\xea\x79\x5c\xb1\x14" "\xf5\xf8\x2a\x1a\x38\x1a\x86\xbb\xff\x88\xb2\x99\xe4\x77\x28\xb7\x46" "\xdf\xf9\x64\xc9\x4c\x52\xb6\x61\xb9\x42\x93\x76\xb1\x32\x0b\x46\x08" "\x14\x26\xb7\xc3\x40\x20\x6d\xc0\xda\x15\x1b\xf8\x4b\xe2\xa4\x9e\x78" "\xb6\xb5\x93\x87\x53\xd2\xb1\xbe\x8d\x9e\x67\xc4\x3c\x5d\x70\xe7\x25" "\x19\xf5\xf9\x0d\x9f\x95\xe8\x4e\xe3\x8f\x82\xb1\x91\xac\x4d\x96\x8b" "\x0a\x37\x90\x1f\xd9\x23\xcb\x28\x9d\x58\x56\x93\xac\x3c\x3f\x8a\x94" "\xfc\xa6\xdf\x45\xe6\x94\xe1\x99\xa9\xcd\x0b\x1b\xc1\xfa\x73\x94\xbc" "\xc9\x6a\xae\x67\x0d\xca\x66\x05\xa9\x98\x79\x3b\x7e\x06\x7a\xc4\x10" "\xba\x63\x10\x57\xb8\xb7\x6f\xcb\xe9\x52\x4d\xf8\x20\xc0\x2e\xfe\xf1" "\x60\x8b\x74\x3c\xd2\xaa\x6d\x60\xd3\xd8\xe4\x76\xfa\x12\xd3\xac\xc3" "\x29\xf8\x27\x2b\x08\x7d\x89\x47\x11\x77\xed\x53\x1f\xec\x1f\x9c\x24" "\xa9\x75\xca\x2f\xcd\x8c\x24\x6a\x33\xe2\x91\xa3\xf0\x0b\x7f\x23\x40" "\x52\x06\x7a\x00\x59\xc8\x67\x62\x47\x52\x56\xbb\x5e\x7d\xac\x6f\x12" "\x1a\x09\x25\x50\x6b\x18\x93\x3c\x6e\x31\x49\x15\xd4\xb3\xb2\x13\x0a" "\xaf\xc2\x48\x3e\xf2\x2f\xf8\xbb\x7b\x88\x75\x65\xb1\xbd\x22\xfa\xbc" "\xa2\x20\x37\xd8\xfc\x94\x37\xf6\x75\xc5\x31\x35\x26\x26\x6f\x60\xbb" "\x7c\x7c\x47\xf3\x0c\x7d\x56\x7e\xd1\x42\xea\x5e\xc3\x67\xc4\x29\x83" "\x28\xd2\x0e\x53\x44\xf0\x1c\x0c\x90\xcf\x8a\x63\x02\xf4\xd8\x4b\x6b" "\xa7\x49\x5f\xba\x31\x4a\x05\xba\x29\xb6\x3b\xb6\xd4\x58\xfd\xb0\x5a" "\x44\x11\x13\x69\x58\x30\x9f\x41\x8f\xb1\x78\xe1\x9a\xa0\x9f\xf9\xe6" "\x2b\x29\x73\x2f\xb2\x98\x6c\x96\xe7\x38\xf7\xa6\x88\xcb\x21\x22\xdb" "\xb8\xf2\xad\x9a\x5f\x28\xbc\x49\xec\x0c\x46\x24\x13\x55\x2a\xfe\xe8" "\xe4\x03\x25\x9b\x55\xad\x6d\xc3\x34\xdd\xe7\xf2\xd3\x06\x92\x9d\xd0" "\x1f\x2a\xa6\x03\x6c\xaf\xd4\x18\x74\x52\x26\x89\x30\x1b\x81\xc9\xe5" "\x0e\x86\x82\x88\x94\x14\x03\x56\xdb\x0a\x33\x17\xb0\x81\xed\x9d\x81" "\x48\xc4\x1e\x77\xe6\xbd\xa6\x28\x77\x62\x53\x2b\x86\xeb\x91\xf5\x48" "\x09\x15\x68\x0d\xeb\x8a\x91\xfb\x86\x56\xb7\xf0\x10\x90\x64\x86\x5d" "\x2b\x84\x6a\xf0\x86\x1f\x67\xd3\xf7\x20\xd6\xe3\x06\x54\x0c\xd7\xb6" "\x8f\x09\x5e\xf3\x69\x0b\x88\xea\x93\xfb\x6a\x40\x2f\xf5\x69\x75\x97" "\xcd\xa8\x31\x71\xf1\x59\xe8\x53\x07\xd1\xa8\xc0\x16\x11\x18\x9b\xd4" "\xeb\x4f\x04\x53\xab\x88\xd4\x3a\xe1\x81\xa5\x62\xa7\x69\x02\xa6\x7c" "\x68\x75\x14\x07\x9d\x6f\x43\x04\xd9\xa7\xc0\xfa\x24\xb6\xe8\x60\x74" "\xea\x0a\x9f\xd8\x18\x7c\x12\x03\x12\x07\x8f\x5e\xbf\xa6\x74\xad\xc0" "\x30\x37\x34\xbf\x8f\x6b\x55\x85\x94\x37\x06\x59\x41\x92\xad\x24\xc9" "\xf7\xd9\x79\x4f\xb8\x37\x58\x92\x4f\x86\x28\x55\xdd\xd5\x0b\xff\x58" "\xb5\x22\xc4\x3d\x73\xc0\x32\x89\xba\xec\x62\x8c\xd6\x93\xca\xb9\x31" "\x01\xb1\xe4\x73\xb7\x65\x32\x51\x0e\x10\xf0\x3e\x86\x81\x2f\xea\x6f" "\x2d\x6f\x54\x67\xdc\xf2\x9e\x6d\x7c\xf8\x52\x4f\x38\x3a\x0d\xed\x3f" "\x09\x51\xc3\xff\xb1\x71\xa6\xb8\xa6\xd9\x7b\x5f\xa8\x89\x9a\x19\xf1" "\xa3\xd0\xe9\x34\xa1\xd4\x74\x10\x76\xe4\x39\x4b\xa2\x25\x15\x8f\x69" "\x7b\xf7\xd5\x65\x17\x17\xc6\x95\x02\x29\xa0\xbe\x22\xe8\x12\x0d\x76" "\xa4\x14\xed\xbc\xd0\x3d\x50\x52\x64\xb7\xed\xe8\x27\x2c\xcb\xd6\xdb" "\xdc\xeb\xaf\x11\xda\xf6\xa6\x52\xf6\xf9\xeb\x74\xba\x7a\x3e\xcc\x94" "\x28\x92\x89\x13\x88\x00\x5a\xe5\xd9\x71\xe4\xe7\x9d\x69\x65\x64\x90" "\x6d\xff\xd4\x48\x45\xb7\x04\xa9\xab\xc2\xfa\x5b\xa1\xbb\x69\xa5\x48" "\x42\x3a\x08\x04\x4a\xd6\xd0\xe3\x65\xdb\x7e\x6b\xea\x0f\x38\x44\xa4" "\x52\x75\x97\x16\xcb\x98\xdc\xf3\x26\x00\x1e\xc9\x0c\x1c\x34\x31\x74" "\x09\x8c\xdf\x47\xea\x2e\x13\x34\x10\x58\xca\x01\x4d\x2a\x30\xe9\xba" "\x3c\x52\x6d\xe7\x2a\x6e\x38\x71\x81\xbf\x76\xa2\x78\xc9\xcb\xc5\x18" "\xd8\xc3\x74\xa3\xf1\xd9\x80\x2a\x39\x46\x4a\x10\x09\x03\xdb\xec\x16" "\xf8\xf0\x95\xf5\xd8\x2d\x9d\x09\x50\x72\x81\xe4\xf7\xfe\x0c\xe4\xfb" "\xec\xed\x19\x39\x02\xa5\xf6\x58\xaf\x2a\x4c\x1d\x09\x52\xda\xbd\xc6" "\xae\x58\x30\xb6\xb5\xa2\xc3\xf5\xb8\xd3\x3a\x73\x66\x59\x90\x82\x2e" "\x5f\x4a\x7c\xe5\x36\x67\x55\xa1\x61\x55\x43\xbd\xf7\x82\x99\xc7\x1e" "\x89\x0e\x0b\xed\xb6\xec\x27\x7b\x10\xa3\x89\xd6\xa3\xba\x9c\x03\x72" "\x21\x42\x12\x79\xe5\x1a\xb5\x0f\xb1\x15\xde\x20\x76\xcc\x99\x44\x42" "\x02\xe8\x8e\xbd\x9d\x0f\xbe\x4e\x60\x23\x4b\x7b\x76\x14\x95\xac\x6c" "\x9e\x61\x5d\xda\xc8\x17\x61\x64\xa8\x8f\xb6\xd6\xcc\x2b\x52\x67\x2c" "\x89\x49\xaf\xe3\xef\xc1\xe8\x7a\x59\x88\x96\xbc\x93\xe4\x21\x42\x38" "\x44\xfc\xaa\xfe\x65\xaf\x89\x8a\x01\x5b\x3b\xca\xf6\x23\xeb\xee\xf9" "\xa5\x71\x55\xaf\x52\x78\xce\xb5\x2b\x99\x5f\x7c\xa4\x66\xd9\xe1\x8b" "\x05\xe8\x63\x80\x67\x9e\x02\x57\xcf\xf6\xd0\xc6\x75\x00\x78\x46\x2f" "\x2e\xe4\x70\x1d\x6d\x82\x89\xed\x84\x8b\x87\x7c\xf5\x91\x86\x25\xb7" "\x93\x70\x60\xd6\x67\xc1\x11\x19\x88\x1c\x30\x80\x90\x56\x89\x23\x52" "\xc6\xc5\x3c\x01\xe3\x95\xaf\x68\x66\xea\x35\x0e\x6f\x21\xfa\x3d\xb7" "\x72\xc1\x17\x7c\x75\x99\x99\x97\x3b\x51\xe1\x1f\xfc\x59\x08", 8192); *(uint64_t*)0x200000000240 = 0; *(uint64_t*)0x200000000248 = 0; *(uint64_t*)0x200000000250 = 0; *(uint64_t*)0x200000000258 = 0; *(uint64_t*)0x200000000260 = 0; *(uint64_t*)0x200000000268 = 0; *(uint64_t*)0x200000000270 = 0; *(uint64_t*)0x200000000278 = 0; *(uint64_t*)0x200000000280 = 0; *(uint64_t*)0x200000000288 = 0; *(uint64_t*)0x200000000290 = 0x200000000540; *(uint32_t*)0x200000000540 = 0x78; *(uint32_t*)0x200000000544 = 0; *(uint64_t*)0x200000000548 = 0; *(uint64_t*)0x200000000550 = 0; *(uint32_t*)0x200000000558 = 0; *(uint32_t*)0x20000000055c = 0; *(uint64_t*)0x200000000560 = 0; *(uint64_t*)0x200000000568 = 0; *(uint64_t*)0x200000000570 = 0; *(uint64_t*)0x200000000578 = 0; *(uint64_t*)0x200000000580 = 0; *(uint64_t*)0x200000000588 = 0; *(uint32_t*)0x200000000590 = 0; *(uint32_t*)0x200000000594 = 0; *(uint32_t*)0x200000000598 = 0x200000; *(uint32_t*)0x20000000059c = 0x8000; *(uint32_t*)0x2000000005a0 = 0; *(uint32_t*)0x2000000005a4 = 0; *(uint32_t*)0x2000000005a8 = 0; *(uint32_t*)0x2000000005ac = 0; *(uint32_t*)0x2000000005b0 = 0; *(uint32_t*)0x2000000005b4 = 0; *(uint64_t*)0x200000000298 = 0; *(uint64_t*)0x2000000002a0 = 0; *(uint64_t*)0x2000000002a8 = 0; *(uint64_t*)0x2000000002b0 = 0; *(uint64_t*)0x2000000002b8 = 0; *(uint64_t*)0x2000000002c0 = 0; syz_fuse_handle_req(/*fd=*/r[0], /*buf=*/0x200000004200, /*len=*/0x2000, /*res=*/0x200000000240); break; case 7: // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: open_flags = 0x109001 (4 bytes) // mode: open_mode = 0x1b7 (2 bytes) // ] // returns fd memcpy((void*)0x200000000180, "./file0\000", 8); res = syscall( __NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000180ul, /*flags=O_SYNC|O_LARGEFILE|O_WRONLY*/ 0x109001, /*mode=S_IXOTH|S_IWOTH|S_IROTH|S_IWGRP|S_IRGRP|S_IWUSR|S_IRUSR*/ 0x1b7); if (res != -1) r[2] = res; break; case 8: // syz_fuse_handle_req arguments: [ // fd: fd_fuse (resource) // buf: ptr[in, buffer] { // buffer: {c6 6d d2 20 cb de b6 8f 27 c1 f9 8b f4 3f d8 61 bc f8 41 57 // 26 58 a3 30 87 37 98 3b 31 a4 34 67 3f 10 03 ee eb 6d 9b 93 4b cd 19 // cf 75 4f 48 82 11 4d 61 e1 53 54 44 9f 76 3f 77 2e 86 c9 e2 25 27 31 // f7 a0 98 fa ad 2a cc ca 3e 47 08 45 b3 29 18 bc f5 30 f9 47 4d 3c d6 // 10 d9 02 8c b7 b2 47 d3 a7 3d 88 77 19 f7 05 54 d8 97 6c 10 78 4c 80 // 73 e5 21 a8 0b 5e be 75 01 d6 c3 b6 b5 cf 9a 49 8a 1e 97 b8 20 1a c7 // 56 e5 f3 5d 71 bd d4 d1 96 e7 3c ae 0c c3 4c 71 40 cd e8 38 0d e8 23 // e8 c7 66 62 f0 84 4f 54 98 18 b5 ef 6c 73 2b 8f 41 2b 79 27 35 08 b6 // 9f 2e 6a 65 37 09 b4 d9 bd ed 08 0b 6c 15 ca 5c 5b 8f f2 33 09 e0 5d // 46 0d fb 40 40 3f 60 a3 e5 a0 e1 d4 e1 aa 59 d5 38 23 a0 47 42 76 73 // 26 7e 79 d4 0f dd 6f 12 ef 69 6f e2 28 87 d2 40 87 37 3f 64 98 7e 48 // ba 20 e7 f4 7d 1f 08 87 1e 0c 22 a0 25 93 15 66 48 fc 10 6c 45 29 d8 // cf 17 c7 1d 47 3f 4a d4 39 92 b1 cd bf 5c fa af 1c e4 01 d5 ad 8b 9c // 6b dc 3c 60 a8 8a 91 c5 2f 5a ae 74 a5 d2 5e 0c d7 38 fd 80 16 9a 98 // b8 4d 4d 24 a7 e8 6c 9d 8e 4c 3e 3f f1 a9 fc 44 a8 75 58 ae b7 ac bf // ec 13 a2 6a 4b 12 1b 2c b9 ae 62 8c 68 2a a4 c4 43 11 c4 5a 67 3b ab // 25 88 06 65 d6 cd f5 89 e5 c5 41 57 94 c4 fd 6b 94 0e 7a 44 df 93 a3 // 4a 68 41 83 58 1c 85 0f be 97 ef 8c 1d e8 52 ea 83 6e 0d b1 a1 04 b4 // 98 d6 dd 8f df 65 c6 06 e7 72 de 2e 9d fe 46 a4 18 fa c3 c0 bd d7 29 // 16 c9 51 e3 df 04 f2 ae 85 83 93 05 be 2a 86 ae bc f4 89 8b 6e 49 c2 // 7d f6 03 3a d2 b8 65 12 79 ce b2 0c 77 97 16 24 0d 3d 0f ef 3b b6 c4 // 17 a8 c6 f7 53 98 a9 19 42 d8 ab 11 f2 1f 57 95 76 76 50 a9 6e 24 6c // 72 44 f8 e4 93 5e 9c 01 34 96 16 a0 98 ae 81 04 87 d6 57 fd 09 5b ee // e0 5a 36 81 2f 39 f4 26 6f 25 f4 50 8e 80 f1 9a 4a ec 71 16 f1 d8 bc // 48 bc 2c 1f 0f 96 ff 34 b6 6a 96 5d 42 88 52 76 6b 78 f1 e7 eb 02 60 // bb b3 55 cc 08 59 af 69 88 ff 7e fa 0b 3f ed e3 d5 f2 f2 14 7f fa e4 // a5 eb 58 a7 58 5b 59 62 70 33 4c 36 0a 15 47 78 7a 95 63 4e 13 d5 9b // f5 3f 51 f4 8e 75 a6 a3 e4 8f 83 48 f4 cb 49 5d 96 99 df df 8c c7 16 // 68 c5 b9 62 25 78 10 0f 71 63 39 4c b3 17 1f c8 a6 c1 e7 f8 8f 08 b8 // c3 cf 4b 0c d9 a1 bc 16 bd 14 88 eb e4 31 99 d9 7c df 4b bc de 8a 06 // a7 9c 5a f6 ff 2e bf 1a 04 ad d7 48 30 cf ac 0b 94 65 14 b1 8d e2 49 // e9 34 dd 8a 1a 96 fc e0 85 32 0f a8 57 c8 53 48 01 70 20 85 33 ac d3 // d4 1c 43 84 a9 32 ee cc d4 ce 7d 09 82 7e fa e4 c0 d1 9d 00 c5 b4 89 // 43 c4 d8 77 01 7b e5 94 34 da e6 be f7 67 fb 9f fd 07 3c 22 61 b0 6c // 0f 23 a0 c7 7a 5b cb 1f 57 38 dc eb 6a be e0 0b d7 c6 49 f6 eb c6 4b // 4b 8b 94 83 19 a2 2e d4 ad d4 8e ed da 8a 2c d1 ba d6 79 9e 1d 9e d7 // 78 e5 ce 22 d5 fe ad 0c d0 68 06 cb 4b 7b 56 61 f9 db 6b cf 9d dc dc // 9e 49 e0 e6 a8 ec 98 fc 42 c6 60 d5 d7 53 11 fb 9c 9d 06 07 46 11 eb // bd be a4 56 72 dd 78 76 0e d9 2d 0e 95 c1 d5 ae 23 4d 67 4d c3 ff ae // ef 3d 92 8a a4 b9 3c 0f e5 5f a8 86 bd 3f 23 71 a5 bb 22 c4 dd 6b 8b // c1 32 50 49 0c f2 79 d4 e5 6b 64 6d ec 4e aa 53 95 1d 55 f6 02 c1 f4 // 08 1d 49 31 6f 6b cb 35 aa d0 45 3b 44 c7 f2 66 e9 98 38 68 34 04 85 // 9b c3 72 d1 df 5f 15 12 f3 55 58 b3 70 6b 32 09 3b 72 a7 8a 40 c8 a1 // 88 85 2a 0b 5a ca 11 a3 4b a2 31 95 cb 59 8c a5 95 f2 43 c2 60 39 2c // d7 93 b6 5d da 85 6f 81 be 1b 54 d8 73 a0 36 64 07 ac 26 68 72 62 d6 // bd a6 93 e0 58 f5 98 bd e8 0e 30 4c 83 dd 0c 2f d0 e6 34 ff 15 e1 ca // 4e 29 18 bf a8 e3 a6 26 ae e7 b5 e4 45 aa 7f ae 09 65 95 fe 58 03 2c // 99 3e b0 6c e4 9c 10 45 b1 f1 32 f2 c9 0d 6e 23 b7 60 76 83 8a d7 ed // 7a 6a 74 24 5d 7a d7 2b 38 bd c0 4e 45 8d 39 08 d1 d2 72 f2 3f e1 8f // 68 ad 74 6e 54 40 cf bc c3 b7 ad 47 7d cc d6 fb 2d b5 36 df 0e 4d 24 // 48 0d 27 65 e7 24 ca 06 cb de 7e 01 cd 32 e3 66 81 79 6a 45 4c 80 1a // dc 1b 25 b5 01 cc 4a aa e7 78 f3 78 3d ad 15 d1 2e 65 6b 09 bb 3d 8f // 37 ef c8 6c c7 fa ea 5e 51 91 39 02 fa ed 79 ae 59 73 f4 41 3e 27 5f // 78 e7 e6 60 99 f9 e4 1b d7 3a 07 44 5a 78 0d de 0b 18 93 08 e3 b8 3d // 1a 3c f5 ae f2 d3 e1 1f ca d9 30 eb 6c 60 eb b8 99 b2 2c db d5 39 41 // 2b 23 71 d2 8a 43 31 39 4d 8f 29 d8 b1 6f 94 ff d9 1d 4e b5 c2 78 e7 // f6 b4 02 4f cc 7a f9 df de 1b 3c 91 5b 06 da e6 83 76 0f ad 05 d6 63 // 8c 63 89 fd d1 9a 9b 12 95 6c 11 e9 b9 ea 7d 30 e0 9b 13 d9 f6 81 e0 // 12 f1 e4 17 46 34 1a 61 b7 1a c6 c3 33 b2 98 83 ca 2c d1 aa a3 c0 2e // 66 c8 5d e1 e3 b2 b7 e7 7b 0d d1 46 9a b9 db 5c 17 be b2 d3 38 62 db // 20 fd 77 de 68 5a 1e 70 ba 55 b0 d9 cf 4b 2d 3d 11 96 19 6b 53 17 32 // 4e 5f 18 96 05 ba a3 74 93 c9 58 6b 7e 47 58 65 b4 bb 21 b3 35 e8 b2 // 91 b9 de a1 7f 6a fc 1c d8 46 18 b1 89 56 78 17 51 1d e8 21 a8 66 a0 // 0b 62 c6 25 16 b7 16 cf 55 dc f7 f5 b7 d7 52 03 06 fe 03 f0 0c c6 1b // 7d c2 97 88 64 59 d7 4b ed b8 ac 1d 05 cc 50 6d b7 4d 01 8c 87 7d a7 // 35 48 1c 31 82 24 fd 06 f3 49 b5 9f 69 b0 d2 d0 17 c8 17 e5 a1 f9 34 // d2 63 78 9d 41 8e b6 9c 77 2d 92 3b 01 a6 a4 a6 af bb a4 a6 98 0f bf // 7c dd d8 4f 8e 43 92 ea cc b9 8c dd 30 48 89 19 ea 6d 49 2d 32 f9 ca // 42 33 64 91 17 47 4f 41 16 f6 ca 4c b7 62 d5 24 c0 f9 2b bb 40 d3 f4 // 30 db d5 0d ba 20 ad da 8b 41 70 a7 3c 3b 66 25 7c 41 23 11 a7 bd 3e // a3 ec ca 0d a4 7a 7a 00 ef 0a 46 4e e0 a4 b2 40 2b 61 db 83 3f 3c fe // 18 47 b9 63 0d e4 7f 33 1d 57 5f 6e 3c 6f b4 4a 90 21 70 0c 6d 80 55 // ea 98 2a 05 a5 ba 6a 91 a4 1e 74 45 fd ba 7a c0 92 02 fe e7 33 a5 c2 // 16 b3 c3 09 09 91 22 5b 98 17 85 08 d1 98 58 32 f8 e7 da e5 84 82 ec // 0f a2 21 5c 93 5b d0 ef 9f 03 c0 ed 3c af 97 bf 4d e0 23 60 5a a8 53 // 5f 1e 88 e8 41 47 1b d8 84 20 84 c6 71 5a 3f d3 ac d0 7e c9 c4 3f 63 // 5e 5f 86 8d 82 cd c6 f9 42 4e d9 78 d3 9e 72 cc 92 53 5c 26 37 16 4f // 15 e9 a6 77 70 38 95 35 ba 46 cb f7 86 18 95 62 90 88 72 27 4b a1 26 // b3 13 bd 1c 07 80 e9 d0 ca 38 95 6d 12 77 b5 8f 04 ea a1 f9 7e d8 c6 // c8 3d 9c 05 df 0d f8 b4 3d a9 30 70 7a 84 66 2e 48 0a 33 d1 86 8e dc // 9f f6 53 68 d5 1f da 82 8a d2 9e cb d3 b2 cc 0d db 0a ad 25 1b 47 36 // f8 72 ba 5f 06 66 17 a9 e9 67 5e d7 f8 06 85 54 4a f4 4c 67 7b 9d 39 // a1 a3 53 98 4e a4 cc bf 36 d7 59 b4 90 f8 dc d5 62 1e 57 3b aa a2 c0 // 3e f3 67 f5 43 ca 5d 36 d1 c9 d3 3d 47 62 bb 0b 1e 02 ec 67 d3 51 15 // 82 d6 9b 06 a5 7d 15 f5 26 0f ab 5e d8 d9 36 19 48 ea bf 88 d9 e7 76 // a1 8c 5c 4f 2d 42 bb 46 37 38 61 b6 13 db 9a 91 cc ff 8f bd 56 3d db // 37 f0 73 8f a1 72 3c 23 c8 5c ac 0f 9e b5 3a 41 d1 15 fe 03 39 ee d3 // 16 7f 59 b2 f2 f0 73 9c f9 c0 ba 57 69 b1 8a 21 3d 58 09 bc ca de ce // e6 e7 81 81 1b f5 84 c2 2a 65 57 51 6d 12 bd 58 42 0f 5c 67 c6 73 fd // f0 88 8a b3 1e dc ee 31 98 92 7b 5b 87 a6 3f 89 f7 a0 7d 1d a8 cb 94 // 6f 0a 87 e7 d3 bb 45 5c 88 8f 39 4d 17 69 43 78 44 6c 90 73 e5 43 68 // 56 4d c5 46 b6 c9 30 ae 17 af cc 83 60 cb 2e 31 d8 7a d8 92 3f 60 03 // 3a a6 37 a3 99 70 73 98 ff a5 16 45 ab 1d 99 63 c2 93 75 c8 34 74 60 // 04 ac 16 d2 4d 8f 00 6e 96 74 e4 5d a3 d9 38 de 52 48 57 c5 7f d3 9b // 22 67 8f 39 09 63 09 52 7e d2 2c 41 67 7a 65 a6 7d c0 99 8a 8b ab c9 // cb 68 8a 56 62 8d 09 a7 32 77 3d 90 19 d9 23 99 41 5e 93 85 2a 12 d6 // 6c cb fa 57 18 37 b7 68 9c 7c c5 00 26 ed 64 3a 89 c8 f1 bd ef 6d 01 // 01 6e 6e 1c 21 bb 77 9d b5 2c 22 54 f5 da e4 0f f1 73 94 3b a6 2c e3 // 43 ec 03 5d 93 d5 c9 2c 64 88 4d 65 47 77 cf 69 95 dd 0c 48 5c 7c 13 // 2d b3 83 76 9a e1 f3 5f 19 80 65 4d 2b 47 e9 2b 18 62 f6 53 ee b8 1a // da 4e ed 6c 9d 0f e9 da 3d 7d b5 df b4 d6 6b 2d 57 66 76 be dd c4 39 // 4a de 2a cf 55 f9 ec 24 ae e7 c4 c7 71 38 e7 99 f6 2d eb 19 36 7c e2 // 26 a6 67 15 da 51 54 79 b1 76 c9 ca 06 c7 39 56 6d 27 91 42 ce 21 63 // b8 83 5c 84 0a 3d e6 e2 d2 75 b5 d5 a9 48 b2 6e c8 fa a6 cf 32 2c 50 // 38 fc 00 fb 0a 27 f0 b7 6b 5e 30 57 80 c9 14 5e 99 fe ad f5 71 bf 8d // 87 dc 93 ea 0f 8f f3 bc 24 6b 16 d4 e4 32 56 50 7a bc 7c cc 92 e1 13 // a0 37 ab 13 85 50 58 ba 1e 07 70 b9 0f 52 e0 74 0c 15 7d 68 96 3b 3d // 23 6f 68 14 54 58 93 85 c6 12 4b dd f9 48 c5 aa 2e 14 7a 35 43 c3 01 // dc 6d 82 ac b5 04 f7 62 39 c8 90 b7 d3 d7 6d bd 7c 26 44 5a b6 fe 66 // f9 f7 1d 95 f4 f0 d6 c5 15 33 ce 4b 05 35 3e f2 71 78 f6 b6 81 33 66 // 18 9f f4 cc 19 cc 5c 9f 7a ca 4d 6b 6f 3b 5b 21 3e 82 8c bf 8b 8b 5c // ac b4 2a de 1f a2 59 4c c4 cc d3 45 7a 45 a5 b1 99 26 f1 7b 90 61 c9 // 07 2f dc e9 6a fb d3 f2 bb ec c6 df bd f9 d9 b3 e1 a6 21 e6 5a 7c df // 0a 97 cb 02 23 b2 20 b3 9a 88 b7 41 4c e9 1e 5f b5 2f 3c 9c 7e 10 19 // 9f fc 8f ad 82 6d 40 a7 98 ec ae bb d8 88 1c 16 05 f9 86 bb 0a f0 6f // 41 62 80 f6 3f 3a 3c 28 d3 99 d1 3c 21 e6 d7 95 01 cb bf cc 94 83 a7 // 3a 93 1e 91 35 88 07 fb eb ef d3 9b 46 6c b9 f2 51 fa 4f c7 d5 f4 fd // 2d 87 d4 60 4c 97 50 59 3d 3a 80 1b 96 30 85 ad 7a aa 91 e0 23 97 77 // 42 b7 28 d2 92 b0 46 d0 bd 49 f8 17 17 a6 86 f1 00 96 e1 54 68 1b 85 // ae b8 1a 26 fa 8f 46 bf 3d fd f5 dc 7c 7c a3 7a a3 da 37 e5 3a 10 5b // e5 93 56 40 ba ff 47 64 53 f5 3f fc f7 86 89 4e ac 35 d1 93 3a 5e 97 // fb 9b 6d 97 5f 9f be 79 14 d0 9d c9 48 d3 05 00 5e b4 ab a3 a9 b8 cd // ef b3 0d bb 33 00 f4 60 41 db 06 56 79 56 ba 43 27 28 07 21 ad db 17 // 42 5a 2b 22 3e 81 bc 41 46 7c b4 13 ce bb e1 68 18 46 8e eb 5b 24 b6 // cd 79 ec 47 87 f6 93 f3 c3 01 e5 dd 10 74 7b ea 13 bf 04 2d 6f de 42 // d1 8c 48 fe c0 e3 e4 34 54 79 9d a1 d5 50 11 30 fc 98 91 7f ed 27 d6 // 96 ae 85 a3 9d eb db 67 d5 b3 d7 0a 82 a2 09 70 95 47 6e 24 21 17 57 // 62 6c 91 a2 9e 91 77 96 76 6b c4 01 64 56 c4 ac f0 43 6b 6c 02 05 57 // 78 ce 7f 34 e6 05 26 4f 7d 6d 13 21 07 2c 4b a3 41 86 6a c6 f7 8e 9b // 99 a3 04 78 eb 7f 09 a1 7f 4f b3 e2 31 84 e8 78 c2 f6 0d 2c 18 61 71 // 85 00 78 41 77 8c 7c 25 67 50 a2 87 ec 0b bd d2 0b d3 7a b5 05 38 e4 // 3a 59 29 45 6d 33 6f b4 6a 04 59 37 65 b2 69 2b a1 5e 7b 71 b9 77 88 // 97 0a 79 03 e1 20 88 21 10 98 bd 35 61 32 86 2a 4d 58 65 08 b4 aa c0 // 77 d3 ac d4 f7 7c 67 d9 06 6b 43 6d 14 b2 0d 3e 28 70 cb 19 cd ad 55 // 81 de 2e 08 da 76 1f c9 57 55 c4 3c f0 dc 2c ff 84 e6 a3 a8 fa 2d 03 // 90 fc fe e2 85 a1 33 b3 7a c7 b2 fe fd 0d 36 65 b1 70 57 84 18 7e 22 // 85 79 68 0b e9 79 82 19 43 29 13 6f b7 2d 8b 61 cd ea a8 8f 3d fc 83 // 5a e2 21 67 c0 13 05 29 fe 81 04 3b 0e 1c 3a eb cc b1 f4 aa dc 28 cb // 48 4f 85 01 58 50 44 39 d3 89 d1 e5 59 ff 42 42 17 dc 03 1d 42 2a 8b // 7b 51 73 1d b7 5d c5 41 e1 6f ed 8f ae 14 f5 8c 1f 9c 8d 0f b9 1a 68 // 52 45 ba 55 8c 1a eb 24 3a a7 28 db 51 c3 f3 aa 6d 8f 7a 4a 54 7b 8d // 95 01 84 02 28 3a 59 a4 51 73 e7 69 6f 02 30 49 54 eb fb 43 c2 21 5f // 18 0c 8e 47 e4 33 e5 26 2e 27 9f db 63 40 5c 81 b0 f1 28 b7 d6 a0 95 // ff 5f 85 69 03 31 d9 4d 34 92 3a 3e 8b ee f5 cc cb f7 b2 08 b2 a0 aa // 89 8f 9a 32 b2 f1 bb 55 ac a4 ea ae fc df 09 ac d8 71 f4 b8 8f eb 53 // 5b e8 7d fd bb 5a d4 5f f3 c2 6a 27 65 23 00 11 d9 0b aa 4b 5d 5b aa // ac 55 19 f9 01 3c 8f d4 97 d5 70 83 40 3e e6 eb 0c 4e 23 42 8c f3 84 // 6b d3 4d 69 84 0d 02 11 96 f9 a9 a4 fc 10 10 16 fe 2d 4f bf 4e c2 3c // 11 e9 d7 37 c5 e6 d2 cc 3d a7 e0 98 1c 00 ea 9d f0 7e d8 8a b0 5b 78 // 21 03 3b 2d 31 1f 2f e0 52 51 76 66 0d 0a 33 b0 eb 23 a5 7f 5b 1d 41 // e2 c1 69 8a c7 bf e5 f5 9c 27 79 2f 89 9f d3 96 10 05 2b 70 58 62 e7 // 98 a2 70 84 45 0e df cc d1 80 a1 3d 8a df 80 72 43 0e 93 05 f4 1b 0a // 67 bd 17 84 b6 ba 94 50 b1 e8 72 79 4e 0b 7b 55 b2 2a 2f 64 9f 83 27 // 0b 98 d0 a0 13 76 94 fe c0 d1 6e c2 eb f3 7c 72 d9 39 8d 23 1a 71 e4 // 0c 91 24 28 92 9a 29 a4 33 dc 0f dc b6 97 f6 4e 07 54 0d a9 20 67 b1 // b5 a7 73 5f b7 fb 8a c8 da 25 91 fa 44 b6 76 bb aa 32 ef 5e 6c c1 1f // 1b 2a b3 b2 62 d9 bc 4b 20 82 e0 81 ee 50 fe 71 de f6 3c f6 e2 d5 88 // bb 8d 66 a8 da a8 c8 a3 0c a0 7d 29 56 46 3e 1a ff c7 60 03 e4 ba cc // 63 2c de ee 50 09 8f e8 0c d7 48 5f ef ed 6e ab 63 9d 8c 42 a1 35 7f // ef ae 5a 5a 77 9f ad 53 64 74 e3 bd eb f6 aa b6 99 55 2e 80 7f fd 8a // 44 03 0f 43 97 56 74 8d ee 9d df 19 a6 cb f5 f7 53 07 b0 3c 5e f4 18 // 5a 31 a4 15 83 fb 4c a3 69 9e 06 31 93 71 c5 d9 32 d6 e5 f4 e1 bf 77 // c0 2c 70 56 4d 21 40 f7 51 0e 18 3b a2 fa 7e ad 8a 9b 8c fb 08 5a 9d // 0f a7 db ca 75 61 bd 9d c1 e5 c1 a1 da 03 22 98 2f f2 9c 0f a2 cc 33 // be a1 86 46 44 5c c5 9b 44 96 5a 01 57 0b 7b 73 9d 73 0d f8 f1 f2 cf // e3 55 8e 71 02 de 13 99 4d 67 45 ef 8f 91 96 52 65 fb e0 d2 9c 3f 38 // 1e 1e b9 c6 32 42 96 2a 44 09 dd b0 a4 94 6e f9 ce 5b 0e da 90 f8 36 // 53 62 68 19 43 24 7a 0d 87 d9 b7 fb bd d2 6d 49 02 be 34 06 84 99 b6 // e2 ab 2e a7 46 63 44 02 e1 06 5c 8c b9 c3 2a 21 1d 10 fc 27 96 f1 a7 // 04 5c 59 b9 cb c4 77 1d bf 56 a5 c3 83 03 f9 39 51 19 4d 06 a1 b8 cc // e3 1d d4 86 9a 14 8a e9 0a 79 7d 09 de 16 8e 47 97 4e d9 69 9e ab 3a // 64 24 78 1f 48 1d 03 cf 10 46 df 28 b4 54 af 02 df 72 c0 f5 6c 69 33 // 43 a8 2f 7f 38 3a fb 3a c4 52 20 0f f1 55 44 40 10 f6 c9 88 de 71 e3 // fb 6f 07 9b c6 ac 2b fa b6 ff 45 12 42 b7 e3 e7 05 78 b8 20 65 29 81 // 67 64 20 6d 47 11 5c da 77 b3 e3 56 e5 4f 82 5e c7 45 01 7e a8 c3 dc // b4 12 52 3b 75 4b 95 1d 19 fc 07 5e c6 60 12 cc ef f5 1d a9 25 af 90 // 79 f5 47 e8 40 c3 f2 77 42 39 cc e5 fd 65 33 f3 ee 8d 19 48 12 de 2d // 44 99 ef 18 c4 be bf a8 d7 27 33 07 d7 aa 0a c0 9e 6e bf d9 5b a9 99 // 46 a5 85 a4 bd 4a fe f8 bb 0b 52 85 7e 84 15 a3 2b 42 e0 a9 cc b0 74 // 95 99 d7 a4 3c ec 79 3b 22 c9 6b 3d e9 15 34 c9 05 45 6b 25 a5 97 21 // 24 b8 3c 7d 8f 05 20 cd 71 c5 54 4e 49 af ab 26 cc ca cd b7 e1 12 f0 // af 1a cb cb 2b 68 76 0c 75 38 aa 6c 99 08 14 d7 cf 7b de 5d dd 61 8b // fd 55 bf bd d9 68 e5 3e 28 f9 40 42 fa fa 27 96 b5 bf 2d 1b e6 12 c8 // 1d ba fb f9 0b 07 28 b4 b0 6f e2 16 aa b9 1b 88 98 78 0a b0 6c ff 75 // be 52 39 c3 9a c8 36 db db 54 82 22 2e 61 ff 59 71 ea 49 2c 5b 5e f5 // 09 72 0f c8 86 f8 a0 7a 92 32 65 3d 42 7d 17 65 74 c9 9d 65 24 4f 16 // 18 fd aa b1 09 f7 32 e1 e1 29 53 91 a2 5f 9b 75 0c 97 61 bb ce b8 1d // 31 6d 9f 9d cd 55 5a fb 76 21 91 b7 e1 73 f0 6a 4d 8f 4d 97 ab 88 b9 // ae 19 f6 c8 5c 36 1b 8b 5c be 91 a3 49 3c ae 59 40 63 ed 45 7f 3b e9 // 97 72 48 5b 34 d3 30 8d a4 e7 51 e5 8a 14 cf 7c 77 1d 8e 5b e7 7f 88 // c7 56 7a f0 95 ca ae 1e b8 3d 25 9c ea 70 9e a5 44 10 47 ce 96 f0 e2 // 1f af 89 ed 49 1b ba 5d 0d cc 6b c3 3a 07 23 7f be f2 fe 67 14 47 ce // 14 e1 6a 1c ae 43 61 93 87 67 ce 65 ec fe 0c 63 e1 26 1c ce 5f bf 60 // 3a 25 37 d2 1b 50 c9 a3 a3 ed 6a 7c f1 12 a0 58 6a 65 3b 43 f8 13 91 // 2a 22 6a a4 72 2f 7e da f8 dd a5 55 3e fb 22 72 1d c7 19 24 aa 73 bf // 23 2c 24 39 b1 d8 06 d3 be af 15 74 42 64 3c 81 ce 2b 55 1b 82 d6 3c // bc d4 19 50 29 e2 f6 3a ef 12 7e d4 df 0b ff d4 16 65 d8 62 13 51 25 // 57 ce 90 ee 54 fc d0 10 78 a6 a1 90 85 bd e6 a0 34 35 95 f5 40 b1 ff // 61 0b d7 a5 a2 d6 95 bd c5 e5 08 cb f5 44 d1 5c f5 92 0b 3e 40 5e f4 // e1 0e 66 51 c5 ff ff 03 9a dd e2 f8 05 14 3b 78 91 61 88 fe c0 5c ad // ac 44 3c 93 44 7d 23 bb 25 b0 a0 cf c7 87 75 4a 20 f7 ef cd ee 57 98 // de 93 9b 75 8f 23 8f 15 c2 3f 26 22 b8 ed 68 23 78 01 7c 8f 25 1d da // 02 61 ba a3 3c 62 62 d4 2d 63 65 e6 8e 85 d4 3a 46 d9 2a af 04 ac ee // 20 3c 09 48 77 55 df 49 f0 7e a1 12 97 82 b1 be 0f eb 6f 01 1b b9 14 // 26 6f e2 cf 53 61 c3 77 fe 33 a4 91 08 9f 70 1a c6 1b ca b2 bf a3 bb // e8 bf 7b 0b 83 4d ba 1b f1 87 ab 78 fc a7 51 b5 7f 1b dd fc 67 0c 80 // d8 3c 34 c3 46 1d 82 3d 77 62 b4 5f f0 ac cc 3a f2 1b 38 13 72 76 d4 // e4 d7 a5 d0 a0 75 90 28 65 f1 7f 08 4c fa 94 cc 28 f7 0e e7 29 6e 21 // 64 01 b1 72 18 4d f0 e0 60 dd 61 be 91 ef cd be b0 3b 4a 66 99 c8 8a // 16 eb b1 8f 3e 93 8c b4 58 a3 77 e2 9a 3f 3c bd aa f1 21 e2 78 b6 91 // c0 2b 6f 0d c7 90 51 08 40 b3 97 0b 1f 90 5b 42 1a 1c b3 76 04 3c c7 // 51 1e 70 e9 4c c6 39 41 ed 0f 86 4b 41 18 59 28 78 53 8e 12 e9 86 b9 // ab aa f2 ed 58 8a d5 f0 e5 e0 85 1f fc 29 ef 21 ae d0 80 eb 6f 35 fa // 10 05 2f 27 76 7d 0d df 3f ea 5a 08 c1 46 57 d6 8a 9c 3e 6c ba 42 2d // 93 a6 af f2 22 c4 0e ee 9f 3c 9f cb 03 a3 10 45 3b 61 6a 80 c4 86 46 // f7 d1 96 43 37 36 fe dc fc 2f f4 fa 1a 43 bf 9f 8f c0 a0 66 0c f9 f7 // 9f d0 d8 e1 06 59 1a 23 19 cf f5 eb 0a 5b e5 78 d1 78 e0 e1 84 a9 ec // a9 29 91 ca 63 bf 1e 9c 5b 1c 56 db a3 c8 36 97 5a 74 d9 eb 9b 76 3c // e7 c5 dc 75 3c de 77 fb 2d 04 8e 36 56 a1 5f 9a a7 f9 de a2 49 c4 a3 // dc 04 56 b6 45 33 51 3e 69 86 1f cb 9f 43 48 d7 8a cd 5b 8c e1 f3 c4 // 12 71 b8 55 1b a4 d5 75 4f bb 12 38 62 23 6b c9 41 92 a5 30 6c 29 ad // b2 b0 b0 53 cd 7d 4d ea a1 be 6c 61 f7 5b ca 27 b5 37 65 a7 35 6d d3 // 4a 48 43 7d 5e 5b 35 6d 48 db 64 74 92 43 fe a9 b1 f4 4e 46 25 fe 7c // e8 20 dc 9f 1a 60 22 d7 71 98 e6 e9 17 cd 4f 5e 23 62 2d 5b 3b 2f af // d4 f9 be 0b 85 db 21 37 1f 5d 35 c7 c6 51 a6 16 a8 35 1a 02 db fa 74 // f9 d2 73 a0 eb 7d 2a b9 fc a2 54 bd 28 50 9b 3d 6f 54 20 10 8c ab c4 // 2d 9a 56 70 77 9d fd fb 78 af e7 4c d8 7f df 8e 3b e9 37 e6 c6 98 1e // b8 81 56 f5 cb c9 1e 4b 92 f8 d6 5a 15 1e e3 30 7c ce 38 1d c1 89 c5 // 4a 29 d2 1c 9f a9 f5 12 c5 0d bc 9f 1c 0d db 43 b6 b1 0d 51 90 b8 16 // 9f 9e 06 f7 c6 0a 21 03 c9 c3 fa 3f e0 d1 ca b8 35 8c f4 dd f9 5d 5e // 26 fb ed 63 6b 2f 1f 47 4b 7d 10 42 6a fb 5a a2 19 48 f7 48 6e 0d f5 // 27 5f fa 6c 09 1c 46 c3 86 87 03 c4 e3 0e 1a 15 a8 d2 7a 70 8b 6d 5f // a7 d1 23 f1 52 4c 22 1f b9 3b 5f 9f 8d 87 b0 28 6d e3 8c 61 12 a0 5d // 1f 07 70 69 23 b5 31 e3 35 db 32 6f f7 56 ac f6 cf 9a 5e 53 52 95 3d // 11 2a 84 2d 7b 2f 05 d2 96 f6 44 b0 1b ca 41 3f 26 86 db de a6 b2 cc // 6d d8 11 5e 22 d8 32 af 74 2e b8 01 ee 61 f6 b9 0f 93 d2 27 b6 94 fe // 47 43 85 12 58 01 d6 eb 58 86 7c 15 24 6f aa 6c 0a 1c ae 0b 05 f1 04 // fb 2e 97 47 6c 73 a7 91 85 79 6e 0c 26 bb 1b 59 52 7a ba 4b 79 db 6e // c9 9f 16 50 89 8b 99 6e 06 83 29 d1 7b 94 73 0c d6 ab 79 a3 d7 7d 80 // e5 ed 78 ee cc 7d 68 0b 54 25 23 13 57 f2 4c 46 fd 01 73 20 52 eb 18 // 73 76 34 91 51 31 c7 ff cd b0 b4 8a 35 d8 76 1c 40 2f f5 b5 6a a1 a9 // 08 0b 46 83 6e 4a 88 8c 86 d7 a2 60 fb 6c c2 f3 b9 f6 8d 52 20 15 31 // 22 0b bf e0 e7 b2 89 0a 39 0a cb 33 83 1f a1 12 6b 88 dc eb 12 6a 55 // 51 81 ed bf a4 68 0c ad b0 8d 38 ab e0 0c 91 98 0c e6 8a b5 82 74 ec // 28 ea a6 97 f8 a4 d7 d6 db 74 4d 8c 9d aa c2 03 5d 40 a5 eb 56 5e 12 // c8 be 5c 2b c1 d7 25 f7 13 d4 5a 03 ac 14 ce af 91 bb 1c 5d dd ca c8 // 75 53 b9 d2 2e 23 d7 38 74 2e 3b f9 94 41 2a b1 53 f6 6d de a5 3a 35 // c9 ec 19 c5 55 a4 9a e1 ae a1 12 a7 0d dc 10 20 12 58 53 6b a9 3a e0 // dc 7f b6 0d 51 ff bb e9 e9 6e b8 ee ea 68 78 e3 78 4d cd 68 6f c0 db // 45 16 24 9c df cb 9f 6d 88 0f dc f8 f8 6c da dd 23 ea 74 55 b3 b7 e3 // a0 e8 af fc 9b 61 be 59 81 4f 8e 32 17 5c 86 9a da f7 db b5 ac b4 c9 // 94 e2 26 9d 26 57 01 1e 87 51 c5 c0 e6 e9 7e 9e da 4e 8e 6c 30 9e 84 // 2c 8e a0 1c 20 de 3c 5f 4f 63 72 cc 8c b7 cd f2 b0 e3 51 91 55 e4 c6 // 62 fc 85 72 c3 6d 9d 3b 7e b3 ee 19 e9 85 bf ab 9e b2 0e 07 7c 20 de // c4 17 2e 58 43 57 cc 54 f9 cd 49 74 2e 0b 31 d1 fe d8 78 12 f1 9e fa // 9a e8 1e be bb 02 1d f0 c2 80 aa 97 90 d2 f1 ac b9 4b 38 f2 68 ca 78 // 61 b1 da 63 cb b8 6d aa ea c3 a5 b0 67 c8 6f c5 32 a1 db 23 0a 29 57 // 85 63 f1 6d ee 5b 42 67 f9 d4 74 c8 1c 9a d7 62 21 64 52 cb 3a 37 c8 // ed 44 cb aa b2 e4 b9 a9 58 3b 13 4d a3 a6 43 90 fe 5f 76 94 68 79 a1 // 75 7d 12 7e 6e 10 b3 b3 04 2d e4 81 89 35 0d 84 4e de 16 13 4c 77 0d // ba 47 cf 56 48 3c c1 4e 2c fc 93 fc 11 f4 7c d3 3b 06 b7 20 f5 31 ef // dd 1f f1 25 49 66 b6 8f c4 66 45 ec 3b 45 c2 a6 04 27 e6 9b a1 d7 10 // f2 55 71 52 2b a9 06 22 31 5f 9f 0c ad 33 f8 b1 a1 05 3a 45 aa 07 96 // 48 92 62 1e cc 92 56 b7 c4 e2 17 16 e5 46 c2 35 fd b6 18 f3 39 b5 5c // 37 7a 30 b6 1a 9a dd 4e 3b 56 57 e3 43 3a 6f ea ff 5b 67 ef 34 77 1a // e6 d0 44 49 b5 22 8b 6b 99 ce 72 37 99 6b 30 76 13 d1 46 02 d7 6f 21 // a5 8a 55 cd c7 1a 1f 34 8c a1 82 65 63 4f 09 40 12 bf 4e ae 24 1d f6 // 34 d7 42 4d e5 78 eb 4c 41 99 de 38 2f 27 95 c1 7e ef a1 1a c2 ad 46 // 25 be 72 63 37 3d e4 bb e1 89 d4 2f a5 19 53 65 2d 43 33 23 b9 e6 11 // 0f 00 c7 cb 44 e4 e7 df 1e 6e 1c c4 21 c5 cc 5e 78 ea c4 00 98 24 d7 // 3b 4b f0 a0 34 0e bd 88 3a cb 90 e9 28 f6 03 4d 6a 44 ed ee 02 1a bc // 40 72 6d f3 58 ef 83 42 93 51 f4 6a af 10 b6 3b 0a 5f 4c 68 bd f4 e4 // 25 f8 ce 7c 6a 8a d9 5d c4 87 48 36 a5 6a 29 8f 58 6a 60 2a d7 b3 33 // 50 fa ba ac fd a3 0b 80 21 04 32 dc 6b 59 cb 80 7d 50 78 23 99 62 4d // 62 4b bb 5e 75 9c 09 da ec 8a b3 af bf f2 04 f6 2f 94 75 4e 37 7c ca // 96 b0 0b a4 84 2d 52 d8 f1 2a 5c e7 d1 dd 81 b7 60 c1 c5 39 2f 73 9d // 91 f8 bd c8 c2 90 09 0f c6 e3 22 1e e6 9a bd 26 48 b6 c7 a8 18 e8 a0 // d0 4f fd 83 46 4f 7b 26 00 2e 4d 56 14 39 28 48 20 5f c0 e7 66 71 3e // 4c 65 f4 6e c2 f9 d2 21 e9 8f de aa 5c 32 9d 8a 0e 74 81 69 01 64 fa // 1a d8 29 ce 9d d2 ee c2 fe 92 23 1b 33 41 5c 3f 56 41 61 35 3e a7 f8 // 23 e3 dc 97 c9 e9 05 f4 0d 69 30 82 be 71 9a ff 77 b3 b3 5a 83 2e d3 // fc 16 e3 bf 57 30 5f ba bf bb ad ea 1d 33 ec e1 f0 5b a4 82 d3 dc c3 // 91 e0 c7 09 c0 2c 33 5a 62 89 a8 de b0 35 fd 5b 99 ed de 61 f0 d9 36 // 63 1e 21 25 1e b6 5c 1d c2 35 74 a7 a8 f9 ba 8f d0 b6 c9 58 ee 14 69 // 54 cd ab 3d af 90 c1 7f fe 92 ae f5 39 0b 4e 19 d3 2f ef 46 9e 9e 60 // ef 8e a1 6a f6 b6 6d ab 7d e1 d6 dd fe eb 60 2c d6 9d 8f 32 e4 d5 f0 // 6b fa eb e7 f0 00 d6 2a bc 79 3a d3 4d 77 d1 36 9c 63 78 5e 93 c2 ff // 20 57 69 58 90 11 20 8e d6 af fc 73 dd a9 28 7b c8 f4 d9 e2 7d 33 03 // 8b 69 94 31 f5 62 85 f9 2f d9 f0 2e 78 74 5f cd ca 4a 48 40 dc fc 30 // 7b f8 f1 80 61 46 d9 54 ed 5c cc 8a 66 ed f2 17 9e 2a 53 56 62 4b 3b // 30 f8 f7 88 39 dd c9 94 07 94 ac ce 40 29 0e 5e b7 3d bb 52 fe 1c 63 // 3e 88 d1 49 2a ed c6 9b 35 19 12 a0 89 0b 63 ed a0 d8 75 6a 5b 7c 47 // c7 40 fc d7 3a 0f 41 9f a3 63 fb f0 cd 3f cd d3 8f 0f d0 55 62 79 32 // c9 98 42 1f 08 6e e0 cb e0 52 0b 2f 2f d6 d3 8f ce 15 75 a2 c9 0f ef // 9f 81 aa 23 fc 7c 4c 56 25 d6 f4 6f bf d0 2a c3 1c d1 62 0a 92 c4 3b // 78 84 e4 a0 50 e5 ef 5b b9 b8 f9 82 5a 15 9b b0 37 0c 82 85 19 ef 71 // 09 0e 09 ab 43 ff 2b d2 cc 75 56 3f b9 07 3e ad cf d8 69 f0 d9 b6 98 // 6e 43 20 b1 98 6c e3 f1 9a 3f 5d ce 20 2f 8c 13 75 77 26 e5 d6 a9 fc // 9e 2b 0b 35 76 25 36 2f b8 73 70 9f b3 07 ee 51 bc 58 49 48 57 fd d3 // 81 1f 6a 8a ee 00 86 b0 a6 2d a4 e3 27 c6 98 e5 63 9e 37 35 67 d5 ee // fc 76 e0 d6 72 52 72 52 7c db c0 1a 2b 40 e7 51 1a c9 86 e3 2b b7 e4 // 85 58 75 6d ca 3b 94 48 55 fd 9d fd bb 23 58 a5 2e 53 76 98 17 ca d5 // 0a f1 3d 8a 59 41 c4 1f 6b d1 21 cb 26 7a cd c4 61 c5 00 85 5c 6f 6c // 07 50 36 7c 62 dd 32 fa 41 59 5a 60 70 e7 28 f1 91 5b ab 95 1e 55 36 // ff 82 30 a0 60 8a c9 6c 2e 19 a5 c1 41 52 09 a3 77 4c 09 11 74 f5 75 // bc 93 7d 54 4d 49 53 70 29 4a af fc 5e 6b e7 63 64 c7 a2 12 bb b4 ec // 7f 3b d3 8d b7 5a 15 9b 68 e2 b3 07 5a e6 bb 68 ff a0 2e 6b fb 42 55 // 3b 50 5d a2 0f 13 3b 28 55 57 2b 7e 6f 8f 3d e2 40 d9 ab 1f f3 2b 3d // 98 25 f0 87 77 4f 49 32 02 4b e8 06 b7 8f 05 9d 4b 3b 40 41 4d f4 56 // ae f4 05 d1 cf fb 2f 36 04 83 4d ae 38 93 2d 83 02 98 df 70 45 d4 04 // f0 05 f5 ed f8 10 61 85 08 08 d4 99 8f 6c e8 0b c7 56 90 81 76 58 75 // d9 08 d4 b6 a0 ed cb 43 43 17 54 3a 4f 59 54 a5 e0 e5 b7 c4 da 75 cb // 36 9e 28 10 e2 ae bf 95 0b 97 3a d3 38 0b ca 5d 0d e8 31 1e 59 a6 ed // 3f 01 d8 f7 c1 b3 90 60 fd dc 7a c1 fe be 65 96 26 ed 7a d2 7d ce e7 // b3 d4 09 b9 f8 4e 4f 55 ce b2 e4 62 f5 56 27 85 7f 8c 48 5c 35 c9 ab // dc 2f a8 7c 42 81 36 57 90 ec df 19 71 f3 a2 85 ea 0b b2 03 8a e9 1d // 92 77 29 f4 bf 84 7b f0 fc 72 4b 00 2c b0 29 d2 a5 7b 89 21 8b d4 a7 // 63 ab 01 90 2b 7b 48 cb 60 9c f3 b9 ad 8f b5 68 ae f0 ce ff 20 c5 de // f1 a4 fa ee 11 d3 3d 30 4e 22 27 b8 3f 3a b0 6f 0b 9f a5 50 2b 1d 9c // 6f e2 a3 4b f9 ab b9 a5 b1 39 28 80 01 49 48 8c ea d4 7e 48 c7 54 c7 // 5a 06 1d 5e a8 a5 15 f7 f5 56 11 b0 c0 48 b8 8c 97 72 ca 4b 1e b3 d6 // fc 93 18 01 99 0f 16 11 e9 b1 17 12 23 52 7d ce cc fe 8c fd 72 60 0a // 88 a8 48 6e 08 8e 21 c3 0b 99 7a f1 b6 0b 55 bc 54 43 ce cb 18 c2 dc // f5 4d bc a3 ac 34 f1 0a d2 be 9d 75 56 79 51 9b b6 74 b4 29 04 be 57 // 9d f6 24 36 bc f0 6d e4 cf d6 36 d5 92 84 0d 67 4d 11 19 5e de b4 df // e6 13 70 e9 a9 45 33 78 95 7f de cf 21 15 ee 00 82 24 fb 8c 97 fc d0 // 51 dd b1 ed 8d 04 19 b9 50 f2 cd 08 5b f1 de ba af b2 a4 6c f6 5b e8 // 63 93 9c ff de 74 17 97 fd f6 4c 17 f3 b4 47 46 4b e0 e6 bb 90 32 4c // 4c 65 b3 cf 66 95 8a 15 d5 37 a1 67 5d ff bc 4e 41 f7 a6 c9 2e d2 7c // 5e f0 dd 0d cc e6 f9 62 25 b4 e0 ec e5 10 ce 00 f9 61 1e 39 52 15 e1 // 16 02 64 99 dc e3 41 7c ee 3f bd e0 10 6b 2a 6f bd 59 37 42 31 24 f6 // 54 9c 22 06 af c2 ad 1d f5 be dc c5 e1 37 1e d2 b9 f0 9f 76 57 65 89 // 45 0b 09 dd 99 08 11 c5 9c 3f 84 8c 1a 4f cc df e6 86 96 89 03 ed ff // bc 01 0e b7 3f 55 ac 5a 67 5f a3 db 70 db 12 c8 26 c8 b7 36 06 17 d8 // ab ea ce fa 6e 2a 8d a6 2e 4f 30 45 43 cc 92 17 fe 1b 0e c4 fb 04 4c // a8 49 80 2c 4a 14 0b 91 cc 05 6d 56 6c 86 70 e4 60 09 41 a5 4b 2e b8 // 64 3f f2 06 c3 40 1c 0b d9 83 8a 02 55 45 22 7a e3 e6 bc b4 7f a3 dc // d1 b4 0d 8a 09 17 f6 37 44 fb 1e c2 b7 22 11 c6 cf da 13 24 8b 2d 0b // 42 32 e4 fe 70 15 cc 42 d4 92 8f 07 ca 91 61 64 01 02 f2 22 36 cc a7 // ca 3b 81 ff c8 1c 4f f2 05 32 b5 20 3e 0d 94 77 1b 8d 0e c7 0e 63 71 // 35 fd bb 78 8f a8 b4 70 4e 11 d3 c6 08 3a 45 f5 1e fd 85 60 c0 e6 34 // 35 51 65 86 aa 82 ea a9 98 c1 40 76 7d 3c e3 54 91 e3 01 c1 2f 74 58 // 3c 61 cd 4d 2e f1 ca a6 fe a3 e3 53 63 7c de b3 33 2d 96 41 55 c9 d3 // 2f 82 68 29 a7 17 4a b0 6c 44 e3 20 63 e4 6c e7 42 b7 02 7c ff b8 99 // 93 02 b6 02 94 9c 60 49 6a 0b f3 c7 cd f8 59 d4 ba 51 10 26 74 41 48 // 67 af 61 4c ff b8 8a c1 77 df bd b6 13 1f 73 70 dc b8 51 00 2c ec 17 // 42 fb 15 61 25 77 16 85 0c 9e d3 b0 75 a6 c0 23 bc f0 5b 5d 58 0a c8 // e5 d7 ab 7e 5b 17 23 21 2c 68 19 89 e5 f9 19 58 b6 35 e0 d0 76 63 45 // 84 92 0c 1b 98 d7 f6 ea 0d dd ed 6b e9 eb 74 de 77 8b 3c 57 c3 6b 18 // e0 c5 6c 3a 05 10 14 e0 9f ac 70 ce 6a 7b 0f 04 2f 5e ec a8 b8 88 5e // 50 0b cb 41 f6 fd 97 4e 5f 68 88 85 9a bd f3 60 07 06 a3 de 9f ce 06 // 0c 30 69 60 0c 63 10 6a ff 24 21 04 61 c5 d3 42 3f a4 e3 50 04 1f d1 // 66 90 2a d8 6b db a8 cf 96 59 17 f7 e3 ab 01 9e 19 11 d8 01 3d ad 57 // 64 65 31 9c 4e 04 b8 9b 5e e1 d0 7f 54 70 57 18 59 2d 6a a4 53 55 82 // 94 74 3d aa 8d ba 33 15 9f b0 e2 91 82 9a c2 20 56 2b 00 75 97 e0 67 // e5 f6 58 41 56 36 73 b6 9c c1 d5 49 f5 0e 9e fb df 25 6d 79 7f e8 c7 // d0 95 96 c1 67 a4 5d} (length 0x2000) // } // len: bytesize = 0x2000 (8 bytes) // res: ptr[in, syz_fuse_req_out] { // syz_fuse_req_out { // init: nil // lseek: nil // bmap: nil // poll: nil // getxattr: ptr[in, fuse_out_t[int64, fuse_getxattr_out]] { // fuse_out_t[int64, fuse_getxattr_out] { // len: len = 0xff7f (4 bytes) // err: fuse_errors = 0xfffffffffffffff5 (4 bytes) // unique: int64 = 0xffffffff (8 bytes) // payload: fuse_getxattr_out { // size: int32 = 0x4 (4 bytes) // padding: const = 0x0 (4 bytes) // } // } // } // lk: nil // statfs: nil // write: nil // read: nil // open: nil // attr: nil // entry: nil // dirent: nil // direntplus: nil // create_open: nil // ioctl: nil // statx: nil // } // } // ] memcpy( (void*)0x200000006380, "\xc6\x6d\xd2\x20\xcb\xde\xb6\x8f\x27\xc1\xf9\x8b\xf4\x3f\xd8\x61\xbc" "\xf8\x41\x57\x26\x58\xa3\x30\x87\x37\x98\x3b\x31\xa4\x34\x67\x3f\x10" "\x03\xee\xeb\x6d\x9b\x93\x4b\xcd\x19\xcf\x75\x4f\x48\x82\x11\x4d\x61" "\xe1\x53\x54\x44\x9f\x76\x3f\x77\x2e\x86\xc9\xe2\x25\x27\x31\xf7\xa0" "\x98\xfa\xad\x2a\xcc\xca\x3e\x47\x08\x45\xb3\x29\x18\xbc\xf5\x30\xf9" "\x47\x4d\x3c\xd6\x10\xd9\x02\x8c\xb7\xb2\x47\xd3\xa7\x3d\x88\x77\x19" "\xf7\x05\x54\xd8\x97\x6c\x10\x78\x4c\x80\x73\xe5\x21\xa8\x0b\x5e\xbe" "\x75\x01\xd6\xc3\xb6\xb5\xcf\x9a\x49\x8a\x1e\x97\xb8\x20\x1a\xc7\x56" "\xe5\xf3\x5d\x71\xbd\xd4\xd1\x96\xe7\x3c\xae\x0c\xc3\x4c\x71\x40\xcd" "\xe8\x38\x0d\xe8\x23\xe8\xc7\x66\x62\xf0\x84\x4f\x54\x98\x18\xb5\xef" "\x6c\x73\x2b\x8f\x41\x2b\x79\x27\x35\x08\xb6\x9f\x2e\x6a\x65\x37\x09" "\xb4\xd9\xbd\xed\x08\x0b\x6c\x15\xca\x5c\x5b\x8f\xf2\x33\x09\xe0\x5d" "\x46\x0d\xfb\x40\x40\x3f\x60\xa3\xe5\xa0\xe1\xd4\xe1\xaa\x59\xd5\x38" "\x23\xa0\x47\x42\x76\x73\x26\x7e\x79\xd4\x0f\xdd\x6f\x12\xef\x69\x6f" "\xe2\x28\x87\xd2\x40\x87\x37\x3f\x64\x98\x7e\x48\xba\x20\xe7\xf4\x7d" "\x1f\x08\x87\x1e\x0c\x22\xa0\x25\x93\x15\x66\x48\xfc\x10\x6c\x45\x29" "\xd8\xcf\x17\xc7\x1d\x47\x3f\x4a\xd4\x39\x92\xb1\xcd\xbf\x5c\xfa\xaf" "\x1c\xe4\x01\xd5\xad\x8b\x9c\x6b\xdc\x3c\x60\xa8\x8a\x91\xc5\x2f\x5a" "\xae\x74\xa5\xd2\x5e\x0c\xd7\x38\xfd\x80\x16\x9a\x98\xb8\x4d\x4d\x24" "\xa7\xe8\x6c\x9d\x8e\x4c\x3e\x3f\xf1\xa9\xfc\x44\xa8\x75\x58\xae\xb7" "\xac\xbf\xec\x13\xa2\x6a\x4b\x12\x1b\x2c\xb9\xae\x62\x8c\x68\x2a\xa4" "\xc4\x43\x11\xc4\x5a\x67\x3b\xab\x25\x88\x06\x65\xd6\xcd\xf5\x89\xe5" "\xc5\x41\x57\x94\xc4\xfd\x6b\x94\x0e\x7a\x44\xdf\x93\xa3\x4a\x68\x41" "\x83\x58\x1c\x85\x0f\xbe\x97\xef\x8c\x1d\xe8\x52\xea\x83\x6e\x0d\xb1" "\xa1\x04\xb4\x98\xd6\xdd\x8f\xdf\x65\xc6\x06\xe7\x72\xde\x2e\x9d\xfe" "\x46\xa4\x18\xfa\xc3\xc0\xbd\xd7\x29\x16\xc9\x51\xe3\xdf\x04\xf2\xae" "\x85\x83\x93\x05\xbe\x2a\x86\xae\xbc\xf4\x89\x8b\x6e\x49\xc2\x7d\xf6" "\x03\x3a\xd2\xb8\x65\x12\x79\xce\xb2\x0c\x77\x97\x16\x24\x0d\x3d\x0f" "\xef\x3b\xb6\xc4\x17\xa8\xc6\xf7\x53\x98\xa9\x19\x42\xd8\xab\x11\xf2" "\x1f\x57\x95\x76\x76\x50\xa9\x6e\x24\x6c\x72\x44\xf8\xe4\x93\x5e\x9c" "\x01\x34\x96\x16\xa0\x98\xae\x81\x04\x87\xd6\x57\xfd\x09\x5b\xee\xe0" "\x5a\x36\x81\x2f\x39\xf4\x26\x6f\x25\xf4\x50\x8e\x80\xf1\x9a\x4a\xec" "\x71\x16\xf1\xd8\xbc\x48\xbc\x2c\x1f\x0f\x96\xff\x34\xb6\x6a\x96\x5d" "\x42\x88\x52\x76\x6b\x78\xf1\xe7\xeb\x02\x60\xbb\xb3\x55\xcc\x08\x59" "\xaf\x69\x88\xff\x7e\xfa\x0b\x3f\xed\xe3\xd5\xf2\xf2\x14\x7f\xfa\xe4" "\xa5\xeb\x58\xa7\x58\x5b\x59\x62\x70\x33\x4c\x36\x0a\x15\x47\x78\x7a" "\x95\x63\x4e\x13\xd5\x9b\xf5\x3f\x51\xf4\x8e\x75\xa6\xa3\xe4\x8f\x83" "\x48\xf4\xcb\x49\x5d\x96\x99\xdf\xdf\x8c\xc7\x16\x68\xc5\xb9\x62\x25" "\x78\x10\x0f\x71\x63\x39\x4c\xb3\x17\x1f\xc8\xa6\xc1\xe7\xf8\x8f\x08" "\xb8\xc3\xcf\x4b\x0c\xd9\xa1\xbc\x16\xbd\x14\x88\xeb\xe4\x31\x99\xd9" "\x7c\xdf\x4b\xbc\xde\x8a\x06\xa7\x9c\x5a\xf6\xff\x2e\xbf\x1a\x04\xad" "\xd7\x48\x30\xcf\xac\x0b\x94\x65\x14\xb1\x8d\xe2\x49\xe9\x34\xdd\x8a" "\x1a\x96\xfc\xe0\x85\x32\x0f\xa8\x57\xc8\x53\x48\x01\x70\x20\x85\x33" "\xac\xd3\xd4\x1c\x43\x84\xa9\x32\xee\xcc\xd4\xce\x7d\x09\x82\x7e\xfa" "\xe4\xc0\xd1\x9d\x00\xc5\xb4\x89\x43\xc4\xd8\x77\x01\x7b\xe5\x94\x34" "\xda\xe6\xbe\xf7\x67\xfb\x9f\xfd\x07\x3c\x22\x61\xb0\x6c\x0f\x23\xa0" "\xc7\x7a\x5b\xcb\x1f\x57\x38\xdc\xeb\x6a\xbe\xe0\x0b\xd7\xc6\x49\xf6" "\xeb\xc6\x4b\x4b\x8b\x94\x83\x19\xa2\x2e\xd4\xad\xd4\x8e\xed\xda\x8a" "\x2c\xd1\xba\xd6\x79\x9e\x1d\x9e\xd7\x78\xe5\xce\x22\xd5\xfe\xad\x0c" "\xd0\x68\x06\xcb\x4b\x7b\x56\x61\xf9\xdb\x6b\xcf\x9d\xdc\xdc\x9e\x49" "\xe0\xe6\xa8\xec\x98\xfc\x42\xc6\x60\xd5\xd7\x53\x11\xfb\x9c\x9d\x06" "\x07\x46\x11\xeb\xbd\xbe\xa4\x56\x72\xdd\x78\x76\x0e\xd9\x2d\x0e\x95" "\xc1\xd5\xae\x23\x4d\x67\x4d\xc3\xff\xae\xef\x3d\x92\x8a\xa4\xb9\x3c" "\x0f\xe5\x5f\xa8\x86\xbd\x3f\x23\x71\xa5\xbb\x22\xc4\xdd\x6b\x8b\xc1" "\x32\x50\x49\x0c\xf2\x79\xd4\xe5\x6b\x64\x6d\xec\x4e\xaa\x53\x95\x1d" "\x55\xf6\x02\xc1\xf4\x08\x1d\x49\x31\x6f\x6b\xcb\x35\xaa\xd0\x45\x3b" "\x44\xc7\xf2\x66\xe9\x98\x38\x68\x34\x04\x85\x9b\xc3\x72\xd1\xdf\x5f" "\x15\x12\xf3\x55\x58\xb3\x70\x6b\x32\x09\x3b\x72\xa7\x8a\x40\xc8\xa1" "\x88\x85\x2a\x0b\x5a\xca\x11\xa3\x4b\xa2\x31\x95\xcb\x59\x8c\xa5\x95" "\xf2\x43\xc2\x60\x39\x2c\xd7\x93\xb6\x5d\xda\x85\x6f\x81\xbe\x1b\x54" "\xd8\x73\xa0\x36\x64\x07\xac\x26\x68\x72\x62\xd6\xbd\xa6\x93\xe0\x58" "\xf5\x98\xbd\xe8\x0e\x30\x4c\x83\xdd\x0c\x2f\xd0\xe6\x34\xff\x15\xe1" "\xca\x4e\x29\x18\xbf\xa8\xe3\xa6\x26\xae\xe7\xb5\xe4\x45\xaa\x7f\xae" "\x09\x65\x95\xfe\x58\x03\x2c\x99\x3e\xb0\x6c\xe4\x9c\x10\x45\xb1\xf1" "\x32\xf2\xc9\x0d\x6e\x23\xb7\x60\x76\x83\x8a\xd7\xed\x7a\x6a\x74\x24" "\x5d\x7a\xd7\x2b\x38\xbd\xc0\x4e\x45\x8d\x39\x08\xd1\xd2\x72\xf2\x3f" "\xe1\x8f\x68\xad\x74\x6e\x54\x40\xcf\xbc\xc3\xb7\xad\x47\x7d\xcc\xd6" "\xfb\x2d\xb5\x36\xdf\x0e\x4d\x24\x48\x0d\x27\x65\xe7\x24\xca\x06\xcb" "\xde\x7e\x01\xcd\x32\xe3\x66\x81\x79\x6a\x45\x4c\x80\x1a\xdc\x1b\x25" "\xb5\x01\xcc\x4a\xaa\xe7\x78\xf3\x78\x3d\xad\x15\xd1\x2e\x65\x6b\x09" "\xbb\x3d\x8f\x37\xef\xc8\x6c\xc7\xfa\xea\x5e\x51\x91\x39\x02\xfa\xed" "\x79\xae\x59\x73\xf4\x41\x3e\x27\x5f\x78\xe7\xe6\x60\x99\xf9\xe4\x1b" "\xd7\x3a\x07\x44\x5a\x78\x0d\xde\x0b\x18\x93\x08\xe3\xb8\x3d\x1a\x3c" "\xf5\xae\xf2\xd3\xe1\x1f\xca\xd9\x30\xeb\x6c\x60\xeb\xb8\x99\xb2\x2c" "\xdb\xd5\x39\x41\x2b\x23\x71\xd2\x8a\x43\x31\x39\x4d\x8f\x29\xd8\xb1" "\x6f\x94\xff\xd9\x1d\x4e\xb5\xc2\x78\xe7\xf6\xb4\x02\x4f\xcc\x7a\xf9" "\xdf\xde\x1b\x3c\x91\x5b\x06\xda\xe6\x83\x76\x0f\xad\x05\xd6\x63\x8c" "\x63\x89\xfd\xd1\x9a\x9b\x12\x95\x6c\x11\xe9\xb9\xea\x7d\x30\xe0\x9b" "\x13\xd9\xf6\x81\xe0\x12\xf1\xe4\x17\x46\x34\x1a\x61\xb7\x1a\xc6\xc3" "\x33\xb2\x98\x83\xca\x2c\xd1\xaa\xa3\xc0\x2e\x66\xc8\x5d\xe1\xe3\xb2" "\xb7\xe7\x7b\x0d\xd1\x46\x9a\xb9\xdb\x5c\x17\xbe\xb2\xd3\x38\x62\xdb" "\x20\xfd\x77\xde\x68\x5a\x1e\x70\xba\x55\xb0\xd9\xcf\x4b\x2d\x3d\x11" "\x96\x19\x6b\x53\x17\x32\x4e\x5f\x18\x96\x05\xba\xa3\x74\x93\xc9\x58" "\x6b\x7e\x47\x58\x65\xb4\xbb\x21\xb3\x35\xe8\xb2\x91\xb9\xde\xa1\x7f" "\x6a\xfc\x1c\xd8\x46\x18\xb1\x89\x56\x78\x17\x51\x1d\xe8\x21\xa8\x66" "\xa0\x0b\x62\xc6\x25\x16\xb7\x16\xcf\x55\xdc\xf7\xf5\xb7\xd7\x52\x03" "\x06\xfe\x03\xf0\x0c\xc6\x1b\x7d\xc2\x97\x88\x64\x59\xd7\x4b\xed\xb8" "\xac\x1d\x05\xcc\x50\x6d\xb7\x4d\x01\x8c\x87\x7d\xa7\x35\x48\x1c\x31" "\x82\x24\xfd\x06\xf3\x49\xb5\x9f\x69\xb0\xd2\xd0\x17\xc8\x17\xe5\xa1" "\xf9\x34\xd2\x63\x78\x9d\x41\x8e\xb6\x9c\x77\x2d\x92\x3b\x01\xa6\xa4" "\xa6\xaf\xbb\xa4\xa6\x98\x0f\xbf\x7c\xdd\xd8\x4f\x8e\x43\x92\xea\xcc" "\xb9\x8c\xdd\x30\x48\x89\x19\xea\x6d\x49\x2d\x32\xf9\xca\x42\x33\x64" "\x91\x17\x47\x4f\x41\x16\xf6\xca\x4c\xb7\x62\xd5\x24\xc0\xf9\x2b\xbb" "\x40\xd3\xf4\x30\xdb\xd5\x0d\xba\x20\xad\xda\x8b\x41\x70\xa7\x3c\x3b" "\x66\x25\x7c\x41\x23\x11\xa7\xbd\x3e\xa3\xec\xca\x0d\xa4\x7a\x7a\x00" "\xef\x0a\x46\x4e\xe0\xa4\xb2\x40\x2b\x61\xdb\x83\x3f\x3c\xfe\x18\x47" "\xb9\x63\x0d\xe4\x7f\x33\x1d\x57\x5f\x6e\x3c\x6f\xb4\x4a\x90\x21\x70" "\x0c\x6d\x80\x55\xea\x98\x2a\x05\xa5\xba\x6a\x91\xa4\x1e\x74\x45\xfd" "\xba\x7a\xc0\x92\x02\xfe\xe7\x33\xa5\xc2\x16\xb3\xc3\x09\x09\x91\x22" "\x5b\x98\x17\x85\x08\xd1\x98\x58\x32\xf8\xe7\xda\xe5\x84\x82\xec\x0f" "\xa2\x21\x5c\x93\x5b\xd0\xef\x9f\x03\xc0\xed\x3c\xaf\x97\xbf\x4d\xe0" "\x23\x60\x5a\xa8\x53\x5f\x1e\x88\xe8\x41\x47\x1b\xd8\x84\x20\x84\xc6" "\x71\x5a\x3f\xd3\xac\xd0\x7e\xc9\xc4\x3f\x63\x5e\x5f\x86\x8d\x82\xcd" "\xc6\xf9\x42\x4e\xd9\x78\xd3\x9e\x72\xcc\x92\x53\x5c\x26\x37\x16\x4f" "\x15\xe9\xa6\x77\x70\x38\x95\x35\xba\x46\xcb\xf7\x86\x18\x95\x62\x90" "\x88\x72\x27\x4b\xa1\x26\xb3\x13\xbd\x1c\x07\x80\xe9\xd0\xca\x38\x95" "\x6d\x12\x77\xb5\x8f\x04\xea\xa1\xf9\x7e\xd8\xc6\xc8\x3d\x9c\x05\xdf" "\x0d\xf8\xb4\x3d\xa9\x30\x70\x7a\x84\x66\x2e\x48\x0a\x33\xd1\x86\x8e" "\xdc\x9f\xf6\x53\x68\xd5\x1f\xda\x82\x8a\xd2\x9e\xcb\xd3\xb2\xcc\x0d" "\xdb\x0a\xad\x25\x1b\x47\x36\xf8\x72\xba\x5f\x06\x66\x17\xa9\xe9\x67" "\x5e\xd7\xf8\x06\x85\x54\x4a\xf4\x4c\x67\x7b\x9d\x39\xa1\xa3\x53\x98" "\x4e\xa4\xcc\xbf\x36\xd7\x59\xb4\x90\xf8\xdc\xd5\x62\x1e\x57\x3b\xaa" "\xa2\xc0\x3e\xf3\x67\xf5\x43\xca\x5d\x36\xd1\xc9\xd3\x3d\x47\x62\xbb" "\x0b\x1e\x02\xec\x67\xd3\x51\x15\x82\xd6\x9b\x06\xa5\x7d\x15\xf5\x26" "\x0f\xab\x5e\xd8\xd9\x36\x19\x48\xea\xbf\x88\xd9\xe7\x76\xa1\x8c\x5c" "\x4f\x2d\x42\xbb\x46\x37\x38\x61\xb6\x13\xdb\x9a\x91\xcc\xff\x8f\xbd" "\x56\x3d\xdb\x37\xf0\x73\x8f\xa1\x72\x3c\x23\xc8\x5c\xac\x0f\x9e\xb5" "\x3a\x41\xd1\x15\xfe\x03\x39\xee\xd3\x16\x7f\x59\xb2\xf2\xf0\x73\x9c" "\xf9\xc0\xba\x57\x69\xb1\x8a\x21\x3d\x58\x09\xbc\xca\xde\xce\xe6\xe7" "\x81\x81\x1b\xf5\x84\xc2\x2a\x65\x57\x51\x6d\x12\xbd\x58\x42\x0f\x5c" "\x67\xc6\x73\xfd\xf0\x88\x8a\xb3\x1e\xdc\xee\x31\x98\x92\x7b\x5b\x87" "\xa6\x3f\x89\xf7\xa0\x7d\x1d\xa8\xcb\x94\x6f\x0a\x87\xe7\xd3\xbb\x45" "\x5c\x88\x8f\x39\x4d\x17\x69\x43\x78\x44\x6c\x90\x73\xe5\x43\x68\x56" "\x4d\xc5\x46\xb6\xc9\x30\xae\x17\xaf\xcc\x83\x60\xcb\x2e\x31\xd8\x7a" "\xd8\x92\x3f\x60\x03\x3a\xa6\x37\xa3\x99\x70\x73\x98\xff\xa5\x16\x45" "\xab\x1d\x99\x63\xc2\x93\x75\xc8\x34\x74\x60\x04\xac\x16\xd2\x4d\x8f" "\x00\x6e\x96\x74\xe4\x5d\xa3\xd9\x38\xde\x52\x48\x57\xc5\x7f\xd3\x9b" "\x22\x67\x8f\x39\x09\x63\x09\x52\x7e\xd2\x2c\x41\x67\x7a\x65\xa6\x7d" "\xc0\x99\x8a\x8b\xab\xc9\xcb\x68\x8a\x56\x62\x8d\x09\xa7\x32\x77\x3d" "\x90\x19\xd9\x23\x99\x41\x5e\x93\x85\x2a\x12\xd6\x6c\xcb\xfa\x57\x18" "\x37\xb7\x68\x9c\x7c\xc5\x00\x26\xed\x64\x3a\x89\xc8\xf1\xbd\xef\x6d" "\x01\x01\x6e\x6e\x1c\x21\xbb\x77\x9d\xb5\x2c\x22\x54\xf5\xda\xe4\x0f" "\xf1\x73\x94\x3b\xa6\x2c\xe3\x43\xec\x03\x5d\x93\xd5\xc9\x2c\x64\x88" "\x4d\x65\x47\x77\xcf\x69\x95\xdd\x0c\x48\x5c\x7c\x13\x2d\xb3\x83\x76" "\x9a\xe1\xf3\x5f\x19\x80\x65\x4d\x2b\x47\xe9\x2b\x18\x62\xf6\x53\xee" "\xb8\x1a\xda\x4e\xed\x6c\x9d\x0f\xe9\xda\x3d\x7d\xb5\xdf\xb4\xd6\x6b" "\x2d\x57\x66\x76\xbe\xdd\xc4\x39\x4a\xde\x2a\xcf\x55\xf9\xec\x24\xae" "\xe7\xc4\xc7\x71\x38\xe7\x99\xf6\x2d\xeb\x19\x36\x7c\xe2\x26\xa6\x67" "\x15\xda\x51\x54\x79\xb1\x76\xc9\xca\x06\xc7\x39\x56\x6d\x27\x91\x42" "\xce\x21\x63\xb8\x83\x5c\x84\x0a\x3d\xe6\xe2\xd2\x75\xb5\xd5\xa9\x48" "\xb2\x6e\xc8\xfa\xa6\xcf\x32\x2c\x50\x38\xfc\x00\xfb\x0a\x27\xf0\xb7" "\x6b\x5e\x30\x57\x80\xc9\x14\x5e\x99\xfe\xad\xf5\x71\xbf\x8d\x87\xdc" "\x93\xea\x0f\x8f\xf3\xbc\x24\x6b\x16\xd4\xe4\x32\x56\x50\x7a\xbc\x7c" "\xcc\x92\xe1\x13\xa0\x37\xab\x13\x85\x50\x58\xba\x1e\x07\x70\xb9\x0f" "\x52\xe0\x74\x0c\x15\x7d\x68\x96\x3b\x3d\x23\x6f\x68\x14\x54\x58\x93" "\x85\xc6\x12\x4b\xdd\xf9\x48\xc5\xaa\x2e\x14\x7a\x35\x43\xc3\x01\xdc" "\x6d\x82\xac\xb5\x04\xf7\x62\x39\xc8\x90\xb7\xd3\xd7\x6d\xbd\x7c\x26" "\x44\x5a\xb6\xfe\x66\xf9\xf7\x1d\x95\xf4\xf0\xd6\xc5\x15\x33\xce\x4b" "\x05\x35\x3e\xf2\x71\x78\xf6\xb6\x81\x33\x66\x18\x9f\xf4\xcc\x19\xcc" "\x5c\x9f\x7a\xca\x4d\x6b\x6f\x3b\x5b\x21\x3e\x82\x8c\xbf\x8b\x8b\x5c" "\xac\xb4\x2a\xde\x1f\xa2\x59\x4c\xc4\xcc\xd3\x45\x7a\x45\xa5\xb1\x99" "\x26\xf1\x7b\x90\x61\xc9\x07\x2f\xdc\xe9\x6a\xfb\xd3\xf2\xbb\xec\xc6" "\xdf\xbd\xf9\xd9\xb3\xe1\xa6\x21\xe6\x5a\x7c\xdf\x0a\x97\xcb\x02\x23" "\xb2\x20\xb3\x9a\x88\xb7\x41\x4c\xe9\x1e\x5f\xb5\x2f\x3c\x9c\x7e\x10" "\x19\x9f\xfc\x8f\xad\x82\x6d\x40\xa7\x98\xec\xae\xbb\xd8\x88\x1c\x16" "\x05\xf9\x86\xbb\x0a\xf0\x6f\x41\x62\x80\xf6\x3f\x3a\x3c\x28\xd3\x99" "\xd1\x3c\x21\xe6\xd7\x95\x01\xcb\xbf\xcc\x94\x83\xa7\x3a\x93\x1e\x91" "\x35\x88\x07\xfb\xeb\xef\xd3\x9b\x46\x6c\xb9\xf2\x51\xfa\x4f\xc7\xd5" "\xf4\xfd\x2d\x87\xd4\x60\x4c\x97\x50\x59\x3d\x3a\x80\x1b\x96\x30\x85" "\xad\x7a\xaa\x91\xe0\x23\x97\x77\x42\xb7\x28\xd2\x92\xb0\x46\xd0\xbd" "\x49\xf8\x17\x17\xa6\x86\xf1\x00\x96\xe1\x54\x68\x1b\x85\xae\xb8\x1a" "\x26\xfa\x8f\x46\xbf\x3d\xfd\xf5\xdc\x7c\x7c\xa3\x7a\xa3\xda\x37\xe5" "\x3a\x10\x5b\xe5\x93\x56\x40\xba\xff\x47\x64\x53\xf5\x3f\xfc\xf7\x86" "\x89\x4e\xac\x35\xd1\x93\x3a\x5e\x97\xfb\x9b\x6d\x97\x5f\x9f\xbe\x79" "\x14\xd0\x9d\xc9\x48\xd3\x05\x00\x5e\xb4\xab\xa3\xa9\xb8\xcd\xef\xb3" "\x0d\xbb\x33\x00\xf4\x60\x41\xdb\x06\x56\x79\x56\xba\x43\x27\x28\x07" "\x21\xad\xdb\x17\x42\x5a\x2b\x22\x3e\x81\xbc\x41\x46\x7c\xb4\x13\xce" "\xbb\xe1\x68\x18\x46\x8e\xeb\x5b\x24\xb6\xcd\x79\xec\x47\x87\xf6\x93" "\xf3\xc3\x01\xe5\xdd\x10\x74\x7b\xea\x13\xbf\x04\x2d\x6f\xde\x42\xd1" "\x8c\x48\xfe\xc0\xe3\xe4\x34\x54\x79\x9d\xa1\xd5\x50\x11\x30\xfc\x98" "\x91\x7f\xed\x27\xd6\x96\xae\x85\xa3\x9d\xeb\xdb\x67\xd5\xb3\xd7\x0a" "\x82\xa2\x09\x70\x95\x47\x6e\x24\x21\x17\x57\x62\x6c\x91\xa2\x9e\x91" "\x77\x96\x76\x6b\xc4\x01\x64\x56\xc4\xac\xf0\x43\x6b\x6c\x02\x05\x57" "\x78\xce\x7f\x34\xe6\x05\x26\x4f\x7d\x6d\x13\x21\x07\x2c\x4b\xa3\x41" "\x86\x6a\xc6\xf7\x8e\x9b\x99\xa3\x04\x78\xeb\x7f\x09\xa1\x7f\x4f\xb3" "\xe2\x31\x84\xe8\x78\xc2\xf6\x0d\x2c\x18\x61\x71\x85\x00\x78\x41\x77" "\x8c\x7c\x25\x67\x50\xa2\x87\xec\x0b\xbd\xd2\x0b\xd3\x7a\xb5\x05\x38" "\xe4\x3a\x59\x29\x45\x6d\x33\x6f\xb4\x6a\x04\x59\x37\x65\xb2\x69\x2b" "\xa1\x5e\x7b\x71\xb9\x77\x88\x97\x0a\x79\x03\xe1\x20\x88\x21\x10\x98" "\xbd\x35\x61\x32\x86\x2a\x4d\x58\x65\x08\xb4\xaa\xc0\x77\xd3\xac\xd4" "\xf7\x7c\x67\xd9\x06\x6b\x43\x6d\x14\xb2\x0d\x3e\x28\x70\xcb\x19\xcd" "\xad\x55\x81\xde\x2e\x08\xda\x76\x1f\xc9\x57\x55\xc4\x3c\xf0\xdc\x2c" "\xff\x84\xe6\xa3\xa8\xfa\x2d\x03\x90\xfc\xfe\xe2\x85\xa1\x33\xb3\x7a" "\xc7\xb2\xfe\xfd\x0d\x36\x65\xb1\x70\x57\x84\x18\x7e\x22\x85\x79\x68" "\x0b\xe9\x79\x82\x19\x43\x29\x13\x6f\xb7\x2d\x8b\x61\xcd\xea\xa8\x8f" "\x3d\xfc\x83\x5a\xe2\x21\x67\xc0\x13\x05\x29\xfe\x81\x04\x3b\x0e\x1c" "\x3a\xeb\xcc\xb1\xf4\xaa\xdc\x28\xcb\x48\x4f\x85\x01\x58\x50\x44\x39" "\xd3\x89\xd1\xe5\x59\xff\x42\x42\x17\xdc\x03\x1d\x42\x2a\x8b\x7b\x51" "\x73\x1d\xb7\x5d\xc5\x41\xe1\x6f\xed\x8f\xae\x14\xf5\x8c\x1f\x9c\x8d" "\x0f\xb9\x1a\x68\x52\x45\xba\x55\x8c\x1a\xeb\x24\x3a\xa7\x28\xdb\x51" "\xc3\xf3\xaa\x6d\x8f\x7a\x4a\x54\x7b\x8d\x95\x01\x84\x02\x28\x3a\x59" "\xa4\x51\x73\xe7\x69\x6f\x02\x30\x49\x54\xeb\xfb\x43\xc2\x21\x5f\x18" "\x0c\x8e\x47\xe4\x33\xe5\x26\x2e\x27\x9f\xdb\x63\x40\x5c\x81\xb0\xf1" "\x28\xb7\xd6\xa0\x95\xff\x5f\x85\x69\x03\x31\xd9\x4d\x34\x92\x3a\x3e" "\x8b\xee\xf5\xcc\xcb\xf7\xb2\x08\xb2\xa0\xaa\x89\x8f\x9a\x32\xb2\xf1" "\xbb\x55\xac\xa4\xea\xae\xfc\xdf\x09\xac\xd8\x71\xf4\xb8\x8f\xeb\x53" "\x5b\xe8\x7d\xfd\xbb\x5a\xd4\x5f\xf3\xc2\x6a\x27\x65\x23\x00\x11\xd9" "\x0b\xaa\x4b\x5d\x5b\xaa\xac\x55\x19\xf9\x01\x3c\x8f\xd4\x97\xd5\x70" "\x83\x40\x3e\xe6\xeb\x0c\x4e\x23\x42\x8c\xf3\x84\x6b\xd3\x4d\x69\x84" "\x0d\x02\x11\x96\xf9\xa9\xa4\xfc\x10\x10\x16\xfe\x2d\x4f\xbf\x4e\xc2" "\x3c\x11\xe9\xd7\x37\xc5\xe6\xd2\xcc\x3d\xa7\xe0\x98\x1c\x00\xea\x9d" "\xf0\x7e\xd8\x8a\xb0\x5b\x78\x21\x03\x3b\x2d\x31\x1f\x2f\xe0\x52\x51" "\x76\x66\x0d\x0a\x33\xb0\xeb\x23\xa5\x7f\x5b\x1d\x41\xe2\xc1\x69\x8a" "\xc7\xbf\xe5\xf5\x9c\x27\x79\x2f\x89\x9f\xd3\x96\x10\x05\x2b\x70\x58" "\x62\xe7\x98\xa2\x70\x84\x45\x0e\xdf\xcc\xd1\x80\xa1\x3d\x8a\xdf\x80" "\x72\x43\x0e\x93\x05\xf4\x1b\x0a\x67\xbd\x17\x84\xb6\xba\x94\x50\xb1" "\xe8\x72\x79\x4e\x0b\x7b\x55\xb2\x2a\x2f\x64\x9f\x83\x27\x0b\x98\xd0" "\xa0\x13\x76\x94\xfe\xc0\xd1\x6e\xc2\xeb\xf3\x7c\x72\xd9\x39\x8d\x23" "\x1a\x71\xe4\x0c\x91\x24\x28\x92\x9a\x29\xa4\x33\xdc\x0f\xdc\xb6\x97" "\xf6\x4e\x07\x54\x0d\xa9\x20\x67\xb1\xb5\xa7\x73\x5f\xb7\xfb\x8a\xc8" "\xda\x25\x91\xfa\x44\xb6\x76\xbb\xaa\x32\xef\x5e\x6c\xc1\x1f\x1b\x2a" "\xb3\xb2\x62\xd9\xbc\x4b\x20\x82\xe0\x81\xee\x50\xfe\x71\xde\xf6\x3c" "\xf6\xe2\xd5\x88\xbb\x8d\x66\xa8\xda\xa8\xc8\xa3\x0c\xa0\x7d\x29\x56" "\x46\x3e\x1a\xff\xc7\x60\x03\xe4\xba\xcc\x63\x2c\xde\xee\x50\x09\x8f" "\xe8\x0c\xd7\x48\x5f\xef\xed\x6e\xab\x63\x9d\x8c\x42\xa1\x35\x7f\xef" "\xae\x5a\x5a\x77\x9f\xad\x53\x64\x74\xe3\xbd\xeb\xf6\xaa\xb6\x99\x55" "\x2e\x80\x7f\xfd\x8a\x44\x03\x0f\x43\x97\x56\x74\x8d\xee\x9d\xdf\x19" "\xa6\xcb\xf5\xf7\x53\x07\xb0\x3c\x5e\xf4\x18\x5a\x31\xa4\x15\x83\xfb" "\x4c\xa3\x69\x9e\x06\x31\x93\x71\xc5\xd9\x32\xd6\xe5\xf4\xe1\xbf\x77" "\xc0\x2c\x70\x56\x4d\x21\x40\xf7\x51\x0e\x18\x3b\xa2\xfa\x7e\xad\x8a" "\x9b\x8c\xfb\x08\x5a\x9d\x0f\xa7\xdb\xca\x75\x61\xbd\x9d\xc1\xe5\xc1" "\xa1\xda\x03\x22\x98\x2f\xf2\x9c\x0f\xa2\xcc\x33\xbe\xa1\x86\x46\x44" "\x5c\xc5\x9b\x44\x96\x5a\x01\x57\x0b\x7b\x73\x9d\x73\x0d\xf8\xf1\xf2" "\xcf\xe3\x55\x8e\x71\x02\xde\x13\x99\x4d\x67\x45\xef\x8f\x91\x96\x52" "\x65\xfb\xe0\xd2\x9c\x3f\x38\x1e\x1e\xb9\xc6\x32\x42\x96\x2a\x44\x09" "\xdd\xb0\xa4\x94\x6e\xf9\xce\x5b\x0e\xda\x90\xf8\x36\x53\x62\x68\x19" "\x43\x24\x7a\x0d\x87\xd9\xb7\xfb\xbd\xd2\x6d\x49\x02\xbe\x34\x06\x84" "\x99\xb6\xe2\xab\x2e\xa7\x46\x63\x44\x02\xe1\x06\x5c\x8c\xb9\xc3\x2a" "\x21\x1d\x10\xfc\x27\x96\xf1\xa7\x04\x5c\x59\xb9\xcb\xc4\x77\x1d\xbf" "\x56\xa5\xc3\x83\x03\xf9\x39\x51\x19\x4d\x06\xa1\xb8\xcc\xe3\x1d\xd4" "\x86\x9a\x14\x8a\xe9\x0a\x79\x7d\x09\xde\x16\x8e\x47\x97\x4e\xd9\x69" "\x9e\xab\x3a\x64\x24\x78\x1f\x48\x1d\x03\xcf\x10\x46\xdf\x28\xb4\x54" "\xaf\x02\xdf\x72\xc0\xf5\x6c\x69\x33\x43\xa8\x2f\x7f\x38\x3a\xfb\x3a" "\xc4\x52\x20\x0f\xf1\x55\x44\x40\x10\xf6\xc9\x88\xde\x71\xe3\xfb\x6f" "\x07\x9b\xc6\xac\x2b\xfa\xb6\xff\x45\x12\x42\xb7\xe3\xe7\x05\x78\xb8" "\x20\x65\x29\x81\x67\x64\x20\x6d\x47\x11\x5c\xda\x77\xb3\xe3\x56\xe5" "\x4f\x82\x5e\xc7\x45\x01\x7e\xa8\xc3\xdc\xb4\x12\x52\x3b\x75\x4b\x95" "\x1d\x19\xfc\x07\x5e\xc6\x60\x12\xcc\xef\xf5\x1d\xa9\x25\xaf\x90\x79" "\xf5\x47\xe8\x40\xc3\xf2\x77\x42\x39\xcc\xe5\xfd\x65\x33\xf3\xee\x8d" "\x19\x48\x12\xde\x2d\x44\x99\xef\x18\xc4\xbe\xbf\xa8\xd7\x27\x33\x07" "\xd7\xaa\x0a\xc0\x9e\x6e\xbf\xd9\x5b\xa9\x99\x46\xa5\x85\xa4\xbd\x4a" "\xfe\xf8\xbb\x0b\x52\x85\x7e\x84\x15\xa3\x2b\x42\xe0\xa9\xcc\xb0\x74" "\x95\x99\xd7\xa4\x3c\xec\x79\x3b\x22\xc9\x6b\x3d\xe9\x15\x34\xc9\x05" "\x45\x6b\x25\xa5\x97\x21\x24\xb8\x3c\x7d\x8f\x05\x20\xcd\x71\xc5\x54" "\x4e\x49\xaf\xab\x26\xcc\xca\xcd\xb7\xe1\x12\xf0\xaf\x1a\xcb\xcb\x2b" "\x68\x76\x0c\x75\x38\xaa\x6c\x99\x08\x14\xd7\xcf\x7b\xde\x5d\xdd\x61" "\x8b\xfd\x55\xbf\xbd\xd9\x68\xe5\x3e\x28\xf9\x40\x42\xfa\xfa\x27\x96" "\xb5\xbf\x2d\x1b\xe6\x12\xc8\x1d\xba\xfb\xf9\x0b\x07\x28\xb4\xb0\x6f" "\xe2\x16\xaa\xb9\x1b\x88\x98\x78\x0a\xb0\x6c\xff\x75\xbe\x52\x39\xc3" "\x9a\xc8\x36\xdb\xdb\x54\x82\x22\x2e\x61\xff\x59\x71\xea\x49\x2c\x5b" "\x5e\xf5\x09\x72\x0f\xc8\x86\xf8\xa0\x7a\x92\x32\x65\x3d\x42\x7d\x17" "\x65\x74\xc9\x9d\x65\x24\x4f\x16\x18\xfd\xaa\xb1\x09\xf7\x32\xe1\xe1" "\x29\x53\x91\xa2\x5f\x9b\x75\x0c\x97\x61\xbb\xce\xb8\x1d\x31\x6d\x9f" "\x9d\xcd\x55\x5a\xfb\x76\x21\x91\xb7\xe1\x73\xf0\x6a\x4d\x8f\x4d\x97" "\xab\x88\xb9\xae\x19\xf6\xc8\x5c\x36\x1b\x8b\x5c\xbe\x91\xa3\x49\x3c" "\xae\x59\x40\x63\xed\x45\x7f\x3b\xe9\x97\x72\x48\x5b\x34\xd3\x30\x8d" "\xa4\xe7\x51\xe5\x8a\x14\xcf\x7c\x77\x1d\x8e\x5b\xe7\x7f\x88\xc7\x56" "\x7a\xf0\x95\xca\xae\x1e\xb8\x3d\x25\x9c\xea\x70\x9e\xa5\x44\x10\x47" "\xce\x96\xf0\xe2\x1f\xaf\x89\xed\x49\x1b\xba\x5d\x0d\xcc\x6b\xc3\x3a" "\x07\x23\x7f\xbe\xf2\xfe\x67\x14\x47\xce\x14\xe1\x6a\x1c\xae\x43\x61" "\x93\x87\x67\xce\x65\xec\xfe\x0c\x63\xe1\x26\x1c\xce\x5f\xbf\x60\x3a" "\x25\x37\xd2\x1b\x50\xc9\xa3\xa3\xed\x6a\x7c\xf1\x12\xa0\x58\x6a\x65" "\x3b\x43\xf8\x13\x91\x2a\x22\x6a\xa4\x72\x2f\x7e\xda\xf8\xdd\xa5\x55" "\x3e\xfb\x22\x72\x1d\xc7\x19\x24\xaa\x73\xbf\x23\x2c\x24\x39\xb1\xd8" "\x06\xd3\xbe\xaf\x15\x74\x42\x64\x3c\x81\xce\x2b\x55\x1b\x82\xd6\x3c" "\xbc\xd4\x19\x50\x29\xe2\xf6\x3a\xef\x12\x7e\xd4\xdf\x0b\xff\xd4\x16" "\x65\xd8\x62\x13\x51\x25\x57\xce\x90\xee\x54\xfc\xd0\x10\x78\xa6\xa1" "\x90\x85\xbd\xe6\xa0\x34\x35\x95\xf5\x40\xb1\xff\x61\x0b\xd7\xa5\xa2" "\xd6\x95\xbd\xc5\xe5\x08\xcb\xf5\x44\xd1\x5c\xf5\x92\x0b\x3e\x40\x5e" "\xf4\xe1\x0e\x66\x51\xc5\xff\xff\x03\x9a\xdd\xe2\xf8\x05\x14\x3b\x78" "\x91\x61\x88\xfe\xc0\x5c\xad\xac\x44\x3c\x93\x44\x7d\x23\xbb\x25\xb0" "\xa0\xcf\xc7\x87\x75\x4a\x20\xf7\xef\xcd\xee\x57\x98\xde\x93\x9b\x75" "\x8f\x23\x8f\x15\xc2\x3f\x26\x22\xb8\xed\x68\x23\x78\x01\x7c\x8f\x25" "\x1d\xda\x02\x61\xba\xa3\x3c\x62\x62\xd4\x2d\x63\x65\xe6\x8e\x85\xd4" "\x3a\x46\xd9\x2a\xaf\x04\xac\xee\x20\x3c\x09\x48\x77\x55\xdf\x49\xf0" "\x7e\xa1\x12\x97\x82\xb1\xbe\x0f\xeb\x6f\x01\x1b\xb9\x14\x26\x6f\xe2" "\xcf\x53\x61\xc3\x77\xfe\x33\xa4\x91\x08\x9f\x70\x1a\xc6\x1b\xca\xb2" "\xbf\xa3\xbb\xe8\xbf\x7b\x0b\x83\x4d\xba\x1b\xf1\x87\xab\x78\xfc\xa7" "\x51\xb5\x7f\x1b\xdd\xfc\x67\x0c\x80\xd8\x3c\x34\xc3\x46\x1d\x82\x3d" "\x77\x62\xb4\x5f\xf0\xac\xcc\x3a\xf2\x1b\x38\x13\x72\x76\xd4\xe4\xd7" "\xa5\xd0\xa0\x75\x90\x28\x65\xf1\x7f\x08\x4c\xfa\x94\xcc\x28\xf7\x0e" "\xe7\x29\x6e\x21\x64\x01\xb1\x72\x18\x4d\xf0\xe0\x60\xdd\x61\xbe\x91" "\xef\xcd\xbe\xb0\x3b\x4a\x66\x99\xc8\x8a\x16\xeb\xb1\x8f\x3e\x93\x8c" "\xb4\x58\xa3\x77\xe2\x9a\x3f\x3c\xbd\xaa\xf1\x21\xe2\x78\xb6\x91\xc0" "\x2b\x6f\x0d\xc7\x90\x51\x08\x40\xb3\x97\x0b\x1f\x90\x5b\x42\x1a\x1c" "\xb3\x76\x04\x3c\xc7\x51\x1e\x70\xe9\x4c\xc6\x39\x41\xed\x0f\x86\x4b" "\x41\x18\x59\x28\x78\x53\x8e\x12\xe9\x86\xb9\xab\xaa\xf2\xed\x58\x8a" "\xd5\xf0\xe5\xe0\x85\x1f\xfc\x29\xef\x21\xae\xd0\x80\xeb\x6f\x35\xfa" "\x10\x05\x2f\x27\x76\x7d\x0d\xdf\x3f\xea\x5a\x08\xc1\x46\x57\xd6\x8a" "\x9c\x3e\x6c\xba\x42\x2d\x93\xa6\xaf\xf2\x22\xc4\x0e\xee\x9f\x3c\x9f" "\xcb\x03\xa3\x10\x45\x3b\x61\x6a\x80\xc4\x86\x46\xf7\xd1\x96\x43\x37" "\x36\xfe\xdc\xfc\x2f\xf4\xfa\x1a\x43\xbf\x9f\x8f\xc0\xa0\x66\x0c\xf9" "\xf7\x9f\xd0\xd8\xe1\x06\x59\x1a\x23\x19\xcf\xf5\xeb\x0a\x5b\xe5\x78" "\xd1\x78\xe0\xe1\x84\xa9\xec\xa9\x29\x91\xca\x63\xbf\x1e\x9c\x5b\x1c" "\x56\xdb\xa3\xc8\x36\x97\x5a\x74\xd9\xeb\x9b\x76\x3c\xe7\xc5\xdc\x75" "\x3c\xde\x77\xfb\x2d\x04\x8e\x36\x56\xa1\x5f\x9a\xa7\xf9\xde\xa2\x49" "\xc4\xa3\xdc\x04\x56\xb6\x45\x33\x51\x3e\x69\x86\x1f\xcb\x9f\x43\x48" "\xd7\x8a\xcd\x5b\x8c\xe1\xf3\xc4\x12\x71\xb8\x55\x1b\xa4\xd5\x75\x4f" "\xbb\x12\x38\x62\x23\x6b\xc9\x41\x92\xa5\x30\x6c\x29\xad\xb2\xb0\xb0" "\x53\xcd\x7d\x4d\xea\xa1\xbe\x6c\x61\xf7\x5b\xca\x27\xb5\x37\x65\xa7" "\x35\x6d\xd3\x4a\x48\x43\x7d\x5e\x5b\x35\x6d\x48\xdb\x64\x74\x92\x43" "\xfe\xa9\xb1\xf4\x4e\x46\x25\xfe\x7c\xe8\x20\xdc\x9f\x1a\x60\x22\xd7" "\x71\x98\xe6\xe9\x17\xcd\x4f\x5e\x23\x62\x2d\x5b\x3b\x2f\xaf\xd4\xf9" "\xbe\x0b\x85\xdb\x21\x37\x1f\x5d\x35\xc7\xc6\x51\xa6\x16\xa8\x35\x1a" "\x02\xdb\xfa\x74\xf9\xd2\x73\xa0\xeb\x7d\x2a\xb9\xfc\xa2\x54\xbd\x28" "\x50\x9b\x3d\x6f\x54\x20\x10\x8c\xab\xc4\x2d\x9a\x56\x70\x77\x9d\xfd" "\xfb\x78\xaf\xe7\x4c\xd8\x7f\xdf\x8e\x3b\xe9\x37\xe6\xc6\x98\x1e\xb8" "\x81\x56\xf5\xcb\xc9\x1e\x4b\x92\xf8\xd6\x5a\x15\x1e\xe3\x30\x7c\xce" "\x38\x1d\xc1\x89\xc5\x4a\x29\xd2\x1c\x9f\xa9\xf5\x12\xc5\x0d\xbc\x9f" "\x1c\x0d\xdb\x43\xb6\xb1\x0d\x51\x90\xb8\x16\x9f\x9e\x06\xf7\xc6\x0a" "\x21\x03\xc9\xc3\xfa\x3f\xe0\xd1\xca\xb8\x35\x8c\xf4\xdd\xf9\x5d\x5e" "\x26\xfb\xed\x63\x6b\x2f\x1f\x47\x4b\x7d\x10\x42\x6a\xfb\x5a\xa2\x19" "\x48\xf7\x48\x6e\x0d\xf5\x27\x5f\xfa\x6c\x09\x1c\x46\xc3\x86\x87\x03" "\xc4\xe3\x0e\x1a\x15\xa8\xd2\x7a\x70\x8b\x6d\x5f\xa7\xd1\x23\xf1\x52" "\x4c\x22\x1f\xb9\x3b\x5f\x9f\x8d\x87\xb0\x28\x6d\xe3\x8c\x61\x12\xa0" "\x5d\x1f\x07\x70\x69\x23\xb5\x31\xe3\x35\xdb\x32\x6f\xf7\x56\xac\xf6" "\xcf\x9a\x5e\x53\x52\x95\x3d\x11\x2a\x84\x2d\x7b\x2f\x05\xd2\x96\xf6" "\x44\xb0\x1b\xca\x41\x3f\x26\x86\xdb\xde\xa6\xb2\xcc\x6d\xd8\x11\x5e" "\x22\xd8\x32\xaf\x74\x2e\xb8\x01\xee\x61\xf6\xb9\x0f\x93\xd2\x27\xb6" "\x94\xfe\x47\x43\x85\x12\x58\x01\xd6\xeb\x58\x86\x7c\x15\x24\x6f\xaa" "\x6c\x0a\x1c\xae\x0b\x05\xf1\x04\xfb\x2e\x97\x47\x6c\x73\xa7\x91\x85" "\x79\x6e\x0c\x26\xbb\x1b\x59\x52\x7a\xba\x4b\x79\xdb\x6e\xc9\x9f\x16" "\x50\x89\x8b\x99\x6e\x06\x83\x29\xd1\x7b\x94\x73\x0c\xd6\xab\x79\xa3" "\xd7\x7d\x80\xe5\xed\x78\xee\xcc\x7d\x68\x0b\x54\x25\x23\x13\x57\xf2" "\x4c\x46\xfd\x01\x73\x20\x52\xeb\x18\x73\x76\x34\x91\x51\x31\xc7\xff" "\xcd\xb0\xb4\x8a\x35\xd8\x76\x1c\x40\x2f\xf5\xb5\x6a\xa1\xa9\x08\x0b" "\x46\x83\x6e\x4a\x88\x8c\x86\xd7\xa2\x60\xfb\x6c\xc2\xf3\xb9\xf6\x8d" "\x52\x20\x15\x31\x22\x0b\xbf\xe0\xe7\xb2\x89\x0a\x39\x0a\xcb\x33\x83" "\x1f\xa1\x12\x6b\x88\xdc\xeb\x12\x6a\x55\x51\x81\xed\xbf\xa4\x68\x0c" "\xad\xb0\x8d\x38\xab\xe0\x0c\x91\x98\x0c\xe6\x8a\xb5\x82\x74\xec\x28" "\xea\xa6\x97\xf8\xa4\xd7\xd6\xdb\x74\x4d\x8c\x9d\xaa\xc2\x03\x5d\x40" "\xa5\xeb\x56\x5e\x12\xc8\xbe\x5c\x2b\xc1\xd7\x25\xf7\x13\xd4\x5a\x03" "\xac\x14\xce\xaf\x91\xbb\x1c\x5d\xdd\xca\xc8\x75\x53\xb9\xd2\x2e\x23" "\xd7\x38\x74\x2e\x3b\xf9\x94\x41\x2a\xb1\x53\xf6\x6d\xde\xa5\x3a\x35" "\xc9\xec\x19\xc5\x55\xa4\x9a\xe1\xae\xa1\x12\xa7\x0d\xdc\x10\x20\x12" "\x58\x53\x6b\xa9\x3a\xe0\xdc\x7f\xb6\x0d\x51\xff\xbb\xe9\xe9\x6e\xb8" "\xee\xea\x68\x78\xe3\x78\x4d\xcd\x68\x6f\xc0\xdb\x45\x16\x24\x9c\xdf" "\xcb\x9f\x6d\x88\x0f\xdc\xf8\xf8\x6c\xda\xdd\x23\xea\x74\x55\xb3\xb7" "\xe3\xa0\xe8\xaf\xfc\x9b\x61\xbe\x59\x81\x4f\x8e\x32\x17\x5c\x86\x9a" "\xda\xf7\xdb\xb5\xac\xb4\xc9\x94\xe2\x26\x9d\x26\x57\x01\x1e\x87\x51" "\xc5\xc0\xe6\xe9\x7e\x9e\xda\x4e\x8e\x6c\x30\x9e\x84\x2c\x8e\xa0\x1c" "\x20\xde\x3c\x5f\x4f\x63\x72\xcc\x8c\xb7\xcd\xf2\xb0\xe3\x51\x91\x55" "\xe4\xc6\x62\xfc\x85\x72\xc3\x6d\x9d\x3b\x7e\xb3\xee\x19\xe9\x85\xbf" "\xab\x9e\xb2\x0e\x07\x7c\x20\xde\xc4\x17\x2e\x58\x43\x57\xcc\x54\xf9" "\xcd\x49\x74\x2e\x0b\x31\xd1\xfe\xd8\x78\x12\xf1\x9e\xfa\x9a\xe8\x1e" "\xbe\xbb\x02\x1d\xf0\xc2\x80\xaa\x97\x90\xd2\xf1\xac\xb9\x4b\x38\xf2" "\x68\xca\x78\x61\xb1\xda\x63\xcb\xb8\x6d\xaa\xea\xc3\xa5\xb0\x67\xc8" "\x6f\xc5\x32\xa1\xdb\x23\x0a\x29\x57\x85\x63\xf1\x6d\xee\x5b\x42\x67" "\xf9\xd4\x74\xc8\x1c\x9a\xd7\x62\x21\x64\x52\xcb\x3a\x37\xc8\xed\x44" "\xcb\xaa\xb2\xe4\xb9\xa9\x58\x3b\x13\x4d\xa3\xa6\x43\x90\xfe\x5f\x76" "\x94\x68\x79\xa1\x75\x7d\x12\x7e\x6e\x10\xb3\xb3\x04\x2d\xe4\x81\x89" "\x35\x0d\x84\x4e\xde\x16\x13\x4c\x77\x0d\xba\x47\xcf\x56\x48\x3c\xc1" "\x4e\x2c\xfc\x93\xfc\x11\xf4\x7c\xd3\x3b\x06\xb7\x20\xf5\x31\xef\xdd" "\x1f\xf1\x25\x49\x66\xb6\x8f\xc4\x66\x45\xec\x3b\x45\xc2\xa6\x04\x27" "\xe6\x9b\xa1\xd7\x10\xf2\x55\x71\x52\x2b\xa9\x06\x22\x31\x5f\x9f\x0c" "\xad\x33\xf8\xb1\xa1\x05\x3a\x45\xaa\x07\x96\x48\x92\x62\x1e\xcc\x92" "\x56\xb7\xc4\xe2\x17\x16\xe5\x46\xc2\x35\xfd\xb6\x18\xf3\x39\xb5\x5c" "\x37\x7a\x30\xb6\x1a\x9a\xdd\x4e\x3b\x56\x57\xe3\x43\x3a\x6f\xea\xff" "\x5b\x67\xef\x34\x77\x1a\xe6\xd0\x44\x49\xb5\x22\x8b\x6b\x99\xce\x72" "\x37\x99\x6b\x30\x76\x13\xd1\x46\x02\xd7\x6f\x21\xa5\x8a\x55\xcd\xc7" "\x1a\x1f\x34\x8c\xa1\x82\x65\x63\x4f\x09\x40\x12\xbf\x4e\xae\x24\x1d" "\xf6\x34\xd7\x42\x4d\xe5\x78\xeb\x4c\x41\x99\xde\x38\x2f\x27\x95\xc1" "\x7e\xef\xa1\x1a\xc2\xad\x46\x25\xbe\x72\x63\x37\x3d\xe4\xbb\xe1\x89" "\xd4\x2f\xa5\x19\x53\x65\x2d\x43\x33\x23\xb9\xe6\x11\x0f\x00\xc7\xcb" "\x44\xe4\xe7\xdf\x1e\x6e\x1c\xc4\x21\xc5\xcc\x5e\x78\xea\xc4\x00\x98" "\x24\xd7\x3b\x4b\xf0\xa0\x34\x0e\xbd\x88\x3a\xcb\x90\xe9\x28\xf6\x03" "\x4d\x6a\x44\xed\xee\x02\x1a\xbc\x40\x72\x6d\xf3\x58\xef\x83\x42\x93" "\x51\xf4\x6a\xaf\x10\xb6\x3b\x0a\x5f\x4c\x68\xbd\xf4\xe4\x25\xf8\xce" "\x7c\x6a\x8a\xd9\x5d\xc4\x87\x48\x36\xa5\x6a\x29\x8f\x58\x6a\x60\x2a" "\xd7\xb3\x33\x50\xfa\xba\xac\xfd\xa3\x0b\x80\x21\x04\x32\xdc\x6b\x59" "\xcb\x80\x7d\x50\x78\x23\x99\x62\x4d\x62\x4b\xbb\x5e\x75\x9c\x09\xda" "\xec\x8a\xb3\xaf\xbf\xf2\x04\xf6\x2f\x94\x75\x4e\x37\x7c\xca\x96\xb0" "\x0b\xa4\x84\x2d\x52\xd8\xf1\x2a\x5c\xe7\xd1\xdd\x81\xb7\x60\xc1\xc5" "\x39\x2f\x73\x9d\x91\xf8\xbd\xc8\xc2\x90\x09\x0f\xc6\xe3\x22\x1e\xe6" "\x9a\xbd\x26\x48\xb6\xc7\xa8\x18\xe8\xa0\xd0\x4f\xfd\x83\x46\x4f\x7b" "\x26\x00\x2e\x4d\x56\x14\x39\x28\x48\x20\x5f\xc0\xe7\x66\x71\x3e\x4c" "\x65\xf4\x6e\xc2\xf9\xd2\x21\xe9\x8f\xde\xaa\x5c\x32\x9d\x8a\x0e\x74" "\x81\x69\x01\x64\xfa\x1a\xd8\x29\xce\x9d\xd2\xee\xc2\xfe\x92\x23\x1b" "\x33\x41\x5c\x3f\x56\x41\x61\x35\x3e\xa7\xf8\x23\xe3\xdc\x97\xc9\xe9" "\x05\xf4\x0d\x69\x30\x82\xbe\x71\x9a\xff\x77\xb3\xb3\x5a\x83\x2e\xd3" "\xfc\x16\xe3\xbf\x57\x30\x5f\xba\xbf\xbb\xad\xea\x1d\x33\xec\xe1\xf0" "\x5b\xa4\x82\xd3\xdc\xc3\x91\xe0\xc7\x09\xc0\x2c\x33\x5a\x62\x89\xa8" "\xde\xb0\x35\xfd\x5b\x99\xed\xde\x61\xf0\xd9\x36\x63\x1e\x21\x25\x1e" "\xb6\x5c\x1d\xc2\x35\x74\xa7\xa8\xf9\xba\x8f\xd0\xb6\xc9\x58\xee\x14" "\x69\x54\xcd\xab\x3d\xaf\x90\xc1\x7f\xfe\x92\xae\xf5\x39\x0b\x4e\x19" "\xd3\x2f\xef\x46\x9e\x9e\x60\xef\x8e\xa1\x6a\xf6\xb6\x6d\xab\x7d\xe1" "\xd6\xdd\xfe\xeb\x60\x2c\xd6\x9d\x8f\x32\xe4\xd5\xf0\x6b\xfa\xeb\xe7" "\xf0\x00\xd6\x2a\xbc\x79\x3a\xd3\x4d\x77\xd1\x36\x9c\x63\x78\x5e\x93" "\xc2\xff\x20\x57\x69\x58\x90\x11\x20\x8e\xd6\xaf\xfc\x73\xdd\xa9\x28" "\x7b\xc8\xf4\xd9\xe2\x7d\x33\x03\x8b\x69\x94\x31\xf5\x62\x85\xf9\x2f" "\xd9\xf0\x2e\x78\x74\x5f\xcd\xca\x4a\x48\x40\xdc\xfc\x30\x7b\xf8\xf1" "\x80\x61\x46\xd9\x54\xed\x5c\xcc\x8a\x66\xed\xf2\x17\x9e\x2a\x53\x56" "\x62\x4b\x3b\x30\xf8\xf7\x88\x39\xdd\xc9\x94\x07\x94\xac\xce\x40\x29" "\x0e\x5e\xb7\x3d\xbb\x52\xfe\x1c\x63\x3e\x88\xd1\x49\x2a\xed\xc6\x9b" "\x35\x19\x12\xa0\x89\x0b\x63\xed\xa0\xd8\x75\x6a\x5b\x7c\x47\xc7\x40" "\xfc\xd7\x3a\x0f\x41\x9f\xa3\x63\xfb\xf0\xcd\x3f\xcd\xd3\x8f\x0f\xd0" "\x55\x62\x79\x32\xc9\x98\x42\x1f\x08\x6e\xe0\xcb\xe0\x52\x0b\x2f\x2f" "\xd6\xd3\x8f\xce\x15\x75\xa2\xc9\x0f\xef\x9f\x81\xaa\x23\xfc\x7c\x4c" "\x56\x25\xd6\xf4\x6f\xbf\xd0\x2a\xc3\x1c\xd1\x62\x0a\x92\xc4\x3b\x78" "\x84\xe4\xa0\x50\xe5\xef\x5b\xb9\xb8\xf9\x82\x5a\x15\x9b\xb0\x37\x0c" "\x82\x85\x19\xef\x71\x09\x0e\x09\xab\x43\xff\x2b\xd2\xcc\x75\x56\x3f" "\xb9\x07\x3e\xad\xcf\xd8\x69\xf0\xd9\xb6\x98\x6e\x43\x20\xb1\x98\x6c" "\xe3\xf1\x9a\x3f\x5d\xce\x20\x2f\x8c\x13\x75\x77\x26\xe5\xd6\xa9\xfc" "\x9e\x2b\x0b\x35\x76\x25\x36\x2f\xb8\x73\x70\x9f\xb3\x07\xee\x51\xbc" "\x58\x49\x48\x57\xfd\xd3\x81\x1f\x6a\x8a\xee\x00\x86\xb0\xa6\x2d\xa4" "\xe3\x27\xc6\x98\xe5\x63\x9e\x37\x35\x67\xd5\xee\xfc\x76\xe0\xd6\x72" "\x52\x72\x52\x7c\xdb\xc0\x1a\x2b\x40\xe7\x51\x1a\xc9\x86\xe3\x2b\xb7" "\xe4\x85\x58\x75\x6d\xca\x3b\x94\x48\x55\xfd\x9d\xfd\xbb\x23\x58\xa5" "\x2e\x53\x76\x98\x17\xca\xd5\x0a\xf1\x3d\x8a\x59\x41\xc4\x1f\x6b\xd1" "\x21\xcb\x26\x7a\xcd\xc4\x61\xc5\x00\x85\x5c\x6f\x6c\x07\x50\x36\x7c" "\x62\xdd\x32\xfa\x41\x59\x5a\x60\x70\xe7\x28\xf1\x91\x5b\xab\x95\x1e" "\x55\x36\xff\x82\x30\xa0\x60\x8a\xc9\x6c\x2e\x19\xa5\xc1\x41\x52\x09" "\xa3\x77\x4c\x09\x11\x74\xf5\x75\xbc\x93\x7d\x54\x4d\x49\x53\x70\x29" "\x4a\xaf\xfc\x5e\x6b\xe7\x63\x64\xc7\xa2\x12\xbb\xb4\xec\x7f\x3b\xd3" "\x8d\xb7\x5a\x15\x9b\x68\xe2\xb3\x07\x5a\xe6\xbb\x68\xff\xa0\x2e\x6b" "\xfb\x42\x55\x3b\x50\x5d\xa2\x0f\x13\x3b\x28\x55\x57\x2b\x7e\x6f\x8f" "\x3d\xe2\x40\xd9\xab\x1f\xf3\x2b\x3d\x98\x25\xf0\x87\x77\x4f\x49\x32" "\x02\x4b\xe8\x06\xb7\x8f\x05\x9d\x4b\x3b\x40\x41\x4d\xf4\x56\xae\xf4" "\x05\xd1\xcf\xfb\x2f\x36\x04\x83\x4d\xae\x38\x93\x2d\x83\x02\x98\xdf" "\x70\x45\xd4\x04\xf0\x05\xf5\xed\xf8\x10\x61\x85\x08\x08\xd4\x99\x8f" "\x6c\xe8\x0b\xc7\x56\x90\x81\x76\x58\x75\xd9\x08\xd4\xb6\xa0\xed\xcb" "\x43\x43\x17\x54\x3a\x4f\x59\x54\xa5\xe0\xe5\xb7\xc4\xda\x75\xcb\x36" "\x9e\x28\x10\xe2\xae\xbf\x95\x0b\x97\x3a\xd3\x38\x0b\xca\x5d\x0d\xe8" "\x31\x1e\x59\xa6\xed\x3f\x01\xd8\xf7\xc1\xb3\x90\x60\xfd\xdc\x7a\xc1" "\xfe\xbe\x65\x96\x26\xed\x7a\xd2\x7d\xce\xe7\xb3\xd4\x09\xb9\xf8\x4e" "\x4f\x55\xce\xb2\xe4\x62\xf5\x56\x27\x85\x7f\x8c\x48\x5c\x35\xc9\xab" "\xdc\x2f\xa8\x7c\x42\x81\x36\x57\x90\xec\xdf\x19\x71\xf3\xa2\x85\xea" "\x0b\xb2\x03\x8a\xe9\x1d\x92\x77\x29\xf4\xbf\x84\x7b\xf0\xfc\x72\x4b" "\x00\x2c\xb0\x29\xd2\xa5\x7b\x89\x21\x8b\xd4\xa7\x63\xab\x01\x90\x2b" "\x7b\x48\xcb\x60\x9c\xf3\xb9\xad\x8f\xb5\x68\xae\xf0\xce\xff\x20\xc5" "\xde\xf1\xa4\xfa\xee\x11\xd3\x3d\x30\x4e\x22\x27\xb8\x3f\x3a\xb0\x6f" "\x0b\x9f\xa5\x50\x2b\x1d\x9c\x6f\xe2\xa3\x4b\xf9\xab\xb9\xa5\xb1\x39" "\x28\x80\x01\x49\x48\x8c\xea\xd4\x7e\x48\xc7\x54\xc7\x5a\x06\x1d\x5e" "\xa8\xa5\x15\xf7\xf5\x56\x11\xb0\xc0\x48\xb8\x8c\x97\x72\xca\x4b\x1e" "\xb3\xd6\xfc\x93\x18\x01\x99\x0f\x16\x11\xe9\xb1\x17\x12\x23\x52\x7d" "\xce\xcc\xfe\x8c\xfd\x72\x60\x0a\x88\xa8\x48\x6e\x08\x8e\x21\xc3\x0b" "\x99\x7a\xf1\xb6\x0b\x55\xbc\x54\x43\xce\xcb\x18\xc2\xdc\xf5\x4d\xbc" "\xa3\xac\x34\xf1\x0a\xd2\xbe\x9d\x75\x56\x79\x51\x9b\xb6\x74\xb4\x29" "\x04\xbe\x57\x9d\xf6\x24\x36\xbc\xf0\x6d\xe4\xcf\xd6\x36\xd5\x92\x84" "\x0d\x67\x4d\x11\x19\x5e\xde\xb4\xdf\xe6\x13\x70\xe9\xa9\x45\x33\x78" "\x95\x7f\xde\xcf\x21\x15\xee\x00\x82\x24\xfb\x8c\x97\xfc\xd0\x51\xdd" "\xb1\xed\x8d\x04\x19\xb9\x50\xf2\xcd\x08\x5b\xf1\xde\xba\xaf\xb2\xa4" "\x6c\xf6\x5b\xe8\x63\x93\x9c\xff\xde\x74\x17\x97\xfd\xf6\x4c\x17\xf3" "\xb4\x47\x46\x4b\xe0\xe6\xbb\x90\x32\x4c\x4c\x65\xb3\xcf\x66\x95\x8a" "\x15\xd5\x37\xa1\x67\x5d\xff\xbc\x4e\x41\xf7\xa6\xc9\x2e\xd2\x7c\x5e" "\xf0\xdd\x0d\xcc\xe6\xf9\x62\x25\xb4\xe0\xec\xe5\x10\xce\x00\xf9\x61" "\x1e\x39\x52\x15\xe1\x16\x02\x64\x99\xdc\xe3\x41\x7c\xee\x3f\xbd\xe0" "\x10\x6b\x2a\x6f\xbd\x59\x37\x42\x31\x24\xf6\x54\x9c\x22\x06\xaf\xc2" "\xad\x1d\xf5\xbe\xdc\xc5\xe1\x37\x1e\xd2\xb9\xf0\x9f\x76\x57\x65\x89" "\x45\x0b\x09\xdd\x99\x08\x11\xc5\x9c\x3f\x84\x8c\x1a\x4f\xcc\xdf\xe6" "\x86\x96\x89\x03\xed\xff\xbc\x01\x0e\xb7\x3f\x55\xac\x5a\x67\x5f\xa3" "\xdb\x70\xdb\x12\xc8\x26\xc8\xb7\x36\x06\x17\xd8\xab\xea\xce\xfa\x6e" "\x2a\x8d\xa6\x2e\x4f\x30\x45\x43\xcc\x92\x17\xfe\x1b\x0e\xc4\xfb\x04" "\x4c\xa8\x49\x80\x2c\x4a\x14\x0b\x91\xcc\x05\x6d\x56\x6c\x86\x70\xe4" "\x60\x09\x41\xa5\x4b\x2e\xb8\x64\x3f\xf2\x06\xc3\x40\x1c\x0b\xd9\x83" "\x8a\x02\x55\x45\x22\x7a\xe3\xe6\xbc\xb4\x7f\xa3\xdc\xd1\xb4\x0d\x8a" "\x09\x17\xf6\x37\x44\xfb\x1e\xc2\xb7\x22\x11\xc6\xcf\xda\x13\x24\x8b" "\x2d\x0b\x42\x32\xe4\xfe\x70\x15\xcc\x42\xd4\x92\x8f\x07\xca\x91\x61" "\x64\x01\x02\xf2\x22\x36\xcc\xa7\xca\x3b\x81\xff\xc8\x1c\x4f\xf2\x05" "\x32\xb5\x20\x3e\x0d\x94\x77\x1b\x8d\x0e\xc7\x0e\x63\x71\x35\xfd\xbb" "\x78\x8f\xa8\xb4\x70\x4e\x11\xd3\xc6\x08\x3a\x45\xf5\x1e\xfd\x85\x60" "\xc0\xe6\x34\x35\x51\x65\x86\xaa\x82\xea\xa9\x98\xc1\x40\x76\x7d\x3c" "\xe3\x54\x91\xe3\x01\xc1\x2f\x74\x58\x3c\x61\xcd\x4d\x2e\xf1\xca\xa6" "\xfe\xa3\xe3\x53\x63\x7c\xde\xb3\x33\x2d\x96\x41\x55\xc9\xd3\x2f\x82" "\x68\x29\xa7\x17\x4a\xb0\x6c\x44\xe3\x20\x63\xe4\x6c\xe7\x42\xb7\x02" "\x7c\xff\xb8\x99\x93\x02\xb6\x02\x94\x9c\x60\x49\x6a\x0b\xf3\xc7\xcd" "\xf8\x59\xd4\xba\x51\x10\x26\x74\x41\x48\x67\xaf\x61\x4c\xff\xb8\x8a" "\xc1\x77\xdf\xbd\xb6\x13\x1f\x73\x70\xdc\xb8\x51\x00\x2c\xec\x17\x42" "\xfb\x15\x61\x25\x77\x16\x85\x0c\x9e\xd3\xb0\x75\xa6\xc0\x23\xbc\xf0" "\x5b\x5d\x58\x0a\xc8\xe5\xd7\xab\x7e\x5b\x17\x23\x21\x2c\x68\x19\x89" "\xe5\xf9\x19\x58\xb6\x35\xe0\xd0\x76\x63\x45\x84\x92\x0c\x1b\x98\xd7" "\xf6\xea\x0d\xdd\xed\x6b\xe9\xeb\x74\xde\x77\x8b\x3c\x57\xc3\x6b\x18" "\xe0\xc5\x6c\x3a\x05\x10\x14\xe0\x9f\xac\x70\xce\x6a\x7b\x0f\x04\x2f" "\x5e\xec\xa8\xb8\x88\x5e\x50\x0b\xcb\x41\xf6\xfd\x97\x4e\x5f\x68\x88" "\x85\x9a\xbd\xf3\x60\x07\x06\xa3\xde\x9f\xce\x06\x0c\x30\x69\x60\x0c" "\x63\x10\x6a\xff\x24\x21\x04\x61\xc5\xd3\x42\x3f\xa4\xe3\x50\x04\x1f" "\xd1\x66\x90\x2a\xd8\x6b\xdb\xa8\xcf\x96\x59\x17\xf7\xe3\xab\x01\x9e" "\x19\x11\xd8\x01\x3d\xad\x57\x64\x65\x31\x9c\x4e\x04\xb8\x9b\x5e\xe1" "\xd0\x7f\x54\x70\x57\x18\x59\x2d\x6a\xa4\x53\x55\x82\x94\x74\x3d\xaa" "\x8d\xba\x33\x15\x9f\xb0\xe2\x91\x82\x9a\xc2\x20\x56\x2b\x00\x75\x97" "\xe0\x67\xe5\xf6\x58\x41\x56\x36\x73\xb6\x9c\xc1\xd5\x49\xf5\x0e\x9e" "\xfb\xdf\x25\x6d\x79\x7f\xe8\xc7\xd0\x95\x96\xc1\x67\xa4\x5d", 8192); *(uint64_t*)0x200000000dc0 = 0; *(uint64_t*)0x200000000dc8 = 0; *(uint64_t*)0x200000000dd0 = 0; *(uint64_t*)0x200000000dd8 = 0; *(uint64_t*)0x200000000de0 = 0x200000000340; *(uint32_t*)0x200000000340 = 0xff7f; *(uint32_t*)0x200000000344 = 0xfffffff5; *(uint64_t*)0x200000000348 = 0xffffffff; *(uint32_t*)0x200000000350 = 4; *(uint32_t*)0x200000000354 = 0; *(uint64_t*)0x200000000de8 = 0; *(uint64_t*)0x200000000df0 = 0; *(uint64_t*)0x200000000df8 = 0; *(uint64_t*)0x200000000e00 = 0; *(uint64_t*)0x200000000e08 = 0; *(uint64_t*)0x200000000e10 = 0; *(uint64_t*)0x200000000e18 = 0; *(uint64_t*)0x200000000e20 = 0; *(uint64_t*)0x200000000e28 = 0; *(uint64_t*)0x200000000e30 = 0; *(uint64_t*)0x200000000e38 = 0; *(uint64_t*)0x200000000e40 = 0; syz_fuse_handle_req(/*fd=*/r[0], /*buf=*/0x200000006380, /*len=*/0x2000, /*res=*/0x200000000dc0); break; case 9: // writev arguments: [ // fd: fd (resource) // vec: ptr[in, array[iovec[in, array[int8]]]] { // array[iovec[in, array[int8]]] { // iovec[in, array[int8]] { // addr: ptr[in, buffer] { // buffer: {e1} (length 0x1) // } // len: len = 0x56000 (8 bytes) // } // } // } // vlen: len = 0x1 (8 bytes) // ] *(uint64_t*)0x200000000000 = 0x200000000cc0; memset((void*)0x200000000cc0, 225, 1); *(uint64_t*)0x200000000008 = 0x56000; syscall(__NR_writev, /*fd=*/r[2], /*vec=*/0x200000000000ul, /*vlen=*/1ul); break; case 10: // write$FUSE_NOTIFY_RETRIEVE arguments: [ // fd: fd_fuse (resource) // arg: ptr[in, fuse_notify[FUSE_NOTIFY_RETRIEVE, // fuse_notify_retrieve_out]] { // fuse_notify[FUSE_NOTIFY_RETRIEVE, fuse_notify_retrieve_out] { // len: len = 0x30 (4 bytes) // err: const = 0x5 (4 bytes) // unique: const = 0x0 (8 bytes) // payload: fuse_notify_retrieve_out { // notify_unique: const = 0x0 (8 bytes) // nodeid: int64 = 0x1 (8 bytes) // offset: int64 = 0x3 (8 bytes) // size: int32 = 0x67a7 (4 bytes) // padding: const = 0x0 (4 bytes) // } // } // } // len: bytesize = 0x30 (8 bytes) // ] *(uint32_t*)0x200000000140 = 0x30; *(uint32_t*)0x200000000144 = 5; *(uint64_t*)0x200000000148 = 0; *(uint64_t*)0x200000000150 = 0; *(uint64_t*)0x200000000158 = 1; *(uint64_t*)0x200000000160 = 3; *(uint32_t*)0x200000000168 = 0x67a7; *(uint32_t*)0x20000000016c = 0; syscall(__NR_write, /*fd=*/r[0], /*arg=*/0x200000000140ul, /*len=*/0x30ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; loop(); return 0; }