// https://syzkaller.appspot.com/bug?id=58f3e48af1b6a437c63831453dc4551bf819a5cf // 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[2] = {0xffffffffffffffff, 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*)0x200000000400, "./file0\000", 8); syscall(__NR_mkdir, /*path=*/0x200000000400ul, /*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*)0x200000002080, "/dev/fuse\000", 10); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x200000002080ul, /*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*)0x200000000800, "fuse\000", 5); memcpy((void*)0x2000000006c0, "fd=", 3); sprintf((char*)0x2000000006c3, "0x%016llx", (long long)r[0]); memcpy((void*)0x2000000006d5, ",rootmode=00000000000000000040000,user_id=", 42); sprintf((char*)0x2000000006ff, "%020llu", (long long)0); memcpy((void*)0x200000000713, ",group_id=", 10); sprintf((char*)0x20000000071d, "%020llu", (long long)0); syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x2000000020c0ul, /*type=*/0x200000000800ul, /*flags=*/0ul, /*opts=*/0x2000000006c0ul); 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: // syz_fuse_handle_req arguments: [ // fd: fd_fuse (resource) // buf: ptr[in, buffer] { // buffer: {4e 53 50 99 4e bf 71 ce 30 49 a5 8c 5d 05 00 78 bf 16 b0 75 // 7a 4c 27 b4 55 e2 a5 47 73 95 87 dd 33 80 b5 df 8f 40 a0 69 6c 5b d6 // cd b6 72 cf fe 4d 87 0c 5c 90 ca 92 09 5b 9e bf 3e 92 fe 31 d8 cd 74 // 27 5d 85 7d 34 a7 4f 7e ec c7 fa c1 5e 2f 14 8d 4e 9d 47 bb 45 b8 58 // bb f0 78 99 99 70 d1 80 f2 8d 7b 2c ef d9 26 35 d4 5a 56 3d 92 29 c9 // fd 77 0e fd c0 84 8e 52 fa 5e fd 9a 7e 5c 94 a1 ba 94 b4 b7 c7 50 7f // 8b 08 19 bb 20 91 0f 9f 50 a8 3a 01 0a bb e1 26 dd 9f 6a 7b 84 ea b6 // b0 d5 ce 78 d2 ad e7 7a 5f 7e 4e 99 7d f1 d0 3f fa b4 b4 c9 45 d8 03 // e4 45 79 09 01 31 27 a9 87 69 c9 38 c2 37 f3 72 63 bc 50 9a 42 bc 56 // ff 2d bf 80 e8 47 e2 c4 07 00 9e ef 94 f1 8e 1e 59 06 9d 62 29 8f db // ad ae 00 7f fb df 40 3c 50 49 a4 53 0a c0 ab ec ce b5 60 8d a0 27 54 // c9 a5 75 af 52 c0 b7 e4 12 26 e2 d6 42 a8 14 86 1c 43 10 c9 35 bc ba // e4 13 51 6d de 21 32 65 2b 39 c7 aa 02 18 a6 ce 65 da bb 44 94 96 52 // 09 ce 87 9b a7 e7 e5 90 39 db 5c 1d 36 d6 a7 f8 6d 72 dd 59 95 4f d6 // f4 61 24 a2 50 6b 24 5a 0d b1 1a a8 9d 2f eb 31 2a 65 96 ea 2f ec aa // 7b 60 21 f3 7a 25 5f 62 8d a7 ff 6b 6c 36 b5 14 d3 b6 be 34 e5 05 f9 // da c6 ac fb 88 81 98 00 46 99 fb 35 0a c9 34 31 53 35 54 65 8c 49 57 // df 36 70 35 91 43 8d 64 88 bc 03 dd 82 90 a7 5e bb 36 7a 48 1a 50 e7 // 9a 46 b0 4d 00 56 49 ca bd 79 e5 c6 32 6c 06 6b c2 b6 fc 5f eb b8 7e // f6 6d 83 2e f3 1a 16 c2 a4 50 a0 b9 90 fb 54 9a 5d 81 0c 92 8d 1a 81 // fa 1d c7 95 db 26 07 ac 7d 46 cb 57 16 b6 8a cd eb 00 98 7e 42 9f e6 // a3 94 63 2c 83 b4 33 36 e7 b5 1d 9c fd b5 0e 83 d8 c6 ba 17 84 d9 f7 // 4c 16 b4 76 e0 48 e6 5e 7a c0 af 68 3b 34 7d 73 77 ac 17 95 42 2e 00 // e5 bd 8d a9 b3 13 af 83 ab b3 34 88 61 11 6d e7 a9 99 59 16 9b 7d ff // 9f 7d 9b 7a 6d 10 7f 2e 76 67 0a 62 14 a4 19 bf 82 98 f8 0e b5 70 fa // 29 26 4b a5 7a 38 3c 5e c5 83 6c e3 31 04 ec af 1a ec 76 e3 11 28 0a // 1d 2c 8b d7 ab ff 3a 5a 24 2e 6a 63 7f 7d b6 30 38 ef 5d 78 ac a9 c6 // 80 d7 2b 60 da 4d be b0 e1 e6 83 dd c8 28 98 64 7c 58 9a 81 b8 f9 2d // b0 67 11 d8 a0 af 05 56 0c d7 7f a7 00 52 83 db 71 e8 da 21 71 3f cc // d4 50 82 20 62 b9 94 d1 52 aa ed 2c dc f0 de c9 c6 06 17 e1 5b a4 df // 62 8d a4 e7 12 79 bf 9d 1e ee 5c 7f 05 5c 27 cd df dd 45 f9 22 5d 5d // 55 29 ef 71 19 e2 e3 c9 83 8e 73 62 97 1e 06 9b e4 87 79 7e 94 9b 24 // 29 7d e1 9c 61 34 0d 1c d7 a2 bf a3 88 0b 91 a7 1e 93 47 20 a5 9e 1e // 0e a9 92 d2 a1 63 3a 08 52 ad 8a dd fc ab 73 a2 91 e3 57 45 e6 94 a6 // 47 1f 42 9b 12 43 05 88 6c 1f 79 f6 7c 78 de 3f 3e c9 98 c9 1e 7f c5 // 9d 26 76 6c d4 46 f6 f0 de 60 3f 2c 68 92 e1 3c da a3 7d 9e 8e 11 8d // 09 8b 69 86 cc d9 91 99 3e c1 52 19 3e 7d 77 39 4b 05 b9 9e 7d 31 0c // 50 67 07 f1 be 52 24 94 38 fb a9 61 5f 6d ad 2e c7 24 4f ed f3 6e 34 // ec 31 1b 7d 6b ee 64 27 1d 64 91 07 9e 16 11 90 de d7 e2 8e 2a da 43 // 07 a9 b2 98 6c 26 7b 1a 30 d2 f7 20 ff 23 40 80 11 f1 d5 89 ce 9e e7 // 7f 98 1c 78 33 65 6c cf 7d f5 b3 a8 7e c2 53 ff 7c 7e f1 e6 7c ee b1 // 0c 93 e3 fa 68 3c da da d6 58 50 ff bc 40 2b 77 44 e9 4c de ce f9 db // 9d 26 4c 75 5c 53 d3 62 78 df 23 d4 c9 68 5f de fa 69 f7 58 8a 33 b8 // a6 4b 35 19 1e e8 1a bc b9 76 55 77 d1 75 cb 06 e3 1c 58 28 07 ff 72 // 43 bf ef 44 96 1f bc 0f 8a 23 52 42 f5 1e e9 91 ea 62 18 03 d4 dc fe // d9 0d 26 f0 04 b2 99 42 5b f2 19 f6 d1 85 fe 6e 08 8a e4 46 01 b0 3d // ef ad a1 87 94 fe ac 93 78 76 96 a5 d4 19 f0 9f 76 9b c5 90 f4 3d 2d // f6 a1 31 f6 89 5d a2 de 12 0c 26 44 68 5e 57 b1 d4 76 c6 ab a5 88 1e // 95 4f b2 57 53 56 45 2b 11 8b 94 2c b0 2b 4e a0 fc f8 f1 bb b9 a2 3b // 6e 32 c9 d0 ac cd 3d d8 61 45 2a 3a d7 7b 38 fe 70 9e 21 69 74 93 2d // eb 53 97 fd 80 33 ff 0e 07 3d 93 ac 0b 4b e7 62 bc a0 42 4d 69 bd 57 // b2 2b a9 14 13 3f 87 67 1a 29 49 8b 26 8c 29 11 e7 93 21 54 63 ca 21 // 64 e3 80 59 45 61 07 dc b2 9b ee df d6 27 7e 2b 41 a1 1d 1c 6f 13 61 // b1 98 75 c9 38 4f 04 f9 c5 3c 18 56 d7 1f 36 0a 8f af e0 5f 7a ef 75 // 0e c0 cf 2b fc fa 97 1c 01 7a d0 71 b6 9a 18 fd af 97 0b 38 4d 4c 88 // 9c fa 5a 03 97 db e8 95 43 a5 c6 4e 26 45 d6 ed f9 59 aa 60 70 9c e0 // 22 5f e6 c3 26 6c 7e f6 21 57 ac 8e 78 fd dc d8 a1 f2 ca 5b 58 12 82 // 18 d1 92 76 88 55 15 77 53 26 ae ee e0 22 6c c8 10 84 3e b0 51 44 bf // 8e 2f e3 34 0c f6 0b 32 ca fd 96 d2 3c d7 d0 d3 ad cb df ec 9a 2a 3d // 88 30 7c 36 26 33 b1 c5 63 76 08 ea 84 76 d9 00 b3 f8 36 a9 73 4b 5e // ca f5 e8 29 83 57 71 28 d3 f7 4b 90 3b 0e 3b f6 43 26 c1 b5 64 ae 42 // ae eb 0c 07 70 2b 63 a9 ff 74 a2 af 6b 45 e5 18 5a 53 f3 6c 17 bc 29 // df bc 0e a2 8c a5 cc a4 3a 15 d7 51 e9 88 7a d3 e6 a8 7f aa cb 6a 27 // 8c 4c 8a 8d 21 b9 a7 7b 97 76 f3 31 02 a6 e6 45 e9 9c c5 cb c5 43 ed // 06 74 28 2c 2b 9f 8e 5d 14 c2 59 9a a9 ac 8f 81 43 8c 77 f2 b9 36 8b // da c8 2e dc dc 53 66 f3 9a de c9 e9 a3 fb d5 5b 79 ab c1 6d 2e bf f2 // 6b 7d 0c 88 f1 8b 48 6e 58 36 33 35 75 e3 fc 78 08 cb 42 3b 44 78 1c // 57 96 57 67 86 29 22 b4 ff 32 d9 ba e7 62 96 84 3a 46 f4 30 21 1c 27 // ef 9d b1 68 43 00 26 a5 69 16 23 28 4d fd 45 9d bd d1 f1 a6 ec 9b fa // d6 66 50 7e 6e ac b1 e2 a7 86 6d a2 e1 2e 6d 59 6d 0b bb 15 05 00 59 // 00 13 d9 28 8a f2 05 96 44 7f 97 bf 17 44 eb 9c fb 24 4d 8f ca 26 9b // 1f b7 1e 14 de 66 4b e4 e9 5d 83 ff f1 b8 ab cf eb cf 3e 78 c1 c6 6d // 28 f2 60 fb 0c 19 f9 fb cd 2a bb dd 7d d7 24 6e 49 dc 25 d9 54 bf 25 // f8 10 a2 ff 6f 90 69 df dc 62 e7 17 0f e3 b0 96 4b 2a c9 50 24 25 6d // fa 3e 7a 42 6b e5 bb 5f 70 7f d8 2c 2b 3a fe c5 d5 dc f5 bb b8 fc b6 // db c1 b5 9f 6c 53 30 96 6c 70 d8 b0 16 95 69 03 a4 27 88 17 41 4b a3 // 65 2a 10 2d 7e 7e 37 ec c7 94 00 26 7f c3 bf 76 01 c0 73 1f 87 d4 79 // c3 3f 10 07 35 e7 48 87 41 55 26 7f 70 8c ea 49 d5 49 e9 3c f7 a3 98 // b2 03 73 dc 90 ad 9a fd 56 d9 c7 7c d2 4e 2c 4a 18 f7 13 0b 36 6c 7f // e5 b2 6b c4 d1 1c a1 ed 1b 98 fa 0b 4d 73 96 f8 2a e6 59 3f 45 75 d1 // 9f 4d 8f d5 86 c9 91 12 9e 5c be 15 c8 ba cc 89 c3 ee 15 ca 47 1d ea // 96 6b 5c 48 ed e0 d3 ba 2a 7e 28 c7 5c 04 e6 a4 aa 49 a6 1f 4e 39 1f // fe 78 eb 5e 40 a5 ef 34 9f 3a a4 d1 5f 22 91 cc 86 ec 7e 47 ae 30 1b // f0 b6 08 3d ae 44 b6 95 82 0a 89 3d 46 73 25 53 ef 15 ed 1c 16 d2 82 // 68 d5 2a 7e 3a 7e 7c 00 9d 0c 07 08 a3 56 d3 31 0c 1e bc bc ca 4d 7a // cf 43 3e 34 bf c9 fc 11 54 98 14 2d cc 72 5e 7a 16 87 9c 75 e4 c2 f0 // 1c 6c 98 b3 96 19 f3 24 8b f5 30 e6 ee 59 34 67 e3 8c f4 02 6c fd c4 // db 62 96 56 57 22 d5 87 f3 c5 80 75 0b 14 53 ec c1 41 c0 46 14 95 55 // 12 97 d8 8a e0 34 ac bd 4f 5e 80 ce 19 8e 66 40 c4 c1 e9 50 15 29 98 // 81 09 ce f0 06 eb 20 90 a6 fc d9 74 d7 f6 02 90 b7 8f 1a 8c e3 05 1a // c2 d6 96 36 c3 21 9f 0a 6a d8 c2 54 76 43 96 a1 68 4b 2f d9 80 5b 18 // 53 52 5f 2e 64 0e 51 31 97 28 3c c4 d4 07 3a c0 33 e0 53 9a 88 f0 8a // ab e1 42 3c d4 0b 8a 7e 07 34 37 d8 12 b5 7a 5d 39 a0 53 1d cb e1 3f // 44 66 e8 9e fc 66 c2 a1 e4 b3 9a 3e 0b 30 73 c9 d4 4e 6c f9 b8 5f 4d // f5 c4 e0 36 28 d0 5b c0 f9 4e c0 42 34 c9 ec a4 ed 17 46 3f 19 04 06 // 83 4b 02 88 87 28 f6 25 37 1c da 75 d1 5e c1 9e fe bd 59 f0 0a b6 59 // eb 94 eb 88 bc b2 11 08 62 a3 69 ad 59 96 10 c1 53 0f cc 11 8f 5b 82 // 20 5b c5 21 5f e3 62 3a c8 ec 29 7d 8f f4 ee e7 5a ce 20 73 1c 5d 50 // 5e 66 05 c2 62 03 b7 f7 54 16 4c 94 63 f0 a6 ee fe 3a 28 80 b8 e0 6e // 7b c6 6b b2 ad cc 1a 3f 9b 03 25 f5 ec 31 d1 2a 25 f1 f7 3c 2a a6 bb // 3a 76 80 d7 86 a0 82 a6 3b 13 cc e1 82 2f a6 a4 b0 85 a8 71 ae 34 09 // ee cb c1 fd 86 61 b5 d5 2b b2 b8 b7 2f 23 e2 4a 22 50 75 f2 72 ed 2b // a0 c6 c5 c6 93 81 1a 0e f8 db 6d a7 cf e7 c9 66 c6 47 f0 18 7a d2 23 // ee db 10 12 a5 b7 af 10 3e 98 46 4a c7 68 c7 9b 21 ca 45 b1 2a 52 cf // 26 1d e0 d3 67 44 2c da 71 c4 b8 ee 39 c9 4d ed 1b 22 ba 06 c1 38 36 // cb 46 7e ba b4 ef ea 07 bd f1 e3 de 8d a5 6a 0e e6 d4 f8 48 01 12 53 // cc 21 fa 42 1a 39 94 35 13 d3 16 7b 7a 73 e0 d7 52 b8 61 c4 98 14 bc // 54 10 eb e5 3a 02 64 f7 60 68 c9 1e e6 ec 9e 2d aa 34 34 82 b2 f0 f0 // 6e 60 5c 5a af 81 f2 a3 cd 57 0e fc 20 94 b4 bc 45 2f 95 26 f1 bb e7 // b2 2b 69 4f b8 10 9a 5a 98 7f ab f6 25 09 12 d6 09 9e 67 da 9c ac 79 // e8 b6 f2 cc e4 70 2d 1f 17 cb c5 d0 6c 38 b8 a4 81 55 ec 75 83 69 c1 // 85 de d8 39 fb 58 cd 73 6f bb 74 10 5f e5 ba f4 4e 7e 3e d0 68 43 f2 // 36 01 b6 0a 43 b1 f8 8f d2 9e 9b 3f 58 47 9f 9b 95 39 2a 39 d5 ba 1a // 31 ee 44 41 ca 2d 1f b5 7c 0a 86 78 a0 7a 72 4b 7a 65 b2 ab 16 d1 da // 19 7f 43 5b ce 3e f0 03 fc e2 7f a2 f0 a6 7c 9d d6 c9 30 a4 bc f5 9e // 79 e5 7b 70 fa 8e ae 6f e3 49 72 95 8c 28 b5 66 42 d1 4e a8 9b f4 d7 // d6 f7 fc bc f4 fd a8 bd 08 fc 9f e4 24 de 43 59 11 2b 11 f8 1f bd c1 // 50 56 58 36 36 97 71 3f f6 e1 f8 ca 3c 4b e3 4a 79 99 3a 90 91 f6 01 // 7c da 6c 74 89 ae 5c 07 06 25 55 23 14 27 c3 eb 42 a0 49 f4 2d 22 a0 // 60 98 3b 04 4a 7d 34 ab 5d 2b 53 86 cc a7 9a f7 23 96 a4 8a ad 6b 8d // cd 78 55 41 0f c6 10 6e 4a 16 59 94 f2 6e ff f1 e7 ea 0a a8 f5 60 33 // 3b 5d fd b2 a0 d8 99 b0 fd a9 55 15 5f 90 c7 5e ff d3 c9 53 5d 88 50 // 8e 83 6f eb 78 07 d5 7b 2a 57 cc a4 2d 3d 08 fe 7d e6 0d 2a 33 37 6f // 49 bd ac dd 3f 81 4b d0 92 7f 41 7f 15 ad 62 a1 0b 30 2f 1c b3 90 aa // f8 2b 0b c6 af 46 bb f9 90 b6 ad a4 5e f8 3c e1 30 29 d1 67 c6 51 34 // e7 b8 2b 59 dd fd c3 67 e6 1c 40 de fd 27 32 cc eb b1 d4 00 0f 6c 74 // 2d f9 64 e1 fb 39 0c 25 5d 2b 1d fc 74 5c 6a b3 4a f8 09 6b 5b 67 aa // 17 9e 3f 34 18 54 f7 a6 9f 7b f4 76 64 c8 32 03 7e c7 a7 8f 8e 27 20 // 9e 3f 20 f8 33 fb 6e 8c 0f c4 a4 09 20 a5 ad 2b 06 18 98 2f f7 25 40 // 00 9d 5d b8 2f 0f 5b ca ed 2a 27 f3 5d 1e 50 ea a0 cf 8e 48 c7 a2 d4 // 3c 25 d0 26 4d b7 50 a7 f3 3b 44 a4 bf aa e5 76 cf 9e e7 59 4e d2 04 // 51 38 99 56 65 64 ed 8b bc 97 ed 18 b1 d8 86 8f 92 6a 5c 70 ac 06 fb // ac 1e ad e4 67 92 18 6b e7 bf 8f fa 33 01 23 9e dd 09 34 49 b7 d7 71 // 92 78 2b 51 11 c1 41 69 d2 b4 a1 b3 44 3a d6 2e 4a bd f1 1a ac 6a 5b // 89 a5 b2 0a b0 ad 0a bd 94 9b 9d 64 58 2c 67 ff ce 01 8e 7e 46 de 40 // 91 fc c7 7a 65 b9 71 fc 67 c8 d9 cb f0 c3 41 ca 76 4b 10 56 ee 50 14 // d9 86 50 59 61 6a 52 5a 1d 46 ae 2f ad 15 9a fe 86 dd 1d f9 b8 24 64 // 11 82 7e 19 53 5c a0 aa 9f 83 05 0b 06 e7 0a a2 73 7f 27 e9 3d 58 4a // 9c ef 87 8a 64 2e 93 61 ef aa 5d 20 bd 8d a9 01 fa 2e 06 46 56 f6 86 // d3 b3 ea 31 d1 d8 50 ae 91 96 b7 76 45 48 f5 c6 45 0a 32 a7 17 e0 9b // 6b 7e 75 d4 3f bb da 76 e4 3a 24 f1 86 d5 57 89 33 f4 08 bf a2 8e 04 // 35 cd e5 25 fb 91 e7 1d 92 d7 04 cc 5a 9b 5e 3d b7 aa ec 46 d2 b1 f8 // dc b3 f9 21 f6 9b d7 39 7c 96 a1 e1 32 c3 9c 8f 16 56 ce a4 36 5c 77 // 9a bf 76 19 9c b5 b6 aa da 02 2e de c5 c9 01 cd af a2 e7 f3 76 5a f9 // c8 b2 0c b1 a6 78 50 85 fc b0 dc 90 13 67 b8 90 51 bd fd c6 b6 8c 52 // 15 fd 04 e2 b3 c7 e1 c4 54 a4 d2 11 32 95 3b 25 c5 09 95 af 0f 71 59 // a5 a8 d0 a1 62 1f 48 08 f1 26 a5 bd 40 dd c7 9f ed 90 f4 99 25 ee 36 // 7a 57 a0 5c 07 0f be 39 fe 2c 21 3e 7c 17 24 a9 07 ec fa 69 ef e6 e0 // 21 c0 6a 26 24 71 a4 37 7f 3c 98 09 e9 fe e4 f3 75 e2 7c 31 b6 af bb // 21 51 da 86 b7 ca b6 3c 7b 4f a4 b7 7f b3 01 72 b9 d0 d7 8b 1c 05 35 // ec 06 39 c4 91 0b 5e ee cb b5 b8 b5 c8 aa 74 c1 40 e7 ad 34 78 12 e3 // 6d b3 09 7a 7f f8 5c 09 ab 2c 00 20 20 23 07 f5 0e fe fc db 49 7b 9c // 06 0c a6 8c 4b e5 4a 91 65 b4 ce bc 6b 2e 2e 14 e5 ff b9 21 31 42 41 // 8f ae dc df 26 fd 32 6b 76 72 39 9e 71 cf ff e3 ed 71 2c ed 53 17 c2 // 54 f9 19 9e e1 0c 24 c8 02 d1 02 bd 87 49 51 3d 31 45 20 1c a4 e0 1b // c7 c8 bb cf 43 0a fa 54 1e c5 66 5f 86 df b1 43 be 64 85 21 bb 0f 2b // 02 90 18 20 14 44 78 7f 64 4f 8c 88 b7 9e 75 4e 6e a9 c7 97 ba bd ae // c7 2a 96 80 ab ad f3 a4 16 84 cd d5 7c 2b 6e 83 3a cc 08 46 be 5a a9 // 27 f1 b1 b3 65 62 d2 ac b9 ec fb 75 84 55 23 0d 05 0d ae c6 74 8b a2 // 80 a5 ed c8 6d 48 e3 f8 af 0f 8f 4f fb 18 ae 3c d3 c1 9a 82 d5 04 a4 // fd 52 bb 62 28 9a e8 02 65 72 a4 97 fe 26 8f 87 ef 4b 4b 58 86 aa 07 // ee b6 98 b7 cb f9 96 83 f7 10 af c9 ed 1f 8a 48 88 83 ce 0e b8 f7 fd // 05 5b 82 a9 fe 21 a4 09 ca a2 31 c4 1b a1 51 00 8e 96 58 91 9c 61 1e // 15 7d 7f 39 26 a5 e4 24 85 32 a6 86 0e 61 5b 9c 86 e9 fe a2 12 12 8d // 96 ed 58 c9 b8 4e f2 27 06 07 1e b6 9f 49 2e 4d 83 21 ed 9f af 6c 6a // 89 28 f8 61 72 bd c9 30 24 45 83 ea 15 be 49 7d 9c e4 ae 79 cb 3e 62 // 93 a8 51 2f fa a9 e8 e3 58 f3 c7 c7 11 70 01 fb 92 89 1a 40 b8 4f 91 // 26 cc 3d ef 5c de 67 f4 63 bb ac 96 68 b9 f5 6c 3e 4e e7 2f ce eb b4 // 7e 52 fc 22 6b ab 21 3d 81 93 51 6e 70 64 45 9f d1 36 53 50 a9 5c 5a // 1c 3a c4 4a 73 bb ba 2a 4c 17 eb e4 9d d7 81 bf f1 99 5c d7 06 b7 7b // b5 33 11 75 94 ad 63 56 6f 4c 07 30 be ab 85 ff 4c 71 3b 7f 10 b9 54 // 80 fe 99 a0 f6 76 c5 1c a1 11 16 b2 1e 87 88 7b 46 2a a9 77 0e 85 50 // 9e 4e 60 f1 98 14 81 15 f0 a3 ce 60 28 51 6a 94 61 78 d1 ac ac f7 76 // 7f 6b e7 27 78 91 36 9e ff 67 76 2a a5 8f 92 8d 48 b7 23 1e 44 d8 99 // ce a8 28 90 03 34 91 17 a5 3d 61 bc 27 b2 07 fd c9 1c 9d b6 1e 67 7d // 1e 1a 1b c6 a1 b6 e8 56 41 30 b3 35 23 3d b4 b5 de 8d 62 32 4e 6d 0c // cb 2b 08 c2 ff 92 23 24 eb 8c 50 67 11 14 2d 4b 8d 7a 21 22 3e f0 a3 // d5 34 fd b0 de 58 be 95 cd 82 71 52 f7 1b dd 0a 82 76 6b 62 b4 c8 75 // 36 f0 b7 e7 df 34 3c 42 63 18 7d a8 87 de 6e 65 d1 1d 03 60 e2 37 6c // 1d 71 c3 67 ae 85 ed ee d8 f7 67 d2 4c 64 4b 1a 9b 45 5d ed 1d c3 cc // 22 4f 99 93 6a 6e e6 69 31 c4 5e 5e 3d b2 42 77 19 ab 2d 5c d9 c2 0d // 9b b0 ec 00 4b 69 bc cb 00 64 9f 3d 8e 34 a3 57 2c 25 7d e1 14 b9 f0 // 27 d7 6b c7 db 90 07 17 5c c0 3b 9e 20 61 b6 b3 fe 74 09 e0 09 b5 37 // 15 44 e5 6f e4 38 cb d3 61 e5 b1 1e fb f2 d7 9d 1c 25 0a 1e 73 ca 8c // 60 1c 4f 4d 1e 37 61 29 09 50 42 1c 48 c7 da a4 59 65 e4 72 f5 ef 3c // 4b 85 97 44 4d c5 dc 01 cd 25 35 80 55 b5 00 06 17 f3 e7 29 1d a3 41 // 3e 3f 08 53 b1 27 13 66 61 24 05 c3 5f f1 b7 85 b9 84 d9 21 b5 18 42 // 56 28 a5 33 a2 9a b6 5d 3c 11 f4 4c 6d aa 86 f8 b6 45 7e bb 94 19 27 // 4c 48 1a a6 f3 fa 45 47 64 16 70 af f5 8b 9c c6 2c 09 93 d4 9a 50 9f // 02 de e7 55 ee 5f 1f d2 71 0c 99 5c 43 a9 1c 4f 87 3a fa 1b bd ff 19 // 42 7c ba 26 41 05 2a 8f 36 1e cb c7 2e 8a 6c f5 87 e8 3f 8b d3 11 0c // 95 fb 08 0e dc 77 a6 d4 3c d5 8c 44 7b 0e 02 26 1e 41 09 50 0c 64 58 // dc e7 0a cb 17 aa 8f 9d c1 d1 5b 94 a6 13 54 16 40 31 b5 d5 63 c2 5d // 02 46 fc 45 e6 40 1c ef ce b5 01 e1 46 89 03 e5 d6 77 75 9d be 3f 24 // bd 48 ce 55 ff 8b 8f 26 52 9f b3 b2 d6 69 20 2a 1e 8a 49 89 84 b4 49 // b4 83 0a 01 26 b1 8f 0e 78 18 2c 9c e7 8f e0 c4 48 c0 e2 78 45 b9 26 // cf de 28 fa 85 e1 56 fa 98 fe fa eb 19 ed 12 47 c9 64 3b 44 7b 43 42 // c9 4c 11 4d 3c 4c 35 ee d4 d5 b4 9a a7 0e 6a ad 45 bf b5 57 f1 5e 8f // db 2d 6e 3d 10 d8 33 8a 13 fe 3f 18 77 51 98 5b 37 a5 bb 10 b7 50 f7 // 9e 36 fc 2e 2e e9 bd ec c3 ed 15 6e 20 2e d7 b4 5a 94 80 9d 77 ed aa // 39 80 42 fc 6a 82 5a 48 48 c3 34 c5 57 30 3d 24 eb 3f 8e 01 be 06 99 // 5c eb 28 3c 70 27 2b 00 da 61 c3 38 16 28 f0 e3 72 fe 2f cc 77 9f f7 // da f7 e4 b7 f2 68 6c 39 d3 fa b6 74 b8 86 7b 62 b0 bf 9d 5c fd 0c 1d // 3b 27 05 21 f5 5f 14 7d e7 51 42 ff d7 fc 9a c7 e5 da e7 ca 2f df 26 // a9 22 2d 06 08 23 85 24 09 dd 04 0c fd 1f 66 f2 18 c6 db da aa cd da // b3 4b 12 3a f2 2f 97 38 4d 64 fa c6 4d 84 fd 63 8c 96 37 8c 8f 95 32 // a1 19 27 d4 84 40 bc 77 7f f8 b8 b9 be 88 f9 30 f3 b5 79 a7 13 c0 bc // 44 9d ca 3a 3b d5 f2 ef a9 82 40 cc c5 94 29 9e 44 45 1d c6 0c 6c 5c // 9e dd 0d 7b 77 79 12 b3 dc 40 c5 7e 0e a5 f4 42 5c d7 04 7e 68 6c 73 // 04 f0 4b a9 f7 b5 de 6a d2 bd 52 4f 1d 29 f8 80 2a 52 44 41 fa 28 60 // 15 ad f4 58 94 31 71 0a a4 d7 6d e8 a9 56 dc 1d 39 c0 a1 3a bb 7f c3 // 09 d2 42 22 d0 36 e2 04 ab 6b b4 6e f8 a7 59 5d 9e 45 12 e0 b9 d5 f8 // fd 71 9a 4e 30 72 e1 d8 06 96 70 45 78 9c 67 a1 68 1f 2a 9f 1f 4b 19 // f4 f5 e1 af da fc 17 db 7a 6d 51 96 16 14 99 e6 2a b4 b0 ec 27 64 8f // 3e eb 1f b2 b7 8f 8e cf 9b 05 cf 95 09 a3 b9 e2 a3 61 23 8d eb 1c 91 // bd bc 8b 1d 11 bb eb 93 9f d9 da 81 1c d4 39 06 9d a0 ec c0 06 65 d7 // 23 57 aa c0 1f 25 9a 03 25 40 9b 20 18 59 cc 05 69 e0 eb a6 7a 7a 9c // a7 e8 b7 80 78 d9 37 0b d3 e3 7f 05 71 68 0e de 60 cb 6b bf e6 94 35 // d6 ab 5e fd 80 cf 05 1d 11 9a 70 04 fc 0b 60 08 44 d4 92 18 d8 44 de // 8f 52 15 24 a4 7e e5 02 29 c7 da 25 e4 2a 86 39 b5 db 22 5e 7f 23 96 // 7f 5d 4f 8a 29 7a ff 04 a3 cb ed c2 98 5b 63 93 a5 ba 0b 26 b6 c7 b4 // ca 22 d3 69 b3 5b 41 07 99 d1 ad 02 82 51 04 d3 4f 73 40 8d b1 94 84 // 38 59 79 31 ed 1c 1c 26 0e 78 34 05 17 bf a2 f7 34 53 7d bd f5 ec 30 // 35 18 ff 46 40 ef e7 f7 b1 c2 f4 6b ab db 92 47 ce 8e ab ad 97 18 a8 // b9 dd b7 a1 8d 5e 87 ce d5 54 c9 d6 de 78 f8 5d 29 33 49 59 0c 6c 32 // 48 35 34 bc 96 8b 24 a2 8e b5 4b 95 15 58 9d 6d d8 eb 51 a5 ad 0b 4d // 89 6c e9 22 50 39 7c bc 40 43 23 fc df 0e e4 7e d6 34 e0 c5 82 13 bc // 5b 35 a7 2b 21 a0 98 e1 1b 79 c0 61 43 0d c8 17 c1 e0 c7 9a 5b 6e d3 // b0 02 97 99 33 f1 b8 3a 17 f2 50 b1 bd 5c 49 58 df 4d 75 53 1c a0 3e // fb da 89 f6 a9 2f e0 8c 23 ad 90 14 ff 56 2a 7f 3d cd e5 78 d6 82 5b // 98 47 b5 df 04 db ca 4f 2a a5 2d 8e 0f 4c f8 18 3c e1 21 e3 9b 50 35 // 8a 97 96 ac de 03 72 a8 ff 97 76 98 74 a8 0a b9 97 cd 88 91 45 aa d4 // 88 8c 06 96 3c 2f 5b 82 f5 3a 74 8a 67 29 fb c7 9d 35 c0 6d 84 e0 5c // 62 e4 4f f7 80 40 e5 6e bf c6 ef cf 0d 8b 49 33 7d 5a 17 c4 04 1f 0d // 5a 8b 61 62 44 d5 85 a1 62 b6 9d b0 73 ac cd 90 71 d1 2d f5 b3 26 a4 // 3b 83 4b bf fc 2f 2a 60 de af cb dd f1 c6 43 8a 17 69 d6 fb 09 fb e1 // 99 0e 89 da 12 16 4e f2 37 f3 26 ed b5 be 64 bb 64 b1 43 a0 30 de 8a // 99 b3 c5 e5 43 c8 71 cb 58 1e 2b e0 90 a9 21 34 aa 58 77 01 f8 64 90 // 7c ad d7 c1 ce 20 fc f8 f5 dc 7f 7e cd 06 a6 c1 9d 89 a9 2c a0 ad 43 // 93 c2 08 b8 0b ba 99 0c 7a 37 02 a9 c7 9b dd de 75 d5 db 24 47 19 ac // 32 19 1b 6c eb 04 1a b5 41 fb 47 68 0a 97 dc 04 22 b8 a5 0d 91 e3 2c // b0 8c d3 41 b0 b0 99 ac a5 bd 12 b6 9d 4f 89 d1 0b 75 5b 35 1a 64 89 // 18 0b 78 6a 3b eb ac 92 65 32 a4 a2 d8 5b 07 bc e6 c0 90 d1 aa af f0 // 79 e3 6d 53 94 a6 12 f1 35 1b 90 c1 3a 0f a6 bf 9d 18 8d 54 8d fe 6f // a5 1a 90 26 ed b5 20 09 c0 3e d4 5a c5 1d 05 c5 8a 95 7b cc 67 e0 5a // 58 89 85 ba 00 d7 9f 33 ae 9c dd 5f 57 21 d9 fd c7 2e e6 e8 80 70 8b // e8 7e 8a 60 c3 c0 35 c1 46 f2 09 1d 1b 9a 4c 2c fa 56 f2 92 fe 1b a6 // 22 90 d4 e5 6c 05 66 92 91 bb e9 17 f3 ca c5 18 02 a2 cc 8e 9c 90 da // df e6 66 c2 33 c5 a5 bb 71 ee 17 de ec 51 ce 60 c7 3f 57 bf 9e cb 84 // 87 3a fc c4 48 15 13 18 10 c6 c1 21 7b ea 48 5e f9 aa 27 85 e8 59 b2 // 53 15 ef 8a a3 a2 74 98 27 86 e4 5d 62 2a e8 31 fb 76 01 0d 69 a1 81 // b0 69 e4 cc 55 d4 43 6e db 10 d1 11 9b 0c 60 00 c6 d5 cf f7 c7 2f 74 // 0a 59 dc 05 07 e7 a9 52 b6 94 03 c6 26 73 f1 22 c9 d1 26 4f ac 6c e2 // 26 2e 86 cd 8d 6a 40 26 72 f8 85 30 fc 2d 16 f3 17 36 dd 49 7a 4e 85 // 32 53 ac 8d 5a ff 8d 13 76 89 5e 9f 55 19 b2 49 0c c2 a2 41 2b a0 c9 // 9c ec 85 5f 66 88 37 31 00 35 e9 2f b6 46 48 6d e1 b0 ac ff b9 1a e7 // 51 6d f3 ee ef 38 14 56 b5 5e 65 ba a5 8e 71 46 1c 92 86 87 e6 99 d2 // b2 18 14 80 55 91 38 2e 95 e1 b9 70 aa a5 32 59 91 7f 07 02 81 f2 33 // 6b 7d 57 02 49 d8 38 b3 f1 a3 27 53 c3 36 86 4e 15 f4 56 1b ad f8 fe // e0 34 a2 9c 52 ff 3f ca 74 56 ae 14 0f 83 e3 b2 fd 5b 57 c9 ae f3 f2 // 0c 66 42 00 d2 35 f2 36 ec 47 dd 2f c2 0b 14 dc 60 00 81 22 37 ae a9 // 92 d9 87 e5 46 06 79 e8 c5 b7 6d 93 1e f6 d9 51 e6 c7 08 7e 31 06 b6 // ce 2d b9 de 6f 22 8f df 3f fc 38 71 0c 0e 8d 50 00 a1 95 a7 9d 1f a2 // 30 10 38 f5 b2 7c 40 b0 9c 34 c0 25 e5 09 9d 40 c2 20 4e a0 ea e9 85 // 26 3c 91 01 ca b8 8d 68 57 a3 20 c9 e4 97 f2 23 48 a2 48 61 a5 fb 8d // 73 4e 08 ca d0 9f 99 33 74 8f f0 1e ab 22 f1 77 56 f5 86 88 dc 1b 48 // 6a 39 75 63 ee 9a d0 78 4b 88 33 cd b5 f7 c6 bc f7 6d 9c 11 05 f7 1c // 3c 6a ab ef d7 0d c6 cd 5c 66 d3 1c af 91 61 45 ac 5e d7 fa 07 0b 42 // 77 c0 44 8a b1 eb 78 c9 43 be 9a ea b0 58 7d 32 1a 4b cb 77 54 f0 70 // 88 11 78 f8 be 66 8b 68 61 24 89 9f ac 25 25 19 f4 b6 0e c4 2d b7 66 // a9 08 75 50 40 46 31 25 c2 68 50 17 74 02 a9 77 24 6d 36 d2 3a fa c0 // a1 18 89 d5 46 40 bd 8f 6f 67 0d 68 6c fd 33 f6 fc 5d 90 cf 6c bd 63 // d9 d0 fd 20 1d d4 c7 4d bb ab 89 9f 3c 23 c0 b7 e3 7e a0 b2 af f4 21 // 32 72 00 d0 da 58 b5 89 3a 41 86 ae 36 52 cc 6e 11 c2 c2 a0 e5 21 84 // a3 87 25 32 ac ce 98 c9 4c eb f4 f3 13 33 66 3a 62 0f 0d ba 0f fd 89 // c3 12 43 80 07 5b d2 8c aa 6d 44 9a 05 0b 36 61 b8 fb af 47 47 b7 7c // 49 28 b1 37 8f dc 8c 7a 7b 38 ad e1 ae ec 44 bd fa cc 82 71 d0 b1 32 // b2 02 9b 0f 35 82 f9 91 9f 5c 8c d5 43 ab c9 ca f6 b8 2b 19 7c d4 82 // c3 ef 61 a6 47 43 50 63 42 bf 50 a3 c1 ff 54 45 63 bb 8b 20 02 91 1e // e1 fa d6 98 f4 ac 13 3f fe d5 bf e8 12 39 c9 18 20 7a 03 c7 a8 bd 71 // a0 a5 02 ae a7 8d 38 e9 70 e3 ab 2a bf 75 4b 59 8a cb 79 cf 27 67 92 // aa 08 72 4d 0b a2 4f 2a 69 49 12 ab 79 5b 3f 45 f5 2d ec 50 d9 bf bc // 99 ae 27 e1 d2 c2 21 6a fe c6 70 9d 65 13 a6 4b 29 ef 58 25 5b be 18 // 47 8c 5d 4f 15 f7 4e a6 3a 1e 15 48 77 52 ee c8 fd 01 9f 1d 4a 7a a2 // 52 77 66 47 54 bd 2d 7c d3 a7 a0 18 b9 2c 56 d9 65 a1 97 48 85 36 37 // 57 28 6d a9 e0 55 ef 7f ac 17 87 6f 0a 64 c1 02 6a 59 77 33 b8 97 a9 // 15 5e cb f4 20 15 9a e8 e5 20 9a a8 3a 35 44 ff f1 fb 45 66 f2 d5 4f // 95 e3 bb d3 0d cc a5 f2 43 97 e4 bd 47 ff 01 29 2f 0d 6f e9 dd 47 a8 // 10 e0 c2 53 82 fa 69 b4 98 7d 1a fd 9b 69 ef 12 51 10 ad 6b 24 0e aa // 9c 85 82 9a 26 46 f9 ab 78 74 bc 02 bf a8 34 6c c9 19 09 43 e9 d4 6b // 44 88 06 70 b1 e2 aa 3a 29 e8 3b e5 47 2d 74 18 88 5a 35 3f aa de 6e // 8b 18 f4 b5 88 60 7b bb 75 85 88 d1 e2 f1 1a 9d fa 1c 4d 61 be 50 24 // 9f 1e e3 2e 6f f8 c0 c7 72 2a ae c1 bc 79 65 4a 47 72 ef c5 78 bd 6a // 14 c7 9a bc c7 7a 4e 09 c8 b6 c6 ea 35 cd 3a b3 1e 35 26 8f b5 5d b8 // 43 17 6f 80 42 f8 ce 7b e0 dd d4 ea d6 db da d0 ef 9e 7c b2 32 3d b5 // cc 48 11 9a 72 b2 73 06 b8 ff 63 66 c0 bc 68 2a 85 ab 9e 2c f2 23 8b // 6d 6e b2 e3 8a 97 d5 57 7e 63 34 cb 2a a6 e7 c8 6e 48 9e 87 6f 9d 70 // 53 57 7a 5c b5 7f 52 81 2f ab 7c 4b d7 b1 9a 34 c2 28 ff b6 7d ca c9 // 28 16 12 f7 78 b5 8c 58 0c 14 05 42 20 0f d0 0c b3 ad 81 d9 34 20 df // 93 c5 af 24 93 f6 46 d8 de 79 71 02 fa 0a 65 24 73 17 88 2f bf 17 15 // 20 f0 0b 2c 76 38 62 3b 82 3f f1 14 44 fd de 45 35 70 f9 9f 90 99 b6 // 00 61 a9 08 b8 33 83 ba 8b 82 bb 78 ed d0 74 dc cf 93 42 af df 8d 11 // a6 12 9b a6 ea 70 30 f3 62 90 56 26 4f 17 36 c2 b9 26 17 1b 6d c7 e1 // fa 45 5a 47 3d e6 56 39 04 95 f3 b6 ad 2f 9f 46 f3 5e ac b0 75 62 8f // f7 39 ef 78 f2 8b a6 83 44 80 68 c7 f1 8f b6 3f 28 ba 7d bb b7 89 99 // 10 0d de 0a 94 e8 b8 57 08 17 c7 11 4c 13 e1 39 ce b3 33 78 2b 29 a8 // 4a 5b 19 49 7f a7 85 91 5c 76 80 dd 7f 97 2c b5 9b a2 21 61 f6 08 86 // e5 cb 3c 3e 80 87 26 cb f9 6b c4 da 78 91 4e ee 56 5c 6d 9d 18 e7 0d // 22 cf 8c 02 44 cf 3c f4 88 c3 55 0e aa 40 0b c0 f2 6d 64 e0 f1 bc 8d // 03 01 a8 41 d9 54 07 3a 64 1f 3e f8 83 d8 1f 4d 5d b8 e9 df 70 8e 64 // e6 40 b3 8d f7 29 5f 7f e5 73 86 36 53 08 6b ae 55 07 c8 80 ab 7f db // 7a 6c 5c e7 70 27 ff a7 39 52 33 d3 ce 53 6d 77 ae 6c 2e 9c 8f fb 6f // ee 78 a3 bc b3 b5 f8 88 bd 59 5c aa 3a 55 86 94 87 76 b9 50 a8 9c de // 4d b8 24 7f ff f2 74 91 c8 82 b4 30 af dd 60 e7 a2 23 24 f6 63 5a 9a // a7 13 9f 3e 62 4c 6d 9e ce 60 f7 f8 15 3b 20 80 cf 05 44 fb f8 e1 c4 // 36 50 37 66 e6 70 b9 02 60 4a b5 21 e1 1a a5 a6 5c ed d6 4c fa f8 98 // ac 5f 55 c0 8c 87 69 3c 32 35 17 bc b0 d9 9c 28 f5 e0 72 d4 f6 54 0c // 7e ad 70 13 8d 47 c1 a6 7f d7 2b d6 ef 56 13 af 33 a0 af 31 1c 3d 0a // 63 1c a2 a2 df be 35 d1 02 1e b6 10 e4 0b 9b e1 28 68 32 35 a7 88 b5 // a4 ca cf 99 ba be e3 82 45 8d 59 e8 aa 1d d7 bb a7 e0 9d d3 0c 05 5a // 3d f8 ed 72 1a 17 78 b2 c6 ed 58 7a 40 35 66 32 5c d1 99 62 ed d7 83 // 1c aa 44 a6 b7 16 51 7b ad 50 21 30 e7 cf 6a 5c e5 28 8d c8 4c 01 70 // f6 22 ae 0b 1e 11 66 a9 c2 c0 77 1d 91 df 9f 9d d8 2a e2 10 46 96 02 // ce 38 96 47 46 c1 c1 d0 43 21 aa e7 d4 64 eb 80 1d be a7 ec 39 50 54 // 57 e7 78 20 87 74 d7 26 73 62 6c 99 8b 00 2c 46 a9 b4 b1 e3 90 d9 34 // 4f 0c a6 22 12 a1 b6 d4 10 43 a2 10 0b 35 19 6b ce 42 d4 0c aa 0e a9 // a4 86 bf 85 26 fd 1f 0f 0d 36 2c 2c ac 46 3e a7 37 7a 20 b5 4b 94 35 // 44 2c a5 29 fc 00 da 4f d7 e2 7c 4e af 14 21 5a 06 85 7b 54 25 4c 26 // 34 69 56 fd 7f e2 15 a5 ce 57 ec 38 ce df 50 a3 c7 59 e5 63 a4 fd 87 // 49 4f 00 e7 bd 9b 44 f3 b7 e9 9c 6e f6 71 87 05 6a 21 d2 fe 1a c9 d2 // 41 25 b1 94 7e b2 93 18 9f dc 44 8b 59 1a f4 d9 b8 eb 09 1d 6b bb 5e // 50 fa e7 9d 00 00 44 e2 82 bb 2a b6 c6 3c c9 56 2b 15 1c 21 4e 45 01 // 53 54 e6 2b e6 3e 18 81 23 8b 90 7f 7b db 79 1f f4 4a 4e 03 fa 29 db // d2 6d b2 f4 9d 0f 47 29 b7 cd 9b a6 9a 65 b0 b4 93 46 6d 35 d0 9b 3f // 59 0c 67 c3 16 60 d9 5e 2a b4 af 2c 9f 1d f9 1f 04 ce 5a 57 dd e2 d7 // 52 06 b4 2e 34 23 12 67 74 d7 65 93 c2 f7 13 ae 27 9d 70 92 50 6b 51 // 3f d5 d1 8f 0f 52 d3 fa fd 71 41 df d4 a0 de 10 63 75 4d ba 86 5f af // 8d c0 f6 be 9d 90 ef 21 ec 86 a2 75 53 3f 6a d4 b4 e3 60 dc 77 54 13 // f2 9e ab 8b 3d aa c6 27 9b 9a bf e1 63 ea 2f 18 3e 09 ed 91 ef 67 fb // b0 90 87 51 09 28 8a 18 2c fd cc 46 d9 06 78 ef e5 ed ce da 65 18 33 // 5e 67 84 38 ca c4 bb 47 d3 76 f3 f0 e1 2a a5 53 01 73 5d 7f 42 65 3c // 07 3d 6a 4a 37 b2 e1 7d 33 2d c1 be 6b 50 91 8c 00 7b 14 88 63 07 cc // 39 25 0e 81 ef ec d6 3d 24 06 7a 49 99 45 72 72 5a 9d f1 76 0c aa c1 // 3a 28 f5 25 55 56 b2 7e c2 45 e9 39 69 b8 5c de c7 cd 1c 2d 2a 43 3d // 3f 95 72 b9 30 54 a7 ce 8a df f8 1b c1 d3 08 84 d5 fc 47 91 e2 51 bd // 90 7e 37 af 5b ec 74 23 5c 3e 2f 80 4e 4e 04 50 b7 15 28 99 42 b7 85 // 9a d2 07 ba fc fe c1 b5 86 dc 15 e7 91 1f e6 d2 0a a3 d0 2f cd 47 e9 // 95 67 80 e3 00 d7 c5 3c 17 df a1 57 54 de b4 c2 0e fe bc 72 70 bd a0 // fa 6b 37 fc 88 c6 be 42 50 ca c3 8c 1b 81 86 b3 64 48 20 26 ab 52 d6 // 5d 3a 69 19 03 fc cc 39 77 22 77 01 1b fa a4 21 ad ba 76 be d9 73 10 // 77 be c8 85 ce 88 d4 0f 36 bb d2 a8 39 c6 7d c4 b8 62 c9 68 49 1b 87 // 7d 4f d1 3f c9 0f 8d a5 7a 29 12 1e 12 f7 8e 85 af 76 5c d6 6e 72 ba // 51 35 93 fe 1c df 20 01 99 85 b0 65 d8 28 70 7d 8e 50 9c 68 34 ea b1 // 88 de ea 5c 9e e9 79 55 f4 b0 7d 37 b6 fc 7b ee d7 3b e9 48 87 d4 23 // a3 49 f3 5b b8 78 2b c6 70 ce ae c8 70 d9 7f 06 1b da 02 ae 73 f6 d5 // 75 f8 1e 0b 63 26 ea e6 c1 b3 08 5c c5 84 68 61 20 e1 2d d9 ad 8c e4 // 40 36 be c8 a1 89 f9} (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 = 0x95 (4 bytes) // err: fuse_errors = 0x0 (4 bytes) // unique: int64 = 0xfffffffffffffffe (8 bytes) // payload: fuse_entry_out { // nodeid: int64 = 0x0 (8 bytes) // generation: int64 = 0x1 (8 bytes) // entry_valid: int64 = 0x0 (8 bytes) // attr_valid: int64 = 0x0 (8 bytes) // entry_valid_nsec: int32 = 0xfffffffe (4 bytes) // attr_valid_nsec: int32 = 0xfffffffc (4 bytes) // attr: fuse_attr { // ino: int64 = 0x0 (8 bytes) // size: int64 = 0x0 (8 bytes) // blocks: int64 = 0x3 (8 bytes) // atime: int64 = 0x0 (8 bytes) // mtime: int64 = 0x0 (8 bytes) // ctime: int64 = 0x1000 (8 bytes) // atimensec: int32 = 0x0 (4 bytes) // mtimensec: int32 = 0x0 (4 bytes) // ctimensec: int32 = 0x0 (4 bytes) // mode: fuse_mode = 0x0 (4 bytes) // nlink: int32 = 0x20000 (4 bytes) // uid: uid (resource) // gid: gid (resource) // rdev: int32 = 0x0 (4 bytes) // blksize: int32 = 0x0 (4 bytes) // padding: const = 0x0 (4 bytes) // } // } // } // } // dirent: nil // direntplus: nil // create_open: nil // ioctl: nil // statx: nil // } // } // ] memcpy( (void*)0x200000004380, "\x4e\x53\x50\x99\x4e\xbf\x71\xce\x30\x49\xa5\x8c\x5d\x05\x00\x78\xbf" "\x16\xb0\x75\x7a\x4c\x27\xb4\x55\xe2\xa5\x47\x73\x95\x87\xdd\x33\x80" "\xb5\xdf\x8f\x40\xa0\x69\x6c\x5b\xd6\xcd\xb6\x72\xcf\xfe\x4d\x87\x0c" "\x5c\x90\xca\x92\x09\x5b\x9e\xbf\x3e\x92\xfe\x31\xd8\xcd\x74\x27\x5d" "\x85\x7d\x34\xa7\x4f\x7e\xec\xc7\xfa\xc1\x5e\x2f\x14\x8d\x4e\x9d\x47" "\xbb\x45\xb8\x58\xbb\xf0\x78\x99\x99\x70\xd1\x80\xf2\x8d\x7b\x2c\xef" "\xd9\x26\x35\xd4\x5a\x56\x3d\x92\x29\xc9\xfd\x77\x0e\xfd\xc0\x84\x8e" "\x52\xfa\x5e\xfd\x9a\x7e\x5c\x94\xa1\xba\x94\xb4\xb7\xc7\x50\x7f\x8b" "\x08\x19\xbb\x20\x91\x0f\x9f\x50\xa8\x3a\x01\x0a\xbb\xe1\x26\xdd\x9f" "\x6a\x7b\x84\xea\xb6\xb0\xd5\xce\x78\xd2\xad\xe7\x7a\x5f\x7e\x4e\x99" "\x7d\xf1\xd0\x3f\xfa\xb4\xb4\xc9\x45\xd8\x03\xe4\x45\x79\x09\x01\x31" "\x27\xa9\x87\x69\xc9\x38\xc2\x37\xf3\x72\x63\xbc\x50\x9a\x42\xbc\x56" "\xff\x2d\xbf\x80\xe8\x47\xe2\xc4\x07\x00\x9e\xef\x94\xf1\x8e\x1e\x59" "\x06\x9d\x62\x29\x8f\xdb\xad\xae\x00\x7f\xfb\xdf\x40\x3c\x50\x49\xa4" "\x53\x0a\xc0\xab\xec\xce\xb5\x60\x8d\xa0\x27\x54\xc9\xa5\x75\xaf\x52" "\xc0\xb7\xe4\x12\x26\xe2\xd6\x42\xa8\x14\x86\x1c\x43\x10\xc9\x35\xbc" "\xba\xe4\x13\x51\x6d\xde\x21\x32\x65\x2b\x39\xc7\xaa\x02\x18\xa6\xce" "\x65\xda\xbb\x44\x94\x96\x52\x09\xce\x87\x9b\xa7\xe7\xe5\x90\x39\xdb" "\x5c\x1d\x36\xd6\xa7\xf8\x6d\x72\xdd\x59\x95\x4f\xd6\xf4\x61\x24\xa2" "\x50\x6b\x24\x5a\x0d\xb1\x1a\xa8\x9d\x2f\xeb\x31\x2a\x65\x96\xea\x2f" "\xec\xaa\x7b\x60\x21\xf3\x7a\x25\x5f\x62\x8d\xa7\xff\x6b\x6c\x36\xb5" "\x14\xd3\xb6\xbe\x34\xe5\x05\xf9\xda\xc6\xac\xfb\x88\x81\x98\x00\x46" "\x99\xfb\x35\x0a\xc9\x34\x31\x53\x35\x54\x65\x8c\x49\x57\xdf\x36\x70" "\x35\x91\x43\x8d\x64\x88\xbc\x03\xdd\x82\x90\xa7\x5e\xbb\x36\x7a\x48" "\x1a\x50\xe7\x9a\x46\xb0\x4d\x00\x56\x49\xca\xbd\x79\xe5\xc6\x32\x6c" "\x06\x6b\xc2\xb6\xfc\x5f\xeb\xb8\x7e\xf6\x6d\x83\x2e\xf3\x1a\x16\xc2" "\xa4\x50\xa0\xb9\x90\xfb\x54\x9a\x5d\x81\x0c\x92\x8d\x1a\x81\xfa\x1d" "\xc7\x95\xdb\x26\x07\xac\x7d\x46\xcb\x57\x16\xb6\x8a\xcd\xeb\x00\x98" "\x7e\x42\x9f\xe6\xa3\x94\x63\x2c\x83\xb4\x33\x36\xe7\xb5\x1d\x9c\xfd" "\xb5\x0e\x83\xd8\xc6\xba\x17\x84\xd9\xf7\x4c\x16\xb4\x76\xe0\x48\xe6" "\x5e\x7a\xc0\xaf\x68\x3b\x34\x7d\x73\x77\xac\x17\x95\x42\x2e\x00\xe5" "\xbd\x8d\xa9\xb3\x13\xaf\x83\xab\xb3\x34\x88\x61\x11\x6d\xe7\xa9\x99" "\x59\x16\x9b\x7d\xff\x9f\x7d\x9b\x7a\x6d\x10\x7f\x2e\x76\x67\x0a\x62" "\x14\xa4\x19\xbf\x82\x98\xf8\x0e\xb5\x70\xfa\x29\x26\x4b\xa5\x7a\x38" "\x3c\x5e\xc5\x83\x6c\xe3\x31\x04\xec\xaf\x1a\xec\x76\xe3\x11\x28\x0a" "\x1d\x2c\x8b\xd7\xab\xff\x3a\x5a\x24\x2e\x6a\x63\x7f\x7d\xb6\x30\x38" "\xef\x5d\x78\xac\xa9\xc6\x80\xd7\x2b\x60\xda\x4d\xbe\xb0\xe1\xe6\x83" "\xdd\xc8\x28\x98\x64\x7c\x58\x9a\x81\xb8\xf9\x2d\xb0\x67\x11\xd8\xa0" "\xaf\x05\x56\x0c\xd7\x7f\xa7\x00\x52\x83\xdb\x71\xe8\xda\x21\x71\x3f" "\xcc\xd4\x50\x82\x20\x62\xb9\x94\xd1\x52\xaa\xed\x2c\xdc\xf0\xde\xc9" "\xc6\x06\x17\xe1\x5b\xa4\xdf\x62\x8d\xa4\xe7\x12\x79\xbf\x9d\x1e\xee" "\x5c\x7f\x05\x5c\x27\xcd\xdf\xdd\x45\xf9\x22\x5d\x5d\x55\x29\xef\x71" "\x19\xe2\xe3\xc9\x83\x8e\x73\x62\x97\x1e\x06\x9b\xe4\x87\x79\x7e\x94" "\x9b\x24\x29\x7d\xe1\x9c\x61\x34\x0d\x1c\xd7\xa2\xbf\xa3\x88\x0b\x91" "\xa7\x1e\x93\x47\x20\xa5\x9e\x1e\x0e\xa9\x92\xd2\xa1\x63\x3a\x08\x52" "\xad\x8a\xdd\xfc\xab\x73\xa2\x91\xe3\x57\x45\xe6\x94\xa6\x47\x1f\x42" "\x9b\x12\x43\x05\x88\x6c\x1f\x79\xf6\x7c\x78\xde\x3f\x3e\xc9\x98\xc9" "\x1e\x7f\xc5\x9d\x26\x76\x6c\xd4\x46\xf6\xf0\xde\x60\x3f\x2c\x68\x92" "\xe1\x3c\xda\xa3\x7d\x9e\x8e\x11\x8d\x09\x8b\x69\x86\xcc\xd9\x91\x99" "\x3e\xc1\x52\x19\x3e\x7d\x77\x39\x4b\x05\xb9\x9e\x7d\x31\x0c\x50\x67" "\x07\xf1\xbe\x52\x24\x94\x38\xfb\xa9\x61\x5f\x6d\xad\x2e\xc7\x24\x4f" "\xed\xf3\x6e\x34\xec\x31\x1b\x7d\x6b\xee\x64\x27\x1d\x64\x91\x07\x9e" "\x16\x11\x90\xde\xd7\xe2\x8e\x2a\xda\x43\x07\xa9\xb2\x98\x6c\x26\x7b" "\x1a\x30\xd2\xf7\x20\xff\x23\x40\x80\x11\xf1\xd5\x89\xce\x9e\xe7\x7f" "\x98\x1c\x78\x33\x65\x6c\xcf\x7d\xf5\xb3\xa8\x7e\xc2\x53\xff\x7c\x7e" "\xf1\xe6\x7c\xee\xb1\x0c\x93\xe3\xfa\x68\x3c\xda\xda\xd6\x58\x50\xff" "\xbc\x40\x2b\x77\x44\xe9\x4c\xde\xce\xf9\xdb\x9d\x26\x4c\x75\x5c\x53" "\xd3\x62\x78\xdf\x23\xd4\xc9\x68\x5f\xde\xfa\x69\xf7\x58\x8a\x33\xb8" "\xa6\x4b\x35\x19\x1e\xe8\x1a\xbc\xb9\x76\x55\x77\xd1\x75\xcb\x06\xe3" "\x1c\x58\x28\x07\xff\x72\x43\xbf\xef\x44\x96\x1f\xbc\x0f\x8a\x23\x52" "\x42\xf5\x1e\xe9\x91\xea\x62\x18\x03\xd4\xdc\xfe\xd9\x0d\x26\xf0\x04" "\xb2\x99\x42\x5b\xf2\x19\xf6\xd1\x85\xfe\x6e\x08\x8a\xe4\x46\x01\xb0" "\x3d\xef\xad\xa1\x87\x94\xfe\xac\x93\x78\x76\x96\xa5\xd4\x19\xf0\x9f" "\x76\x9b\xc5\x90\xf4\x3d\x2d\xf6\xa1\x31\xf6\x89\x5d\xa2\xde\x12\x0c" "\x26\x44\x68\x5e\x57\xb1\xd4\x76\xc6\xab\xa5\x88\x1e\x95\x4f\xb2\x57" "\x53\x56\x45\x2b\x11\x8b\x94\x2c\xb0\x2b\x4e\xa0\xfc\xf8\xf1\xbb\xb9" "\xa2\x3b\x6e\x32\xc9\xd0\xac\xcd\x3d\xd8\x61\x45\x2a\x3a\xd7\x7b\x38" "\xfe\x70\x9e\x21\x69\x74\x93\x2d\xeb\x53\x97\xfd\x80\x33\xff\x0e\x07" "\x3d\x93\xac\x0b\x4b\xe7\x62\xbc\xa0\x42\x4d\x69\xbd\x57\xb2\x2b\xa9" "\x14\x13\x3f\x87\x67\x1a\x29\x49\x8b\x26\x8c\x29\x11\xe7\x93\x21\x54" "\x63\xca\x21\x64\xe3\x80\x59\x45\x61\x07\xdc\xb2\x9b\xee\xdf\xd6\x27" "\x7e\x2b\x41\xa1\x1d\x1c\x6f\x13\x61\xb1\x98\x75\xc9\x38\x4f\x04\xf9" "\xc5\x3c\x18\x56\xd7\x1f\x36\x0a\x8f\xaf\xe0\x5f\x7a\xef\x75\x0e\xc0" "\xcf\x2b\xfc\xfa\x97\x1c\x01\x7a\xd0\x71\xb6\x9a\x18\xfd\xaf\x97\x0b" "\x38\x4d\x4c\x88\x9c\xfa\x5a\x03\x97\xdb\xe8\x95\x43\xa5\xc6\x4e\x26" "\x45\xd6\xed\xf9\x59\xaa\x60\x70\x9c\xe0\x22\x5f\xe6\xc3\x26\x6c\x7e" "\xf6\x21\x57\xac\x8e\x78\xfd\xdc\xd8\xa1\xf2\xca\x5b\x58\x12\x82\x18" "\xd1\x92\x76\x88\x55\x15\x77\x53\x26\xae\xee\xe0\x22\x6c\xc8\x10\x84" "\x3e\xb0\x51\x44\xbf\x8e\x2f\xe3\x34\x0c\xf6\x0b\x32\xca\xfd\x96\xd2" "\x3c\xd7\xd0\xd3\xad\xcb\xdf\xec\x9a\x2a\x3d\x88\x30\x7c\x36\x26\x33" "\xb1\xc5\x63\x76\x08\xea\x84\x76\xd9\x00\xb3\xf8\x36\xa9\x73\x4b\x5e" "\xca\xf5\xe8\x29\x83\x57\x71\x28\xd3\xf7\x4b\x90\x3b\x0e\x3b\xf6\x43" "\x26\xc1\xb5\x64\xae\x42\xae\xeb\x0c\x07\x70\x2b\x63\xa9\xff\x74\xa2" "\xaf\x6b\x45\xe5\x18\x5a\x53\xf3\x6c\x17\xbc\x29\xdf\xbc\x0e\xa2\x8c" "\xa5\xcc\xa4\x3a\x15\xd7\x51\xe9\x88\x7a\xd3\xe6\xa8\x7f\xaa\xcb\x6a" "\x27\x8c\x4c\x8a\x8d\x21\xb9\xa7\x7b\x97\x76\xf3\x31\x02\xa6\xe6\x45" "\xe9\x9c\xc5\xcb\xc5\x43\xed\x06\x74\x28\x2c\x2b\x9f\x8e\x5d\x14\xc2" "\x59\x9a\xa9\xac\x8f\x81\x43\x8c\x77\xf2\xb9\x36\x8b\xda\xc8\x2e\xdc" "\xdc\x53\x66\xf3\x9a\xde\xc9\xe9\xa3\xfb\xd5\x5b\x79\xab\xc1\x6d\x2e" "\xbf\xf2\x6b\x7d\x0c\x88\xf1\x8b\x48\x6e\x58\x36\x33\x35\x75\xe3\xfc" "\x78\x08\xcb\x42\x3b\x44\x78\x1c\x57\x96\x57\x67\x86\x29\x22\xb4\xff" "\x32\xd9\xba\xe7\x62\x96\x84\x3a\x46\xf4\x30\x21\x1c\x27\xef\x9d\xb1" "\x68\x43\x00\x26\xa5\x69\x16\x23\x28\x4d\xfd\x45\x9d\xbd\xd1\xf1\xa6" "\xec\x9b\xfa\xd6\x66\x50\x7e\x6e\xac\xb1\xe2\xa7\x86\x6d\xa2\xe1\x2e" "\x6d\x59\x6d\x0b\xbb\x15\x05\x00\x59\x00\x13\xd9\x28\x8a\xf2\x05\x96" "\x44\x7f\x97\xbf\x17\x44\xeb\x9c\xfb\x24\x4d\x8f\xca\x26\x9b\x1f\xb7" "\x1e\x14\xde\x66\x4b\xe4\xe9\x5d\x83\xff\xf1\xb8\xab\xcf\xeb\xcf\x3e" "\x78\xc1\xc6\x6d\x28\xf2\x60\xfb\x0c\x19\xf9\xfb\xcd\x2a\xbb\xdd\x7d" "\xd7\x24\x6e\x49\xdc\x25\xd9\x54\xbf\x25\xf8\x10\xa2\xff\x6f\x90\x69" "\xdf\xdc\x62\xe7\x17\x0f\xe3\xb0\x96\x4b\x2a\xc9\x50\x24\x25\x6d\xfa" "\x3e\x7a\x42\x6b\xe5\xbb\x5f\x70\x7f\xd8\x2c\x2b\x3a\xfe\xc5\xd5\xdc" "\xf5\xbb\xb8\xfc\xb6\xdb\xc1\xb5\x9f\x6c\x53\x30\x96\x6c\x70\xd8\xb0" "\x16\x95\x69\x03\xa4\x27\x88\x17\x41\x4b\xa3\x65\x2a\x10\x2d\x7e\x7e" "\x37\xec\xc7\x94\x00\x26\x7f\xc3\xbf\x76\x01\xc0\x73\x1f\x87\xd4\x79" "\xc3\x3f\x10\x07\x35\xe7\x48\x87\x41\x55\x26\x7f\x70\x8c\xea\x49\xd5" "\x49\xe9\x3c\xf7\xa3\x98\xb2\x03\x73\xdc\x90\xad\x9a\xfd\x56\xd9\xc7" "\x7c\xd2\x4e\x2c\x4a\x18\xf7\x13\x0b\x36\x6c\x7f\xe5\xb2\x6b\xc4\xd1" "\x1c\xa1\xed\x1b\x98\xfa\x0b\x4d\x73\x96\xf8\x2a\xe6\x59\x3f\x45\x75" "\xd1\x9f\x4d\x8f\xd5\x86\xc9\x91\x12\x9e\x5c\xbe\x15\xc8\xba\xcc\x89" "\xc3\xee\x15\xca\x47\x1d\xea\x96\x6b\x5c\x48\xed\xe0\xd3\xba\x2a\x7e" "\x28\xc7\x5c\x04\xe6\xa4\xaa\x49\xa6\x1f\x4e\x39\x1f\xfe\x78\xeb\x5e" "\x40\xa5\xef\x34\x9f\x3a\xa4\xd1\x5f\x22\x91\xcc\x86\xec\x7e\x47\xae" "\x30\x1b\xf0\xb6\x08\x3d\xae\x44\xb6\x95\x82\x0a\x89\x3d\x46\x73\x25" "\x53\xef\x15\xed\x1c\x16\xd2\x82\x68\xd5\x2a\x7e\x3a\x7e\x7c\x00\x9d" "\x0c\x07\x08\xa3\x56\xd3\x31\x0c\x1e\xbc\xbc\xca\x4d\x7a\xcf\x43\x3e" "\x34\xbf\xc9\xfc\x11\x54\x98\x14\x2d\xcc\x72\x5e\x7a\x16\x87\x9c\x75" "\xe4\xc2\xf0\x1c\x6c\x98\xb3\x96\x19\xf3\x24\x8b\xf5\x30\xe6\xee\x59" "\x34\x67\xe3\x8c\xf4\x02\x6c\xfd\xc4\xdb\x62\x96\x56\x57\x22\xd5\x87" "\xf3\xc5\x80\x75\x0b\x14\x53\xec\xc1\x41\xc0\x46\x14\x95\x55\x12\x97" "\xd8\x8a\xe0\x34\xac\xbd\x4f\x5e\x80\xce\x19\x8e\x66\x40\xc4\xc1\xe9" "\x50\x15\x29\x98\x81\x09\xce\xf0\x06\xeb\x20\x90\xa6\xfc\xd9\x74\xd7" "\xf6\x02\x90\xb7\x8f\x1a\x8c\xe3\x05\x1a\xc2\xd6\x96\x36\xc3\x21\x9f" "\x0a\x6a\xd8\xc2\x54\x76\x43\x96\xa1\x68\x4b\x2f\xd9\x80\x5b\x18\x53" "\x52\x5f\x2e\x64\x0e\x51\x31\x97\x28\x3c\xc4\xd4\x07\x3a\xc0\x33\xe0" "\x53\x9a\x88\xf0\x8a\xab\xe1\x42\x3c\xd4\x0b\x8a\x7e\x07\x34\x37\xd8" "\x12\xb5\x7a\x5d\x39\xa0\x53\x1d\xcb\xe1\x3f\x44\x66\xe8\x9e\xfc\x66" "\xc2\xa1\xe4\xb3\x9a\x3e\x0b\x30\x73\xc9\xd4\x4e\x6c\xf9\xb8\x5f\x4d" "\xf5\xc4\xe0\x36\x28\xd0\x5b\xc0\xf9\x4e\xc0\x42\x34\xc9\xec\xa4\xed" "\x17\x46\x3f\x19\x04\x06\x83\x4b\x02\x88\x87\x28\xf6\x25\x37\x1c\xda" "\x75\xd1\x5e\xc1\x9e\xfe\xbd\x59\xf0\x0a\xb6\x59\xeb\x94\xeb\x88\xbc" "\xb2\x11\x08\x62\xa3\x69\xad\x59\x96\x10\xc1\x53\x0f\xcc\x11\x8f\x5b" "\x82\x20\x5b\xc5\x21\x5f\xe3\x62\x3a\xc8\xec\x29\x7d\x8f\xf4\xee\xe7" "\x5a\xce\x20\x73\x1c\x5d\x50\x5e\x66\x05\xc2\x62\x03\xb7\xf7\x54\x16" "\x4c\x94\x63\xf0\xa6\xee\xfe\x3a\x28\x80\xb8\xe0\x6e\x7b\xc6\x6b\xb2" "\xad\xcc\x1a\x3f\x9b\x03\x25\xf5\xec\x31\xd1\x2a\x25\xf1\xf7\x3c\x2a" "\xa6\xbb\x3a\x76\x80\xd7\x86\xa0\x82\xa6\x3b\x13\xcc\xe1\x82\x2f\xa6" "\xa4\xb0\x85\xa8\x71\xae\x34\x09\xee\xcb\xc1\xfd\x86\x61\xb5\xd5\x2b" "\xb2\xb8\xb7\x2f\x23\xe2\x4a\x22\x50\x75\xf2\x72\xed\x2b\xa0\xc6\xc5" "\xc6\x93\x81\x1a\x0e\xf8\xdb\x6d\xa7\xcf\xe7\xc9\x66\xc6\x47\xf0\x18" "\x7a\xd2\x23\xee\xdb\x10\x12\xa5\xb7\xaf\x10\x3e\x98\x46\x4a\xc7\x68" "\xc7\x9b\x21\xca\x45\xb1\x2a\x52\xcf\x26\x1d\xe0\xd3\x67\x44\x2c\xda" "\x71\xc4\xb8\xee\x39\xc9\x4d\xed\x1b\x22\xba\x06\xc1\x38\x36\xcb\x46" "\x7e\xba\xb4\xef\xea\x07\xbd\xf1\xe3\xde\x8d\xa5\x6a\x0e\xe6\xd4\xf8" "\x48\x01\x12\x53\xcc\x21\xfa\x42\x1a\x39\x94\x35\x13\xd3\x16\x7b\x7a" "\x73\xe0\xd7\x52\xb8\x61\xc4\x98\x14\xbc\x54\x10\xeb\xe5\x3a\x02\x64" "\xf7\x60\x68\xc9\x1e\xe6\xec\x9e\x2d\xaa\x34\x34\x82\xb2\xf0\xf0\x6e" "\x60\x5c\x5a\xaf\x81\xf2\xa3\xcd\x57\x0e\xfc\x20\x94\xb4\xbc\x45\x2f" "\x95\x26\xf1\xbb\xe7\xb2\x2b\x69\x4f\xb8\x10\x9a\x5a\x98\x7f\xab\xf6" "\x25\x09\x12\xd6\x09\x9e\x67\xda\x9c\xac\x79\xe8\xb6\xf2\xcc\xe4\x70" "\x2d\x1f\x17\xcb\xc5\xd0\x6c\x38\xb8\xa4\x81\x55\xec\x75\x83\x69\xc1" "\x85\xde\xd8\x39\xfb\x58\xcd\x73\x6f\xbb\x74\x10\x5f\xe5\xba\xf4\x4e" "\x7e\x3e\xd0\x68\x43\xf2\x36\x01\xb6\x0a\x43\xb1\xf8\x8f\xd2\x9e\x9b" "\x3f\x58\x47\x9f\x9b\x95\x39\x2a\x39\xd5\xba\x1a\x31\xee\x44\x41\xca" "\x2d\x1f\xb5\x7c\x0a\x86\x78\xa0\x7a\x72\x4b\x7a\x65\xb2\xab\x16\xd1" "\xda\x19\x7f\x43\x5b\xce\x3e\xf0\x03\xfc\xe2\x7f\xa2\xf0\xa6\x7c\x9d" "\xd6\xc9\x30\xa4\xbc\xf5\x9e\x79\xe5\x7b\x70\xfa\x8e\xae\x6f\xe3\x49" "\x72\x95\x8c\x28\xb5\x66\x42\xd1\x4e\xa8\x9b\xf4\xd7\xd6\xf7\xfc\xbc" "\xf4\xfd\xa8\xbd\x08\xfc\x9f\xe4\x24\xde\x43\x59\x11\x2b\x11\xf8\x1f" "\xbd\xc1\x50\x56\x58\x36\x36\x97\x71\x3f\xf6\xe1\xf8\xca\x3c\x4b\xe3" "\x4a\x79\x99\x3a\x90\x91\xf6\x01\x7c\xda\x6c\x74\x89\xae\x5c\x07\x06" "\x25\x55\x23\x14\x27\xc3\xeb\x42\xa0\x49\xf4\x2d\x22\xa0\x60\x98\x3b" "\x04\x4a\x7d\x34\xab\x5d\x2b\x53\x86\xcc\xa7\x9a\xf7\x23\x96\xa4\x8a" "\xad\x6b\x8d\xcd\x78\x55\x41\x0f\xc6\x10\x6e\x4a\x16\x59\x94\xf2\x6e" "\xff\xf1\xe7\xea\x0a\xa8\xf5\x60\x33\x3b\x5d\xfd\xb2\xa0\xd8\x99\xb0" "\xfd\xa9\x55\x15\x5f\x90\xc7\x5e\xff\xd3\xc9\x53\x5d\x88\x50\x8e\x83" "\x6f\xeb\x78\x07\xd5\x7b\x2a\x57\xcc\xa4\x2d\x3d\x08\xfe\x7d\xe6\x0d" "\x2a\x33\x37\x6f\x49\xbd\xac\xdd\x3f\x81\x4b\xd0\x92\x7f\x41\x7f\x15" "\xad\x62\xa1\x0b\x30\x2f\x1c\xb3\x90\xaa\xf8\x2b\x0b\xc6\xaf\x46\xbb" "\xf9\x90\xb6\xad\xa4\x5e\xf8\x3c\xe1\x30\x29\xd1\x67\xc6\x51\x34\xe7" "\xb8\x2b\x59\xdd\xfd\xc3\x67\xe6\x1c\x40\xde\xfd\x27\x32\xcc\xeb\xb1" "\xd4\x00\x0f\x6c\x74\x2d\xf9\x64\xe1\xfb\x39\x0c\x25\x5d\x2b\x1d\xfc" "\x74\x5c\x6a\xb3\x4a\xf8\x09\x6b\x5b\x67\xaa\x17\x9e\x3f\x34\x18\x54" "\xf7\xa6\x9f\x7b\xf4\x76\x64\xc8\x32\x03\x7e\xc7\xa7\x8f\x8e\x27\x20" "\x9e\x3f\x20\xf8\x33\xfb\x6e\x8c\x0f\xc4\xa4\x09\x20\xa5\xad\x2b\x06" "\x18\x98\x2f\xf7\x25\x40\x00\x9d\x5d\xb8\x2f\x0f\x5b\xca\xed\x2a\x27" "\xf3\x5d\x1e\x50\xea\xa0\xcf\x8e\x48\xc7\xa2\xd4\x3c\x25\xd0\x26\x4d" "\xb7\x50\xa7\xf3\x3b\x44\xa4\xbf\xaa\xe5\x76\xcf\x9e\xe7\x59\x4e\xd2" "\x04\x51\x38\x99\x56\x65\x64\xed\x8b\xbc\x97\xed\x18\xb1\xd8\x86\x8f" "\x92\x6a\x5c\x70\xac\x06\xfb\xac\x1e\xad\xe4\x67\x92\x18\x6b\xe7\xbf" "\x8f\xfa\x33\x01\x23\x9e\xdd\x09\x34\x49\xb7\xd7\x71\x92\x78\x2b\x51" "\x11\xc1\x41\x69\xd2\xb4\xa1\xb3\x44\x3a\xd6\x2e\x4a\xbd\xf1\x1a\xac" "\x6a\x5b\x89\xa5\xb2\x0a\xb0\xad\x0a\xbd\x94\x9b\x9d\x64\x58\x2c\x67" "\xff\xce\x01\x8e\x7e\x46\xde\x40\x91\xfc\xc7\x7a\x65\xb9\x71\xfc\x67" "\xc8\xd9\xcb\xf0\xc3\x41\xca\x76\x4b\x10\x56\xee\x50\x14\xd9\x86\x50" "\x59\x61\x6a\x52\x5a\x1d\x46\xae\x2f\xad\x15\x9a\xfe\x86\xdd\x1d\xf9" "\xb8\x24\x64\x11\x82\x7e\x19\x53\x5c\xa0\xaa\x9f\x83\x05\x0b\x06\xe7" "\x0a\xa2\x73\x7f\x27\xe9\x3d\x58\x4a\x9c\xef\x87\x8a\x64\x2e\x93\x61" "\xef\xaa\x5d\x20\xbd\x8d\xa9\x01\xfa\x2e\x06\x46\x56\xf6\x86\xd3\xb3" "\xea\x31\xd1\xd8\x50\xae\x91\x96\xb7\x76\x45\x48\xf5\xc6\x45\x0a\x32" "\xa7\x17\xe0\x9b\x6b\x7e\x75\xd4\x3f\xbb\xda\x76\xe4\x3a\x24\xf1\x86" "\xd5\x57\x89\x33\xf4\x08\xbf\xa2\x8e\x04\x35\xcd\xe5\x25\xfb\x91\xe7" "\x1d\x92\xd7\x04\xcc\x5a\x9b\x5e\x3d\xb7\xaa\xec\x46\xd2\xb1\xf8\xdc" "\xb3\xf9\x21\xf6\x9b\xd7\x39\x7c\x96\xa1\xe1\x32\xc3\x9c\x8f\x16\x56" "\xce\xa4\x36\x5c\x77\x9a\xbf\x76\x19\x9c\xb5\xb6\xaa\xda\x02\x2e\xde" "\xc5\xc9\x01\xcd\xaf\xa2\xe7\xf3\x76\x5a\xf9\xc8\xb2\x0c\xb1\xa6\x78" "\x50\x85\xfc\xb0\xdc\x90\x13\x67\xb8\x90\x51\xbd\xfd\xc6\xb6\x8c\x52" "\x15\xfd\x04\xe2\xb3\xc7\xe1\xc4\x54\xa4\xd2\x11\x32\x95\x3b\x25\xc5" "\x09\x95\xaf\x0f\x71\x59\xa5\xa8\xd0\xa1\x62\x1f\x48\x08\xf1\x26\xa5" "\xbd\x40\xdd\xc7\x9f\xed\x90\xf4\x99\x25\xee\x36\x7a\x57\xa0\x5c\x07" "\x0f\xbe\x39\xfe\x2c\x21\x3e\x7c\x17\x24\xa9\x07\xec\xfa\x69\xef\xe6" "\xe0\x21\xc0\x6a\x26\x24\x71\xa4\x37\x7f\x3c\x98\x09\xe9\xfe\xe4\xf3" "\x75\xe2\x7c\x31\xb6\xaf\xbb\x21\x51\xda\x86\xb7\xca\xb6\x3c\x7b\x4f" "\xa4\xb7\x7f\xb3\x01\x72\xb9\xd0\xd7\x8b\x1c\x05\x35\xec\x06\x39\xc4" "\x91\x0b\x5e\xee\xcb\xb5\xb8\xb5\xc8\xaa\x74\xc1\x40\xe7\xad\x34\x78" "\x12\xe3\x6d\xb3\x09\x7a\x7f\xf8\x5c\x09\xab\x2c\x00\x20\x20\x23\x07" "\xf5\x0e\xfe\xfc\xdb\x49\x7b\x9c\x06\x0c\xa6\x8c\x4b\xe5\x4a\x91\x65" "\xb4\xce\xbc\x6b\x2e\x2e\x14\xe5\xff\xb9\x21\x31\x42\x41\x8f\xae\xdc" "\xdf\x26\xfd\x32\x6b\x76\x72\x39\x9e\x71\xcf\xff\xe3\xed\x71\x2c\xed" "\x53\x17\xc2\x54\xf9\x19\x9e\xe1\x0c\x24\xc8\x02\xd1\x02\xbd\x87\x49" "\x51\x3d\x31\x45\x20\x1c\xa4\xe0\x1b\xc7\xc8\xbb\xcf\x43\x0a\xfa\x54" "\x1e\xc5\x66\x5f\x86\xdf\xb1\x43\xbe\x64\x85\x21\xbb\x0f\x2b\x02\x90" "\x18\x20\x14\x44\x78\x7f\x64\x4f\x8c\x88\xb7\x9e\x75\x4e\x6e\xa9\xc7" "\x97\xba\xbd\xae\xc7\x2a\x96\x80\xab\xad\xf3\xa4\x16\x84\xcd\xd5\x7c" "\x2b\x6e\x83\x3a\xcc\x08\x46\xbe\x5a\xa9\x27\xf1\xb1\xb3\x65\x62\xd2" "\xac\xb9\xec\xfb\x75\x84\x55\x23\x0d\x05\x0d\xae\xc6\x74\x8b\xa2\x80" "\xa5\xed\xc8\x6d\x48\xe3\xf8\xaf\x0f\x8f\x4f\xfb\x18\xae\x3c\xd3\xc1" "\x9a\x82\xd5\x04\xa4\xfd\x52\xbb\x62\x28\x9a\xe8\x02\x65\x72\xa4\x97" "\xfe\x26\x8f\x87\xef\x4b\x4b\x58\x86\xaa\x07\xee\xb6\x98\xb7\xcb\xf9" "\x96\x83\xf7\x10\xaf\xc9\xed\x1f\x8a\x48\x88\x83\xce\x0e\xb8\xf7\xfd" "\x05\x5b\x82\xa9\xfe\x21\xa4\x09\xca\xa2\x31\xc4\x1b\xa1\x51\x00\x8e" "\x96\x58\x91\x9c\x61\x1e\x15\x7d\x7f\x39\x26\xa5\xe4\x24\x85\x32\xa6" "\x86\x0e\x61\x5b\x9c\x86\xe9\xfe\xa2\x12\x12\x8d\x96\xed\x58\xc9\xb8" "\x4e\xf2\x27\x06\x07\x1e\xb6\x9f\x49\x2e\x4d\x83\x21\xed\x9f\xaf\x6c" "\x6a\x89\x28\xf8\x61\x72\xbd\xc9\x30\x24\x45\x83\xea\x15\xbe\x49\x7d" "\x9c\xe4\xae\x79\xcb\x3e\x62\x93\xa8\x51\x2f\xfa\xa9\xe8\xe3\x58\xf3" "\xc7\xc7\x11\x70\x01\xfb\x92\x89\x1a\x40\xb8\x4f\x91\x26\xcc\x3d\xef" "\x5c\xde\x67\xf4\x63\xbb\xac\x96\x68\xb9\xf5\x6c\x3e\x4e\xe7\x2f\xce" "\xeb\xb4\x7e\x52\xfc\x22\x6b\xab\x21\x3d\x81\x93\x51\x6e\x70\x64\x45" "\x9f\xd1\x36\x53\x50\xa9\x5c\x5a\x1c\x3a\xc4\x4a\x73\xbb\xba\x2a\x4c" "\x17\xeb\xe4\x9d\xd7\x81\xbf\xf1\x99\x5c\xd7\x06\xb7\x7b\xb5\x33\x11" "\x75\x94\xad\x63\x56\x6f\x4c\x07\x30\xbe\xab\x85\xff\x4c\x71\x3b\x7f" "\x10\xb9\x54\x80\xfe\x99\xa0\xf6\x76\xc5\x1c\xa1\x11\x16\xb2\x1e\x87" "\x88\x7b\x46\x2a\xa9\x77\x0e\x85\x50\x9e\x4e\x60\xf1\x98\x14\x81\x15" "\xf0\xa3\xce\x60\x28\x51\x6a\x94\x61\x78\xd1\xac\xac\xf7\x76\x7f\x6b" "\xe7\x27\x78\x91\x36\x9e\xff\x67\x76\x2a\xa5\x8f\x92\x8d\x48\xb7\x23" "\x1e\x44\xd8\x99\xce\xa8\x28\x90\x03\x34\x91\x17\xa5\x3d\x61\xbc\x27" "\xb2\x07\xfd\xc9\x1c\x9d\xb6\x1e\x67\x7d\x1e\x1a\x1b\xc6\xa1\xb6\xe8" "\x56\x41\x30\xb3\x35\x23\x3d\xb4\xb5\xde\x8d\x62\x32\x4e\x6d\x0c\xcb" "\x2b\x08\xc2\xff\x92\x23\x24\xeb\x8c\x50\x67\x11\x14\x2d\x4b\x8d\x7a" "\x21\x22\x3e\xf0\xa3\xd5\x34\xfd\xb0\xde\x58\xbe\x95\xcd\x82\x71\x52" "\xf7\x1b\xdd\x0a\x82\x76\x6b\x62\xb4\xc8\x75\x36\xf0\xb7\xe7\xdf\x34" "\x3c\x42\x63\x18\x7d\xa8\x87\xde\x6e\x65\xd1\x1d\x03\x60\xe2\x37\x6c" "\x1d\x71\xc3\x67\xae\x85\xed\xee\xd8\xf7\x67\xd2\x4c\x64\x4b\x1a\x9b" "\x45\x5d\xed\x1d\xc3\xcc\x22\x4f\x99\x93\x6a\x6e\xe6\x69\x31\xc4\x5e" "\x5e\x3d\xb2\x42\x77\x19\xab\x2d\x5c\xd9\xc2\x0d\x9b\xb0\xec\x00\x4b" "\x69\xbc\xcb\x00\x64\x9f\x3d\x8e\x34\xa3\x57\x2c\x25\x7d\xe1\x14\xb9" "\xf0\x27\xd7\x6b\xc7\xdb\x90\x07\x17\x5c\xc0\x3b\x9e\x20\x61\xb6\xb3" "\xfe\x74\x09\xe0\x09\xb5\x37\x15\x44\xe5\x6f\xe4\x38\xcb\xd3\x61\xe5" "\xb1\x1e\xfb\xf2\xd7\x9d\x1c\x25\x0a\x1e\x73\xca\x8c\x60\x1c\x4f\x4d" "\x1e\x37\x61\x29\x09\x50\x42\x1c\x48\xc7\xda\xa4\x59\x65\xe4\x72\xf5" "\xef\x3c\x4b\x85\x97\x44\x4d\xc5\xdc\x01\xcd\x25\x35\x80\x55\xb5\x00" "\x06\x17\xf3\xe7\x29\x1d\xa3\x41\x3e\x3f\x08\x53\xb1\x27\x13\x66\x61" "\x24\x05\xc3\x5f\xf1\xb7\x85\xb9\x84\xd9\x21\xb5\x18\x42\x56\x28\xa5" "\x33\xa2\x9a\xb6\x5d\x3c\x11\xf4\x4c\x6d\xaa\x86\xf8\xb6\x45\x7e\xbb" "\x94\x19\x27\x4c\x48\x1a\xa6\xf3\xfa\x45\x47\x64\x16\x70\xaf\xf5\x8b" "\x9c\xc6\x2c\x09\x93\xd4\x9a\x50\x9f\x02\xde\xe7\x55\xee\x5f\x1f\xd2" "\x71\x0c\x99\x5c\x43\xa9\x1c\x4f\x87\x3a\xfa\x1b\xbd\xff\x19\x42\x7c" "\xba\x26\x41\x05\x2a\x8f\x36\x1e\xcb\xc7\x2e\x8a\x6c\xf5\x87\xe8\x3f" "\x8b\xd3\x11\x0c\x95\xfb\x08\x0e\xdc\x77\xa6\xd4\x3c\xd5\x8c\x44\x7b" "\x0e\x02\x26\x1e\x41\x09\x50\x0c\x64\x58\xdc\xe7\x0a\xcb\x17\xaa\x8f" "\x9d\xc1\xd1\x5b\x94\xa6\x13\x54\x16\x40\x31\xb5\xd5\x63\xc2\x5d\x02" "\x46\xfc\x45\xe6\x40\x1c\xef\xce\xb5\x01\xe1\x46\x89\x03\xe5\xd6\x77" "\x75\x9d\xbe\x3f\x24\xbd\x48\xce\x55\xff\x8b\x8f\x26\x52\x9f\xb3\xb2" "\xd6\x69\x20\x2a\x1e\x8a\x49\x89\x84\xb4\x49\xb4\x83\x0a\x01\x26\xb1" "\x8f\x0e\x78\x18\x2c\x9c\xe7\x8f\xe0\xc4\x48\xc0\xe2\x78\x45\xb9\x26" "\xcf\xde\x28\xfa\x85\xe1\x56\xfa\x98\xfe\xfa\xeb\x19\xed\x12\x47\xc9" "\x64\x3b\x44\x7b\x43\x42\xc9\x4c\x11\x4d\x3c\x4c\x35\xee\xd4\xd5\xb4" "\x9a\xa7\x0e\x6a\xad\x45\xbf\xb5\x57\xf1\x5e\x8f\xdb\x2d\x6e\x3d\x10" "\xd8\x33\x8a\x13\xfe\x3f\x18\x77\x51\x98\x5b\x37\xa5\xbb\x10\xb7\x50" "\xf7\x9e\x36\xfc\x2e\x2e\xe9\xbd\xec\xc3\xed\x15\x6e\x20\x2e\xd7\xb4" "\x5a\x94\x80\x9d\x77\xed\xaa\x39\x80\x42\xfc\x6a\x82\x5a\x48\x48\xc3" "\x34\xc5\x57\x30\x3d\x24\xeb\x3f\x8e\x01\xbe\x06\x99\x5c\xeb\x28\x3c" "\x70\x27\x2b\x00\xda\x61\xc3\x38\x16\x28\xf0\xe3\x72\xfe\x2f\xcc\x77" "\x9f\xf7\xda\xf7\xe4\xb7\xf2\x68\x6c\x39\xd3\xfa\xb6\x74\xb8\x86\x7b" "\x62\xb0\xbf\x9d\x5c\xfd\x0c\x1d\x3b\x27\x05\x21\xf5\x5f\x14\x7d\xe7" "\x51\x42\xff\xd7\xfc\x9a\xc7\xe5\xda\xe7\xca\x2f\xdf\x26\xa9\x22\x2d" "\x06\x08\x23\x85\x24\x09\xdd\x04\x0c\xfd\x1f\x66\xf2\x18\xc6\xdb\xda" "\xaa\xcd\xda\xb3\x4b\x12\x3a\xf2\x2f\x97\x38\x4d\x64\xfa\xc6\x4d\x84" "\xfd\x63\x8c\x96\x37\x8c\x8f\x95\x32\xa1\x19\x27\xd4\x84\x40\xbc\x77" "\x7f\xf8\xb8\xb9\xbe\x88\xf9\x30\xf3\xb5\x79\xa7\x13\xc0\xbc\x44\x9d" "\xca\x3a\x3b\xd5\xf2\xef\xa9\x82\x40\xcc\xc5\x94\x29\x9e\x44\x45\x1d" "\xc6\x0c\x6c\x5c\x9e\xdd\x0d\x7b\x77\x79\x12\xb3\xdc\x40\xc5\x7e\x0e" "\xa5\xf4\x42\x5c\xd7\x04\x7e\x68\x6c\x73\x04\xf0\x4b\xa9\xf7\xb5\xde" "\x6a\xd2\xbd\x52\x4f\x1d\x29\xf8\x80\x2a\x52\x44\x41\xfa\x28\x60\x15" "\xad\xf4\x58\x94\x31\x71\x0a\xa4\xd7\x6d\xe8\xa9\x56\xdc\x1d\x39\xc0" "\xa1\x3a\xbb\x7f\xc3\x09\xd2\x42\x22\xd0\x36\xe2\x04\xab\x6b\xb4\x6e" "\xf8\xa7\x59\x5d\x9e\x45\x12\xe0\xb9\xd5\xf8\xfd\x71\x9a\x4e\x30\x72" "\xe1\xd8\x06\x96\x70\x45\x78\x9c\x67\xa1\x68\x1f\x2a\x9f\x1f\x4b\x19" "\xf4\xf5\xe1\xaf\xda\xfc\x17\xdb\x7a\x6d\x51\x96\x16\x14\x99\xe6\x2a" "\xb4\xb0\xec\x27\x64\x8f\x3e\xeb\x1f\xb2\xb7\x8f\x8e\xcf\x9b\x05\xcf" "\x95\x09\xa3\xb9\xe2\xa3\x61\x23\x8d\xeb\x1c\x91\xbd\xbc\x8b\x1d\x11" "\xbb\xeb\x93\x9f\xd9\xda\x81\x1c\xd4\x39\x06\x9d\xa0\xec\xc0\x06\x65" "\xd7\x23\x57\xaa\xc0\x1f\x25\x9a\x03\x25\x40\x9b\x20\x18\x59\xcc\x05" "\x69\xe0\xeb\xa6\x7a\x7a\x9c\xa7\xe8\xb7\x80\x78\xd9\x37\x0b\xd3\xe3" "\x7f\x05\x71\x68\x0e\xde\x60\xcb\x6b\xbf\xe6\x94\x35\xd6\xab\x5e\xfd" "\x80\xcf\x05\x1d\x11\x9a\x70\x04\xfc\x0b\x60\x08\x44\xd4\x92\x18\xd8" "\x44\xde\x8f\x52\x15\x24\xa4\x7e\xe5\x02\x29\xc7\xda\x25\xe4\x2a\x86" "\x39\xb5\xdb\x22\x5e\x7f\x23\x96\x7f\x5d\x4f\x8a\x29\x7a\xff\x04\xa3" "\xcb\xed\xc2\x98\x5b\x63\x93\xa5\xba\x0b\x26\xb6\xc7\xb4\xca\x22\xd3" "\x69\xb3\x5b\x41\x07\x99\xd1\xad\x02\x82\x51\x04\xd3\x4f\x73\x40\x8d" "\xb1\x94\x84\x38\x59\x79\x31\xed\x1c\x1c\x26\x0e\x78\x34\x05\x17\xbf" "\xa2\xf7\x34\x53\x7d\xbd\xf5\xec\x30\x35\x18\xff\x46\x40\xef\xe7\xf7" "\xb1\xc2\xf4\x6b\xab\xdb\x92\x47\xce\x8e\xab\xad\x97\x18\xa8\xb9\xdd" "\xb7\xa1\x8d\x5e\x87\xce\xd5\x54\xc9\xd6\xde\x78\xf8\x5d\x29\x33\x49" "\x59\x0c\x6c\x32\x48\x35\x34\xbc\x96\x8b\x24\xa2\x8e\xb5\x4b\x95\x15" "\x58\x9d\x6d\xd8\xeb\x51\xa5\xad\x0b\x4d\x89\x6c\xe9\x22\x50\x39\x7c" "\xbc\x40\x43\x23\xfc\xdf\x0e\xe4\x7e\xd6\x34\xe0\xc5\x82\x13\xbc\x5b" "\x35\xa7\x2b\x21\xa0\x98\xe1\x1b\x79\xc0\x61\x43\x0d\xc8\x17\xc1\xe0" "\xc7\x9a\x5b\x6e\xd3\xb0\x02\x97\x99\x33\xf1\xb8\x3a\x17\xf2\x50\xb1" "\xbd\x5c\x49\x58\xdf\x4d\x75\x53\x1c\xa0\x3e\xfb\xda\x89\xf6\xa9\x2f" "\xe0\x8c\x23\xad\x90\x14\xff\x56\x2a\x7f\x3d\xcd\xe5\x78\xd6\x82\x5b" "\x98\x47\xb5\xdf\x04\xdb\xca\x4f\x2a\xa5\x2d\x8e\x0f\x4c\xf8\x18\x3c" "\xe1\x21\xe3\x9b\x50\x35\x8a\x97\x96\xac\xde\x03\x72\xa8\xff\x97\x76" "\x98\x74\xa8\x0a\xb9\x97\xcd\x88\x91\x45\xaa\xd4\x88\x8c\x06\x96\x3c" "\x2f\x5b\x82\xf5\x3a\x74\x8a\x67\x29\xfb\xc7\x9d\x35\xc0\x6d\x84\xe0" "\x5c\x62\xe4\x4f\xf7\x80\x40\xe5\x6e\xbf\xc6\xef\xcf\x0d\x8b\x49\x33" "\x7d\x5a\x17\xc4\x04\x1f\x0d\x5a\x8b\x61\x62\x44\xd5\x85\xa1\x62\xb6" "\x9d\xb0\x73\xac\xcd\x90\x71\xd1\x2d\xf5\xb3\x26\xa4\x3b\x83\x4b\xbf" "\xfc\x2f\x2a\x60\xde\xaf\xcb\xdd\xf1\xc6\x43\x8a\x17\x69\xd6\xfb\x09" "\xfb\xe1\x99\x0e\x89\xda\x12\x16\x4e\xf2\x37\xf3\x26\xed\xb5\xbe\x64" "\xbb\x64\xb1\x43\xa0\x30\xde\x8a\x99\xb3\xc5\xe5\x43\xc8\x71\xcb\x58" "\x1e\x2b\xe0\x90\xa9\x21\x34\xaa\x58\x77\x01\xf8\x64\x90\x7c\xad\xd7" "\xc1\xce\x20\xfc\xf8\xf5\xdc\x7f\x7e\xcd\x06\xa6\xc1\x9d\x89\xa9\x2c" "\xa0\xad\x43\x93\xc2\x08\xb8\x0b\xba\x99\x0c\x7a\x37\x02\xa9\xc7\x9b" "\xdd\xde\x75\xd5\xdb\x24\x47\x19\xac\x32\x19\x1b\x6c\xeb\x04\x1a\xb5" "\x41\xfb\x47\x68\x0a\x97\xdc\x04\x22\xb8\xa5\x0d\x91\xe3\x2c\xb0\x8c" "\xd3\x41\xb0\xb0\x99\xac\xa5\xbd\x12\xb6\x9d\x4f\x89\xd1\x0b\x75\x5b" "\x35\x1a\x64\x89\x18\x0b\x78\x6a\x3b\xeb\xac\x92\x65\x32\xa4\xa2\xd8" "\x5b\x07\xbc\xe6\xc0\x90\xd1\xaa\xaf\xf0\x79\xe3\x6d\x53\x94\xa6\x12" "\xf1\x35\x1b\x90\xc1\x3a\x0f\xa6\xbf\x9d\x18\x8d\x54\x8d\xfe\x6f\xa5" "\x1a\x90\x26\xed\xb5\x20\x09\xc0\x3e\xd4\x5a\xc5\x1d\x05\xc5\x8a\x95" "\x7b\xcc\x67\xe0\x5a\x58\x89\x85\xba\x00\xd7\x9f\x33\xae\x9c\xdd\x5f" "\x57\x21\xd9\xfd\xc7\x2e\xe6\xe8\x80\x70\x8b\xe8\x7e\x8a\x60\xc3\xc0" "\x35\xc1\x46\xf2\x09\x1d\x1b\x9a\x4c\x2c\xfa\x56\xf2\x92\xfe\x1b\xa6" "\x22\x90\xd4\xe5\x6c\x05\x66\x92\x91\xbb\xe9\x17\xf3\xca\xc5\x18\x02" "\xa2\xcc\x8e\x9c\x90\xda\xdf\xe6\x66\xc2\x33\xc5\xa5\xbb\x71\xee\x17" "\xde\xec\x51\xce\x60\xc7\x3f\x57\xbf\x9e\xcb\x84\x87\x3a\xfc\xc4\x48" "\x15\x13\x18\x10\xc6\xc1\x21\x7b\xea\x48\x5e\xf9\xaa\x27\x85\xe8\x59" "\xb2\x53\x15\xef\x8a\xa3\xa2\x74\x98\x27\x86\xe4\x5d\x62\x2a\xe8\x31" "\xfb\x76\x01\x0d\x69\xa1\x81\xb0\x69\xe4\xcc\x55\xd4\x43\x6e\xdb\x10" "\xd1\x11\x9b\x0c\x60\x00\xc6\xd5\xcf\xf7\xc7\x2f\x74\x0a\x59\xdc\x05" "\x07\xe7\xa9\x52\xb6\x94\x03\xc6\x26\x73\xf1\x22\xc9\xd1\x26\x4f\xac" "\x6c\xe2\x26\x2e\x86\xcd\x8d\x6a\x40\x26\x72\xf8\x85\x30\xfc\x2d\x16" "\xf3\x17\x36\xdd\x49\x7a\x4e\x85\x32\x53\xac\x8d\x5a\xff\x8d\x13\x76" "\x89\x5e\x9f\x55\x19\xb2\x49\x0c\xc2\xa2\x41\x2b\xa0\xc9\x9c\xec\x85" "\x5f\x66\x88\x37\x31\x00\x35\xe9\x2f\xb6\x46\x48\x6d\xe1\xb0\xac\xff" "\xb9\x1a\xe7\x51\x6d\xf3\xee\xef\x38\x14\x56\xb5\x5e\x65\xba\xa5\x8e" "\x71\x46\x1c\x92\x86\x87\xe6\x99\xd2\xb2\x18\x14\x80\x55\x91\x38\x2e" "\x95\xe1\xb9\x70\xaa\xa5\x32\x59\x91\x7f\x07\x02\x81\xf2\x33\x6b\x7d" "\x57\x02\x49\xd8\x38\xb3\xf1\xa3\x27\x53\xc3\x36\x86\x4e\x15\xf4\x56" "\x1b\xad\xf8\xfe\xe0\x34\xa2\x9c\x52\xff\x3f\xca\x74\x56\xae\x14\x0f" "\x83\xe3\xb2\xfd\x5b\x57\xc9\xae\xf3\xf2\x0c\x66\x42\x00\xd2\x35\xf2" "\x36\xec\x47\xdd\x2f\xc2\x0b\x14\xdc\x60\x00\x81\x22\x37\xae\xa9\x92" "\xd9\x87\xe5\x46\x06\x79\xe8\xc5\xb7\x6d\x93\x1e\xf6\xd9\x51\xe6\xc7" "\x08\x7e\x31\x06\xb6\xce\x2d\xb9\xde\x6f\x22\x8f\xdf\x3f\xfc\x38\x71" "\x0c\x0e\x8d\x50\x00\xa1\x95\xa7\x9d\x1f\xa2\x30\x10\x38\xf5\xb2\x7c" "\x40\xb0\x9c\x34\xc0\x25\xe5\x09\x9d\x40\xc2\x20\x4e\xa0\xea\xe9\x85" "\x26\x3c\x91\x01\xca\xb8\x8d\x68\x57\xa3\x20\xc9\xe4\x97\xf2\x23\x48" "\xa2\x48\x61\xa5\xfb\x8d\x73\x4e\x08\xca\xd0\x9f\x99\x33\x74\x8f\xf0" "\x1e\xab\x22\xf1\x77\x56\xf5\x86\x88\xdc\x1b\x48\x6a\x39\x75\x63\xee" "\x9a\xd0\x78\x4b\x88\x33\xcd\xb5\xf7\xc6\xbc\xf7\x6d\x9c\x11\x05\xf7" "\x1c\x3c\x6a\xab\xef\xd7\x0d\xc6\xcd\x5c\x66\xd3\x1c\xaf\x91\x61\x45" "\xac\x5e\xd7\xfa\x07\x0b\x42\x77\xc0\x44\x8a\xb1\xeb\x78\xc9\x43\xbe" "\x9a\xea\xb0\x58\x7d\x32\x1a\x4b\xcb\x77\x54\xf0\x70\x88\x11\x78\xf8" "\xbe\x66\x8b\x68\x61\x24\x89\x9f\xac\x25\x25\x19\xf4\xb6\x0e\xc4\x2d" "\xb7\x66\xa9\x08\x75\x50\x40\x46\x31\x25\xc2\x68\x50\x17\x74\x02\xa9" "\x77\x24\x6d\x36\xd2\x3a\xfa\xc0\xa1\x18\x89\xd5\x46\x40\xbd\x8f\x6f" "\x67\x0d\x68\x6c\xfd\x33\xf6\xfc\x5d\x90\xcf\x6c\xbd\x63\xd9\xd0\xfd" "\x20\x1d\xd4\xc7\x4d\xbb\xab\x89\x9f\x3c\x23\xc0\xb7\xe3\x7e\xa0\xb2" "\xaf\xf4\x21\x32\x72\x00\xd0\xda\x58\xb5\x89\x3a\x41\x86\xae\x36\x52" "\xcc\x6e\x11\xc2\xc2\xa0\xe5\x21\x84\xa3\x87\x25\x32\xac\xce\x98\xc9" "\x4c\xeb\xf4\xf3\x13\x33\x66\x3a\x62\x0f\x0d\xba\x0f\xfd\x89\xc3\x12" "\x43\x80\x07\x5b\xd2\x8c\xaa\x6d\x44\x9a\x05\x0b\x36\x61\xb8\xfb\xaf" "\x47\x47\xb7\x7c\x49\x28\xb1\x37\x8f\xdc\x8c\x7a\x7b\x38\xad\xe1\xae" "\xec\x44\xbd\xfa\xcc\x82\x71\xd0\xb1\x32\xb2\x02\x9b\x0f\x35\x82\xf9" "\x91\x9f\x5c\x8c\xd5\x43\xab\xc9\xca\xf6\xb8\x2b\x19\x7c\xd4\x82\xc3" "\xef\x61\xa6\x47\x43\x50\x63\x42\xbf\x50\xa3\xc1\xff\x54\x45\x63\xbb" "\x8b\x20\x02\x91\x1e\xe1\xfa\xd6\x98\xf4\xac\x13\x3f\xfe\xd5\xbf\xe8" "\x12\x39\xc9\x18\x20\x7a\x03\xc7\xa8\xbd\x71\xa0\xa5\x02\xae\xa7\x8d" "\x38\xe9\x70\xe3\xab\x2a\xbf\x75\x4b\x59\x8a\xcb\x79\xcf\x27\x67\x92" "\xaa\x08\x72\x4d\x0b\xa2\x4f\x2a\x69\x49\x12\xab\x79\x5b\x3f\x45\xf5" "\x2d\xec\x50\xd9\xbf\xbc\x99\xae\x27\xe1\xd2\xc2\x21\x6a\xfe\xc6\x70" "\x9d\x65\x13\xa6\x4b\x29\xef\x58\x25\x5b\xbe\x18\x47\x8c\x5d\x4f\x15" "\xf7\x4e\xa6\x3a\x1e\x15\x48\x77\x52\xee\xc8\xfd\x01\x9f\x1d\x4a\x7a" "\xa2\x52\x77\x66\x47\x54\xbd\x2d\x7c\xd3\xa7\xa0\x18\xb9\x2c\x56\xd9" "\x65\xa1\x97\x48\x85\x36\x37\x57\x28\x6d\xa9\xe0\x55\xef\x7f\xac\x17" "\x87\x6f\x0a\x64\xc1\x02\x6a\x59\x77\x33\xb8\x97\xa9\x15\x5e\xcb\xf4" "\x20\x15\x9a\xe8\xe5\x20\x9a\xa8\x3a\x35\x44\xff\xf1\xfb\x45\x66\xf2" "\xd5\x4f\x95\xe3\xbb\xd3\x0d\xcc\xa5\xf2\x43\x97\xe4\xbd\x47\xff\x01" "\x29\x2f\x0d\x6f\xe9\xdd\x47\xa8\x10\xe0\xc2\x53\x82\xfa\x69\xb4\x98" "\x7d\x1a\xfd\x9b\x69\xef\x12\x51\x10\xad\x6b\x24\x0e\xaa\x9c\x85\x82" "\x9a\x26\x46\xf9\xab\x78\x74\xbc\x02\xbf\xa8\x34\x6c\xc9\x19\x09\x43" "\xe9\xd4\x6b\x44\x88\x06\x70\xb1\xe2\xaa\x3a\x29\xe8\x3b\xe5\x47\x2d" "\x74\x18\x88\x5a\x35\x3f\xaa\xde\x6e\x8b\x18\xf4\xb5\x88\x60\x7b\xbb" "\x75\x85\x88\xd1\xe2\xf1\x1a\x9d\xfa\x1c\x4d\x61\xbe\x50\x24\x9f\x1e" "\xe3\x2e\x6f\xf8\xc0\xc7\x72\x2a\xae\xc1\xbc\x79\x65\x4a\x47\x72\xef" "\xc5\x78\xbd\x6a\x14\xc7\x9a\xbc\xc7\x7a\x4e\x09\xc8\xb6\xc6\xea\x35" "\xcd\x3a\xb3\x1e\x35\x26\x8f\xb5\x5d\xb8\x43\x17\x6f\x80\x42\xf8\xce" "\x7b\xe0\xdd\xd4\xea\xd6\xdb\xda\xd0\xef\x9e\x7c\xb2\x32\x3d\xb5\xcc" "\x48\x11\x9a\x72\xb2\x73\x06\xb8\xff\x63\x66\xc0\xbc\x68\x2a\x85\xab" "\x9e\x2c\xf2\x23\x8b\x6d\x6e\xb2\xe3\x8a\x97\xd5\x57\x7e\x63\x34\xcb" "\x2a\xa6\xe7\xc8\x6e\x48\x9e\x87\x6f\x9d\x70\x53\x57\x7a\x5c\xb5\x7f" "\x52\x81\x2f\xab\x7c\x4b\xd7\xb1\x9a\x34\xc2\x28\xff\xb6\x7d\xca\xc9" "\x28\x16\x12\xf7\x78\xb5\x8c\x58\x0c\x14\x05\x42\x20\x0f\xd0\x0c\xb3" "\xad\x81\xd9\x34\x20\xdf\x93\xc5\xaf\x24\x93\xf6\x46\xd8\xde\x79\x71" "\x02\xfa\x0a\x65\x24\x73\x17\x88\x2f\xbf\x17\x15\x20\xf0\x0b\x2c\x76" "\x38\x62\x3b\x82\x3f\xf1\x14\x44\xfd\xde\x45\x35\x70\xf9\x9f\x90\x99" "\xb6\x00\x61\xa9\x08\xb8\x33\x83\xba\x8b\x82\xbb\x78\xed\xd0\x74\xdc" "\xcf\x93\x42\xaf\xdf\x8d\x11\xa6\x12\x9b\xa6\xea\x70\x30\xf3\x62\x90" "\x56\x26\x4f\x17\x36\xc2\xb9\x26\x17\x1b\x6d\xc7\xe1\xfa\x45\x5a\x47" "\x3d\xe6\x56\x39\x04\x95\xf3\xb6\xad\x2f\x9f\x46\xf3\x5e\xac\xb0\x75" "\x62\x8f\xf7\x39\xef\x78\xf2\x8b\xa6\x83\x44\x80\x68\xc7\xf1\x8f\xb6" "\x3f\x28\xba\x7d\xbb\xb7\x89\x99\x10\x0d\xde\x0a\x94\xe8\xb8\x57\x08" "\x17\xc7\x11\x4c\x13\xe1\x39\xce\xb3\x33\x78\x2b\x29\xa8\x4a\x5b\x19" "\x49\x7f\xa7\x85\x91\x5c\x76\x80\xdd\x7f\x97\x2c\xb5\x9b\xa2\x21\x61" "\xf6\x08\x86\xe5\xcb\x3c\x3e\x80\x87\x26\xcb\xf9\x6b\xc4\xda\x78\x91" "\x4e\xee\x56\x5c\x6d\x9d\x18\xe7\x0d\x22\xcf\x8c\x02\x44\xcf\x3c\xf4" "\x88\xc3\x55\x0e\xaa\x40\x0b\xc0\xf2\x6d\x64\xe0\xf1\xbc\x8d\x03\x01" "\xa8\x41\xd9\x54\x07\x3a\x64\x1f\x3e\xf8\x83\xd8\x1f\x4d\x5d\xb8\xe9" "\xdf\x70\x8e\x64\xe6\x40\xb3\x8d\xf7\x29\x5f\x7f\xe5\x73\x86\x36\x53" "\x08\x6b\xae\x55\x07\xc8\x80\xab\x7f\xdb\x7a\x6c\x5c\xe7\x70\x27\xff" "\xa7\x39\x52\x33\xd3\xce\x53\x6d\x77\xae\x6c\x2e\x9c\x8f\xfb\x6f\xee" "\x78\xa3\xbc\xb3\xb5\xf8\x88\xbd\x59\x5c\xaa\x3a\x55\x86\x94\x87\x76" "\xb9\x50\xa8\x9c\xde\x4d\xb8\x24\x7f\xff\xf2\x74\x91\xc8\x82\xb4\x30" "\xaf\xdd\x60\xe7\xa2\x23\x24\xf6\x63\x5a\x9a\xa7\x13\x9f\x3e\x62\x4c" "\x6d\x9e\xce\x60\xf7\xf8\x15\x3b\x20\x80\xcf\x05\x44\xfb\xf8\xe1\xc4" "\x36\x50\x37\x66\xe6\x70\xb9\x02\x60\x4a\xb5\x21\xe1\x1a\xa5\xa6\x5c" "\xed\xd6\x4c\xfa\xf8\x98\xac\x5f\x55\xc0\x8c\x87\x69\x3c\x32\x35\x17" "\xbc\xb0\xd9\x9c\x28\xf5\xe0\x72\xd4\xf6\x54\x0c\x7e\xad\x70\x13\x8d" "\x47\xc1\xa6\x7f\xd7\x2b\xd6\xef\x56\x13\xaf\x33\xa0\xaf\x31\x1c\x3d" "\x0a\x63\x1c\xa2\xa2\xdf\xbe\x35\xd1\x02\x1e\xb6\x10\xe4\x0b\x9b\xe1" "\x28\x68\x32\x35\xa7\x88\xb5\xa4\xca\xcf\x99\xba\xbe\xe3\x82\x45\x8d" "\x59\xe8\xaa\x1d\xd7\xbb\xa7\xe0\x9d\xd3\x0c\x05\x5a\x3d\xf8\xed\x72" "\x1a\x17\x78\xb2\xc6\xed\x58\x7a\x40\x35\x66\x32\x5c\xd1\x99\x62\xed" "\xd7\x83\x1c\xaa\x44\xa6\xb7\x16\x51\x7b\xad\x50\x21\x30\xe7\xcf\x6a" "\x5c\xe5\x28\x8d\xc8\x4c\x01\x70\xf6\x22\xae\x0b\x1e\x11\x66\xa9\xc2" "\xc0\x77\x1d\x91\xdf\x9f\x9d\xd8\x2a\xe2\x10\x46\x96\x02\xce\x38\x96" "\x47\x46\xc1\xc1\xd0\x43\x21\xaa\xe7\xd4\x64\xeb\x80\x1d\xbe\xa7\xec" "\x39\x50\x54\x57\xe7\x78\x20\x87\x74\xd7\x26\x73\x62\x6c\x99\x8b\x00" "\x2c\x46\xa9\xb4\xb1\xe3\x90\xd9\x34\x4f\x0c\xa6\x22\x12\xa1\xb6\xd4" "\x10\x43\xa2\x10\x0b\x35\x19\x6b\xce\x42\xd4\x0c\xaa\x0e\xa9\xa4\x86" "\xbf\x85\x26\xfd\x1f\x0f\x0d\x36\x2c\x2c\xac\x46\x3e\xa7\x37\x7a\x20" "\xb5\x4b\x94\x35\x44\x2c\xa5\x29\xfc\x00\xda\x4f\xd7\xe2\x7c\x4e\xaf" "\x14\x21\x5a\x06\x85\x7b\x54\x25\x4c\x26\x34\x69\x56\xfd\x7f\xe2\x15" "\xa5\xce\x57\xec\x38\xce\xdf\x50\xa3\xc7\x59\xe5\x63\xa4\xfd\x87\x49" "\x4f\x00\xe7\xbd\x9b\x44\xf3\xb7\xe9\x9c\x6e\xf6\x71\x87\x05\x6a\x21" "\xd2\xfe\x1a\xc9\xd2\x41\x25\xb1\x94\x7e\xb2\x93\x18\x9f\xdc\x44\x8b" "\x59\x1a\xf4\xd9\xb8\xeb\x09\x1d\x6b\xbb\x5e\x50\xfa\xe7\x9d\x00\x00" "\x44\xe2\x82\xbb\x2a\xb6\xc6\x3c\xc9\x56\x2b\x15\x1c\x21\x4e\x45\x01" "\x53\x54\xe6\x2b\xe6\x3e\x18\x81\x23\x8b\x90\x7f\x7b\xdb\x79\x1f\xf4" "\x4a\x4e\x03\xfa\x29\xdb\xd2\x6d\xb2\xf4\x9d\x0f\x47\x29\xb7\xcd\x9b" "\xa6\x9a\x65\xb0\xb4\x93\x46\x6d\x35\xd0\x9b\x3f\x59\x0c\x67\xc3\x16" "\x60\xd9\x5e\x2a\xb4\xaf\x2c\x9f\x1d\xf9\x1f\x04\xce\x5a\x57\xdd\xe2" "\xd7\x52\x06\xb4\x2e\x34\x23\x12\x67\x74\xd7\x65\x93\xc2\xf7\x13\xae" "\x27\x9d\x70\x92\x50\x6b\x51\x3f\xd5\xd1\x8f\x0f\x52\xd3\xfa\xfd\x71" "\x41\xdf\xd4\xa0\xde\x10\x63\x75\x4d\xba\x86\x5f\xaf\x8d\xc0\xf6\xbe" "\x9d\x90\xef\x21\xec\x86\xa2\x75\x53\x3f\x6a\xd4\xb4\xe3\x60\xdc\x77" "\x54\x13\xf2\x9e\xab\x8b\x3d\xaa\xc6\x27\x9b\x9a\xbf\xe1\x63\xea\x2f" "\x18\x3e\x09\xed\x91\xef\x67\xfb\xb0\x90\x87\x51\x09\x28\x8a\x18\x2c" "\xfd\xcc\x46\xd9\x06\x78\xef\xe5\xed\xce\xda\x65\x18\x33\x5e\x67\x84" "\x38\xca\xc4\xbb\x47\xd3\x76\xf3\xf0\xe1\x2a\xa5\x53\x01\x73\x5d\x7f" "\x42\x65\x3c\x07\x3d\x6a\x4a\x37\xb2\xe1\x7d\x33\x2d\xc1\xbe\x6b\x50" "\x91\x8c\x00\x7b\x14\x88\x63\x07\xcc\x39\x25\x0e\x81\xef\xec\xd6\x3d" "\x24\x06\x7a\x49\x99\x45\x72\x72\x5a\x9d\xf1\x76\x0c\xaa\xc1\x3a\x28" "\xf5\x25\x55\x56\xb2\x7e\xc2\x45\xe9\x39\x69\xb8\x5c\xde\xc7\xcd\x1c" "\x2d\x2a\x43\x3d\x3f\x95\x72\xb9\x30\x54\xa7\xce\x8a\xdf\xf8\x1b\xc1" "\xd3\x08\x84\xd5\xfc\x47\x91\xe2\x51\xbd\x90\x7e\x37\xaf\x5b\xec\x74" "\x23\x5c\x3e\x2f\x80\x4e\x4e\x04\x50\xb7\x15\x28\x99\x42\xb7\x85\x9a" "\xd2\x07\xba\xfc\xfe\xc1\xb5\x86\xdc\x15\xe7\x91\x1f\xe6\xd2\x0a\xa3" "\xd0\x2f\xcd\x47\xe9\x95\x67\x80\xe3\x00\xd7\xc5\x3c\x17\xdf\xa1\x57" "\x54\xde\xb4\xc2\x0e\xfe\xbc\x72\x70\xbd\xa0\xfa\x6b\x37\xfc\x88\xc6" "\xbe\x42\x50\xca\xc3\x8c\x1b\x81\x86\xb3\x64\x48\x20\x26\xab\x52\xd6" "\x5d\x3a\x69\x19\x03\xfc\xcc\x39\x77\x22\x77\x01\x1b\xfa\xa4\x21\xad" "\xba\x76\xbe\xd9\x73\x10\x77\xbe\xc8\x85\xce\x88\xd4\x0f\x36\xbb\xd2" "\xa8\x39\xc6\x7d\xc4\xb8\x62\xc9\x68\x49\x1b\x87\x7d\x4f\xd1\x3f\xc9" "\x0f\x8d\xa5\x7a\x29\x12\x1e\x12\xf7\x8e\x85\xaf\x76\x5c\xd6\x6e\x72" "\xba\x51\x35\x93\xfe\x1c\xdf\x20\x01\x99\x85\xb0\x65\xd8\x28\x70\x7d" "\x8e\x50\x9c\x68\x34\xea\xb1\x88\xde\xea\x5c\x9e\xe9\x79\x55\xf4\xb0" "\x7d\x37\xb6\xfc\x7b\xee\xd7\x3b\xe9\x48\x87\xd4\x23\xa3\x49\xf3\x5b" "\xb8\x78\x2b\xc6\x70\xce\xae\xc8\x70\xd9\x7f\x06\x1b\xda\x02\xae\x73" "\xf6\xd5\x75\xf8\x1e\x0b\x63\x26\xea\xe6\xc1\xb3\x08\x5c\xc5\x84\x68" "\x61\x20\xe1\x2d\xd9\xad\x8c\xe4\x40\x36\xbe\xc8\xa1\x89\xf9", 8192); *(uint64_t*)0x200000000340 = 0; *(uint64_t*)0x200000000348 = 0; *(uint64_t*)0x200000000350 = 0; *(uint64_t*)0x200000000358 = 0; *(uint64_t*)0x200000000360 = 0; *(uint64_t*)0x200000000368 = 0; *(uint64_t*)0x200000000370 = 0; *(uint64_t*)0x200000000378 = 0; *(uint64_t*)0x200000000380 = 0; *(uint64_t*)0x200000000388 = 0; *(uint64_t*)0x200000000390 = 0; *(uint64_t*)0x200000000398 = 0x200000000600; *(uint32_t*)0x200000000600 = 0x95; *(uint32_t*)0x200000000604 = 0; *(uint64_t*)0x200000000608 = 0xfffffffffffffffe; *(uint64_t*)0x200000000610 = 0; *(uint64_t*)0x200000000618 = 1; *(uint64_t*)0x200000000620 = 0; *(uint64_t*)0x200000000628 = 0; *(uint32_t*)0x200000000630 = 0xfffffffe; *(uint32_t*)0x200000000634 = 0xfffffffc; *(uint64_t*)0x200000000638 = 0; *(uint64_t*)0x200000000640 = 0; *(uint64_t*)0x200000000648 = 3; *(uint64_t*)0x200000000650 = 0; *(uint64_t*)0x200000000658 = 0; *(uint64_t*)0x200000000660 = 0x1000; *(uint32_t*)0x200000000668 = 0; *(uint32_t*)0x20000000066c = 0; *(uint32_t*)0x200000000670 = 0; *(uint32_t*)0x200000000674 = 0; *(uint32_t*)0x200000000678 = 0x20000; *(uint32_t*)0x20000000067c = 0; *(uint32_t*)0x200000000680 = 0; *(uint32_t*)0x200000000684 = 0; *(uint32_t*)0x200000000688 = 0; *(uint32_t*)0x20000000068c = 0; *(uint64_t*)0x2000000003a0 = 0; *(uint64_t*)0x2000000003a8 = 0; *(uint64_t*)0x2000000003b0 = 0; *(uint64_t*)0x2000000003b8 = 0; *(uint64_t*)0x2000000003c0 = 0; syz_fuse_handle_req(/*fd=*/r[0], /*buf=*/0x200000004380, /*len=*/0x2000, /*res=*/0x200000000340); break; case 5: // 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 = 0x26 (4 bytes) // max_readahead: int32 = 0x0 (4 bytes) // flags: fuse_init_flags = 0x0 (4 bytes) // max_background: int16 = 0x0 (2 bytes) // congestion_threshold: int16 = 0x0 (2 bytes) // max_write: int32 = 0x0 (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*)0x200000004300 = 0x50; *(uint32_t*)0x200000004304 = 0; *(uint64_t*)0x200000004308 = r[1]; *(uint32_t*)0x200000004310 = 7; *(uint32_t*)0x200000004314 = 0x26; *(uint32_t*)0x200000004318 = 0; *(uint32_t*)0x20000000431c = 0; *(uint16_t*)0x200000004320 = 0; *(uint16_t*)0x200000004322 = 0; *(uint32_t*)0x200000004324 = 0; *(uint32_t*)0x200000004328 = 0; *(uint16_t*)0x20000000432c = 0; *(uint16_t*)0x20000000432e = 0; *(uint32_t*)0x200000004330 = 0; *(uint32_t*)0x200000004334 = 0; memset((void*)0x200000004338, 0, 24); syscall(__NR_write, /*fd=*/r[0], /*arg=*/0x200000004300ul, /*len=*/0x50ul); break; case 6: // creat arguments: [ // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 2f 66 69 6c 65 30 00} (length 0xe) // } // mode: open_mode = 0x0 (8 bytes) // ] // returns fd memcpy((void*)0x200000000180, "./file0/file0\000", 14); syscall(__NR_creat, /*file=*/0x200000000180ul, /*mode=*/0ul); 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; }