// https://syzkaller.appspot.com/bug?id=875361b1f5c1084e446fe076864b886023710ee2 // 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 < 7; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } uint64_t r[4] = {0xffffffffffffffff, 0x0, 0x0, 0x0}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: // mkdir arguments: [ // path: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // mode: open_mode = 0x0 (8 bytes) // ] memcpy((void*)0x200000000100, "./file0\000", 8); syscall(__NR_mkdir, /*path=*/0x200000000100ul, /*mode=*/0ul); 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 = 0x2 (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd_fuse memcpy((void*)0x200000000280, "/dev/fuse\000", 10); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x200000000280ul, /*flags=*/2, /*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 30 34 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*)0x200000002100, "fuse\000", 5); memcpy((void*)0x2000000003c0, "fd=", 3); sprintf((char*)0x2000000003c3, "0x%016llx", (long long)r[0]); memcpy((void*)0x2000000003d5, ",rootmode=00000000000000000040000,user_id=", 42); sprintf((char*)0x2000000003ff, "%020llu", (long long)0); memcpy((void*)0x200000000413, ",group_id=", 10); sprintf((char*)0x20000000041d, "%020llu", (long long)0); syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x2000000020c0ul, /*type=*/0x200000002100ul, /*flags=*/0ul, /*opts=*/0x2000000003c0ul); 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=*/0x20000000a400ul, /*len=*/0x2020ul); if (res != -1) { r[1] = *(uint64_t*)0x20000000a408; r[2] = *(uint32_t*)0x20000000a410; r[3] = *(uint32_t*)0x20000000a414; } break; case 4: // write$FUSE_IOCTL arguments: [ // fd: fd_fuse (resource) // arg: ptr[in, fuse_out_t[fuse_unique, fuse_ioctl_out]] { // fuse_out_t[fuse_unique, fuse_ioctl_out] { // len: len = 0x20 (4 bytes) // err: fuse_errors = 0x0 (4 bytes) // unique: fuse_unique (resource) // payload: fuse_ioctl_out { // res: int32 = 0x7 (4 bytes) // flags: fuse_ioctl_flags = 0x0 (4 bytes) // in_iovs: int32 = 0x9 (4 bytes) // out_iovs: int32 = 0xf (4 bytes) // } // } // } // len: bytesize = 0x20 (8 bytes) // ] *(uint32_t*)0x200000000040 = 0x20; *(uint32_t*)0x200000000044 = 0; *(uint64_t*)0x200000000048 = r[1]; *(uint32_t*)0x200000000050 = 7; *(uint32_t*)0x200000000054 = 0; *(uint32_t*)0x200000000058 = 9; *(uint32_t*)0x20000000005c = 0xf; syscall(__NR_write, /*fd=*/r[0], /*arg=*/0x200000000040ul, /*len=*/0x20ul); break; case 5: // mount$incfs arguments: [ // src: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // dst: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // type: ptr[in, buffer] { // buffer: {69 6e 63 72 65 6d 65 6e 74 61 6c 2d 66 73 00} (length 0xf) // } // flags: mount_flags = 0x0 (8 bytes) // opts: nil // ] memcpy((void*)0x200000000000, "./file0\000", 8); memcpy((void*)0x200000000080, "./file0\000", 8); memcpy((void*)0x200000000040, "incremental-fs\000", 15); syscall(__NR_mount, /*src=*/0x200000000000ul, /*dst=*/0x200000000080ul, /*type=*/0x200000000040ul, /*flags=*/0ul, /*opts=*/0ul); break; case 6: // syz_fuse_handle_req arguments: [ // fd: fd_fuse (resource) // buf: ptr[in, buffer] { // buffer: {f3 02 13 d0 80 c6 a6 01 d9 31 e7 c5 3f f1 23 1a 1e 75 5c 55 // c5 cf 98 15 4f eb 59 fd 31 5a b0 27 cc 7f 1e 63 25 64 92 75 bc ff 14 // de ef 72 a2 73 14 50 70 32 32 d1 13 d3 b0 a0 23 c6 1b b5 0b a6 00 e7 // 54 20 46 8e 1c 43 74 0b ef 21 bc 8e af f0 9d f7 63 5d 8c e8 ca f3 d8 // 52 35 98 59 4e 4a fc 75 b5 a2 ee 22 48 ba b8 ce 8c a5 74 43 29 a7 19 // bd 5f ab 1a ad 8f 49 cb 9a 6b a3 5d ea ce 5e be 84 55 90 fe f5 8e 0b // ef 4d 78 57 62 62 39 d9 4f 4b 25 c1 2a 32 91 c2 d2 38 65 9a 97 51 ca // c8 8f 11 a3 cd 0c 15 1d ee 88 dc f9 af 28 bf 58 13 42 69 51 5d 1c ea // 3e fb 35 02 a8 d2 a9 58 88 1e 71 ed 26 c8 82 e1 35 ab b5 6b 6b 47 c3 // 2e e5 a2 c1 51 1f a2 25 31 d2 ff 6a f4 a6 79 aa a7 89 89 c8 8f 4a d8 // 31 95 28 9b 3d e2 92 ae 8d 18 7e f7 92 eb 14 7e 46 2c 65 53 f7 7d a5 // 7a 33 c7 e0 68 7b 22 a5 ee f9 52 5a 1e 03 bd 57 af 59 0a 27 5b 5e e1 // 0a 89 00 e9 87 4b 0a 8d c8 4e 77 c3 95 f3 d8 84 b4 ed 9c 11 3f dd 99 // 73 c8 57 42 5e 6a a1 d3 1f 60 95 b5 20 ef c0 fb 4b 51 60 f8 90 f7 43 // 88 4f 12 47 84 54 82 3e 4d 68 a0 e3 12 2f 9b 47 6b 11 14 d6 29 19 68 // d0 ec 51 0f 73 9b 49 3e 10 15 48 25 7c ea 36 49 34 09 5b 57 a1 01 19 // ca d3 84 f6 0c 93 11 39 50 94 17 ca 3b a8 4f 7d 2a a9 8d 45 39 38 7a // f7 10 ff f7 89 11 e4 b2 3a 36 b9 70 f0 a6 14 dc d3 fb 70 89 22 06 46 // 1a 8b b3 9a 24 57 67 b1 0d 0b da c8 84 3a 6b fd ac e8 56 24 f4 73 29 // f8 cb b1 86 da b8 12 41 cf 91 4c 98 65 b6 d6 82 70 ae 06 b9 8b df f7 // df 28 2c 2b f2 37 c0 09 39 c8 55 e5 1e b9 7a ec f6 fe c4 9b 6a 81 af // 3c 06 6b f0 b7 02 5d 30 ca c3 72 1a 1f 07 0e 04 97 2a c0 39 9b 8b 70 // 7b 32 e3 9e 2e 83 b2 44 1c 65 0a 17 ac 47 6a 79 38 e2 76 d9 a7 e1 09 // 47 4f 78 84 b2 82 4d f5 1d 2d 47 e8 54 ae 18 1f ae 76 bc 2a 01 50 60 // bc 28 74 66 fc 19 51 37 c4 3b 0e 85 25 43 1d aa a1 ff 90 df 63 e4 ca // 4b 3c 5a 60 a3 b3 d0 7c 42 ab b4 2c 1d 69 02 8b ec c1 a2 5d 4c f6 bb // d6 86 b4 1b 8e 80 3c 8c 6c bd da dc 3b 6d 24 e4 56 f0 c0 69 aa 1d 38 // d4 b2 8c 6c 58 2e 8b a5 7b 41 b9 cf 5e 83 f5 b4 55 d3 5b c9 f1 a0 03 // 15 6f b8 76 cb c5 51 16 df 1a 97 c2 1f 9d bd dd b6 6b 6b 4b 0b e4 af // 97 ac d7 00 68 46 dd ba 57 44 c6 5a 6a ef 3f e4 94 12 27 02 a8 3a a4 // 37 1c ba c5 3d f5 d6 ce a1 d6 6f 04 57 fb 32 52 9a a9 16 18 1a 14 6c // 3f a8 45 b8 b5 13 ba f3 b1 23 16 81 9c 1d 3e 50 85 25 4b 9b 3d 13 fb // 89 b1 bb 16 99 38 bd e4 f0 0e 06 f2 44 59 61 fd 74 b9 cc d4 fd 30 9d // 82 79 d4 95 96 64 5b c4 e5 e7 97 20 a7 64 36 d6 57 89 14 4c 74 e2 0b // 5d 87 96 f4 ae 6e c3 26 01 ea 42 9f 7c e1 b4 20 31 30 00 7b 35 75 41 // 06 94 b8 f8 ab 88 98 8f ac 83 94 bb e1 00 96 5e 4f 33 23 5f 26 1c 1b // df a7 c1 da c0 8d cb 59 5d 57 d9 45 45 df e1 22 8d f0 fc 49 43 cf 45 // 75 22 f9 fc e1 96 a2 32 d1 97 9d c9 6b 55 3c c4 02 3b f0 0e 30 a5 b8 // d8 e6 2f 95 97 94 19 39 bd 45 f7 24 cd de 3b ca f7 73 6c b0 97 47 80 // 45 dd e3 78 41 8c 81 97 68 d2 4c 4c f7 b3 3d fc 9d 11 00 99 ca 8f a8 // 36 c6 11 a2 77 d7 aa 8f 05 a8 ed d0 25 3a bf ed 8a 59 4c 50 7a bf 07 // 9c af b2 ee ce 2e 6e e0 c3 3b db 90 f3 07 ad 70 41 b8 50 ec 5d 98 a5 // fc 87 29 e0 29 f8 78 70 1d 21 ce b7 49 a6 3c 28 51 6a a8 83 0a e3 ed // 07 32 3d 64 80 f6 5c 4e fc 94 2d 3d 47 0f 36 2f 4e 78 4a b4 fa a1 61 // 2a 75 0b b9 54 79 31 0c 39 5e e4 15 98 99 10 34 86 0b 3c 78 4b fe 0f // 00 94 11 43 1a 0a dc 0b 4a 9f 30 e8 5c 31 42 27 8d 44 73 57 f5 ed 4d // ca 30 de 72 2d bb 75 21 97 5c 09 e0 4c 24 67 c1 84 6f 3d 97 eb b3 71 // 72 98 7f 97 53 47 ed 15 6a 1d 06 01 4f 07 35 80 90 f1 e0 8d fa c6 c9 // e9 c5 24 f5 19 97 f2 65 b5 c0 11 c4 c0 bc 73 ae 8d 60 35 50 8d ce 41 // 67 5b ce 84 a8 aa 3f 7e d3 b3 a4 b5 48 b5 bd 3d 04 4e d3 00 c1 3b de // ae b6 43 90 f5 e8 47 48 85 8a 06 af 30 f3 8d bd e8 5c 83 8f ca 02 26 // 95 ec 2d 80 27 47 35 30 17 43 f0 98 5d 41 c5 d1 15 0d 3b 5c 62 e4 7a // a4 02 c4 6c 31 63 f5 e4 8c fb c1 73 08 18 d9 89 dd e7 7d e1 78 ea 20 // 13 b2 85 5e a0 2d e6 f9 c8 c8 b9 3a dd 9a e7 db 92 d8 da 5f cb e5 ad // d5 de 4d 4c cb e7 13 6f bb 5e 16 f5 9e 1c 2f f9 9a e9 fd 85 c9 52 da // 22 5e ad c7 ba 48 a0 11 ed df bb 0e 30 b6 bf 27 6f 52 e5 28 85 e0 fa // f8 38 0e 43 34 3c 07 1f b9 cf b5 ca f9 c3 01 12 46 ec d4 7e 05 eb 0c // 76 6c a4 85 22 62 b9 44 54 9c d9 87 df 42 57 2e 4a a7 10 63 4c cd fc // b0 7d 40 9b 6c 32 99 1c db d6 d5 23 d7 1d a7 fb 7c dc c1 77 65 dc d8 // f9 51 bc a6 e1 3f 1b 36 9f d2 81 0a 15 26 55 3b 51 df ae 61 09 6c 89 // 2c ef ef 7b 79 02 35 f3 cf 1e 43 0a a3 3c cf f8 77 8e b9 83 06 d7 b0 // 39 c9 dc 70 7e 4e e9 1a f7 4e 49 75 35 af d6 6b 8f 6e be 72 69 98 43 // 26 54 38 7a 6b e5 b0 23 cb 0f 9a 4e 97 a9 ea 4e e8 28 59 00 db 32 0c // 61 4a d5 25 2d 60 86 bf de d2 63 bf ce f7 a3 de 8e 34 7b 17 6d 6e 1a // a9 f5 65 30 d4 9a 2c 66 2b e1 ff 09 1f 75 7c 96 1b 36 30 17 37 80 63 // 99 6a 24 59 65 79 60 01 ba 22 77 ca 53 d4 65 5c f6 34 b7 f9 22 d5 01 // 89 c8 84 25 70 55 29 a6 9d d5 e3 41 9b 11 c1 a7 14 cf fb c8 f2 84 e7 // 86 a7 d2 f9 5e 3e 5a 7b 15 cd 66 71 15 3d 80 53 09 48 1b d6 88 2c 15 // f0 a4 7d c0 70 a6 2d 4e 70 f6 4b 2a f3 70 e4 4d ef 23 0c db 2e b6 4b // c2 4a b3 23 ed d8 a6 bd 74 e7 75 95 92 cb 9e 6c b2 49 61 2a ee c5 4f // d1 9c 80 12 66 90 d0 76 85 01 93 b2 b5 d0 55 f2 84 9f 3b bd 0f ea 55 // b6 16 c5 27 72 18 1d 7f 19 16 ba 67 7e 6c e9 8a 6d 53 0c b9 15 4c 20 // be a1 90 7a 67 27 14 30 57 6e 6d ae 6a a4 4a 2f a4 9d 34 ba 19 15 00 // d7 3f d2 58 58 8e 3a fd e7 a8 48 56 03 e3 b5 ab 87 d3 b6 49 28 a3 3f // b0 eb 75 a1 03 58 09 61 18 80 6e 0e 44 02 bf 4b 65 91 f3 1e 26 0b 91 // 99 dc ee e7 f4 2f 5f 32 00 35 52 72 63 37 df bb 96 40 22 bf 5e 3d 1b // ed 11 9e 7a 39 2b a3 3a e7 cd 2c bf 27 10 1e 78 60 bd 0a 6a 49 9a 18 // e6 23 61 bc 85 4a ec 7a f1 e9 c0 92 dd 1e 7b ed 2a 3a 19 f2 22 25 c6 // ea 41 6b 36 e1 fa 37 c7 bc 40 13 85 14 45 33 f0 ac 7e 7f a8 fa b0 eb // d3 e7 1c 42 f8 f6 45 51 91 28 f0 05 b2 a9 75 02 cf 51 f4 cf 2a 81 18 // a7 4b 38 05 29 cf c2 30 d8 c8 4e 32 99 ba 0a 20 4a e9 14 61 b7 e9 d0 // 53 e7 72 90 ba f9 b0 c8 6f b4 2a 4b 34 6c 91 01 3b db a4 0b df cd 37 // d1 8e 00 22 5b ae 87 73 ad ad 09 63 35 b8 db 42 dd c8 ba 0b 81 0f 89 // 28 85 5e 09 53 98 1b a6 73 f5 d9 8e 10 8f b6 c6 fe 6a e9 fa 46 80 d3 // d2 95 72 bc 40 bb bb 3a aa 1b 22 8a ca 10 d0 ce d7 f5 eb d5 fb 17 f0 // 00 54 0b 16 be 5f 0d 25 2f fd 35 72 51 69 13 d1 80 c7 75 c0 ba 01 9c // f7 3e aa e9 10 79 8a db 98 71 f2 ae c7 de 93 29 12 f6 2a d4 a3 7f 2b // b6 ed a6 ee eb 83 3c 2a 22 9c 01 bb 2b 15 8f 0b d9 56 8c 65 63 46 4e // 51 a5 bb 11 f8 59 36 c4 02 4d 64 56 f3 cb a2 ba 8d 14 aa b2 35 bb 0b // a6 d3 33 14 d3 f1 c5 f3 9f 3f 69 50 12 57 9a a0 b1 01 f7 29 a9 10 62 // da c0 89 6b 43 d4 ae 82 a0 bd 3a 99 20 80 19 ac 0f 26 92 ea dc 06 91 // be 8f 11 7c 81 a9 60 70 69 4b 13 9a 5b 35 ca 54 d1 e5 a4 90 72 9f 0c // 6a 85 c6 f6 e8 d1 eb 24 34 23 83 8f 45 bb 3e 3e 07 55 be b3 95 83 83 // 52 62 0e 80 c3 38 a7 ae 33 bb 14 63 fb 99 1a ff 87 f5 9a 9d 43 a3 3d // a3 af b7 cf 8f 83 35 36 79 26 5d 59 02 4d 6f e7 5a f1 06 d4 53 78 ce // ee a1 87 3e b3 4e 23 8f d9 d2 d9 69 ea ec 42 90 b7 ba 67 48 67 27 3d // 5a ad 6d 04 9c d5 09 e7 da 9c ad 50 e0 3e 86 bc 4b 81 18 83 b3 09 dc // 6c b1 e3 ad 60 ed 0c 1f c8 08 7f d8 f9 f2 e0 93 3f d4 18 57 5e bd 17 // d3 9a e6 de e8 51 87 3f cf 86 80 23 a3 79 1d 3f 05 fb ee 98 65 57 4b // 38 1a 27 d9 5f dd b6 16 bb 03 55 61 64 32 e4 c7 62 4b ee 97 a7 a9 9f // c7 a4 e1 0a 7a 4c 75 08 96 a3 b7 17 5c 90 6d b4 14 4d 3c 79 b5 18 36 // d4 1f 56 56 e6 be 65 74 e2 ac 34 89 87 a6 31 57 5b aa 45 b5 4d 24 c1 // 4b ff 6a ee a5 5f 1c 78 b4 0e 92 b8 26 48 52 36 25 c3 d3 bd 7d b6 22 // 9a fa 09 1d 7a d4 94 ae b2 42 58 2c 11 56 2f 90 0a 64 89 cd fd 62 e4 // 72 d6 fc 25 3d 26 46 a8 55 30 fc aa 75 e9 50 f6 7b 51 c3 97 d8 77 53 // b3 b3 e5 26 2e dc b6 c5 4f ce 81 36 41 80 eb df ee d5 cc 2d a9 61 61 // 45 91 52 87 2b 48 51 de 72 aa 99 a8 ed 84 c1 c8 05 2b 41 1d 21 3a 42 // 49 d3 99 0d a4 3a 8a c3 3a 3e d3 b4 21 72 b4 18 10 d7 dc 68 a5 e2 da // 95 9e 10 e5 8c e5 7c 7a 87 b2 cc 86 de a7 30 9f f7 60 b7 e5 d0 e7 9b // 89 a2 ca d5 d9 d3 89 8f 61 21 78 3e 9c 93 6c 34 fd d2 b2 f0 61 ab 75 // 94 ae 50 f1 29 c9 cc 00 f6 75 0f 8f fb 46 b7 a9 d3 10 72 6d c2 e4 38 // a9 2d b4 ac 02 91 ff 6c 52 64 87 ef de 21 aa fc bc d6 a6 d4 39 f5 4b // 1d 4c cc 3d 7e 56 5e b9 b4 54 cf 18 9d 24 c7 c7 55 4e 8a 28 82 e7 35 // e9 0f d0 5b 9f b6 50 b4 b4 3e 94 d8 45 46 2d 81 e0 6f c0 c3 06 2a 80 // 7e b0 38 72 05 19 72 d9 07 77 ed 0e 47 1e 1d 0a 81 80 04 87 f1 ed d4 // c0 34 61 a9 59 64 78 14 38 b8 2a 62 a5 de 55 4e c0 9d a1 4e c3 e9 53 // c0 dd d8 47 a0 7e da 0c 0c 4f aa da 61 be 25 71 1a 78 34 8e 4c d4 65 // 3f da eb dc 57 3a aa 87 c7 ff 0f fd 5b 70 7e 2d 9d 13 ac 75 df ed 88 // 52 7f 1a 36 83 02 1c 38 b5 57 09 87 bf ee fd 2c 41 55 5e c5 d8 19 54 // 4c e2 42 e0 81 ee d3 57 38 73 d5 c2 99 d4 0f 83 16 d9 9d ef f9 99 aa // ff 8b 6c 71 14 25 f6 6f c4 82 56 e8 6f 86 e4 ed 1c 49 0d f8 e2 a5 18 // 45 c0 2e 7b 96 36 74 f1 0d 8a 35 f4 73 b0 20 d5 7f 3a 7d 4f fe 99 3c // 33 b9 81 87 68 3f dc 36 cd 55 f3 24 ae 6f e5 7c 55 9d 80 e5 fa 0e f2 // 33 be dd 81 85 d5 17 91 cb 4a d2 8d aa 1c c3 b3 f4 01 fe cb f6 45 bf // 1d 11 96 32 d1 0b b3 8c 2f 70 bf ae a5 3d 9f 11 68 52 6d b5 0d b3 4a // 78 de bc 4b a2 4d a3 ec 23 7d 61 55 5b 3f 4c 77 da c2 2e d5 e0 15 6b // 57 cd 7c bd c8 9e 1e 97 ad 0f c2 ff 15 fc cc 7a 8f 87 90 8c d8 91 f2 // 16 0d 79 c5 50 b1 6e 43 98 7a fe ac a4 a7 5b 07 c3 a5 95 87 49 65 7f // 78 f7 da 84 52 c2 9c ce 9c ac bd 90 60 bf d7 50 07 01 e2 f8 f8 01 33 // 2f 8d 5f 6e 5b 85 7d c6 20 f6 6a 88 4b 18 e7 41 24 91 2f e0 7f 91 70 // 66 13 0c 80 c1 82 55 6c 6b 31 c4 f9 52 7e 7c a4 6d 2d 49 51 f6 57 2c // 31 77 69 24 1a cf 4b 4d 16 4d 88 f4 a9 45 b5 54 b4 49 67 2c 36 cd ec // 5d f4 13 cb 3c f2 2b b8 49 b4 18 37 74 47 92 5e d7 54 4f b1 ed ad b2 // 3c 5e 3b 9f 32 2a ac 70 36 bc 84 b9 e2 24 75 08 13 38 d7 10 e7 db f4 // 3c 81 50 b4 12 35 fb d6 ff 43 0d f6 61 e1 82 fc 5f 82 c1 be b9 9d 84 // b1 24 cc 78 48 b1 1a b9 29 33 be 8e 89 ce d5 88 5a 58 66 37 5c ad 29 // 9f 05 08 85 3e 1f d1 6a 24 39 ec f0 02 91 1c 39 b6 04 28 59 08 da 02 // 02 4c 20 b4 5f 91 40 45 8e 05 6d 01 24 dc 53 2e 42 32 79 f3 47 ab 9d // 67 c4 5a f5 3e 82 49 b7 4a 32 48 98 b8 0e de ef 45 8c e6 c1 2e ab 9e // 8d 17 07 bc cd c1 fd e5 e2 8e b6 2c 62 62 5c e5 3b fe a3 13 50 3c 21 // b1 d4 a3 0c 8e 5f b3 e8 10 de 70 10 c2 0d 1b 54 d1 ff 78 21 3d d5 7d // 8c 65 07 fe cb a7 e8 58 5d 0b 4d 48 ea 7d f6 a7 f4 b7 49 9b c9 b9 ea // d6 0f 43 f3 0e ba f4 ad 4c 12 5c 54 ec 0d ac 24 5e 03 a7 d6 0b d9 28 // 4a 8c e9 c3 81 a4 9a 5c 5a e9 20 a0 30 0c 83 12 b3 fe cd fc 5b 50 84 // 4a 69 90 3e 65 be 94 05 bf c6 c7 ac 95 5a 57 6c ea a2 05 bc c3 1d 29 // 9c 5f 6b 02 ce fc 94 9d 0e 2e 06 b8 e8 94 27 aa 67 1f 4e ca ff 1a 24 // c3 96 4c d4 73 ee 3d a6 a1 61 6d ef 6d 74 a7 b7 2e 7d 1f db 99 94 53 // 5c 35 ce 64 c7 22 16 64 a7 ce 8f 04 03 f0 8e db 28 6a 38 5e 94 78 b9 // a5 14 9f 0c e8 73 38 85 2c 35 4b 9d c1 1e 43 05 90 d6 2f f5 27 fa 8f // 99 db e7 dd c6 73 00 7b f3 57 9b 30 af c7 07 91 84 13 f6 70 f5 6f 77 // b9 f1 76 4a b6 15 29 8e 57 d6 1f 74 22 16 97 99 4e 5d 1c 5e 3b bd 44 // 5c de 2a 4f 52 98 9b 6a 77 db 41 18 31 de 4c 47 ff 74 ba 82 07 2f e3 // 59 06 39 75 17 e6 be 85 7b 1a da 97 11 99 9e 97 b8 eb e4 40 8b 7a 03 // ca 45 37 70 e8 e9 e3 de 3b 01 8b 70 6d 45 69 b7 de 62 34 e8 83 b4 ea // 4e 15 7d 99 42 d4 5c c1 d4 65 05 87 a8 b0 c5 43 a4 a8 86 e6 da ed a9 // 9a d2 ac 9b 3e 52 e1 21 d4 60 9a e3 80 0e 83 4a c3 7b 46 ee d2 b4 a8 // 25 a6 e2 25 35 a0 46 58 1d fb 6e 63 ed ac 25 5b 28 2f 4f ed 95 b1 ea // 7e 73 6a c2 e7 5f 24 5e e4 19 0c 91 cf 82 ef 9a 17 15 67 ac b8 3f 92 // 89 c8 a3 86 0e cd 97 3a dc ca 68 bb 82 6a 70 4b 93 e2 49 6b 93 aa 15 // f6 26 f9 6b b3 58 bb 3c b7 40 4f c9 7a 5b 95 e4 ce cb 35 3d 5f f7 c3 // 81 f0 86 71 5c 3c 1d 26 92 fd a0 93 b9 a3 0c 2b cc 27 3e 9d 8f 3d c9 // 60 c2 d3 82 3c b2 10 38 b4 61 ec d4 09 cc c4 11 2a 1e a2 36 48 7b 45 // 20 3e 70 81 f5 8f 33 cd 9e c1 1c a0 1e 8c 7d ed c9 5f f6 31 4c e0 bb // 6b 8c 4f 9f 92 d1 e4 1b 1a 34 2a 6c fc 5e 06 fa c8 95 34 50 5a 2a 16 // c8 45 28 f0 fe 6e 61 86 35 79 5e f9 8d f6 6d 2e f7 d6 ad 4c 63 fd 45 // 4e d8 2e 6f c5 fd 2f 36 0e fa 5d 70 73 ab 23 31 ce 66 42 a1 7b 77 df // f6 28 10 5b 65 e7 b6 41 a8 5a 84 69 50 33 07 39 ce ea cc 19 aa 95 b9 // b7 93 24 e1 99 f6 9e 70 61 0c 74 8b 49 8e 22 2f 46 2f c0 f5 6e 91 5f // 1c dd 95 fd a2 b8 c4 28 4e c4 bc 68 4e 37 e9 43 9a e2 c4 46 d2 5f 78 // 6f 0c bd 28 05 bb 25 e5 b9 19 0e d9 5d 99 ba 02 09 12 28 b2 2a f8 af // 0a 21 81 95 08 d9 25 b8 3f cd d4 00 89 f9 a1 dd 70 53 70 dd a3 bb 54 // c2 1f 43 5e 42 73 04 6d f3 17 ba 01 e6 9d c7 c9 db 6d 26 ca 3a d9 1b // 98 07 a4 3d 75 5c fc ba b8 7d 39 59 ff 40 16 7c 44 31 9e 36 4f 30 47 // 2a f4 e0 8e 58 90 fa 80 27 66 02 93 76 f2 40 b8 9a ef 49 d4 25 42 61 // 0f d0 b7 9d 05 fd 56 94 5a c4 a1 1d fa b2 d3 2f b6 79 16 07 09 4e 6e // e3 98 61 ba 4b 10 5c 25 fc 95 3a ed d7 8e 08 35 cc 4e 81 b2 f9 f4 ef // f8 8f f3 74 7d a6 6f cd 70 46 e8 e4 78 ae ec d6 db ba d3 64 c3 fa 45 // 07 5e 4b 8d 52 6d 36 1a b5 d0 8a 4d 81 21 ff de 0b f2 53 21 0e 5a ee // a7 ad e7 2a fb 2b 61 b3 4c aa 3a 41 af e5 d1 8a 9e 26 af 94 4f a5 be // 7f 31 ae 89 54 a1 98 ef 8f 13 d4 5a 9f 2f 18 a3 d4 aa 92 eb 8c 4a da // 66 59 97 26 5c 37 48 70 53 9d 4c 67 dd dd b7 20 08 a6 c4 7d f6 b4 6d // ed 48 60 cd 6c 9f f4 fc 82 f8 6b 66 9d 47 65 0a d3 fe 59 49 ee a1 90 // 19 53 9c a1 fe 2e 9f 88 a8 af a0 83 02 a5 f3 b6 35 c0 b7 c2 25 0c ef // 83 9e 9c 34 bc e0 ad 6b eb 65 10 31 8c c3 cd 4b 28 1f f2 27 29 d7 26 // 2d 0f 74 11 22 65 35 79 eb 89 08 b9 02 52 fe 36 71 2c fb af e6 77 4b // fe a3 24 dd c9 92 f9 ac a8 6c 18 3a 23 4d 47 05 11 dc 82 b1 d8 4b 13 // 33 ea cc 21 c9 97 24 98 e1 7c a2 5a a0 13 b5 33 2d 9b 4b 0e 77 52 05 // c6 76 dc 83 63 99 25 77 b6 38 51 dc b8 09 00 92 ea ae 55 dc cc 99 bf // 39 8f d1 8d 6f a6 8f 64 29 99 ec 5c 57 d0 4a 07 31 62 bc 61 a8 7d d8 // 0b 40 36 96 11 e6 1c 6a 09 ec ad 4e 7d 9e c4 37 3c 28 8f 19 13 a9 46 // 31 f6 f3 f6 e8 9d 05 64 58 78 2a f9 7b 9c 95 10 1b 84 1f 1d 79 be a5 // f7 82 99 6e 9c db 76 d1 9f ee 07 47 13 99 a7 c2 21 9a 45 38 d7 cd 42 // 4a 8e 05 ae b2 f5 18 c4 46 d3 06 c7 7c 6d 8e 7b be 9f 0e f2 56 99 93 // d5 a5 6e df c8 9b a2 00 20 54 db 89 eb 6d f4 f7 b9 50 ae 04 a4 9c 2a // c4 2e 75 ce 48 9d 1e 31 e3 1f 82 88 b4 d7 79 7b eb 73 d0 ab ec ed d3 // 1e 00 7b 8f 30 32 38 70 a9 fb cf 8a 73 2d da 18 0d e3 f1 35 06 6c 0d // cc 24 6e 47 a1 9d b3 01 68 0d 73 80 cc 79 05 21 67 26 44 1f ff 2d 1d // 7e a7 03 4d 1d 86 10 d3 8e e5 6d 8b 64 54 4f 87 1e cc 62 cd 34 d1 6a // e8 93 73 92 be ab b6 7c 75 39 1b 59 71 a3 f8 48 c8 2f cf 3f 1f 76 1c // 99 df dd 57 16 ed 87 81 23 e2 fe e1 21 43 3e 50 5d f3 ff c2 cc 05 c3 // ce 28 40 7e ae fe be 2e be 66 a0 02 a5 37 5f 12 f6 02 42 79 28 3b e8 // 69 40 9d 95 81 11 f5 fc bc 61 37 26 f1 87 38 eb 3e 10 3f 80 1f cd 81 // ff 1d 69 53 e6 0a 71 1f e9 74 2c 88 84 99 2b 8e ea e9 05 8e dc fb 47 // 5a 73 b6 31 a5 04 b2 02 8c 1b f7 f2 4f 74 07 7b 52 8c 9d cd 98 0f 26 // ad 90 01 0b 17 67 e2 60 b6 23 1a 75 a6 ba ca 6f a6 a3 43 ce 17 55 53 // b0 53 39 c9 af b4 a3 80 48 6b 9e a3 80 0e f1 47 f4 33 af fe 1e ce a5 // e7 ec 72 c9 c4 ce ab cd 63 1b 31 11 a2 48 aa 18 1c 3f 8a 20 85 de 59 // 46 51 3a de 34 27 f1 84 f8 60 76 3a e5 79 83 e5 31 88 64 78 32 c2 b6 // ad ac 71 b2 5a b2 fb 15 10 e5 cc a1 c2 66 54 e3 a8 a7 dd bd 02 aa a8 // 40 d4 bb d1 8b 51 0a 7a 7a e7 f2 ec bb db ac 0f 39 20 36 7a 1a 20 37 // 5f 09 d4 d5 6e 9d 63 f2 80 9e b2 6c 5a eb 94 05 b8 0b 00 24 53 e2 30 // 55 4c 5f b4 7d d3 c9 75 2c 20 e7 62 2e 26 86 f9 6e 75 72 db 09 4b 8e // c6 b4 0f 9b b1 6f 3f ec 15 d8 22 2c 33 bf 9a 66 11 09 b7 8b c3 e1 b1 // 4b b4 3e 91 47 ca d8 8a 2b b8 fd 14 6f a1 a9 64 f8 d6 06 d2 db d5 73 // 54 79 f5 1f 75 c5 40 c5 48 bd 28 fc 1c 5a 90 94 f2 06 95 34 b7 ca 87 // 7b ac 36 14 be ee c3 75 ca 5b b5 3e 11 64 73 ba 37 a2 fb d4 fc 0e 9f // cf 4f a4 0a ef cf 37 c4 bc d7 b0 bd 66 8f 40 49 33 6f cd 7e a9 ce d6 // 5e c0 d0 28 a0 65 e4 5d 49 78 91 8b b5 90 0f 26 d0 be bc ad 2e ff 0b // 70 86 f0 46 12 9b f2 fe 53 ed d6 b0 c7 ce 35 a3 e4 cc b2 5f 0e cd a8 // 6d b0 e6 90 93 ea b7 10 ce bb 1f f1 c4 f9 24 07 79 53 17 91 37 97 de // a6 51 6c 4b c4 15 8a 68 cc 86 95 ca b2 f0 45 fc ef e6 c9 2b c9 88 93 // 4b 06 3c 7e 4a 26 d4 df bf d9 dc 28 9f 69 53 6e ea c4 1b 07 ea 7c 01 // b0 87 aa 46 e3 b5 a4 1e 7a 26 0f 02 4d 5a a8 b3 25 bb f0 a4 d6 18 d8 // b9 9e 3b ef b9 4b 1f 14 80 ad ce 89 46 8b fb 82 af 97 30 fc 51 18 63 // eb 38 8e 0b 4e e2 0d f3 96 1c 53 0d f9 d0 b5 6e 07 39 1a cc a5 25 e1 // 8a 8f 93 07 5a 6a d7 74 31 09 81 87 bb 0e c3 8e 54 ff b8 71 35 9a 38 // 5e c6 22 34 c5 0a 89 2e bf eb 83 d1 13 a0 04 54 62 75 31 28 7d 51 6d // 74 d0 e4 c5 b7 43 83 f1 27 7b a5 11 50 b8 b3 f1 d0 b8 6f d7 f5 41 2b // 43 db 0d 48 03 3c f6 7e 3f 65 ad aa 9c 19 7a 3e 9e 93 43 03 e7 44 69 // 54 2e 50 ce 63 d7 54 8d d3 10 03 c6 58 76 c2 6e af bb 1a 03 62 d5 65 // 4e 8e ee 7f 9c 20 86 e5 d6 75 5f 36 ae fc 33 94 c0 c4 f1 c3 e3 56 a0 // 5b 03 91 5a 54 9c d2 74 44 74 4d 5e d0 29 08 bb 12 7f 03 7d 49 d2 7a // 3d 0b 09 be 18 cb a5 63 6f 99 dd b7 c5 b3 b5 74 f9 2c a3 c4 5c a9 85 // 29 63 42 13 6a e0 5e ba 82 e6 ba 8e 4d 1f eb 0d 8b e2 dd 78 ea 6d 23 // c9 c9 e7 2d 83 f3 58 d2 b9 fa 06 1a 65 7f 6d ec ba e6 fe a5 5b 61 a2 // 44 9d f3 c7 f2 3e af 78 32 87 60 b6 54 3a e9 3b 76 cc 00 55 d7 f3 6a // b8 5e 1b 2e 2a 11 37 73 45 59 d9 89 44 76 d7 7d bf 25 c4 94 f7 ea 7e // 9c 5f 23 e3 74 55 5c 64 b8 11 5a 22 42 d1 d3 82 e6 61 ba 20 c1 f4 49 // bb be 79 ff a0 9b f4 ce 5f d9 55 13 ef 13 e4 70 14 92 2a 8f a0 04 a4 // 5f 1e 55 8d a8 b2 3f 86 c3 9c 6d f2 83 18 83 47 61 21 f9 29 58 4a af // f2 68 35 cc 84 12 41 82 1d f1 93 6f 5e 14 59 83 c9 2f 02 92 50 4a ab // 5e f7 ca 5a 23 07 c7 ce 4d d4 23 f8 82 6d a9 de 78 2d 31 1b 8c a0 53 // f3 57 58 28 e1 ab 71 6e d6 7e 4b d8 9e af 94 29 87 9f 2e 51 19 69 20 // 9b 9d cf 42 41 c3 1e 1c 34 2f e9 d8 e3 b2 e5 e7 da 92 4a 0c c9 c1 99 // cd 3f 9c 63 1f 1c c8 dc c3 35 39 a5 ba 0c c8 96 c3 b0 97 5b d9 2b 11 // 49 0d c4 2a 6d e2 f5 88 37 bb cf d1 9e 1f cd 95 88 b9 28 43 ba 8d e1 // 52 8b 6c ab e9 4a 31 9e f8 0c d1 da 38 7e fb 88 0e 27 e7 37 0e 4f e4 // 0d ee 2d 96 41 5e 50 e8 4a 9f 41 26 ba c0 f3 d4 35 97 cc 46 e1 fe 85 // 81 99 fb fb 8f 4d 43 56 8b f4 fd 82 c4 a3 db 68 b3 71 10 8e 9e ac 7d // 8b 28 7a 18 54 5c e7 73 fb fb 6f 0e 72 a0 ad da 34 41 a1 17 44 04 05 // fa 23 4b 8c ff 5b 2b 6d 76 db 4c 73 7c 63 75 37 83 37 21 f7 6d 17 26 // 42 17 ba 79 a1 90 41 93 d4 0e a8 17 4f bb 8b d1 9e 89 54 31 79 24 43 // 90 12 66 40 3b 8f 26 2d a8 bd da 7b b8 8e 3a 8c c0 10 35 2e 2f 0b 6b // 5e 77 6a 3d ff 76 52 75 66 f7 3e 8d a3 30 71 b4 0c b4 1c f8 04 a7 11 // dc d3 7b 2a dd ad 73 8d 03 e1 8b a2 71 8b dc 24 d0 59 ce cd 45 3a e9 // bc 80 62 b2 5f 37 16 2d 42 38 e1 35 b5 3d 6a 9e 9a 9c d2 9d 93 97 12 // 26 8e cb 84 f7 c6 98 0f 0b 08 9b b7 15 60 d1 1d 41 b0 a0 71 7f bc c1 // 5e 01 a2 ba 79 fa 9e 26 72 f9 22 5f f0 dd 55 fb b7 ff 02 2e b0 5c 95 // b3 a4 5d b1 a1 76 55 a3 54 75 8a 04 46 27 f3 8d 9a 7d e9 c1 c4 b3 e0 // 4b b5 57 7c 8c 0e fb eb ab e4 24 36 e8 9f 77 2b 01 63 e4 40 10 e7 1b // e7 9c d8 26 34 04 de 6b a6 8d 6c c2 96 36 64 69 60 58 a7 84 a6 8e fa // 86 40 17 ce 71 a1 57 d0 b0 b6 3e a1 a1 27 7f 51 8f 76 8b 65 b1 77 86 // 75 3b d1 f7 6d cc b2 3f dd 34 c1 91 66 ae 48 58 6b b3 71 ff cc 5b 31 // 50 1f 4f 67 57 68 05 92 95 eb 1a af b4 12 df b0 95 31 36 9e b3 55 38 // 13 be 76 88 e8 c8 7e ce c5 73 4c b3 8b 60 ab 2a fd 8f e4 c0 72 67 7e // 22 70 8a e5 9f f5 98 43 32 03 4e c7 42 b5 66 5b 7f c8 43 7f cf 57 94 // ae 25 0e 95 86 2d 3a d5 52 63 f3 11 f1 55 6b 0f 50 63 2b 7c 2c df 76 // 0b e3 01 46 30 d4 88 2c e0 14 35 35 f9 bd a3 9a 6b e1 6c 35 1e 11 39 // 2d d6 3f c6 40 26 95 3c 0a 08 b8 29 46 22 5b 12 df 55 3a 0d 36 9f 52 // 4e a2 82 3e 54 c4 13 8b 7f 8b 7a 25 3d f9 c3 21 4a e4 8b 7e 8c 88 10 // 96 89 51 e8 ee 61 3e 4c 9e 13 66 8f f0 ba 9a b2 9e 88 e9 19 f0 70 63 // 45 22 d2 ab 82 06 bd 4f 47 31 ad 3c 56 6e 46 d9 c8 47 a2 eb b9 3b f7 // f4 c9 8c 98 93 e9 48 fa a3 e8 c1 d0 15 4a a2 d9 22 9e 9a cc 60 78 96 // c9 f9 b0 7e b8 e8 c5 8e 85 af 15 ac e7 d1 d5 db 4d fb 17 c8 9c f5 92 // eb 41 02 49 0c 23 16 bf 16 e7 48 44 54 fa 00 b4 56 58 4f 2f d2 e3 f2 // 43 c0 1b 77 a2 24 8a c7 2c 40 3b 5a c8 ea 8e 1e 11 af 51 a8 22 30 17 // 35 c3 fd c0 6f dd b8 51 b8 85 84 f7 b6 fc ea 0f 2e e9 42 ca 95 ec ed // 5a d7 79 cf 64 29 71 66 ed 84 cc 21 d5 21 58 85 12 a3 65 3c c5 74 c9 // 20 57 cb c3 2a 83 dc 18 55 82 68 d2 50 8c f2 52 aa d4 9c 50 87 9b 8f // 80 bc 94 98 61 0f 43 41 a1 58 35 0d d7 6b 58 be aa 84 08 78 bb 7a 6f // 37 f5 33 49 58 03 0d 5f 3b 23 f6 d7 3d bd 02 ae 9a 3a 81 dd f0 13 0d // 1b 79 94 6c 5a 4d d1 b4 0f f9 7a 25 d3 a9 1c a2 ac ce c0 f1 cc 3f 8f // 53 8d fb db 1f 3c a7 fe a1 16 49 66 36 96 4f 82 28 fc 79 fe fc 37 33 // 7d a0 47 6e f0 b9 b0 69 fd b5 6f e8 93 41 41 41 11 2b 35 19 53 b9 6a // ee 8e a0 47 fd d1 98 1e 66 c9 ee 00 8a c4 15 f0 6f b5 ee 21 ce 40 d7 // 72 46 83 43 77 47 74 c9 8d 32 86 2c 58 d9 0a 12 b3 47 d9 b7 21 29 a1 // c1 38 25 79 a4 57 f8 2f 60 3b 97 d9 db 8a 5c 2e 9a 78 70 5f 05 56 52 // db 0b 85 e2 6e b1 e6 c9 54 4e 2a a5 ec 82 51 a8 79 d3 e7 55 d6 65 24 // 40 c0 6c 2f dc 1d 36 fb 7d 2c 38 bc 07 9b b5 f5 09 73 20 af ec 3d 28 // 18 bd 95 24 d7 ed 51 27 52 25 40 a7 ed 6a 0c 6a cf 5b 60 e4 d0 0c de // a2 da 19 0e 4e f3 36 bd 0a 64 4a 69 da 92 9d 1a 1e 4c 0f db 34 47 f5 // 44 8c 0c d2 25 62 ca 9d 8b fa db e3 a3 4a 7a a0 bb ed 7d be fe 37 e8 // b0 b4 83 d5 a3 ba f2 4d 6b ec e2 11 43 20 68 bc b3 43 76 01 2d 6b ea // d7 6a 9d 34 e0 8c 26 59 9b de 8c 1d e9 dc a2 49 1d ac 53 c5 89 86 b9 // 7f b9 a8 89 6b d7 35 5a 9f 64 6c 8e 48 69 23 0e 3b 06 40 eb a6 e6 6a // ca 03 98 06 a4 0b ec 0f 3b e2 e4 c4 80 65 f0 48 a5 d3 44 e4 14 cc 9a // 0a 1e 1c 7d a9 e4 55 77 10 21 4d 66 d8 5e 16 2d 6d 6d 54 3e 01 37 3d // de 29 e5 fc b3 a6 23 f7 90 9e fc dc be 36 4e 97 07 69 5b 4f fd 8e 93 // c0 7e 1f 3f d2 4b f5 d3 d1 d0 53 e9 c6 2d 61 b9 5a a9 3f 14 ac 20 cf // 85 48 d3 85 63 20 af a3 3c b6 7c 01 26 31 bb ad e3 5b 14 3a ed a8 3d // 04 b8 6b 31 12 45 c8 2d 4f f2 dd b8 3f 16 96 37 6f 03 24 70 5d 12 90 // 25 8c 43 a9 77 81 f8 23 9a 30 2a 28 e1 71 7f ea ac fd 4c 19 fd a3 03 // 9d 6c 04 e5 0e b2 86 7b 80 0f 56 9b db 8e 29 c8 2d ed cc 79 3c 42 08 // bd 35 90 b3 df 56 90 c7 d1 fe 21 f4 70 20 17 ef 24 eb bb b4 d1 89 a4 // 2d 29 cd 95 b2 a8 b1 57 db 64 78 34 7f dd c6 53 1a 82 ed 52 aa ba 29 // 27 32 36 fb f6 eb 65 28 ad 69 98 36 e2 7f bb 97 06 2a de ee 8c 91 13 // e1 29 82 b9 63 18 1f e6 fd 80 5e 56 58 93 0a 4d 4a e2 09 60 a1 40 55 // 08 53 a5 26 91 19 d3 f7 d2 9b df 85 b4 ff 20 15 99 23 c6 14 30 f2 c5 // 99 4c 91 23 38 02 ed 8c f5 2c eb 12 08 8c a9 fc 3d a3 4d 87 44 60 7b // 4b 36 cf 1f 70 8f 9a 34 0f 3b d6 96 06 f7 22 0b b8 fb 43 03 a9 12 61 // 81 13 5d 20 08 eb 24 0d 53 b4 bc 02 00 57 7a d7 32 13 e9 be 85 d2 97 // 9a 53 90 64 92 5d 84 bc d9 98 78 3e f0 5a a2 88 04 7a da c4 31 11 45 // 3c 25 f9 0f 07 06 14 07 59 00 4e bc b1 13 5a 1d 9f bd 4e 28 fe 68 ce // 05 a6 1b 71 94 fa 35 81 7a bd 7d 04 cd 1a ae 33 e2 51 f2 2e 43 59 87 // 37 b6 2b 59 62 d5 e5 bb bf 1b 4f 96 f7 09 0a 03 75 b9 6e 40 7a 3d 2c // 69 d4 5f 03 e8 80 ea 5e 1c 89 de ac 14 fc d8 0d dc 24 af e4 d5 16 37 // a1 1c 77 0c b7 bf 34 85 13 22 b8 e0 62 68 76 24 10 b4 1e 74 90 0c c9 // 98 11 0a b2 38 88 9e df 2c 26 0b c7 69 2c 8c a9 8b 18 8b ee c5 cc cc // 34 04 d3 0d 64 bc 7f 95 3e 08 47 8d 23 ee 9d fc ad 0d 2d 38 1a 96 c6 // 8f 4d cd 16 6e d3 c9 4a 6f 8c 69 bd 4a 79 b0 ec 6e cb d1 52 b7 35 6d // c6 81 1f 9a e0 ba b5 72 cb 88 46 51 85 a8 7a 83 e1 e4 c4 e8 d9 7e 38 // 42 7f ca a1 74 fb e2 bd 00 d0 fb bb 12 5d 06 2f 12 e4 f4 45 46 93 c2 // 11 51 90 f7 52 37 c8 89 9d 0b 76 96 54 dc f8 3f 35 96 f4 e5 00 2c ef // 7a c0 ca f2 10 17 9a af 7c ce 84 88 84 b8 21 fd bc c1 af 41 19 e4 2f // 5e 9f 0d 7d 62 a9 fe dc 50 71 91 79 5d 71 09 43 fb cf 38 21 ee 6c 49 // d3 4d 54 de c0 8f 69 9e d3 52 62 82 b8 46 72 a1 d2 7f 0f 03 38 dd 5d // 15 0f b8 41 cf fa 08 f7 d4 fc c2 76 35 87 ff 37 6e c9 30 09 21 14 75 // 9a 1f ef ed 83 8c e6 f0 3c 39 88 1c b6 53 a6 a7 07 6f 46 62 ca fe e9 // 8c a2 6b 31 d2 2c 1f 5c e4 00 d5 7b 09 1e 67 a4 ef 10 1c 20 33 ec 99 // dc 01 b6 8b ac a5 62 4e d0 27 61 1d 5c 6b 6e 1c b6 96 cb ed 28 75 f4 // 25 53 e0 6a 51 f3 da d0 31 50 18 6a 91 5f b5 de 8f f5 fb 3f c4 cd ab // dd c1 ed 4b 38 c2 37 24 e7 71 ac e7 e7 64 b7 37 7b 64 9f 06 fd 63 9f // 56 77 c0 df 50 b9 15 d8 65 67 d1 fd 3d 45 fc e4 cf d7 ff 96 98 d8 5d // ab c2 45 c5 c7 61 71 3c 10 1b b0 ac 56 a4 fd c8 3c 18 2f a1 96 06 90 // 18 68 d1 ec 4f b2 3c 68 5c ee 29 89 63 6d 98 e2 72 f5 58 da 8c c9 57 // 9b 0c 55 3d fc 03 13 e4 04 d0 ee f0 1d 2c 51 4a 75 29 20 06 f4 a5 05 // 9f 6e 62 fa 1f 53 1a a4 da df 85 66 63 04 bb 5d 2f 41 21 06 d6 4e ab // 59 98 c1 7c 87 92 d8 35 19 52 99 03 05 64 dc 94 c0 11 76 d5 53 00 13 // e4 57 ff 82 d1 99 2d d4 bb 71 ad f9 47 76 d0 44 10 7b 14 c3 56 d0 03 // 47 a0 2c a4 3e 65 37 f1 ea bc fa c2 19 9c 69 7c e3 44 bb 66 91 6f 86 // e0 05 0f 71 4e 12 43 2e 02 41 d5 93 fe 52 e5 02 db f3 07 e8 72 f8 bf // 96 af 1a 1c bd 11 a1 9f 49 c6 40 ce 1f 9f 16 b5 4b 44 fe d2 d2 67 dc // 43 5e cf ff 80 15 26 2e a2 33 7c 2c eb 47 b4 30 c4 d7 ef 63 bd 24 56 // c2 5c d2 eb 43 5c 01 b9 b1 80 76 c2 e9 b3 ed 3d e6 29 8a ab 1e e1 ec // 6c f9 45 2d 63 54 2c 9e c9 71 4a cf f1 33 93 7e 2c d7 e0 a5 39 e5 34 // 62 c3 0f 7e 69 48 35 47 72 e5 f1 cb df aa ec f8 ec 05 93 fa d6 b2 4b // 9d 3b 20 07 3a af a6 5e f7 29 ef b8 7c 52 b0 0d 4c 57 51 9e ed 92 fd // b8 80 e5 f7 a9 ec a9 6d 29 5f ac 1b eb ea 24 02 c4 f5 76 00 5a 80 bf // 00 4f 66 fe 98 1f 25 19 29 75 55 4b 55 81 79 ea 8f 73 5a 22 f0 ec 9e // 74 c7 c7 6e 2a ff 53 c6 f2 80 25 a7 86 d1 29 10 84 d0 cf 98 6d dc b7 // a3 cf 55 ef 83 fd 8a 91 29 a5 16 de c1 72 24 13 a0 a6 42 95 c1 fd 9d // ae 81 60 07 2a 0c aa 66 0b ec e9 be 5b a4 d3 24 04 65 c1 e9 62 bd 56 // e4 f0 e5 c3 3e 06 79 b2 f0 13 62 9e 44 aa ee 10 e0 47 f5 82 0c e4 a2 // 1c f4 80 6a cf 52 e7 54 44 b9 be 06 a2 ce d1 e5 c2 0f a1 65 60 15 23 // a5 28 1d 95 75 04 fd 7a 16 78 e9 20 62 96 04 0f bf a1 24 2c 3d 66 f0 // 53 e8 4b 11 d5 d1 b3 62 5b c6 b4 a3 c9 93 ce ed f9 ef 08 4e 89 56 b0 // 9c 7f 0a c2 6a b6 99} (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: nil // entry: ptr[in, fuse_out_t[int64, fuse_entry_out]] { // fuse_out_t[int64, fuse_entry_out] { // len: len = 0x90 (4 bytes) // err: fuse_errors = 0x0 (4 bytes) // unique: int64 = 0xa5 (8 bytes) // payload: fuse_entry_out { // nodeid: int64 = 0x1 (8 bytes) // generation: int64 = 0x3 (8 bytes) // entry_valid: int64 = 0x7 (8 bytes) // attr_valid: int64 = 0x2 (8 bytes) // entry_valid_nsec: int32 = 0x68653094 (4 bytes) // attr_valid_nsec: int32 = 0x2 (4 bytes) // attr: fuse_attr { // ino: int64 = 0x4 (8 bytes) // size: int64 = 0x100 (8 bytes) // blocks: int64 = 0xfffffffffffff000 (8 bytes) // atime: int64 = 0x1 (8 bytes) // mtime: int64 = 0x8ec (8 bytes) // ctime: int64 = 0x9 (8 bytes) // atimensec: int32 = 0x1d (4 bytes) // mtimensec: int32 = 0x2 (4 bytes) // ctimensec: int32 = 0x6 (4 bytes) // mode: fuse_mode = 0x0 (4 bytes) // nlink: int32 = 0x7a41 (4 bytes) // uid: uid (resource) // gid: gid (resource) // rdev: int32 = 0x80 (4 bytes) // blksize: int32 = 0x5b (4 bytes) // padding: const = 0x0 (4 bytes) // } // } // } // } // dirent: nil // direntplus: nil // create_open: nil // ioctl: nil // statx: nil // } // } // ] memcpy( (void*)0x200000002140, "\xf3\x02\x13\xd0\x80\xc6\xa6\x01\xd9\x31\xe7\xc5\x3f\xf1\x23\x1a\x1e" "\x75\x5c\x55\xc5\xcf\x98\x15\x4f\xeb\x59\xfd\x31\x5a\xb0\x27\xcc\x7f" "\x1e\x63\x25\x64\x92\x75\xbc\xff\x14\xde\xef\x72\xa2\x73\x14\x50\x70" "\x32\x32\xd1\x13\xd3\xb0\xa0\x23\xc6\x1b\xb5\x0b\xa6\x00\xe7\x54\x20" "\x46\x8e\x1c\x43\x74\x0b\xef\x21\xbc\x8e\xaf\xf0\x9d\xf7\x63\x5d\x8c" "\xe8\xca\xf3\xd8\x52\x35\x98\x59\x4e\x4a\xfc\x75\xb5\xa2\xee\x22\x48" "\xba\xb8\xce\x8c\xa5\x74\x43\x29\xa7\x19\xbd\x5f\xab\x1a\xad\x8f\x49" "\xcb\x9a\x6b\xa3\x5d\xea\xce\x5e\xbe\x84\x55\x90\xfe\xf5\x8e\x0b\xef" "\x4d\x78\x57\x62\x62\x39\xd9\x4f\x4b\x25\xc1\x2a\x32\x91\xc2\xd2\x38" "\x65\x9a\x97\x51\xca\xc8\x8f\x11\xa3\xcd\x0c\x15\x1d\xee\x88\xdc\xf9" "\xaf\x28\xbf\x58\x13\x42\x69\x51\x5d\x1c\xea\x3e\xfb\x35\x02\xa8\xd2" "\xa9\x58\x88\x1e\x71\xed\x26\xc8\x82\xe1\x35\xab\xb5\x6b\x6b\x47\xc3" "\x2e\xe5\xa2\xc1\x51\x1f\xa2\x25\x31\xd2\xff\x6a\xf4\xa6\x79\xaa\xa7" "\x89\x89\xc8\x8f\x4a\xd8\x31\x95\x28\x9b\x3d\xe2\x92\xae\x8d\x18\x7e" "\xf7\x92\xeb\x14\x7e\x46\x2c\x65\x53\xf7\x7d\xa5\x7a\x33\xc7\xe0\x68" "\x7b\x22\xa5\xee\xf9\x52\x5a\x1e\x03\xbd\x57\xaf\x59\x0a\x27\x5b\x5e" "\xe1\x0a\x89\x00\xe9\x87\x4b\x0a\x8d\xc8\x4e\x77\xc3\x95\xf3\xd8\x84" "\xb4\xed\x9c\x11\x3f\xdd\x99\x73\xc8\x57\x42\x5e\x6a\xa1\xd3\x1f\x60" "\x95\xb5\x20\xef\xc0\xfb\x4b\x51\x60\xf8\x90\xf7\x43\x88\x4f\x12\x47" "\x84\x54\x82\x3e\x4d\x68\xa0\xe3\x12\x2f\x9b\x47\x6b\x11\x14\xd6\x29" "\x19\x68\xd0\xec\x51\x0f\x73\x9b\x49\x3e\x10\x15\x48\x25\x7c\xea\x36" "\x49\x34\x09\x5b\x57\xa1\x01\x19\xca\xd3\x84\xf6\x0c\x93\x11\x39\x50" "\x94\x17\xca\x3b\xa8\x4f\x7d\x2a\xa9\x8d\x45\x39\x38\x7a\xf7\x10\xff" "\xf7\x89\x11\xe4\xb2\x3a\x36\xb9\x70\xf0\xa6\x14\xdc\xd3\xfb\x70\x89" "\x22\x06\x46\x1a\x8b\xb3\x9a\x24\x57\x67\xb1\x0d\x0b\xda\xc8\x84\x3a" "\x6b\xfd\xac\xe8\x56\x24\xf4\x73\x29\xf8\xcb\xb1\x86\xda\xb8\x12\x41" "\xcf\x91\x4c\x98\x65\xb6\xd6\x82\x70\xae\x06\xb9\x8b\xdf\xf7\xdf\x28" "\x2c\x2b\xf2\x37\xc0\x09\x39\xc8\x55\xe5\x1e\xb9\x7a\xec\xf6\xfe\xc4" "\x9b\x6a\x81\xaf\x3c\x06\x6b\xf0\xb7\x02\x5d\x30\xca\xc3\x72\x1a\x1f" "\x07\x0e\x04\x97\x2a\xc0\x39\x9b\x8b\x70\x7b\x32\xe3\x9e\x2e\x83\xb2" "\x44\x1c\x65\x0a\x17\xac\x47\x6a\x79\x38\xe2\x76\xd9\xa7\xe1\x09\x47" "\x4f\x78\x84\xb2\x82\x4d\xf5\x1d\x2d\x47\xe8\x54\xae\x18\x1f\xae\x76" "\xbc\x2a\x01\x50\x60\xbc\x28\x74\x66\xfc\x19\x51\x37\xc4\x3b\x0e\x85" "\x25\x43\x1d\xaa\xa1\xff\x90\xdf\x63\xe4\xca\x4b\x3c\x5a\x60\xa3\xb3" "\xd0\x7c\x42\xab\xb4\x2c\x1d\x69\x02\x8b\xec\xc1\xa2\x5d\x4c\xf6\xbb" "\xd6\x86\xb4\x1b\x8e\x80\x3c\x8c\x6c\xbd\xda\xdc\x3b\x6d\x24\xe4\x56" "\xf0\xc0\x69\xaa\x1d\x38\xd4\xb2\x8c\x6c\x58\x2e\x8b\xa5\x7b\x41\xb9" "\xcf\x5e\x83\xf5\xb4\x55\xd3\x5b\xc9\xf1\xa0\x03\x15\x6f\xb8\x76\xcb" "\xc5\x51\x16\xdf\x1a\x97\xc2\x1f\x9d\xbd\xdd\xb6\x6b\x6b\x4b\x0b\xe4" "\xaf\x97\xac\xd7\x00\x68\x46\xdd\xba\x57\x44\xc6\x5a\x6a\xef\x3f\xe4" "\x94\x12\x27\x02\xa8\x3a\xa4\x37\x1c\xba\xc5\x3d\xf5\xd6\xce\xa1\xd6" "\x6f\x04\x57\xfb\x32\x52\x9a\xa9\x16\x18\x1a\x14\x6c\x3f\xa8\x45\xb8" "\xb5\x13\xba\xf3\xb1\x23\x16\x81\x9c\x1d\x3e\x50\x85\x25\x4b\x9b\x3d" "\x13\xfb\x89\xb1\xbb\x16\x99\x38\xbd\xe4\xf0\x0e\x06\xf2\x44\x59\x61" "\xfd\x74\xb9\xcc\xd4\xfd\x30\x9d\x82\x79\xd4\x95\x96\x64\x5b\xc4\xe5" "\xe7\x97\x20\xa7\x64\x36\xd6\x57\x89\x14\x4c\x74\xe2\x0b\x5d\x87\x96" "\xf4\xae\x6e\xc3\x26\x01\xea\x42\x9f\x7c\xe1\xb4\x20\x31\x30\x00\x7b" "\x35\x75\x41\x06\x94\xb8\xf8\xab\x88\x98\x8f\xac\x83\x94\xbb\xe1\x00" "\x96\x5e\x4f\x33\x23\x5f\x26\x1c\x1b\xdf\xa7\xc1\xda\xc0\x8d\xcb\x59" "\x5d\x57\xd9\x45\x45\xdf\xe1\x22\x8d\xf0\xfc\x49\x43\xcf\x45\x75\x22" "\xf9\xfc\xe1\x96\xa2\x32\xd1\x97\x9d\xc9\x6b\x55\x3c\xc4\x02\x3b\xf0" "\x0e\x30\xa5\xb8\xd8\xe6\x2f\x95\x97\x94\x19\x39\xbd\x45\xf7\x24\xcd" "\xde\x3b\xca\xf7\x73\x6c\xb0\x97\x47\x80\x45\xdd\xe3\x78\x41\x8c\x81" "\x97\x68\xd2\x4c\x4c\xf7\xb3\x3d\xfc\x9d\x11\x00\x99\xca\x8f\xa8\x36" "\xc6\x11\xa2\x77\xd7\xaa\x8f\x05\xa8\xed\xd0\x25\x3a\xbf\xed\x8a\x59" "\x4c\x50\x7a\xbf\x07\x9c\xaf\xb2\xee\xce\x2e\x6e\xe0\xc3\x3b\xdb\x90" "\xf3\x07\xad\x70\x41\xb8\x50\xec\x5d\x98\xa5\xfc\x87\x29\xe0\x29\xf8" "\x78\x70\x1d\x21\xce\xb7\x49\xa6\x3c\x28\x51\x6a\xa8\x83\x0a\xe3\xed" "\x07\x32\x3d\x64\x80\xf6\x5c\x4e\xfc\x94\x2d\x3d\x47\x0f\x36\x2f\x4e" "\x78\x4a\xb4\xfa\xa1\x61\x2a\x75\x0b\xb9\x54\x79\x31\x0c\x39\x5e\xe4" "\x15\x98\x99\x10\x34\x86\x0b\x3c\x78\x4b\xfe\x0f\x00\x94\x11\x43\x1a" "\x0a\xdc\x0b\x4a\x9f\x30\xe8\x5c\x31\x42\x27\x8d\x44\x73\x57\xf5\xed" "\x4d\xca\x30\xde\x72\x2d\xbb\x75\x21\x97\x5c\x09\xe0\x4c\x24\x67\xc1" "\x84\x6f\x3d\x97\xeb\xb3\x71\x72\x98\x7f\x97\x53\x47\xed\x15\x6a\x1d" "\x06\x01\x4f\x07\x35\x80\x90\xf1\xe0\x8d\xfa\xc6\xc9\xe9\xc5\x24\xf5" "\x19\x97\xf2\x65\xb5\xc0\x11\xc4\xc0\xbc\x73\xae\x8d\x60\x35\x50\x8d" "\xce\x41\x67\x5b\xce\x84\xa8\xaa\x3f\x7e\xd3\xb3\xa4\xb5\x48\xb5\xbd" "\x3d\x04\x4e\xd3\x00\xc1\x3b\xde\xae\xb6\x43\x90\xf5\xe8\x47\x48\x85" "\x8a\x06\xaf\x30\xf3\x8d\xbd\xe8\x5c\x83\x8f\xca\x02\x26\x95\xec\x2d" "\x80\x27\x47\x35\x30\x17\x43\xf0\x98\x5d\x41\xc5\xd1\x15\x0d\x3b\x5c" "\x62\xe4\x7a\xa4\x02\xc4\x6c\x31\x63\xf5\xe4\x8c\xfb\xc1\x73\x08\x18" "\xd9\x89\xdd\xe7\x7d\xe1\x78\xea\x20\x13\xb2\x85\x5e\xa0\x2d\xe6\xf9" "\xc8\xc8\xb9\x3a\xdd\x9a\xe7\xdb\x92\xd8\xda\x5f\xcb\xe5\xad\xd5\xde" "\x4d\x4c\xcb\xe7\x13\x6f\xbb\x5e\x16\xf5\x9e\x1c\x2f\xf9\x9a\xe9\xfd" "\x85\xc9\x52\xda\x22\x5e\xad\xc7\xba\x48\xa0\x11\xed\xdf\xbb\x0e\x30" "\xb6\xbf\x27\x6f\x52\xe5\x28\x85\xe0\xfa\xf8\x38\x0e\x43\x34\x3c\x07" "\x1f\xb9\xcf\xb5\xca\xf9\xc3\x01\x12\x46\xec\xd4\x7e\x05\xeb\x0c\x76" "\x6c\xa4\x85\x22\x62\xb9\x44\x54\x9c\xd9\x87\xdf\x42\x57\x2e\x4a\xa7" "\x10\x63\x4c\xcd\xfc\xb0\x7d\x40\x9b\x6c\x32\x99\x1c\xdb\xd6\xd5\x23" "\xd7\x1d\xa7\xfb\x7c\xdc\xc1\x77\x65\xdc\xd8\xf9\x51\xbc\xa6\xe1\x3f" "\x1b\x36\x9f\xd2\x81\x0a\x15\x26\x55\x3b\x51\xdf\xae\x61\x09\x6c\x89" "\x2c\xef\xef\x7b\x79\x02\x35\xf3\xcf\x1e\x43\x0a\xa3\x3c\xcf\xf8\x77" "\x8e\xb9\x83\x06\xd7\xb0\x39\xc9\xdc\x70\x7e\x4e\xe9\x1a\xf7\x4e\x49" "\x75\x35\xaf\xd6\x6b\x8f\x6e\xbe\x72\x69\x98\x43\x26\x54\x38\x7a\x6b" "\xe5\xb0\x23\xcb\x0f\x9a\x4e\x97\xa9\xea\x4e\xe8\x28\x59\x00\xdb\x32" "\x0c\x61\x4a\xd5\x25\x2d\x60\x86\xbf\xde\xd2\x63\xbf\xce\xf7\xa3\xde" "\x8e\x34\x7b\x17\x6d\x6e\x1a\xa9\xf5\x65\x30\xd4\x9a\x2c\x66\x2b\xe1" "\xff\x09\x1f\x75\x7c\x96\x1b\x36\x30\x17\x37\x80\x63\x99\x6a\x24\x59" "\x65\x79\x60\x01\xba\x22\x77\xca\x53\xd4\x65\x5c\xf6\x34\xb7\xf9\x22" "\xd5\x01\x89\xc8\x84\x25\x70\x55\x29\xa6\x9d\xd5\xe3\x41\x9b\x11\xc1" "\xa7\x14\xcf\xfb\xc8\xf2\x84\xe7\x86\xa7\xd2\xf9\x5e\x3e\x5a\x7b\x15" "\xcd\x66\x71\x15\x3d\x80\x53\x09\x48\x1b\xd6\x88\x2c\x15\xf0\xa4\x7d" "\xc0\x70\xa6\x2d\x4e\x70\xf6\x4b\x2a\xf3\x70\xe4\x4d\xef\x23\x0c\xdb" "\x2e\xb6\x4b\xc2\x4a\xb3\x23\xed\xd8\xa6\xbd\x74\xe7\x75\x95\x92\xcb" "\x9e\x6c\xb2\x49\x61\x2a\xee\xc5\x4f\xd1\x9c\x80\x12\x66\x90\xd0\x76" "\x85\x01\x93\xb2\xb5\xd0\x55\xf2\x84\x9f\x3b\xbd\x0f\xea\x55\xb6\x16" "\xc5\x27\x72\x18\x1d\x7f\x19\x16\xba\x67\x7e\x6c\xe9\x8a\x6d\x53\x0c" "\xb9\x15\x4c\x20\xbe\xa1\x90\x7a\x67\x27\x14\x30\x57\x6e\x6d\xae\x6a" "\xa4\x4a\x2f\xa4\x9d\x34\xba\x19\x15\x00\xd7\x3f\xd2\x58\x58\x8e\x3a" "\xfd\xe7\xa8\x48\x56\x03\xe3\xb5\xab\x87\xd3\xb6\x49\x28\xa3\x3f\xb0" "\xeb\x75\xa1\x03\x58\x09\x61\x18\x80\x6e\x0e\x44\x02\xbf\x4b\x65\x91" "\xf3\x1e\x26\x0b\x91\x99\xdc\xee\xe7\xf4\x2f\x5f\x32\x00\x35\x52\x72" "\x63\x37\xdf\xbb\x96\x40\x22\xbf\x5e\x3d\x1b\xed\x11\x9e\x7a\x39\x2b" "\xa3\x3a\xe7\xcd\x2c\xbf\x27\x10\x1e\x78\x60\xbd\x0a\x6a\x49\x9a\x18" "\xe6\x23\x61\xbc\x85\x4a\xec\x7a\xf1\xe9\xc0\x92\xdd\x1e\x7b\xed\x2a" "\x3a\x19\xf2\x22\x25\xc6\xea\x41\x6b\x36\xe1\xfa\x37\xc7\xbc\x40\x13" "\x85\x14\x45\x33\xf0\xac\x7e\x7f\xa8\xfa\xb0\xeb\xd3\xe7\x1c\x42\xf8" "\xf6\x45\x51\x91\x28\xf0\x05\xb2\xa9\x75\x02\xcf\x51\xf4\xcf\x2a\x81" "\x18\xa7\x4b\x38\x05\x29\xcf\xc2\x30\xd8\xc8\x4e\x32\x99\xba\x0a\x20" "\x4a\xe9\x14\x61\xb7\xe9\xd0\x53\xe7\x72\x90\xba\xf9\xb0\xc8\x6f\xb4" "\x2a\x4b\x34\x6c\x91\x01\x3b\xdb\xa4\x0b\xdf\xcd\x37\xd1\x8e\x00\x22" "\x5b\xae\x87\x73\xad\xad\x09\x63\x35\xb8\xdb\x42\xdd\xc8\xba\x0b\x81" "\x0f\x89\x28\x85\x5e\x09\x53\x98\x1b\xa6\x73\xf5\xd9\x8e\x10\x8f\xb6" "\xc6\xfe\x6a\xe9\xfa\x46\x80\xd3\xd2\x95\x72\xbc\x40\xbb\xbb\x3a\xaa" "\x1b\x22\x8a\xca\x10\xd0\xce\xd7\xf5\xeb\xd5\xfb\x17\xf0\x00\x54\x0b" "\x16\xbe\x5f\x0d\x25\x2f\xfd\x35\x72\x51\x69\x13\xd1\x80\xc7\x75\xc0" "\xba\x01\x9c\xf7\x3e\xaa\xe9\x10\x79\x8a\xdb\x98\x71\xf2\xae\xc7\xde" "\x93\x29\x12\xf6\x2a\xd4\xa3\x7f\x2b\xb6\xed\xa6\xee\xeb\x83\x3c\x2a" "\x22\x9c\x01\xbb\x2b\x15\x8f\x0b\xd9\x56\x8c\x65\x63\x46\x4e\x51\xa5" "\xbb\x11\xf8\x59\x36\xc4\x02\x4d\x64\x56\xf3\xcb\xa2\xba\x8d\x14\xaa" "\xb2\x35\xbb\x0b\xa6\xd3\x33\x14\xd3\xf1\xc5\xf3\x9f\x3f\x69\x50\x12" "\x57\x9a\xa0\xb1\x01\xf7\x29\xa9\x10\x62\xda\xc0\x89\x6b\x43\xd4\xae" "\x82\xa0\xbd\x3a\x99\x20\x80\x19\xac\x0f\x26\x92\xea\xdc\x06\x91\xbe" "\x8f\x11\x7c\x81\xa9\x60\x70\x69\x4b\x13\x9a\x5b\x35\xca\x54\xd1\xe5" "\xa4\x90\x72\x9f\x0c\x6a\x85\xc6\xf6\xe8\xd1\xeb\x24\x34\x23\x83\x8f" "\x45\xbb\x3e\x3e\x07\x55\xbe\xb3\x95\x83\x83\x52\x62\x0e\x80\xc3\x38" "\xa7\xae\x33\xbb\x14\x63\xfb\x99\x1a\xff\x87\xf5\x9a\x9d\x43\xa3\x3d" "\xa3\xaf\xb7\xcf\x8f\x83\x35\x36\x79\x26\x5d\x59\x02\x4d\x6f\xe7\x5a" "\xf1\x06\xd4\x53\x78\xce\xee\xa1\x87\x3e\xb3\x4e\x23\x8f\xd9\xd2\xd9" "\x69\xea\xec\x42\x90\xb7\xba\x67\x48\x67\x27\x3d\x5a\xad\x6d\x04\x9c" "\xd5\x09\xe7\xda\x9c\xad\x50\xe0\x3e\x86\xbc\x4b\x81\x18\x83\xb3\x09" "\xdc\x6c\xb1\xe3\xad\x60\xed\x0c\x1f\xc8\x08\x7f\xd8\xf9\xf2\xe0\x93" "\x3f\xd4\x18\x57\x5e\xbd\x17\xd3\x9a\xe6\xde\xe8\x51\x87\x3f\xcf\x86" "\x80\x23\xa3\x79\x1d\x3f\x05\xfb\xee\x98\x65\x57\x4b\x38\x1a\x27\xd9" "\x5f\xdd\xb6\x16\xbb\x03\x55\x61\x64\x32\xe4\xc7\x62\x4b\xee\x97\xa7" "\xa9\x9f\xc7\xa4\xe1\x0a\x7a\x4c\x75\x08\x96\xa3\xb7\x17\x5c\x90\x6d" "\xb4\x14\x4d\x3c\x79\xb5\x18\x36\xd4\x1f\x56\x56\xe6\xbe\x65\x74\xe2" "\xac\x34\x89\x87\xa6\x31\x57\x5b\xaa\x45\xb5\x4d\x24\xc1\x4b\xff\x6a" "\xee\xa5\x5f\x1c\x78\xb4\x0e\x92\xb8\x26\x48\x52\x36\x25\xc3\xd3\xbd" "\x7d\xb6\x22\x9a\xfa\x09\x1d\x7a\xd4\x94\xae\xb2\x42\x58\x2c\x11\x56" "\x2f\x90\x0a\x64\x89\xcd\xfd\x62\xe4\x72\xd6\xfc\x25\x3d\x26\x46\xa8" "\x55\x30\xfc\xaa\x75\xe9\x50\xf6\x7b\x51\xc3\x97\xd8\x77\x53\xb3\xb3" "\xe5\x26\x2e\xdc\xb6\xc5\x4f\xce\x81\x36\x41\x80\xeb\xdf\xee\xd5\xcc" "\x2d\xa9\x61\x61\x45\x91\x52\x87\x2b\x48\x51\xde\x72\xaa\x99\xa8\xed" "\x84\xc1\xc8\x05\x2b\x41\x1d\x21\x3a\x42\x49\xd3\x99\x0d\xa4\x3a\x8a" "\xc3\x3a\x3e\xd3\xb4\x21\x72\xb4\x18\x10\xd7\xdc\x68\xa5\xe2\xda\x95" "\x9e\x10\xe5\x8c\xe5\x7c\x7a\x87\xb2\xcc\x86\xde\xa7\x30\x9f\xf7\x60" "\xb7\xe5\xd0\xe7\x9b\x89\xa2\xca\xd5\xd9\xd3\x89\x8f\x61\x21\x78\x3e" "\x9c\x93\x6c\x34\xfd\xd2\xb2\xf0\x61\xab\x75\x94\xae\x50\xf1\x29\xc9" "\xcc\x00\xf6\x75\x0f\x8f\xfb\x46\xb7\xa9\xd3\x10\x72\x6d\xc2\xe4\x38" "\xa9\x2d\xb4\xac\x02\x91\xff\x6c\x52\x64\x87\xef\xde\x21\xaa\xfc\xbc" "\xd6\xa6\xd4\x39\xf5\x4b\x1d\x4c\xcc\x3d\x7e\x56\x5e\xb9\xb4\x54\xcf" "\x18\x9d\x24\xc7\xc7\x55\x4e\x8a\x28\x82\xe7\x35\xe9\x0f\xd0\x5b\x9f" "\xb6\x50\xb4\xb4\x3e\x94\xd8\x45\x46\x2d\x81\xe0\x6f\xc0\xc3\x06\x2a" "\x80\x7e\xb0\x38\x72\x05\x19\x72\xd9\x07\x77\xed\x0e\x47\x1e\x1d\x0a" "\x81\x80\x04\x87\xf1\xed\xd4\xc0\x34\x61\xa9\x59\x64\x78\x14\x38\xb8" "\x2a\x62\xa5\xde\x55\x4e\xc0\x9d\xa1\x4e\xc3\xe9\x53\xc0\xdd\xd8\x47" "\xa0\x7e\xda\x0c\x0c\x4f\xaa\xda\x61\xbe\x25\x71\x1a\x78\x34\x8e\x4c" "\xd4\x65\x3f\xda\xeb\xdc\x57\x3a\xaa\x87\xc7\xff\x0f\xfd\x5b\x70\x7e" "\x2d\x9d\x13\xac\x75\xdf\xed\x88\x52\x7f\x1a\x36\x83\x02\x1c\x38\xb5" "\x57\x09\x87\xbf\xee\xfd\x2c\x41\x55\x5e\xc5\xd8\x19\x54\x4c\xe2\x42" "\xe0\x81\xee\xd3\x57\x38\x73\xd5\xc2\x99\xd4\x0f\x83\x16\xd9\x9d\xef" "\xf9\x99\xaa\xff\x8b\x6c\x71\x14\x25\xf6\x6f\xc4\x82\x56\xe8\x6f\x86" "\xe4\xed\x1c\x49\x0d\xf8\xe2\xa5\x18\x45\xc0\x2e\x7b\x96\x36\x74\xf1" "\x0d\x8a\x35\xf4\x73\xb0\x20\xd5\x7f\x3a\x7d\x4f\xfe\x99\x3c\x33\xb9" "\x81\x87\x68\x3f\xdc\x36\xcd\x55\xf3\x24\xae\x6f\xe5\x7c\x55\x9d\x80" "\xe5\xfa\x0e\xf2\x33\xbe\xdd\x81\x85\xd5\x17\x91\xcb\x4a\xd2\x8d\xaa" "\x1c\xc3\xb3\xf4\x01\xfe\xcb\xf6\x45\xbf\x1d\x11\x96\x32\xd1\x0b\xb3" "\x8c\x2f\x70\xbf\xae\xa5\x3d\x9f\x11\x68\x52\x6d\xb5\x0d\xb3\x4a\x78" "\xde\xbc\x4b\xa2\x4d\xa3\xec\x23\x7d\x61\x55\x5b\x3f\x4c\x77\xda\xc2" "\x2e\xd5\xe0\x15\x6b\x57\xcd\x7c\xbd\xc8\x9e\x1e\x97\xad\x0f\xc2\xff" "\x15\xfc\xcc\x7a\x8f\x87\x90\x8c\xd8\x91\xf2\x16\x0d\x79\xc5\x50\xb1" "\x6e\x43\x98\x7a\xfe\xac\xa4\xa7\x5b\x07\xc3\xa5\x95\x87\x49\x65\x7f" "\x78\xf7\xda\x84\x52\xc2\x9c\xce\x9c\xac\xbd\x90\x60\xbf\xd7\x50\x07" "\x01\xe2\xf8\xf8\x01\x33\x2f\x8d\x5f\x6e\x5b\x85\x7d\xc6\x20\xf6\x6a" "\x88\x4b\x18\xe7\x41\x24\x91\x2f\xe0\x7f\x91\x70\x66\x13\x0c\x80\xc1" "\x82\x55\x6c\x6b\x31\xc4\xf9\x52\x7e\x7c\xa4\x6d\x2d\x49\x51\xf6\x57" "\x2c\x31\x77\x69\x24\x1a\xcf\x4b\x4d\x16\x4d\x88\xf4\xa9\x45\xb5\x54" "\xb4\x49\x67\x2c\x36\xcd\xec\x5d\xf4\x13\xcb\x3c\xf2\x2b\xb8\x49\xb4" "\x18\x37\x74\x47\x92\x5e\xd7\x54\x4f\xb1\xed\xad\xb2\x3c\x5e\x3b\x9f" "\x32\x2a\xac\x70\x36\xbc\x84\xb9\xe2\x24\x75\x08\x13\x38\xd7\x10\xe7" "\xdb\xf4\x3c\x81\x50\xb4\x12\x35\xfb\xd6\xff\x43\x0d\xf6\x61\xe1\x82" "\xfc\x5f\x82\xc1\xbe\xb9\x9d\x84\xb1\x24\xcc\x78\x48\xb1\x1a\xb9\x29" "\x33\xbe\x8e\x89\xce\xd5\x88\x5a\x58\x66\x37\x5c\xad\x29\x9f\x05\x08" "\x85\x3e\x1f\xd1\x6a\x24\x39\xec\xf0\x02\x91\x1c\x39\xb6\x04\x28\x59" "\x08\xda\x02\x02\x4c\x20\xb4\x5f\x91\x40\x45\x8e\x05\x6d\x01\x24\xdc" "\x53\x2e\x42\x32\x79\xf3\x47\xab\x9d\x67\xc4\x5a\xf5\x3e\x82\x49\xb7" "\x4a\x32\x48\x98\xb8\x0e\xde\xef\x45\x8c\xe6\xc1\x2e\xab\x9e\x8d\x17" "\x07\xbc\xcd\xc1\xfd\xe5\xe2\x8e\xb6\x2c\x62\x62\x5c\xe5\x3b\xfe\xa3" "\x13\x50\x3c\x21\xb1\xd4\xa3\x0c\x8e\x5f\xb3\xe8\x10\xde\x70\x10\xc2" "\x0d\x1b\x54\xd1\xff\x78\x21\x3d\xd5\x7d\x8c\x65\x07\xfe\xcb\xa7\xe8" "\x58\x5d\x0b\x4d\x48\xea\x7d\xf6\xa7\xf4\xb7\x49\x9b\xc9\xb9\xea\xd6" "\x0f\x43\xf3\x0e\xba\xf4\xad\x4c\x12\x5c\x54\xec\x0d\xac\x24\x5e\x03" "\xa7\xd6\x0b\xd9\x28\x4a\x8c\xe9\xc3\x81\xa4\x9a\x5c\x5a\xe9\x20\xa0" "\x30\x0c\x83\x12\xb3\xfe\xcd\xfc\x5b\x50\x84\x4a\x69\x90\x3e\x65\xbe" "\x94\x05\xbf\xc6\xc7\xac\x95\x5a\x57\x6c\xea\xa2\x05\xbc\xc3\x1d\x29" "\x9c\x5f\x6b\x02\xce\xfc\x94\x9d\x0e\x2e\x06\xb8\xe8\x94\x27\xaa\x67" "\x1f\x4e\xca\xff\x1a\x24\xc3\x96\x4c\xd4\x73\xee\x3d\xa6\xa1\x61\x6d" "\xef\x6d\x74\xa7\xb7\x2e\x7d\x1f\xdb\x99\x94\x53\x5c\x35\xce\x64\xc7" "\x22\x16\x64\xa7\xce\x8f\x04\x03\xf0\x8e\xdb\x28\x6a\x38\x5e\x94\x78" "\xb9\xa5\x14\x9f\x0c\xe8\x73\x38\x85\x2c\x35\x4b\x9d\xc1\x1e\x43\x05" "\x90\xd6\x2f\xf5\x27\xfa\x8f\x99\xdb\xe7\xdd\xc6\x73\x00\x7b\xf3\x57" "\x9b\x30\xaf\xc7\x07\x91\x84\x13\xf6\x70\xf5\x6f\x77\xb9\xf1\x76\x4a" "\xb6\x15\x29\x8e\x57\xd6\x1f\x74\x22\x16\x97\x99\x4e\x5d\x1c\x5e\x3b" "\xbd\x44\x5c\xde\x2a\x4f\x52\x98\x9b\x6a\x77\xdb\x41\x18\x31\xde\x4c" "\x47\xff\x74\xba\x82\x07\x2f\xe3\x59\x06\x39\x75\x17\xe6\xbe\x85\x7b" "\x1a\xda\x97\x11\x99\x9e\x97\xb8\xeb\xe4\x40\x8b\x7a\x03\xca\x45\x37" "\x70\xe8\xe9\xe3\xde\x3b\x01\x8b\x70\x6d\x45\x69\xb7\xde\x62\x34\xe8" "\x83\xb4\xea\x4e\x15\x7d\x99\x42\xd4\x5c\xc1\xd4\x65\x05\x87\xa8\xb0" "\xc5\x43\xa4\xa8\x86\xe6\xda\xed\xa9\x9a\xd2\xac\x9b\x3e\x52\xe1\x21" "\xd4\x60\x9a\xe3\x80\x0e\x83\x4a\xc3\x7b\x46\xee\xd2\xb4\xa8\x25\xa6" "\xe2\x25\x35\xa0\x46\x58\x1d\xfb\x6e\x63\xed\xac\x25\x5b\x28\x2f\x4f" "\xed\x95\xb1\xea\x7e\x73\x6a\xc2\xe7\x5f\x24\x5e\xe4\x19\x0c\x91\xcf" "\x82\xef\x9a\x17\x15\x67\xac\xb8\x3f\x92\x89\xc8\xa3\x86\x0e\xcd\x97" "\x3a\xdc\xca\x68\xbb\x82\x6a\x70\x4b\x93\xe2\x49\x6b\x93\xaa\x15\xf6" "\x26\xf9\x6b\xb3\x58\xbb\x3c\xb7\x40\x4f\xc9\x7a\x5b\x95\xe4\xce\xcb" "\x35\x3d\x5f\xf7\xc3\x81\xf0\x86\x71\x5c\x3c\x1d\x26\x92\xfd\xa0\x93" "\xb9\xa3\x0c\x2b\xcc\x27\x3e\x9d\x8f\x3d\xc9\x60\xc2\xd3\x82\x3c\xb2" "\x10\x38\xb4\x61\xec\xd4\x09\xcc\xc4\x11\x2a\x1e\xa2\x36\x48\x7b\x45" "\x20\x3e\x70\x81\xf5\x8f\x33\xcd\x9e\xc1\x1c\xa0\x1e\x8c\x7d\xed\xc9" "\x5f\xf6\x31\x4c\xe0\xbb\x6b\x8c\x4f\x9f\x92\xd1\xe4\x1b\x1a\x34\x2a" "\x6c\xfc\x5e\x06\xfa\xc8\x95\x34\x50\x5a\x2a\x16\xc8\x45\x28\xf0\xfe" "\x6e\x61\x86\x35\x79\x5e\xf9\x8d\xf6\x6d\x2e\xf7\xd6\xad\x4c\x63\xfd" "\x45\x4e\xd8\x2e\x6f\xc5\xfd\x2f\x36\x0e\xfa\x5d\x70\x73\xab\x23\x31" "\xce\x66\x42\xa1\x7b\x77\xdf\xf6\x28\x10\x5b\x65\xe7\xb6\x41\xa8\x5a" "\x84\x69\x50\x33\x07\x39\xce\xea\xcc\x19\xaa\x95\xb9\xb7\x93\x24\xe1" "\x99\xf6\x9e\x70\x61\x0c\x74\x8b\x49\x8e\x22\x2f\x46\x2f\xc0\xf5\x6e" "\x91\x5f\x1c\xdd\x95\xfd\xa2\xb8\xc4\x28\x4e\xc4\xbc\x68\x4e\x37\xe9" "\x43\x9a\xe2\xc4\x46\xd2\x5f\x78\x6f\x0c\xbd\x28\x05\xbb\x25\xe5\xb9" "\x19\x0e\xd9\x5d\x99\xba\x02\x09\x12\x28\xb2\x2a\xf8\xaf\x0a\x21\x81" "\x95\x08\xd9\x25\xb8\x3f\xcd\xd4\x00\x89\xf9\xa1\xdd\x70\x53\x70\xdd" "\xa3\xbb\x54\xc2\x1f\x43\x5e\x42\x73\x04\x6d\xf3\x17\xba\x01\xe6\x9d" "\xc7\xc9\xdb\x6d\x26\xca\x3a\xd9\x1b\x98\x07\xa4\x3d\x75\x5c\xfc\xba" "\xb8\x7d\x39\x59\xff\x40\x16\x7c\x44\x31\x9e\x36\x4f\x30\x47\x2a\xf4" "\xe0\x8e\x58\x90\xfa\x80\x27\x66\x02\x93\x76\xf2\x40\xb8\x9a\xef\x49" "\xd4\x25\x42\x61\x0f\xd0\xb7\x9d\x05\xfd\x56\x94\x5a\xc4\xa1\x1d\xfa" "\xb2\xd3\x2f\xb6\x79\x16\x07\x09\x4e\x6e\xe3\x98\x61\xba\x4b\x10\x5c" "\x25\xfc\x95\x3a\xed\xd7\x8e\x08\x35\xcc\x4e\x81\xb2\xf9\xf4\xef\xf8" "\x8f\xf3\x74\x7d\xa6\x6f\xcd\x70\x46\xe8\xe4\x78\xae\xec\xd6\xdb\xba" "\xd3\x64\xc3\xfa\x45\x07\x5e\x4b\x8d\x52\x6d\x36\x1a\xb5\xd0\x8a\x4d" "\x81\x21\xff\xde\x0b\xf2\x53\x21\x0e\x5a\xee\xa7\xad\xe7\x2a\xfb\x2b" "\x61\xb3\x4c\xaa\x3a\x41\xaf\xe5\xd1\x8a\x9e\x26\xaf\x94\x4f\xa5\xbe" "\x7f\x31\xae\x89\x54\xa1\x98\xef\x8f\x13\xd4\x5a\x9f\x2f\x18\xa3\xd4" "\xaa\x92\xeb\x8c\x4a\xda\x66\x59\x97\x26\x5c\x37\x48\x70\x53\x9d\x4c" "\x67\xdd\xdd\xb7\x20\x08\xa6\xc4\x7d\xf6\xb4\x6d\xed\x48\x60\xcd\x6c" "\x9f\xf4\xfc\x82\xf8\x6b\x66\x9d\x47\x65\x0a\xd3\xfe\x59\x49\xee\xa1" "\x90\x19\x53\x9c\xa1\xfe\x2e\x9f\x88\xa8\xaf\xa0\x83\x02\xa5\xf3\xb6" "\x35\xc0\xb7\xc2\x25\x0c\xef\x83\x9e\x9c\x34\xbc\xe0\xad\x6b\xeb\x65" "\x10\x31\x8c\xc3\xcd\x4b\x28\x1f\xf2\x27\x29\xd7\x26\x2d\x0f\x74\x11" "\x22\x65\x35\x79\xeb\x89\x08\xb9\x02\x52\xfe\x36\x71\x2c\xfb\xaf\xe6" "\x77\x4b\xfe\xa3\x24\xdd\xc9\x92\xf9\xac\xa8\x6c\x18\x3a\x23\x4d\x47" "\x05\x11\xdc\x82\xb1\xd8\x4b\x13\x33\xea\xcc\x21\xc9\x97\x24\x98\xe1" "\x7c\xa2\x5a\xa0\x13\xb5\x33\x2d\x9b\x4b\x0e\x77\x52\x05\xc6\x76\xdc" "\x83\x63\x99\x25\x77\xb6\x38\x51\xdc\xb8\x09\x00\x92\xea\xae\x55\xdc" "\xcc\x99\xbf\x39\x8f\xd1\x8d\x6f\xa6\x8f\x64\x29\x99\xec\x5c\x57\xd0" "\x4a\x07\x31\x62\xbc\x61\xa8\x7d\xd8\x0b\x40\x36\x96\x11\xe6\x1c\x6a" "\x09\xec\xad\x4e\x7d\x9e\xc4\x37\x3c\x28\x8f\x19\x13\xa9\x46\x31\xf6" "\xf3\xf6\xe8\x9d\x05\x64\x58\x78\x2a\xf9\x7b\x9c\x95\x10\x1b\x84\x1f" "\x1d\x79\xbe\xa5\xf7\x82\x99\x6e\x9c\xdb\x76\xd1\x9f\xee\x07\x47\x13" "\x99\xa7\xc2\x21\x9a\x45\x38\xd7\xcd\x42\x4a\x8e\x05\xae\xb2\xf5\x18" "\xc4\x46\xd3\x06\xc7\x7c\x6d\x8e\x7b\xbe\x9f\x0e\xf2\x56\x99\x93\xd5" "\xa5\x6e\xdf\xc8\x9b\xa2\x00\x20\x54\xdb\x89\xeb\x6d\xf4\xf7\xb9\x50" "\xae\x04\xa4\x9c\x2a\xc4\x2e\x75\xce\x48\x9d\x1e\x31\xe3\x1f\x82\x88" "\xb4\xd7\x79\x7b\xeb\x73\xd0\xab\xec\xed\xd3\x1e\x00\x7b\x8f\x30\x32" "\x38\x70\xa9\xfb\xcf\x8a\x73\x2d\xda\x18\x0d\xe3\xf1\x35\x06\x6c\x0d" "\xcc\x24\x6e\x47\xa1\x9d\xb3\x01\x68\x0d\x73\x80\xcc\x79\x05\x21\x67" "\x26\x44\x1f\xff\x2d\x1d\x7e\xa7\x03\x4d\x1d\x86\x10\xd3\x8e\xe5\x6d" "\x8b\x64\x54\x4f\x87\x1e\xcc\x62\xcd\x34\xd1\x6a\xe8\x93\x73\x92\xbe" "\xab\xb6\x7c\x75\x39\x1b\x59\x71\xa3\xf8\x48\xc8\x2f\xcf\x3f\x1f\x76" "\x1c\x99\xdf\xdd\x57\x16\xed\x87\x81\x23\xe2\xfe\xe1\x21\x43\x3e\x50" "\x5d\xf3\xff\xc2\xcc\x05\xc3\xce\x28\x40\x7e\xae\xfe\xbe\x2e\xbe\x66" "\xa0\x02\xa5\x37\x5f\x12\xf6\x02\x42\x79\x28\x3b\xe8\x69\x40\x9d\x95" "\x81\x11\xf5\xfc\xbc\x61\x37\x26\xf1\x87\x38\xeb\x3e\x10\x3f\x80\x1f" "\xcd\x81\xff\x1d\x69\x53\xe6\x0a\x71\x1f\xe9\x74\x2c\x88\x84\x99\x2b" "\x8e\xea\xe9\x05\x8e\xdc\xfb\x47\x5a\x73\xb6\x31\xa5\x04\xb2\x02\x8c" "\x1b\xf7\xf2\x4f\x74\x07\x7b\x52\x8c\x9d\xcd\x98\x0f\x26\xad\x90\x01" "\x0b\x17\x67\xe2\x60\xb6\x23\x1a\x75\xa6\xba\xca\x6f\xa6\xa3\x43\xce" "\x17\x55\x53\xb0\x53\x39\xc9\xaf\xb4\xa3\x80\x48\x6b\x9e\xa3\x80\x0e" "\xf1\x47\xf4\x33\xaf\xfe\x1e\xce\xa5\xe7\xec\x72\xc9\xc4\xce\xab\xcd" "\x63\x1b\x31\x11\xa2\x48\xaa\x18\x1c\x3f\x8a\x20\x85\xde\x59\x46\x51" "\x3a\xde\x34\x27\xf1\x84\xf8\x60\x76\x3a\xe5\x79\x83\xe5\x31\x88\x64" "\x78\x32\xc2\xb6\xad\xac\x71\xb2\x5a\xb2\xfb\x15\x10\xe5\xcc\xa1\xc2" "\x66\x54\xe3\xa8\xa7\xdd\xbd\x02\xaa\xa8\x40\xd4\xbb\xd1\x8b\x51\x0a" "\x7a\x7a\xe7\xf2\xec\xbb\xdb\xac\x0f\x39\x20\x36\x7a\x1a\x20\x37\x5f" "\x09\xd4\xd5\x6e\x9d\x63\xf2\x80\x9e\xb2\x6c\x5a\xeb\x94\x05\xb8\x0b" "\x00\x24\x53\xe2\x30\x55\x4c\x5f\xb4\x7d\xd3\xc9\x75\x2c\x20\xe7\x62" "\x2e\x26\x86\xf9\x6e\x75\x72\xdb\x09\x4b\x8e\xc6\xb4\x0f\x9b\xb1\x6f" "\x3f\xec\x15\xd8\x22\x2c\x33\xbf\x9a\x66\x11\x09\xb7\x8b\xc3\xe1\xb1" "\x4b\xb4\x3e\x91\x47\xca\xd8\x8a\x2b\xb8\xfd\x14\x6f\xa1\xa9\x64\xf8" "\xd6\x06\xd2\xdb\xd5\x73\x54\x79\xf5\x1f\x75\xc5\x40\xc5\x48\xbd\x28" "\xfc\x1c\x5a\x90\x94\xf2\x06\x95\x34\xb7\xca\x87\x7b\xac\x36\x14\xbe" "\xee\xc3\x75\xca\x5b\xb5\x3e\x11\x64\x73\xba\x37\xa2\xfb\xd4\xfc\x0e" "\x9f\xcf\x4f\xa4\x0a\xef\xcf\x37\xc4\xbc\xd7\xb0\xbd\x66\x8f\x40\x49" "\x33\x6f\xcd\x7e\xa9\xce\xd6\x5e\xc0\xd0\x28\xa0\x65\xe4\x5d\x49\x78" "\x91\x8b\xb5\x90\x0f\x26\xd0\xbe\xbc\xad\x2e\xff\x0b\x70\x86\xf0\x46" "\x12\x9b\xf2\xfe\x53\xed\xd6\xb0\xc7\xce\x35\xa3\xe4\xcc\xb2\x5f\x0e" "\xcd\xa8\x6d\xb0\xe6\x90\x93\xea\xb7\x10\xce\xbb\x1f\xf1\xc4\xf9\x24" "\x07\x79\x53\x17\x91\x37\x97\xde\xa6\x51\x6c\x4b\xc4\x15\x8a\x68\xcc" "\x86\x95\xca\xb2\xf0\x45\xfc\xef\xe6\xc9\x2b\xc9\x88\x93\x4b\x06\x3c" "\x7e\x4a\x26\xd4\xdf\xbf\xd9\xdc\x28\x9f\x69\x53\x6e\xea\xc4\x1b\x07" "\xea\x7c\x01\xb0\x87\xaa\x46\xe3\xb5\xa4\x1e\x7a\x26\x0f\x02\x4d\x5a" "\xa8\xb3\x25\xbb\xf0\xa4\xd6\x18\xd8\xb9\x9e\x3b\xef\xb9\x4b\x1f\x14" "\x80\xad\xce\x89\x46\x8b\xfb\x82\xaf\x97\x30\xfc\x51\x18\x63\xeb\x38" "\x8e\x0b\x4e\xe2\x0d\xf3\x96\x1c\x53\x0d\xf9\xd0\xb5\x6e\x07\x39\x1a" "\xcc\xa5\x25\xe1\x8a\x8f\x93\x07\x5a\x6a\xd7\x74\x31\x09\x81\x87\xbb" "\x0e\xc3\x8e\x54\xff\xb8\x71\x35\x9a\x38\x5e\xc6\x22\x34\xc5\x0a\x89" "\x2e\xbf\xeb\x83\xd1\x13\xa0\x04\x54\x62\x75\x31\x28\x7d\x51\x6d\x74" "\xd0\xe4\xc5\xb7\x43\x83\xf1\x27\x7b\xa5\x11\x50\xb8\xb3\xf1\xd0\xb8" "\x6f\xd7\xf5\x41\x2b\x43\xdb\x0d\x48\x03\x3c\xf6\x7e\x3f\x65\xad\xaa" "\x9c\x19\x7a\x3e\x9e\x93\x43\x03\xe7\x44\x69\x54\x2e\x50\xce\x63\xd7" "\x54\x8d\xd3\x10\x03\xc6\x58\x76\xc2\x6e\xaf\xbb\x1a\x03\x62\xd5\x65" "\x4e\x8e\xee\x7f\x9c\x20\x86\xe5\xd6\x75\x5f\x36\xae\xfc\x33\x94\xc0" "\xc4\xf1\xc3\xe3\x56\xa0\x5b\x03\x91\x5a\x54\x9c\xd2\x74\x44\x74\x4d" "\x5e\xd0\x29\x08\xbb\x12\x7f\x03\x7d\x49\xd2\x7a\x3d\x0b\x09\xbe\x18" "\xcb\xa5\x63\x6f\x99\xdd\xb7\xc5\xb3\xb5\x74\xf9\x2c\xa3\xc4\x5c\xa9" "\x85\x29\x63\x42\x13\x6a\xe0\x5e\xba\x82\xe6\xba\x8e\x4d\x1f\xeb\x0d" "\x8b\xe2\xdd\x78\xea\x6d\x23\xc9\xc9\xe7\x2d\x83\xf3\x58\xd2\xb9\xfa" "\x06\x1a\x65\x7f\x6d\xec\xba\xe6\xfe\xa5\x5b\x61\xa2\x44\x9d\xf3\xc7" "\xf2\x3e\xaf\x78\x32\x87\x60\xb6\x54\x3a\xe9\x3b\x76\xcc\x00\x55\xd7" "\xf3\x6a\xb8\x5e\x1b\x2e\x2a\x11\x37\x73\x45\x59\xd9\x89\x44\x76\xd7" "\x7d\xbf\x25\xc4\x94\xf7\xea\x7e\x9c\x5f\x23\xe3\x74\x55\x5c\x64\xb8" "\x11\x5a\x22\x42\xd1\xd3\x82\xe6\x61\xba\x20\xc1\xf4\x49\xbb\xbe\x79" "\xff\xa0\x9b\xf4\xce\x5f\xd9\x55\x13\xef\x13\xe4\x70\x14\x92\x2a\x8f" "\xa0\x04\xa4\x5f\x1e\x55\x8d\xa8\xb2\x3f\x86\xc3\x9c\x6d\xf2\x83\x18" "\x83\x47\x61\x21\xf9\x29\x58\x4a\xaf\xf2\x68\x35\xcc\x84\x12\x41\x82" "\x1d\xf1\x93\x6f\x5e\x14\x59\x83\xc9\x2f\x02\x92\x50\x4a\xab\x5e\xf7" "\xca\x5a\x23\x07\xc7\xce\x4d\xd4\x23\xf8\x82\x6d\xa9\xde\x78\x2d\x31" "\x1b\x8c\xa0\x53\xf3\x57\x58\x28\xe1\xab\x71\x6e\xd6\x7e\x4b\xd8\x9e" "\xaf\x94\x29\x87\x9f\x2e\x51\x19\x69\x20\x9b\x9d\xcf\x42\x41\xc3\x1e" "\x1c\x34\x2f\xe9\xd8\xe3\xb2\xe5\xe7\xda\x92\x4a\x0c\xc9\xc1\x99\xcd" "\x3f\x9c\x63\x1f\x1c\xc8\xdc\xc3\x35\x39\xa5\xba\x0c\xc8\x96\xc3\xb0" "\x97\x5b\xd9\x2b\x11\x49\x0d\xc4\x2a\x6d\xe2\xf5\x88\x37\xbb\xcf\xd1" "\x9e\x1f\xcd\x95\x88\xb9\x28\x43\xba\x8d\xe1\x52\x8b\x6c\xab\xe9\x4a" "\x31\x9e\xf8\x0c\xd1\xda\x38\x7e\xfb\x88\x0e\x27\xe7\x37\x0e\x4f\xe4" "\x0d\xee\x2d\x96\x41\x5e\x50\xe8\x4a\x9f\x41\x26\xba\xc0\xf3\xd4\x35" "\x97\xcc\x46\xe1\xfe\x85\x81\x99\xfb\xfb\x8f\x4d\x43\x56\x8b\xf4\xfd" "\x82\xc4\xa3\xdb\x68\xb3\x71\x10\x8e\x9e\xac\x7d\x8b\x28\x7a\x18\x54" "\x5c\xe7\x73\xfb\xfb\x6f\x0e\x72\xa0\xad\xda\x34\x41\xa1\x17\x44\x04" "\x05\xfa\x23\x4b\x8c\xff\x5b\x2b\x6d\x76\xdb\x4c\x73\x7c\x63\x75\x37" "\x83\x37\x21\xf7\x6d\x17\x26\x42\x17\xba\x79\xa1\x90\x41\x93\xd4\x0e" "\xa8\x17\x4f\xbb\x8b\xd1\x9e\x89\x54\x31\x79\x24\x43\x90\x12\x66\x40" "\x3b\x8f\x26\x2d\xa8\xbd\xda\x7b\xb8\x8e\x3a\x8c\xc0\x10\x35\x2e\x2f" "\x0b\x6b\x5e\x77\x6a\x3d\xff\x76\x52\x75\x66\xf7\x3e\x8d\xa3\x30\x71" "\xb4\x0c\xb4\x1c\xf8\x04\xa7\x11\xdc\xd3\x7b\x2a\xdd\xad\x73\x8d\x03" "\xe1\x8b\xa2\x71\x8b\xdc\x24\xd0\x59\xce\xcd\x45\x3a\xe9\xbc\x80\x62" "\xb2\x5f\x37\x16\x2d\x42\x38\xe1\x35\xb5\x3d\x6a\x9e\x9a\x9c\xd2\x9d" "\x93\x97\x12\x26\x8e\xcb\x84\xf7\xc6\x98\x0f\x0b\x08\x9b\xb7\x15\x60" "\xd1\x1d\x41\xb0\xa0\x71\x7f\xbc\xc1\x5e\x01\xa2\xba\x79\xfa\x9e\x26" "\x72\xf9\x22\x5f\xf0\xdd\x55\xfb\xb7\xff\x02\x2e\xb0\x5c\x95\xb3\xa4" "\x5d\xb1\xa1\x76\x55\xa3\x54\x75\x8a\x04\x46\x27\xf3\x8d\x9a\x7d\xe9" "\xc1\xc4\xb3\xe0\x4b\xb5\x57\x7c\x8c\x0e\xfb\xeb\xab\xe4\x24\x36\xe8" "\x9f\x77\x2b\x01\x63\xe4\x40\x10\xe7\x1b\xe7\x9c\xd8\x26\x34\x04\xde" "\x6b\xa6\x8d\x6c\xc2\x96\x36\x64\x69\x60\x58\xa7\x84\xa6\x8e\xfa\x86" "\x40\x17\xce\x71\xa1\x57\xd0\xb0\xb6\x3e\xa1\xa1\x27\x7f\x51\x8f\x76" "\x8b\x65\xb1\x77\x86\x75\x3b\xd1\xf7\x6d\xcc\xb2\x3f\xdd\x34\xc1\x91" "\x66\xae\x48\x58\x6b\xb3\x71\xff\xcc\x5b\x31\x50\x1f\x4f\x67\x57\x68" "\x05\x92\x95\xeb\x1a\xaf\xb4\x12\xdf\xb0\x95\x31\x36\x9e\xb3\x55\x38" "\x13\xbe\x76\x88\xe8\xc8\x7e\xce\xc5\x73\x4c\xb3\x8b\x60\xab\x2a\xfd" "\x8f\xe4\xc0\x72\x67\x7e\x22\x70\x8a\xe5\x9f\xf5\x98\x43\x32\x03\x4e" "\xc7\x42\xb5\x66\x5b\x7f\xc8\x43\x7f\xcf\x57\x94\xae\x25\x0e\x95\x86" "\x2d\x3a\xd5\x52\x63\xf3\x11\xf1\x55\x6b\x0f\x50\x63\x2b\x7c\x2c\xdf" "\x76\x0b\xe3\x01\x46\x30\xd4\x88\x2c\xe0\x14\x35\x35\xf9\xbd\xa3\x9a" "\x6b\xe1\x6c\x35\x1e\x11\x39\x2d\xd6\x3f\xc6\x40\x26\x95\x3c\x0a\x08" "\xb8\x29\x46\x22\x5b\x12\xdf\x55\x3a\x0d\x36\x9f\x52\x4e\xa2\x82\x3e" "\x54\xc4\x13\x8b\x7f\x8b\x7a\x25\x3d\xf9\xc3\x21\x4a\xe4\x8b\x7e\x8c" "\x88\x10\x96\x89\x51\xe8\xee\x61\x3e\x4c\x9e\x13\x66\x8f\xf0\xba\x9a" "\xb2\x9e\x88\xe9\x19\xf0\x70\x63\x45\x22\xd2\xab\x82\x06\xbd\x4f\x47" "\x31\xad\x3c\x56\x6e\x46\xd9\xc8\x47\xa2\xeb\xb9\x3b\xf7\xf4\xc9\x8c" "\x98\x93\xe9\x48\xfa\xa3\xe8\xc1\xd0\x15\x4a\xa2\xd9\x22\x9e\x9a\xcc" "\x60\x78\x96\xc9\xf9\xb0\x7e\xb8\xe8\xc5\x8e\x85\xaf\x15\xac\xe7\xd1" "\xd5\xdb\x4d\xfb\x17\xc8\x9c\xf5\x92\xeb\x41\x02\x49\x0c\x23\x16\xbf" "\x16\xe7\x48\x44\x54\xfa\x00\xb4\x56\x58\x4f\x2f\xd2\xe3\xf2\x43\xc0" "\x1b\x77\xa2\x24\x8a\xc7\x2c\x40\x3b\x5a\xc8\xea\x8e\x1e\x11\xaf\x51" "\xa8\x22\x30\x17\x35\xc3\xfd\xc0\x6f\xdd\xb8\x51\xb8\x85\x84\xf7\xb6" "\xfc\xea\x0f\x2e\xe9\x42\xca\x95\xec\xed\x5a\xd7\x79\xcf\x64\x29\x71" "\x66\xed\x84\xcc\x21\xd5\x21\x58\x85\x12\xa3\x65\x3c\xc5\x74\xc9\x20" "\x57\xcb\xc3\x2a\x83\xdc\x18\x55\x82\x68\xd2\x50\x8c\xf2\x52\xaa\xd4" "\x9c\x50\x87\x9b\x8f\x80\xbc\x94\x98\x61\x0f\x43\x41\xa1\x58\x35\x0d" "\xd7\x6b\x58\xbe\xaa\x84\x08\x78\xbb\x7a\x6f\x37\xf5\x33\x49\x58\x03" "\x0d\x5f\x3b\x23\xf6\xd7\x3d\xbd\x02\xae\x9a\x3a\x81\xdd\xf0\x13\x0d" "\x1b\x79\x94\x6c\x5a\x4d\xd1\xb4\x0f\xf9\x7a\x25\xd3\xa9\x1c\xa2\xac" "\xce\xc0\xf1\xcc\x3f\x8f\x53\x8d\xfb\xdb\x1f\x3c\xa7\xfe\xa1\x16\x49" "\x66\x36\x96\x4f\x82\x28\xfc\x79\xfe\xfc\x37\x33\x7d\xa0\x47\x6e\xf0" "\xb9\xb0\x69\xfd\xb5\x6f\xe8\x93\x41\x41\x41\x11\x2b\x35\x19\x53\xb9" "\x6a\xee\x8e\xa0\x47\xfd\xd1\x98\x1e\x66\xc9\xee\x00\x8a\xc4\x15\xf0" "\x6f\xb5\xee\x21\xce\x40\xd7\x72\x46\x83\x43\x77\x47\x74\xc9\x8d\x32" "\x86\x2c\x58\xd9\x0a\x12\xb3\x47\xd9\xb7\x21\x29\xa1\xc1\x38\x25\x79" "\xa4\x57\xf8\x2f\x60\x3b\x97\xd9\xdb\x8a\x5c\x2e\x9a\x78\x70\x5f\x05" "\x56\x52\xdb\x0b\x85\xe2\x6e\xb1\xe6\xc9\x54\x4e\x2a\xa5\xec\x82\x51" "\xa8\x79\xd3\xe7\x55\xd6\x65\x24\x40\xc0\x6c\x2f\xdc\x1d\x36\xfb\x7d" "\x2c\x38\xbc\x07\x9b\xb5\xf5\x09\x73\x20\xaf\xec\x3d\x28\x18\xbd\x95" "\x24\xd7\xed\x51\x27\x52\x25\x40\xa7\xed\x6a\x0c\x6a\xcf\x5b\x60\xe4" "\xd0\x0c\xde\xa2\xda\x19\x0e\x4e\xf3\x36\xbd\x0a\x64\x4a\x69\xda\x92" "\x9d\x1a\x1e\x4c\x0f\xdb\x34\x47\xf5\x44\x8c\x0c\xd2\x25\x62\xca\x9d" "\x8b\xfa\xdb\xe3\xa3\x4a\x7a\xa0\xbb\xed\x7d\xbe\xfe\x37\xe8\xb0\xb4" "\x83\xd5\xa3\xba\xf2\x4d\x6b\xec\xe2\x11\x43\x20\x68\xbc\xb3\x43\x76" "\x01\x2d\x6b\xea\xd7\x6a\x9d\x34\xe0\x8c\x26\x59\x9b\xde\x8c\x1d\xe9" "\xdc\xa2\x49\x1d\xac\x53\xc5\x89\x86\xb9\x7f\xb9\xa8\x89\x6b\xd7\x35" "\x5a\x9f\x64\x6c\x8e\x48\x69\x23\x0e\x3b\x06\x40\xeb\xa6\xe6\x6a\xca" "\x03\x98\x06\xa4\x0b\xec\x0f\x3b\xe2\xe4\xc4\x80\x65\xf0\x48\xa5\xd3" "\x44\xe4\x14\xcc\x9a\x0a\x1e\x1c\x7d\xa9\xe4\x55\x77\x10\x21\x4d\x66" "\xd8\x5e\x16\x2d\x6d\x6d\x54\x3e\x01\x37\x3d\xde\x29\xe5\xfc\xb3\xa6" "\x23\xf7\x90\x9e\xfc\xdc\xbe\x36\x4e\x97\x07\x69\x5b\x4f\xfd\x8e\x93" "\xc0\x7e\x1f\x3f\xd2\x4b\xf5\xd3\xd1\xd0\x53\xe9\xc6\x2d\x61\xb9\x5a" "\xa9\x3f\x14\xac\x20\xcf\x85\x48\xd3\x85\x63\x20\xaf\xa3\x3c\xb6\x7c" "\x01\x26\x31\xbb\xad\xe3\x5b\x14\x3a\xed\xa8\x3d\x04\xb8\x6b\x31\x12" "\x45\xc8\x2d\x4f\xf2\xdd\xb8\x3f\x16\x96\x37\x6f\x03\x24\x70\x5d\x12" "\x90\x25\x8c\x43\xa9\x77\x81\xf8\x23\x9a\x30\x2a\x28\xe1\x71\x7f\xea" "\xac\xfd\x4c\x19\xfd\xa3\x03\x9d\x6c\x04\xe5\x0e\xb2\x86\x7b\x80\x0f" "\x56\x9b\xdb\x8e\x29\xc8\x2d\xed\xcc\x79\x3c\x42\x08\xbd\x35\x90\xb3" "\xdf\x56\x90\xc7\xd1\xfe\x21\xf4\x70\x20\x17\xef\x24\xeb\xbb\xb4\xd1" "\x89\xa4\x2d\x29\xcd\x95\xb2\xa8\xb1\x57\xdb\x64\x78\x34\x7f\xdd\xc6" "\x53\x1a\x82\xed\x52\xaa\xba\x29\x27\x32\x36\xfb\xf6\xeb\x65\x28\xad" "\x69\x98\x36\xe2\x7f\xbb\x97\x06\x2a\xde\xee\x8c\x91\x13\xe1\x29\x82" "\xb9\x63\x18\x1f\xe6\xfd\x80\x5e\x56\x58\x93\x0a\x4d\x4a\xe2\x09\x60" "\xa1\x40\x55\x08\x53\xa5\x26\x91\x19\xd3\xf7\xd2\x9b\xdf\x85\xb4\xff" "\x20\x15\x99\x23\xc6\x14\x30\xf2\xc5\x99\x4c\x91\x23\x38\x02\xed\x8c" "\xf5\x2c\xeb\x12\x08\x8c\xa9\xfc\x3d\xa3\x4d\x87\x44\x60\x7b\x4b\x36" "\xcf\x1f\x70\x8f\x9a\x34\x0f\x3b\xd6\x96\x06\xf7\x22\x0b\xb8\xfb\x43" "\x03\xa9\x12\x61\x81\x13\x5d\x20\x08\xeb\x24\x0d\x53\xb4\xbc\x02\x00" "\x57\x7a\xd7\x32\x13\xe9\xbe\x85\xd2\x97\x9a\x53\x90\x64\x92\x5d\x84" "\xbc\xd9\x98\x78\x3e\xf0\x5a\xa2\x88\x04\x7a\xda\xc4\x31\x11\x45\x3c" "\x25\xf9\x0f\x07\x06\x14\x07\x59\x00\x4e\xbc\xb1\x13\x5a\x1d\x9f\xbd" "\x4e\x28\xfe\x68\xce\x05\xa6\x1b\x71\x94\xfa\x35\x81\x7a\xbd\x7d\x04" "\xcd\x1a\xae\x33\xe2\x51\xf2\x2e\x43\x59\x87\x37\xb6\x2b\x59\x62\xd5" "\xe5\xbb\xbf\x1b\x4f\x96\xf7\x09\x0a\x03\x75\xb9\x6e\x40\x7a\x3d\x2c" "\x69\xd4\x5f\x03\xe8\x80\xea\x5e\x1c\x89\xde\xac\x14\xfc\xd8\x0d\xdc" "\x24\xaf\xe4\xd5\x16\x37\xa1\x1c\x77\x0c\xb7\xbf\x34\x85\x13\x22\xb8" "\xe0\x62\x68\x76\x24\x10\xb4\x1e\x74\x90\x0c\xc9\x98\x11\x0a\xb2\x38" "\x88\x9e\xdf\x2c\x26\x0b\xc7\x69\x2c\x8c\xa9\x8b\x18\x8b\xee\xc5\xcc" "\xcc\x34\x04\xd3\x0d\x64\xbc\x7f\x95\x3e\x08\x47\x8d\x23\xee\x9d\xfc" "\xad\x0d\x2d\x38\x1a\x96\xc6\x8f\x4d\xcd\x16\x6e\xd3\xc9\x4a\x6f\x8c" "\x69\xbd\x4a\x79\xb0\xec\x6e\xcb\xd1\x52\xb7\x35\x6d\xc6\x81\x1f\x9a" "\xe0\xba\xb5\x72\xcb\x88\x46\x51\x85\xa8\x7a\x83\xe1\xe4\xc4\xe8\xd9" "\x7e\x38\x42\x7f\xca\xa1\x74\xfb\xe2\xbd\x00\xd0\xfb\xbb\x12\x5d\x06" "\x2f\x12\xe4\xf4\x45\x46\x93\xc2\x11\x51\x90\xf7\x52\x37\xc8\x89\x9d" "\x0b\x76\x96\x54\xdc\xf8\x3f\x35\x96\xf4\xe5\x00\x2c\xef\x7a\xc0\xca" "\xf2\x10\x17\x9a\xaf\x7c\xce\x84\x88\x84\xb8\x21\xfd\xbc\xc1\xaf\x41" "\x19\xe4\x2f\x5e\x9f\x0d\x7d\x62\xa9\xfe\xdc\x50\x71\x91\x79\x5d\x71" "\x09\x43\xfb\xcf\x38\x21\xee\x6c\x49\xd3\x4d\x54\xde\xc0\x8f\x69\x9e" "\xd3\x52\x62\x82\xb8\x46\x72\xa1\xd2\x7f\x0f\x03\x38\xdd\x5d\x15\x0f" "\xb8\x41\xcf\xfa\x08\xf7\xd4\xfc\xc2\x76\x35\x87\xff\x37\x6e\xc9\x30" "\x09\x21\x14\x75\x9a\x1f\xef\xed\x83\x8c\xe6\xf0\x3c\x39\x88\x1c\xb6" "\x53\xa6\xa7\x07\x6f\x46\x62\xca\xfe\xe9\x8c\xa2\x6b\x31\xd2\x2c\x1f" "\x5c\xe4\x00\xd5\x7b\x09\x1e\x67\xa4\xef\x10\x1c\x20\x33\xec\x99\xdc" "\x01\xb6\x8b\xac\xa5\x62\x4e\xd0\x27\x61\x1d\x5c\x6b\x6e\x1c\xb6\x96" "\xcb\xed\x28\x75\xf4\x25\x53\xe0\x6a\x51\xf3\xda\xd0\x31\x50\x18\x6a" "\x91\x5f\xb5\xde\x8f\xf5\xfb\x3f\xc4\xcd\xab\xdd\xc1\xed\x4b\x38\xc2" "\x37\x24\xe7\x71\xac\xe7\xe7\x64\xb7\x37\x7b\x64\x9f\x06\xfd\x63\x9f" "\x56\x77\xc0\xdf\x50\xb9\x15\xd8\x65\x67\xd1\xfd\x3d\x45\xfc\xe4\xcf" "\xd7\xff\x96\x98\xd8\x5d\xab\xc2\x45\xc5\xc7\x61\x71\x3c\x10\x1b\xb0" "\xac\x56\xa4\xfd\xc8\x3c\x18\x2f\xa1\x96\x06\x90\x18\x68\xd1\xec\x4f" "\xb2\x3c\x68\x5c\xee\x29\x89\x63\x6d\x98\xe2\x72\xf5\x58\xda\x8c\xc9" "\x57\x9b\x0c\x55\x3d\xfc\x03\x13\xe4\x04\xd0\xee\xf0\x1d\x2c\x51\x4a" "\x75\x29\x20\x06\xf4\xa5\x05\x9f\x6e\x62\xfa\x1f\x53\x1a\xa4\xda\xdf" "\x85\x66\x63\x04\xbb\x5d\x2f\x41\x21\x06\xd6\x4e\xab\x59\x98\xc1\x7c" "\x87\x92\xd8\x35\x19\x52\x99\x03\x05\x64\xdc\x94\xc0\x11\x76\xd5\x53" "\x00\x13\xe4\x57\xff\x82\xd1\x99\x2d\xd4\xbb\x71\xad\xf9\x47\x76\xd0" "\x44\x10\x7b\x14\xc3\x56\xd0\x03\x47\xa0\x2c\xa4\x3e\x65\x37\xf1\xea" "\xbc\xfa\xc2\x19\x9c\x69\x7c\xe3\x44\xbb\x66\x91\x6f\x86\xe0\x05\x0f" "\x71\x4e\x12\x43\x2e\x02\x41\xd5\x93\xfe\x52\xe5\x02\xdb\xf3\x07\xe8" "\x72\xf8\xbf\x96\xaf\x1a\x1c\xbd\x11\xa1\x9f\x49\xc6\x40\xce\x1f\x9f" "\x16\xb5\x4b\x44\xfe\xd2\xd2\x67\xdc\x43\x5e\xcf\xff\x80\x15\x26\x2e" "\xa2\x33\x7c\x2c\xeb\x47\xb4\x30\xc4\xd7\xef\x63\xbd\x24\x56\xc2\x5c" "\xd2\xeb\x43\x5c\x01\xb9\xb1\x80\x76\xc2\xe9\xb3\xed\x3d\xe6\x29\x8a" "\xab\x1e\xe1\xec\x6c\xf9\x45\x2d\x63\x54\x2c\x9e\xc9\x71\x4a\xcf\xf1" "\x33\x93\x7e\x2c\xd7\xe0\xa5\x39\xe5\x34\x62\xc3\x0f\x7e\x69\x48\x35" "\x47\x72\xe5\xf1\xcb\xdf\xaa\xec\xf8\xec\x05\x93\xfa\xd6\xb2\x4b\x9d" "\x3b\x20\x07\x3a\xaf\xa6\x5e\xf7\x29\xef\xb8\x7c\x52\xb0\x0d\x4c\x57" "\x51\x9e\xed\x92\xfd\xb8\x80\xe5\xf7\xa9\xec\xa9\x6d\x29\x5f\xac\x1b" "\xeb\xea\x24\x02\xc4\xf5\x76\x00\x5a\x80\xbf\x00\x4f\x66\xfe\x98\x1f" "\x25\x19\x29\x75\x55\x4b\x55\x81\x79\xea\x8f\x73\x5a\x22\xf0\xec\x9e" "\x74\xc7\xc7\x6e\x2a\xff\x53\xc6\xf2\x80\x25\xa7\x86\xd1\x29\x10\x84" "\xd0\xcf\x98\x6d\xdc\xb7\xa3\xcf\x55\xef\x83\xfd\x8a\x91\x29\xa5\x16" "\xde\xc1\x72\x24\x13\xa0\xa6\x42\x95\xc1\xfd\x9d\xae\x81\x60\x07\x2a" "\x0c\xaa\x66\x0b\xec\xe9\xbe\x5b\xa4\xd3\x24\x04\x65\xc1\xe9\x62\xbd" "\x56\xe4\xf0\xe5\xc3\x3e\x06\x79\xb2\xf0\x13\x62\x9e\x44\xaa\xee\x10" "\xe0\x47\xf5\x82\x0c\xe4\xa2\x1c\xf4\x80\x6a\xcf\x52\xe7\x54\x44\xb9" "\xbe\x06\xa2\xce\xd1\xe5\xc2\x0f\xa1\x65\x60\x15\x23\xa5\x28\x1d\x95" "\x75\x04\xfd\x7a\x16\x78\xe9\x20\x62\x96\x04\x0f\xbf\xa1\x24\x2c\x3d" "\x66\xf0\x53\xe8\x4b\x11\xd5\xd1\xb3\x62\x5b\xc6\xb4\xa3\xc9\x93\xce" "\xed\xf9\xef\x08\x4e\x89\x56\xb0\x9c\x7f\x0a\xc2\x6a\xb6\x99", 8192); *(uint64_t*)0x200000000bc0 = 0; *(uint64_t*)0x200000000bc8 = 0; *(uint64_t*)0x200000000bd0 = 0; *(uint64_t*)0x200000000bd8 = 0; *(uint64_t*)0x200000000be0 = 0; *(uint64_t*)0x200000000be8 = 0; *(uint64_t*)0x200000000bf0 = 0; *(uint64_t*)0x200000000bf8 = 0; *(uint64_t*)0x200000000c00 = 0; *(uint64_t*)0x200000000c08 = 0; *(uint64_t*)0x200000000c10 = 0; *(uint64_t*)0x200000000c18 = 0x200000000600; *(uint32_t*)0x200000000600 = 0x90; *(uint32_t*)0x200000000604 = 0; *(uint64_t*)0x200000000608 = 0xa5; *(uint64_t*)0x200000000610 = 1; *(uint64_t*)0x200000000618 = 3; *(uint64_t*)0x200000000620 = 7; *(uint64_t*)0x200000000628 = 2; *(uint32_t*)0x200000000630 = 0x68653094; *(uint32_t*)0x200000000634 = 2; *(uint64_t*)0x200000000638 = 4; *(uint64_t*)0x200000000640 = 0x100; *(uint64_t*)0x200000000648 = 0xfffffffffffff000; *(uint64_t*)0x200000000650 = 1; *(uint64_t*)0x200000000658 = 0x8ec; *(uint64_t*)0x200000000660 = 9; *(uint32_t*)0x200000000668 = 0x1d; *(uint32_t*)0x20000000066c = 2; *(uint32_t*)0x200000000670 = 6; *(uint32_t*)0x200000000674 = 0; *(uint32_t*)0x200000000678 = 0x7a41; *(uint32_t*)0x20000000067c = r[2]; *(uint32_t*)0x200000000680 = r[3]; *(uint32_t*)0x200000000684 = 0x80; *(uint32_t*)0x200000000688 = 0x5b; *(uint32_t*)0x20000000068c = 0; *(uint64_t*)0x200000000c20 = 0; *(uint64_t*)0x200000000c28 = 0; *(uint64_t*)0x200000000c30 = 0; *(uint64_t*)0x200000000c38 = 0; *(uint64_t*)0x200000000c40 = 0; syz_fuse_handle_req(/*fd=*/r[0], /*buf=*/0x200000002140, /*len=*/0x2000, /*res=*/0x200000000bc0); 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; }