// https://syzkaller.appspot.com/bug?id=96d81eea9357d2270c67560290a1de5f081bf98e // 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: // mkdirat arguments: [ // fd: fd_dir (resource) // 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_mkdirat, /*fd=*/0xffffff9c, /*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 = 0x42 (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd_fuse memcpy((void*)0x200000000040, "/dev/fuse\000", 10); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x200000000040ul, /*flags=*/0x42, /*mode=*/0); if (res != -1) r[0] = res; break; case 2: // mount$fuse arguments: [ // src: const = 0x0 (8 bytes) // dst: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // type: ptr[in, buffer] { // buffer: {66 75 73 65 00} (length 0x5) // } // flags: mount_flags = 0x0 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {66 64 3d} (length 0x3) // } // union ANYUNION { // ANYRESHEX: ANYRES64 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {2c 72 6f 6f 74 6d 6f 64 65 3d 30 30 30 30 30 // 30 30 30 30 30 30 30 30 30 30 30 30 34 30 30 30 30 2c 75 73 65 // 72 5f 69 64 3d} (length 0x29) // } // 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*)0x200000000000, "./file0\000", 8); memcpy((void*)0x200000002100, "fuse\000", 5); memcpy((void*)0x200000002140, "fd=", 3); sprintf((char*)0x200000002143, "0x%016llx", (long long)r[0]); memcpy((void*)0x200000002155, ",rootmode=0000000000000000040000,user_id=", 41); sprintf((char*)0x20000000217e, "%020llu", (long long)0); memcpy((void*)0x200000002192, ",group_id=", 10); sprintf((char*)0x20000000219c, "%020llu", (long long)0); syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x200000000000ul, /*type=*/0x200000002100ul, /*flags=*/0ul, /*opts=*/0x200000002140ul); break; case 3: // read$FUSE arguments: [ // fd: fd_fuse (resource) // buf: ptr[out, fuse_in[read_buffer]] { // fuse_in[read_buffer] { // len: len = 0x2020 (4 bytes) // opcode: int32 = 0x0 (4 bytes) // unique: fuse_unique (resource) // uid: uid (resource) // gid: gid (resource) // pid: pid (resource) // padding: int32 = 0x0 (4 bytes) // payload: buffer: (DirOut) // } // } // len: bytesize = 0x2046 (8 bytes) // ] res = syscall(__NR_read, /*fd=*/r[0], /*buf=*/0x2000000102c0ul, /*len=*/0x2046ul); if (res != -1) r[1] = *(uint64_t*)0x2000000102c8; break; case 4: // write$FUSE_INIT arguments: [ // fd: fd_fuse (resource) // arg: ptr[in, fuse_out_t[fuse_unique, fuse_init_out]] { // fuse_out_t[fuse_unique, fuse_init_out] { // len: len = 0x50 (4 bytes) // err: fuse_errors = 0x0 (4 bytes) // unique: fuse_unique (resource) // payload: fuse_init_out { // major: const = 0x7 (4 bytes) // minor: const = 0x27 (4 bytes) // max_readahead: int32 = 0x0 (4 bytes) // flags: fuse_init_flags = 0x1001a (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*)0x200000000380 = 0x50; *(uint32_t*)0x200000000384 = 0; *(uint64_t*)0x200000000388 = r[1]; *(uint32_t*)0x200000000390 = 7; *(uint32_t*)0x200000000394 = 0x27; *(uint32_t*)0x200000000398 = 0; *(uint32_t*)0x20000000039c = 0x1001a; *(uint16_t*)0x2000000003a0 = 0; *(uint16_t*)0x2000000003a2 = 0; *(uint32_t*)0x2000000003a4 = 0; *(uint32_t*)0x2000000003a8 = 0; *(uint16_t*)0x2000000003ac = 0; *(uint16_t*)0x2000000003ae = 0; *(uint32_t*)0x2000000003b0 = 0; *(uint32_t*)0x2000000003b4 = 0; memset((void*)0x2000000003b8, 0, 24); syscall(__NR_write, /*fd=*/r[0], /*arg=*/0x200000000380ul, /*len=*/0x50ul); break; case 5: // rename arguments: [ // old: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 2f 2e 2e 2f 66 69 6c 65 30 2f 66 69 6c // 65 30 00} (length 0x17) // } // new: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 2f 2e 2e 2f 66 69 6c 65 30 2f 66 69 6c // 65 30 00} (length 0x17) // } // ] memcpy((void*)0x200000000100, "./file0/../file0/file0\000", 23); memcpy((void*)0x200000000140, "./file0/../file0/file0\000", 23); syscall(__NR_rename, /*old=*/0x200000000100ul, /*new=*/0x200000000140ul); break; case 6: // syz_fuse_handle_req arguments: [ // fd: fd_fuse (resource) // buf: ptr[in, buffer] { // buffer: {16 95 36 77 04 d1 0d d8 32 67 8e 4e 2d 01 86 04 84 a6 9e aa // c4 10 e2 d6 cf 3b 3d 39 25 f9 a3 cb 60 25 92 37 71 70 df fd c4 de 86 // f1 63 e3 90 e2 1d 07 45 9b 0f 05 8c fc 24 8c 4b cb e8 96 f3 c6 80 06 // f3 c2 cb e0 7c 55 b8 71 70 87 1c 1d 36 4d 74 0f ae b7 50 c8 c8 ac b7 // 6a ca 18 bc 0c 01 8e d3 41 b5 5b 0e f8 0c ef e9 5b 85 75 6a ac 97 8a // 0e 0b 5c e5 9c ae 66 57 64 3e 7a da 0c 13 36 ba b3 10 88 83 51 66 45 // 53 c2 fa a6 dd 39 05 4e 19 e2 3c c7 c4 b4 d3 35 46 40 7f 88 01 94 aa // 07 61 f2 a9 36 0c 4b a2 6d e3 42 32 8b 92 db 81 ae 84 fc 9c 1e 9e ef // b4 b7 ec 3f 58 a6 d5 d2 3b 90 73 27 b1 44 80 a3 7f 3c 84 30 57 29 a9 // 1c 28 80 7f 88 09 b9 97 23 5b fa 2d 4b 6f 45 ee 95 68 bb 4a 41 6d f3 // 4f 41 40 c5 e2 72 bf c0 68 ea 61 a4 8b 36 54 90 cc b0 27 72 a9 06 da // d4 57 f5 d2 dd 1a 57 cc 12 09 e8 89 7c 81 15 04 9d 7e 4e 3c 75 6a 7f // 5a d0 c0 04 ef 66 c8 bf 91 f6 00 91 0e 73 b4 aa 5f 51 6b ab 5c d6 2a // d9 36 42 96 0a b3 2b 7f da ea cb 1a 95 87 a3 89 a5 29 c2 31 f8 a4 7a // 65 fb 6d 27 ba 6a 0e eb 46 66 0c d7 5d bf 47 df 89 e9 f5 78 ea fa 69 // 92 a1 2d 9d 7d e5 6d 69 fd 0e 30 b1 5c aa bd 13 c2 8d 63 92 15 97 46 // 62 92 f8 c4 e8 7f 23 d5 3d 52 e6 e8 f1 c9 29 5a f0 74 3c 8c 67 1a 49 // 27 30 74 ba 44 db ce 9e 9b 11 36 a9 3d bc 19 d2 b8 e6 0c da 5f 50 eb // a2 d8 14 82 2a 68 a0 fd 4f f5 e6 a2 5d d5 34 6f 96 b2 6b 5e 15 63 eb // b9 78 29 a7 6f d8 c2 aa 46 74 99 fd ce d9 1b 05 b1 93 b6 83 16 49 4f // 11 f5 ce 97 ed 8e 13 d4 74 b0 3c 6f 6e da 4e ff 54 b0 ec 36 2f da 53 // 00 3e 6e 2a 38 68 a5 d5 7e 24 26 ae d5 ad cc da c8 e1 62 c6 cc 20 36 // 1d d4 70 98 89 b7 9b 28 10 ba 42 f5 31 fd d3 74 65 62 a0 0d a6 5b 42 // 11 fb 7d 8f 48 2a 36 10 74 8d 3b 80 d2 94 2d 84 32 47 1f 98 c6 e9 03 // 6c b5 7f 39 13 b3 1d d8 ba dd d6 d8 5b 44 e8 46 3b 83 8f cf b6 97 96 // 28 c5 fa 3d bd 30 68 8e 10 b9 ed e2 57 eb c7 b9 6d 40 92 f3 8d 11 b9 // e6 a4 d1 04 90 a9 df 13 87 b3 74 3c f5 1e 20 6c 7d bc 07 41 c4 08 bb // eb aa e7 f3 6d 81 b5 ce 5b 21 bb 9f e9 92 c8 a0 cb 3a 91 ea 2d f2 1e // 57 1f f0 94 b5 3b 17 c4 6f e2 2c 0c ea d2 91 44 d2 03 29 4e b4 2c 98 // 47 90 a6 b6 34 8e d8 b7 b0 31 7e e5 b2 35 3c c5 4b cf d8 08 bf 0f 61 // f7 39 17 58 4e 17 bd 92 59 c8 a0 4d 2b a3 b4 f9 31 57 19 47 c7 70 35 // 97 59 33 47 1f b1 20 30 88 dc e4 78 eb 4e 41 1d db 7b 88 ca eb 02 e1 // cd a7 41 24 5d f7 01 a2 b5 c2 9c 48 a6 31 ea f1 85 49 bd 90 c7 02 22 // fd 6d af e5 55 07 26 bb 58 dd 0f bf 84 ff ee ae 68 3a 03 79 50 5f 03 // 74 0a 65 20 25 ad d8 e0 e4 e6 b5 bf b4 bd 08 76 df e1 ec b6 39 ac c1 // 10 eb a9 72 94 a4 e4 64 2a ef bc ad 04 ba 50 d8 30 e9 45 fd 99 00 ee // 7e 02 48 86 94 04 1f 43 cb aa 86 28 0c 1d f6 4e 8f 1f 81 f7 cd 51 30 // 91 4e fd 19 b5 82 62 f3 bd 2c 43 bd 8b 4a 5b ea c0 9f 1b a2 70 20 52 // 19 94 46 5e 62 c3 29 de bb 50 ef e0 71 6d 22 cf 00 56 fe bc 7c b9 5a // a8 18 e1 06 39 07 7e 91 ca c3 c8 0b 37 d6 ee bc 69 07 dd e9 71 b5 78 // 38 3e e0 40 86 a0 da d1 87 50 ce ff 6b 8d 6d 37 3a fa 93 a5 1f ee 65 // fe 13 18 c1 ac 29 1b 78 4e 45 d6 69 62 c8 b5 45 71 bc 1e 92 a9 96 c1 // 15 61 d9 4a f6 ec dd 37 94 8d 35 ad bd 1a d6 3c 1c 05 c3 1c 7f 4a fd // 70 7a a1 95 6d 14 44 fe c1 13 7f b6 d8 1f 56 56 68 87 13 17 77 e5 fe // 3e 2f af e8 af 8f 21 ed 34 48 0a fe 74 af b2 5d 8d 16 f8 08 9f cb 85 // 1a c4 9d d8 26 b7 f2 73 aa 3d 77 18 56 d7 12 c6 23 97 d4 9c 72 d9 3e // 3c 2a 5e 6b 97 67 fc ff 0f c5 b3 d7 0d cd 70 ff 8b ad 5d fd 7f 5a 84 // c1 94 f9 94 50 60 1f 97 01 04 f9 be 02 68 52 ea d2 18 24 15 2d d8 f6 // 53 6f cd 01 a6 91 77 a6 5f 2a f2 66 e6 19 d6 1d 20 de 0c 73 86 80 fb // ec 29 e7 c5 94 ca d2 9f 00 9d 46 d8 79 08 c9 51 b2 e4 ad 8d 9a 67 db // 8b e6 f5 70 fe 54 16 d9 e4 dd 22 a1 08 14 0a 1c 95 36 97 31 80 73 25 // ee 7f 42 01 20 9a 79 5f a1 60 9c e8 fa 27 38 46 77 81 6f 65 1a 96 cc // 08 40 0e 1b 64 7b dd df b8 51 31 3e 3c ca a4 72 b9 a6 a1 da 3a 09 36 // e1 19 a6 d7 80 8f 09 de 24 4d 73 9c 39 df 3e d3 60 04 b7 7c b5 4b 6b // 13 96 b7 18 c8 7f ba 28 cb 14 39 c7 d1 d1 40 da e1 ee 2c 2a 7d 64 74 // 27 b1 e7 47 27 10 c7 ac 4f 1f b0 fc 0c 9d 15 ec ce 28 16 7d 23 e2 e4 // 24 74 db f1 c6 3c 08 19 60 6b e9 c9 b6 dc 2e b5 9b f9 93 25 68 ef 40 // 8c 20 e9 49 8c f1 05 e8 4e ee 30 46 0d 43 48 f4 cd fa b6 23 b4 16 ad // ad b4 42 78 87 d9 b1 b6 b8 db 75 b2 24 e8 a5 5f a0 35 1d 21 09 3b 2b // 7e 42 e6 68 54 91 cb fc e1 00 d6 02 d0 28 1f 4b d0 86 b5 06 12 f3 cc // f0 55 fa b1 aa d9 7a 52 69 5a 23 3c 3d 45 8b e4 53 6b 66 b0 ac dd a5 // ce 0a aa b4 8b b7 d7 f3 9a 8a f4 73 c4 47 89 91 f1 c4 56 98 39 ea b0 // c1 d6 84 00 1e e1 77 22 90 87 16 53 a2 29 3b b7 75 4c 1e ac 17 8c 60 // f8 6e 2a 98 e1 99 2d ee 19 8c 76 36 5f 2d 04 d1 59 d7 c2 10 c6 cc 58 // 76 4e 3b 7d fb 5b c1 51 90 55 5f eb d0 1c 69 ca b8 f5 59 26 c2 8a 13 // fa 4f 90 60 dd e1 ca 2d f7 e1 f7 1f d9 9a 0c 35 0d 7f 0e 34 1e ce 8e // 06 85 e9 c2 05 b4 86 ef 40 09 10 21 1b 68 8f 07 fb 05 b5 42 26 1c 74 // b4 5f 4a c2 3f f5 3e 9e 62 0a b1 2d ad 7b 51 31 f6 71 28 bb 8e d6 a4 // a7 0c ae c4 37 f2 15 7f 8b cb 3d 08 00 91 e5 71 5d fc 7d 75 39 dd 03 // 20 c9 0d 0a ab 6a 6d 7a 44 7e be ea 89 3a 0e fa 21 76 29 2c 64 8c 62 // ce dd 41 38 c9 d0 53 5a b0 62 18 55 48 4f c4 3e 0e 3e 84 35 7d b6 95 // 1b b2 1f e2 f4 e9 9f a1 88 eb ec bc 23 f7 3e a8 79 bd 30 44 08 ac d1 // c4 70 fd 11 26 06 cc fd 7b 79 70 e9 50 eb d3 63 af bb a3 59 a5 18 77 // 24 8a 42 84 50 97 09 4f f7 85 dc 82 26 42 25 75 2f 3a ef a9 80 d9 ed // 53 09 b4 8f 47 a5 b5 ef 49 f6 98 08 b9 1b de 95 52 77 b6 52 5f 55 43 // 6f fe ba 0b fa 8c 13 f6 31 4c 57 ec 97 ee a2 95 af c6 6a 9f 4e c8 44 // 47 4c 0d a6 ff 1e f0 c6 c6 5c 03 5f 3b b7 4a 70 ff a6 68 35 9b 58 a4 // 6a f9 76 00 c4 28 62 6b 45 c8 1a 4e 37 2e 19 88 94 c0 2e 2b ee 80 10 // fb 4c 2c 07 5e a6 23 a6 ee 24 a9 9e 22 5f 80 93 22 df 6e a6 f3 9b 15 // 66 b1 ae e5 40 3d 45 ba 64 8f 94 f7 09 76 01 31 99 b3 24 17 44 45 8d // 03 0a 53 19 36 07 80 89 74 13 28 9d 89 26 7c 38 9e 04 f2 3d e7 9a df // 4b 86 4c 5c a7 6e fc 22 5e b1 ec f6 42 48 87 f0 d8 b3 ac 13 cb e9 df // 4e b6 9f 7b 70 2e 85 fb 39 6d c4 a0 30 d5 7a 8c 4e dd 22 7e e5 68 fb // 11 a9 85 99 35 ad 53 dc fd b0 17 27 f1 06 af 35 2c 56 9a 02 0b 7e 40 // 5a 1a d4 c6 b3 9e 2e 87 96 fe 9f 16 db 37 94 55 0f 5e f3 ec d6 af 2b // 2a b0 38 3e 6c 19 8f 17 ad a5 84 0b de 84 cc ba a6 61 d9 c4 56 d9 dd // af 92 76 3b a4 50 09 8c d5 a9 71 d8 47 fd 50 30 a4 c9 b0 66 ab 3b 00 // 96 df df 7e 5c e2 f8 34 91 65 f9 4c 49 3b 7e 41 92 e8 52 39 bb 11 55 // 2f 91 0f b4 1c 5e 96 ee 10 fc 8d ce 71 1e 88 e0 57 2c e0 bb bd 9c 9f // 3b 7c 9d ae 89 f1 df a6 af 30 9c 43 21 75 5a 5b 19 07 0c 87 31 ac 59 // 0c 30 ff fb 69 fe eb 75 f6 99 ae bb 10 1d 3a 30 f7 84 f1 74 51 82 cb // 4f 0b f6 3a 14 8b 52 1f 0a 03 c6 91 92 76 94 ee 45 3b 27 85 23 e3 ed // 25 6c 15 00 98 a9 32 f6 2c 90 ac 65 fa a4 b9 78 2c 27 a3 ef 6c a2 b5 // ec ae 6a 01 d8 a1 d7 09 6b f6 a7 d1 b3 17 a9 ea b2 2e f4 90 7c 63 1b // cc a2 24 f7 23 f5 fb 9a 44 d7 e1 29 51 86 cf 37 fd 71 34 39 19 aa 16 // 7f a7 0a 50 5a 73 e9 f5 2a 11 cf bd 40 d8 c1 08 7d 4f fd fe 45 a4 0e // d5 ae bf a4 b0 c3 62 2c 78 a9 14 d6 8d d9 2f 46 47 87 11 43 7f f8 88 // 03 ab 28 cd 9c e2 22 3a a0 fa 37 eb 9d 9a 4a 78 66 de c4 ca 6b b6 6e // 79 4c ca c6 bd 19 b1 1d aa 0b 6d 4d 42 cb cf 7d 64 26 b5 71 80 30 ca // 51 bf 92 b3 d8 ea 0b 11 c4 6e c5 c0 c6 e3 80 5c 88 b3 97 31 b2 b7 51 // d9 92 8e d1 dd ba 7c 66 bc c5 27 3d 70 9f d2 95 aa 07 92 38 44 35 b9 // 8c 1f 44 57 5c 02 8f f2 86 90 74 15 67 13 93 1f 7e 62 f8 b0 f8 c7 ee // 9d fe ae b2 e0 96 e7 76 00 58 6a 47 d6 f6 a2 e1 3a 17 df ce ae 46 ad // 84 85 8b f8 87 3f 9f 1e 35 fc 70 0a ef 0a 64 8a f1 68 ab 07 74 a3 44 // 1a 20 3e f3 25 57 7f 2c 76 f5 f0 e5 80 8a cd c7 96 5b c6 5e 8a d1 ca // 81 6b c3 b6 77 11 ea 42 e6 19 c9 57 d0 f2 6b 39 4b e1 f3 b0 c4 ac 9a // f8 55 8e ae bf 5c 1c 27 b6 54 90 22 51 34 79 b4 c2 8d be 3f 1c 31 31 // cc 92 11 ee e7 68 f9 6a 9c 8b 5e 0e 64 25 be f9 21 a3 55 fa cc f0 07 // 2b a1 9b 16 d8 8b 75 fe b5 dc 8f cf c1 b7 b5 97 3e b9 65 4c a3 dc fd // 48 28 31 ff 5d 1f e0 9f e7 ae 43 cf 12 9c 8c 17 a6 68 66 85 a1 3e d0 // 76 f3 46 08 b7 ac 16 eb 8e 9d e6 a4 44 18 c4 e3 f8 16 2e 6a 67 9b c9 // 48 2d f9 6a 04 b1 45 75 eb f0 93 b9 9b f5 cc 26 49 5f 5d d6 e5 71 12 // 9d 97 60 de 3f 80 1b 00 1a 1f 32 48 d1 4f 57 9b c5 19 de 2b 65 66 41 // a8 8d a7 58 a2 ed 3b af 15 fd f2 73 9d db 44 f0 e5 89 2d e7 ea 48 e9 // 30 21 29 d0 c9 39 13 7b 9d 06 87 b2 96 57 76 75 bc bf 43 3a 53 f6 a9 // 81 67 97 cb fe f1 ba 0c aa 2b 86 02 38 7b 5a 8b ae 24 d3 e1 5d 42 b3 // 4d 81 70 87 38 fd 26 9c 3e 8c ba cd c3 ff 5a b1 d4 81 6a 78 3d 7b e0 // f0 a8 08 6e 34 5a 6b 4c 23 1f fd 61 74 5f 6c 45 cf ce af 60 89 e7 05 // 42 ae a1 57 4e 3c 78 74 0f 77 a0 8e b5 5b 37 f0 35 49 c1 dd 31 8c b5 // a7 60 94 21 0e 8c f8 00 c3 50 d3 28 fb f9 44 2d 04 37 e7 af fd 54 b3 // bf c3 3d a3 f2 45 58 f3 ea 8e 59 da 8e 61 ae 60 e7 e7 b4 de 71 79 b8 // cf 94 1d 51 d4 20 c8 ee e6 91 43 96 68 00 dc 4f 7b cb 50 a0 33 33 1f // ca c0 2a 65 e8 8d e2 8a b2 19 c6 83 88 a9 da 91 96 e0 44 dd 1e bb d3 // 99 4b f8 cc 86 2f 6f 8b 41 9f a1 f4 f4 e5 42 7f 10 86 6b 49 89 35 fa // 28 b8 e6 f9 c5 e4 8b e8 b7 4b 9c 22 62 82 33 90 48 0f 71 af f6 cf 72 // 28 1f 52 62 65 87 7d 22 3e ef 9a d7 a4 be 74 38 f9 af b6 af f0 e8 0c // 51 25 c2 c6 12 ce b8 3f 04 70 ea 04 47 99 79 c0 a1 0f bb d0 be d7 37 // 9e 94 9c c1 9f e3 6f bc bc c5 9a 9f e3 0a 26 62 d3 e4 d2 28 62 e8 84 // 1b 58 7b 89 95 ef 84 82 bc 60 fe 08 63 b4 17 52 ef 3d d4 4a 38 7e ff // 10 15 95 82 2b f1 ce 44 0f f9 e5 f7 3e 56 0e 4f 7f bf e4 75 4d 9d ab // bc d9 2d e0 20 17 eb 43 d3 cf 7c 75 e4 5b a0 40 09 a7 82 a6 8c e1 1e // ef d5 22 53 c7 21 da a5 f3 7c 64 08 e3 7b 48 d1 f2 e3 6d 7c 17 93 30 // 0f 2c 90 39 e6 9a 52 05 74 86 b6 3c 0f a6 44 d0 05 28 ce 48 f2 e5 51 // ca 88 e3 56 ac 25 ae 74 c7 34 92 ed 3e 62 33 49 0a cf be 7e d8 24 4f // 23 e2 af 86 e0 ad e6 b7 8b b3 4a 75 a8 6f 6c ba db d3 97 62 68 0c b0 // 82 1d 6d 28 f1 8d 42 7d f1 3d 0e 74 7f 6d a5 4b e9 70 e4 3e f8 ca 82 // 85 dc 8b f4 4e 3c ec db f2 d8 75 7a 98 00 bb 88 9b 84 6d 58 cc 63 6a // 26 48 80 94 51 a9 57 36 a0 ec ec 6e a3 fe 61 fb 24 dc d8 a0 0a c0 b8 // 93 39 18 18 9c da 55 5b 17 e4 31 d9 9e e1 90 d6 d0 d9 f7 69 e6 65 ec // 19 3b a8 88 9a e7 2a 01 e1 8b 98 ce bb 75 d2 0e d7 78 e5 77 8e f6 57 // ce 85 d4 0e af a4 4b 46 f2 93 d6 40 23 b8 77 e8 c5 d5 85 87 c3 ab ec // f9 a1 ad 8d 87 4a 4c db a0 bf be a6 1b 7e b1 9e 81 f7 c9 32 be 12 a8 // 3b ac c5 10 17 b4 2d be 29 31 dc 11 c7 42 a5 a9 42 cb 6e d9 bd 99 22 // ad 78 f5 5b 0f 6c ba e0 e8 d4 23 51 40 26 3e d8 c8 3a b2 2e 71 a0 f0 // a6 2b 69 20 b5 d5 10 9e 41 52 54 e5 27 54 65 46 bd 02 5c f1 58 3e 3e // 8d 9d 5b f7 35 a4 65 1f a2 e5 c3 c8 6a 18 5b b7 7e 9b 75 22 4c dd a8 // cb 0e b2 1d 9e 3b b1 9e 28 68 32 aa 5d ce 19 f0 55 53 9a 0a 5c ac cf // d7 52 74 2a 31 d0 af 88 2c 4f 02 c2 9c bd 90 ac 2c df 5c c6 1c 44 8c // d0 9e b7 b8 2b 93 0c a9 99 62 c0 e5 ed 84 12 4f e3 7f 7d 30 aa d0 29 // 6e e3 40 37 7a 7e 0a a7 41 3c 49 5a c8 ab 0b 48 2c 4c 5f 59 87 2e fd // 5a 1c ea db c7 60 6e 67 d3 c7 9a 77 d0 95 bd 82 51 9d b0 89 3b 9d 2b // bc 2b 2f 3a 73 91 82 68 40 e4 94 24 70 3c 00 63 99 cd e5 f2 a5 2a 93 // 83 e8 9d fb fc a2 84 be 4d 75 dd 3a af d8 a4 3d c6 c7 1b d7 fd e9 46 // 06 47 eb 5c 97 70 7e 96 dd b9 12 4d 60 20 da 38 ee 7a d7 43 db 8f d0 // 37 7a 87 11 90 51 94 c4 96 e3 9a 21 32 d7 bb f3 5b 79 f9 20 b6 dc aa // 73 62 5b f8 b5 32 0d a2 50 51 3c d4 5b f4 2c 80 72 80 9a d5 9d 69 c0 // 2f 05 54 cf 82 b7 9f f2 91 e4 2d 92 27 de 19 48 35 2b 0d ba 02 81 b6 // 98 76 ae 0c a2 49 72 a5 e7 5a ee 7e 0a 46 bd 4f c8 3f 5a 0d d3 f2 2d // 66 6f 2d 95 0c a5 80 c6 da 6d fa aa 29 3b ed ed 10 d1 32 86 13 61 1b // 6e 01 d5 d8 56 75 41 e8 14 66 46 73 02 d8 05 0a 3a e4 79 1f bd dc 1a // ec 74 9e db 68 17 3b e5 34 11 66 c1 d5 c4 2d 63 e7 36 84 73 e4 8b af // a4 34 59 de 3f a3 a5 55 0a 4a c9 79 71 1d d9 a2 d6 79 6b 0b cf 9b 58 // 81 12 4a de 4b 12 bf 64 fa 55 72 49 76 a0 da 9d 64 2e 76 a0 36 c4 30 // f5 fb 2c 06 d5 99 b0 f7 8e 97 85 80 f8 eb 76 3d 28 46 17 7f f1 8b 9b // 5c f8 c7 61 97 ed 80 9e f2 42 12 bc 55 63 a1 71 32 14 ce 78 e0 e6 cc // ed 6e 41 57 8d 46 a0 78 39 79 5c 83 c1 89 61 02 44 bc 1b 68 05 35 fc // e3 9f 29 0d a9 0d 71 90 78 01 5d 90 02 0b 1d 45 67 a9 70 81 b4 85 14 // 70 9d f8 e3 27 d8 14 e8 c1 54 96 d9 0e fa ca e6 b1 3e 29 7e d5 20 d2 // 80 20 38 96 bb c3 a2 3f 3b 63 8a df 59 4d e0 3a 78 2b b2 92 a9 3e f0 // b1 4b 8b 3e 13 c0 17 87 a0 b7 bf b3 ab d8 ab 15 ee bb c6 51 b7 b0 54 // d3 e5 6e bb 78 08 de 9b 9b d0 67 56 0e c6 a6 43 24 55 b3 70 54 29 2a // 3d 9d 32 43 45 06 bf 84 b2 90 75 60 01 70 89 de 3f 60 c2 de b4 df b7 // 37 1f 96 d6 5a 57 5d 44 6a a1 d2 df 81 86 71 35 12 0d f4 e2 4e 92 27 // f7 2f f9 f8 f0 15 a7 75 49 48 70 4e cd 08 4a 1a 93 fb eb 5a 44 af 08 // 6e f7 3e 9f c1 c0 72 b7 d5 47 3e 92 55 8f c2 82 4a cf 27 f1 db e9 b0 // 19 24 7d 30 74 bf 42 56 a9 66 ce b6 74 a2 c4 22 26 32 c8 e4 b6 c0 73 // 6d e0 19 cc fe 4c ca 40 b9 b0 7f 8c 4d f9 75 3c df b4 ad 66 64 3e d7 // 15 10 98 3e 29 c2 b5 f9 ae 7d b4 91 3c b7 4d 9d d0 46 1a 90 08 10 65 // 0d 0d a7 3f 76 6a a6 88 23 85 f3 bb 40 64 4b f4 3f 01 fa f2 aa 4c d1 // 87 65 9e db 04 98 52 7f 20 14 42 b6 43 49 af a8 14 b3 da e5 ce 81 59 // 71 f3 b1 1d 17 7e 3e 1a af 90 c7 67 4c 09 7d 47 56 40 21 8a d2 7e 63 // f9 07 1c 90 81 c0 6d 9b 5d 1f 3a 07 0d a3 ee d4 f4 08 01 90 a7 40 63 // e7 f9 7b 5f 35 70 6d d1 17 3d cb fa 13 a7 0d 53 62 e5 0d 57 d0 c5 10 // 5c 8d 3b eb 92 6d 93 f6 16 99 e7 37 eb e1 a9 35 83 9c 3a a5 b6 29 dc // 93 aa 20 9d 9e 77 74 c4 0d e7 f5 9f ca 1e b2 74 a8 28 00 22 a1 59 34 // e5 dd 25 79 a8 cf 5c d1 6a 3b 0a 1f f3 ea 71 2c 42 58 16 4f e2 fa 17 // a4 cb fa 56 30 f4 04 1b ad 42 04 60 5e b2 e7 62 d6 10 fa 17 da fa 41 // 5e d8 a6 78 da 1d 4b 5a 66 18 d7 1d 00 66 d6 6e 3a c1 0b 3c e6 51 37 // a5 a0 23 44 ab c5 7f 1b e4 ce 0c bf 1a 2a c6 6d cb 5e 94 49 5e 86 38 // 19 c6 27 e4 70 4f b4 79 c2 32 b2 7a a4 a5 df ca 88 96 a7 eb 8e 05 92 // b6 b3 92 ec 9f a2 76 7f 56 9d 5c 13 56 d7 ef 7a 90 9d 8e e3 44 ba 01 // 7c 75 ca 66 4d 98 f5 28 82 30 b7 f1 ff a2 fa 7a 5d 07 fa b5 f4 b5 3b // 7f 19 c3 fb 36 17 95 fd 63 2f a8 a6 54 00 4d 93 1b 4b 7f c0 89 09 27 // ae c7 27 16 0c de d3 c0 1b 7e 40 e6 b8 1c e0 15 79 68 95 f9 c0 07 76 // 2a 1c 22 ac fb 95 13 ec cd 93 c8 45 e9 1e a8 b0 96 0b 29 9b 3c e7 88 // cb cc e5 be a9 a9 43 25 28 9d 2c 35 73 97 5c 51 2d 56 e1 9c 46 55 f8 // 49 b3 65 2f 8b 5f 9f a6 f4 9e 03 20 2f 20 31 de be 3c 29 9c 3c ec eb // 1f eb f4 b2 85 da 90 33 49 30 88 a3 6f 88 5e d6 d3 95 8b 8d 05 cc 6b // e0 0f 34 65 de 8b f6 e4 17 96 d1 7e 39 30 67 58 5b 45 9b 14 3d 59 2c // ea 10 2f 58 4e 48 67 6a 45 f8 96 cf 66 2b d6 b3 b2 30 9a a7 f4 6d 2b // 8e c6 59 7a 06 3f 12 bc c8 89 22 05 0c 8c 1e 07 01 34 ce 77 ab 1c b7 // a7 f2 99 83 a0 b3 0d 9b 2a be ca 5c fb fc 55 e9 41 37 6c 61 6c 28 34 // b1 c1 c9 a9 47 3b 53 1c 86 c3 b7 08 47 8e e9 59 23 fe 6a 81 08 c2 c4 // dc 8a 78 a9 d5 e9 95 f6 c8 15 b2 92 b9 86 ca b0 af a2 33 ef 10 56 7a // 49 d4 e8 dc 17 f4 38 b9 0b 62 0d f4 d2 91 b5 25 49 ac 8e 1b 69 07 8b // 62 01 1e d4 bb 0e 28 8d b7 40 81 7f f0 7d 01 e7 79 e1 1c b8 e0 60 6b // 5c a3 aa c6 c7 b2 62 49 9f 5a 11 5a cd ad 8a 67 b6 eb 77 50 33 18 ef // 3b f0 00 83 47 b2 70 aa 98 6d 9e 79 e2 af 17 4f 38 a4 74 32 50 c1 09 // 1e 60 53 a7 a7 85 46 44 83 16 1a ad 3e f3 ad 97 6e 53 29 b7 1a fe 9b // bf d9 3d 75 41 a1 01 4d b4 cc 15 9a c2 66 02 1e 84 1c 66 52 17 fa 15 // 0e 13 0f 92 1e bd 4c fb 5a cc db 87 f5 f9 bc 0f d9 4b 40 22 89 db 4d // 0a c3 f0 90 6a 68 9a ef 04 4c 09 fc 2c 5a 00 f7 79 5e a9 35 ae b9 43 // eb 32 82 6b d2 17 6c 1d 1c b0 58 19 5e 32 29 d2 93 59 5e bc 07 51 4c // 6b 03 8a 1d 96 41 99 c5 9e 59 d4 fc 62 1c 54 b7 bb d3 41 0c ce c2 2f // 7f b6 75 15 27 c2 aa 09 40 ed 2f 0c 9d cf c4 e9 9c ed 91 d0 9b a4 a3 // 70 42 b5 f4 8b 12 74 39 ca d2 4d f2 95 1f f1 e7 69 d3 89 2d c4 78 8d // bb e2 7c ce 60 f7 f0 13 87 89 44 47 12 e8 4e 05 9a c0 a4 e8 75 57 f6 // c3 36 9f c6 1b 9a 84 3c 81 6d f3 cb 4e c7 7a 11 e1 63 90 23 4d a2 4d // c0 42 0f 6a 44 55 4f c7 95 4c c7 4d 63 ec 03 0d 4d 96 48 98 e1 45 00 // d0 da cd bb 29 59 f7 a8 a1 91 77 3f 66 44 83 48 f3 6c 3f 49 04 18 70 // 88 bc fe af da 7d d7 21 23 68 10 d0 44 69 e9 3c a4 e7 92 63 05 c2 5b // 1e f1 38 0d 77 50 08 fd 23 8e 33 e8 dd 2d c5 a9 78 3f 97 41 44 87 a7 // ef 70 eb a3 dc f7 13 31 80 3f ad 22 3f 65 aa df c8 7d 79 51 2b f3 11 // c1 49 26 d6 19 a0 89 f5 e8 4c 46 f4 a9 ff 39 39 69 f8 ea cc 8f a2 0a // ca a9 eb 01 a8 aa b6 25 85 3e 41 5d 38 71 e5 55 a1 1e e7 1e e9 3c ba // 85 ee 9c de 60 b3 96 2e 29 4c 2c 84 0f 0a 1b a8 77 14 ba c5 4f 1c a0 // eb da 74 da a3 e8 e1 9d 38 2b 95 1d 64 a2 2d a4 8c 63 2e c5 75 4f 42 // 12 92 14 a8 07 42 7e 69 a9 3c 12 8b 6b 0a 86 97 c9 ee 37 58 18 dd 79 // 24 4a 38 28 7f e8 f6 6c 7c c3 aa 18 ae e2 fb f8 04 fc 1a ad cc 7d 2d // af 75 be 82 a6 02 76 b6 90 2a 51 f2 bb b6 4c 26 19 15 b8 00 53 fb 96 // 35 f4 05 f1 fa 85 5d 1e c8 ad c0 eb e9 64 8b 81 51 ed a7 0e c5 ad 5f // 70 4f a2 a3 37 bc fb 7e cb c8 45 a1 1c ae 7a 68 d6 bc 58 f1 07 ac 7b // b0 c2 f6 b8 3e dc 48 70 3b a0 0c 94 03 6b 9a f4 ad a5 1d 6d 78 bf e6 // 97 df 06 f4 75 73 c1 4c d7 19 1e c5 2d c0 f2 08 ec dc f5 46 69 52 9b // ba 2c 2f b7 a6 b3 8f 6f 2b 5e c5 fe 87 6f 03 c0 96 ae 09 2b 6f 88 1a // 84 b0 0e dd 1e 9f 67 44 90 69 d8 76 af aa 99 eb 1a 44 6f 20 65 6b 51 // 04 c7 2e d2 8b d8 55 3c 72 47 85 f4 e8 bf dc 33 19 44 09 96 0d e4 96 // 9b 70 8c e2 6e 4c d6 08 d2 1a ce 0c 38 e2 7d 54 b5 53 69 a9 e8 07 cf // da 9a 62 40 46 6d d9 4f 61 50 d4 b0 10 5f 7b 9a e3 92 00 9b 2c f1 46 // d1 da d5 d7 c8 66 44 63 d7 d6 0d 11 b4 5f 30 d0 1d b7 36 4e 21 ac 55 // 7d 37 a4 c9 ad 88 92 6c 47 2e 98 71 0d 2c bf c4 b7 0d 6a 5d bb 12 8d // 46 90 9e 63 47 61 c6 f6 95 2b f9 02 1a a5 28 2c 39 1d ce e3 27 8a 25 // e3 e2 ee 31 a7 f6 71 39 79 a5 46 08 4f b2 e5 98 21 4c 36 a3 b7 61 8b // f2 3c 57 bb 23 b3 3e 9c 98 df e5 19 2e f2 57 dc 2d 89 1a 6f 7c 11 be // 33 4f bd ab 01 5e ed af e1 c4 ae a9 5f f1 fa 6d 34 0d 0c ad e5 42 f3 // f7 82 c1 58 94 70 fa 64 c6 fd 9a c0 c3 15 36 ec ee 0a e3 12 f9 92 73 // 3b ee a6 fc af 75 62 dd 6e 0f 2c 01 6f 71 2c e1 4d 93 f0 2a 54 f5 77 // c7 5b 44 4f d7 f4 6e 9b d2 cd 9c d1 f8 91 95 78 1d 88 f9 84 ec a4 5c // 97 35 50 95 d3 b4 8b 0d 9b d7 30 c7 d6 f6 3b 1d c7 8d 23 44 bd b0 f1 // 8c 4e 15 54 82 23 45 c1 1e fa 2b a3 2b ce f4 f2 9e d0 53 15 cf 44 61 // 7a 80 d7 d1 39 2d e0 77 bb da 08 66 9c 8c 3c b6 c0 b1 2f 87 2f 12 47 // bc 1d 07 63 4b f5 bf 4a cc 3a 4e cd ae 7e 6a cd 7c 4a f9 82 01 47 af // e5 55 00 a7 27 0d 7e b5 11 f9 07 33 9e 5a f5 4c fa f3 3e 23 64 f5 40 // 91 eb ee 2a 24 5b a0 48 45 2d 38 3c d4 41 60 4c 4d d1 c6 37 6e 4d f8 // b8 3e bf 60 70 d2 be 24 81 74 fc 1d c0 a1 35 2c 10 33 25 36 0a eb 3a // b7 1c b7 3b b6 46 ac 62 47 dd 68 15 5f d4 8b 90 25 0c 3b 0f 25 0a 74 // f8 27 78 03 67 e1 17 a9 40 94 e5 00 5e 2f 92 6a cc ae f0 b3 e3 6c 25 // e3 15 c1 e8 0c d4 c3 48 1f 34 65 d9 90 25 c7 de 91 c4 5b b8 dd 0a 55 // 77 17 4c 1f 36 60 17 d8 7d 20 33 23 9a 8b 6f 39 9a 90 95 84 5b 5f af // e9 cc a1 13 b9 3f 45 5b b7 90 70 9b 6c 93 fc bb d0 c4 bd 7b 5d 62 10 // 88 dc a0 68 02 e2 41 83 62 91 22 6a d5 6d 40 b3 b4 e9 0e b6 8b d5 84 // 57 42 ba f4 cb 4a 69 b4 bd b0 7f 02 d0 bd 6f bb 5a 5f ad 3a f0 30 81 // 6b 25 47 25 e6 db 40 73 b7 a0 53 6b 88 4c 89 85 c3 a1 59 cd b1 05 c7 // 3f 7e 0e 03 54 62 48 33 64 49 ef f6 af eb 96 cf 8a d3 61 7d f1 8e e2 // 24 7b c2 d1 1e bb e1 0e 03 79 f5 57 8c 41 61 18 72 c5 46 15 41 fb 4d // a5 be 3f 33 48 e0 59 29 82 a6 1c 35 23 15 37 0a 9b 45 23 06 c9 f3 1f // 90 40 ef 75 5a d0 96 a8 73 3d d9 da f6 bd bc b7 a3 52 1a d2 28 2a e4 // fa 7b fd b9 cd a5 99 7b a3 a6 65 2a f4 6c 6d 02 05 bb 35 6d fb 41 1e // 2b 93 1b 35 77 23 bb 70 25 42 11 81 9b 74 a4 61 ed 5c 12 6c ec 65 73 // cd a4 f6 10 7f c3 eb c7 64 83 62 1e 9a b5 78 9a 55 75 ea 3a 91 46 3f // 76 13 8e a0 f3 ec 9c 44 e1 cd db 2d e5 9b ef 83 33 3d 23 5e 92 2b 92 // 0e 26 74 53 67 65 75 b3 8e 64 15 bd 13 65 34 b8 df 23 60 ab 48 9f b6 // 9e ef d0 4b 66 75 8a b5 dd 10 5b e7 b0 63 5f 71 94 f9 e4 b1 58 b2 2b // 21 ac 97 fd a4 e8 04 74 7a 97 18 b4 0a 32 53 1c d5 c3 fd 1d 3c 1d d8 // ba 5e f9 c8 6d 3c 8d f8 c7 1f 81 da 1a 97 56 e5 db 4d dd f7 07 55 05 // 3f 71 29 d6 56 a8 06 9f e8 3c 39 ab 24 0c f7 a7 3f 0f 88 0e c7 a7 91 // c5 11 5a b2 62 18 48 39 b9 06 c2 38 ea ab f2 26 8d fc d6 56 0c 5b cb // 70 fe a0 0b 58 0a d5 2e 7d e0 33 3e 6d e6 3a e3 51 95 2e 6e 5d ee 6e // df 28 4d e0 a2 f5 3e 20 89 db 13 bd 5e ca 5f 98 88 3a 24 eb 2e 1a 58 // ae 19 9f 8d b9 c6 0a 5b 6b 85 58 5b 2d 2a 17 d6 b5 40 6e 56 68 68 5d // 95 c4 71 8c 37 5d b0 5f 79 53 b3 63 c2 5d 2e d0 90 6e da 70 eb 65 98 // 45 ac d3 1f ec 9b 8e 4d 59 51 d1 2f d5 0b bb 96 9d d8 24 a7 8c 72 62 // 2c 83 11 a9 80 f0 f2 e6 a1 dd c3 68 87 9a 1f 3a 07 d3 c0 78 0e 85 a4 // e5 d1 32 23 a3 42 47 82 e3 f7 7b f6 a1 eb f8 23 f4 68 d4 1b 77 7f f6 // 13 45 06 4f 10 96 ed 65 3c 27 7b ab 90 ca 5a fc 8a d6 d2 5f 44 47 23 // 6c dd 82 95 0a ff f2 77 63 f3 fe f5 30 8f 03 43 79 f4 ad 49 55 cb 8c // c5 28 0d 51 b5 42 7d e4 eb a3 74 f6 4d de 2f 1e 7a 6a e6 28 aa 46 96 // 16 0a 5c f0 ae 9f c7 0e 30 7b 4e b1 9c 0a 5a f2 c2 85 57 10 c8 e1 17 // 21 1d 73 a7 e7 f3 f7 f2 ba 55 d0 3a 4b 73 d8 16 c9 c3 fc 1e db 86 ec // 95 dd cd 77 88 4a 91 38 05 ad 65 49 e7 a5 f7 76 a1 c2 38 5d d6 d8 38 // 77 72 7f 12 82 07 cd a2 9f 83 46 22 69 a7 f6 06 fa 31 93 4d 06 a6 e0 // ef d2 38 d0 a1 80 c7 54 a9 d2 e8 56 09 fd 20 c8 80 ea 0e 79 cb e8 87 // c4 42 f9 f6 82 80 1d a7 83 52 9e 1e 45 eb 3e 70 19 5f a2 71 1f a2 91 // dc a4 3e e0 67 2b 7a fc 14 cf 87 b9 50 6a 7e be 22 30 19 c8 56 77 7e // 17 83 f6 ae 1b 0e d9 04 86 b3 2e 3b 6f 7f f7 7b e8 34 c7 b6 67 6d a6 // c8 05 2f a4 94 50 e3 e1 6a 6f 90 ee 33 74 2b bf e3 dc 02 58 32 e0 bb // c7 ab eb 62 50 77 b8 c1 ea 07 de e8 9c 7d c2 6f a4 25 14 ff 9a c2 1e // 84 8e 32 30 9b c2 86 2a 87 3f b5 77 96 e0 59 23 fc e4 2f a2 83 3c 73 // 86 6e 22 a0 44 97 ec 13 ac eb cd ff 6a e1 df 71 dd 87 56 f1 fe ba c0 // 4f 20 34 c1 f3 e1 d4 01 dd bd b7 f2 ef 67 6d 5c 85 43 78 30 d5 27 a5 // fb 04 c9 bb f0 d8 92 ee 13 06 d2 d2 df 37 00 89 16 a3 a6 6e 70 f8 65 // cd 6d 25 de 16 fd b4 bb 4f 26 16 20 4c f8 6a 3f fd bf 14 72 23 96 8c // 09 2a 46 dc 2a ae 4a ed b3 2f b8 50 b8 5d 4a db 87 bf ad a3 28 bc e4 // c2 c7 0e c4 2a ff de 44 21 79 fc c1 d3 d9 f5 e4 a8 48 c8 ba 03 b0 df // 30 65 d1 b2 d5 f1 b0 8d 8c 25 14 8c 51 bb 54 e1 91 a8 7e a5 99 03 08 // 40 00 b4 b5 20 ff fd a1 11 fe 83 1d 4b dc f6 24 23 c1 fc d6 73 b0 20 // c5 f2 c4 19 73 dd 1b 96 98 05 43 68 08 1f 91 77 15 e1 c1 59 2b c7 8d // d2 65 e0 51 bc da 5b f5 87 78 21 fe df cf 77 90 a5 8b 32 8c f7 80 f7 // 1e e7 14 91 e5 91 94 50 4b c8 00 d3 19 25 16 07 e5 3b a0 e1 ed 15 cd // 4f d5 c9 59 ea ff 4d 3a 1c 7c b2 8c 47 9f 27 76 25 66 33 ef 7c 0f 0e // 98 68 8b 54 e8 c8 63 4c f5 7e 27 e5 c1 ee 1e 43 57 3a e2 3b fb b1 ff // 1b ef 6c ab d3 3c 02 ff 16 5c 44 f0 f1 90 42 6b a8 39 1b a4 f0 34 58 // be 33 51 86 9c 5c 5c 9d 5f a5 60 0e db cc e5 23 52 5b 9c d9 c3 bb 04 // 0e 34 77 1e a2 77 d0 5c b7 63 02 c7 2f ac 5e dc 81 54 12 db bb c6 51 // 37 1d 70 d0 44 c4 f8 9a 68 da 7a bd 83 6f b3 a4 95 e2 12 b5 fd 13 81 // 9c 41 c9 a2 40 40 55 82 ae 69 b7 c3 5b 30 93 5a f3 08 5d 45 7a 4d 76 // a9 4c 92 72 c5 ea fc ec c4 c9 2d d4 f3 14 b0 4b 47 39 86 4e 62 6a 5b // ab 27 fa 2f 34 5f 05 2a fe 3b ae 2f f4 c4 42 c4 2a 1c 83 09 1b fc c2 // 3a 3b 5e 06 a5 11 d0 2c ef cd 61 8a 6d 97 61 de 00 af 19 2c f1 aa cc // 90 2c f3 ba 98 f8 98 c4 8f bc 74 b6 71 0d b7 ac 89 0b 4f 7e d7 37 7e // 0f a3 b4 c4 6a 13 1e 77 51 30 a8 0d b5 01 4a 79 e6 74 c8 fc 8b 45 49 // 50 66 e8 82 01 d2 e3 20 32 0f a4 56 1a ba b6 17 d0 e6 7e 9e 87 9b 00 // 80 a8 ab 40 4f 4e b0 07 a0 88 99 0a a6 a7 b2 9a fc e5 b8 dd 03 8c e9 // 6d 43 e1 27 13 15 f6 07 0e 76 1e 75 9c 44 fb a1 ce 78 73 0e 35 ca 31 // e0 bf 58 40 cc 01 28 9c 81 61 3a 07 c4 97 f2 88 ed 70 a6 d1 0d 9f 58 // fe 13 55 58 b2 a8 62 bd 87 7f cc 93 9d 75 36 e7 dc 98 84 09 29 0c d7 // 3d a0 4a 3b 13 99 b0 a2 63 7f 73 7d 5f 86 bb a4 a3 10 19 54 6e 20 00 // a3 ca 57 f8 29 1c d9 af 28 29 9e b9 39 09 06 12 00 c9 73 8c ca 99 8a // dd 04 e7 bb 01 37 ec c4 60 fc 3e f7 28 72 e7 d1 3c 15 99 14 fc df 57 // 79 10 e6 c5 d7 a1 63 6b 13 b7 8c 50 88 55 1c 61 4e 3c 75 be fb 0f 37 // fb 89 b9 18 f4 aa d0 12 6a 9e fd 33 90 d6 a0 ca b9 7e d0 e0 1c 7e ae // 0e 79 8a 41 42 34 55 78 be b1 0d 6b 61 a9 0b 4d 1f e8 36 02 2d ef 90 // bb 8e 37 e0 74 28 a4 59 2e 7b f3 0e 93 59 51 e4 92 23 4a 8d b9 6f 08 // 13 79 e7 c4 e1 8c 3b 6c e4 ed 1f 97 69 8d c1 da 94 0f 14 21 7e 87 7b // b8 e0 f3 3b 39 2d 80 1a 01 c4 8e c6 2c e2 77 4d 2e 4e 55 e9 41 5c 06 // 3e 1b fa 31 a8 f0 63 34 43 ec 19 c5 fa b9 77 c1 48 51 47 e4 6c 06 f8 // 67 42 27 8f d0 71 de 4a 16 5d ff 7e dd d5 39 0a 1e 03 1d 80 e3 d4 44 // 77 f6 00 9c 9f c2 7a 7d 92 b8 65 a2 92 b0 d5 86 08 3f 68 1c 2d 92 da // 7e 7f 42 ea bd 07 6f a7 d6 1e ba 0c 2b 40 6c 75 f1 ce c5 61 b1 a5 23 // dd 4c 6f 34 4b 02 ed 59 bd 47 3d 7d 30 a2 41 44 e9 81 fc 8d a4 34 93 // 1a de b8 41 d6 3b b7 05 48 5f 8f 58 a1 80 da 91 af 64 ba d1 37 93 56 // 78 7b 37 46 7d c9 b4 a0 d1 24 96 e5 04 8e 7c cb 40 a9 78 ee be e5 ea // ac 4e 9d d9 6f af 19 4a a9 3a 22 33 3d 7f 68 cc cd e1 47 dc e2 6c 9f // f1 8d 7c 8f fe 0d 13 77 c7 0d d1 05 7d 54 47 3b 2c 2b 2b 3e ea 82 fb // 22 39 52 c0 dc 37 96 ef d0 cd 94 af ea 38 34 1a b9 a8 3c 6a 9e e7 7f // 26 bf 8d ea 85 10 df c9 64 f9 b9 b4 94 2c 08 ad e5 0e 43 f0 6e 51 01 // f2 e6 b6 8b 6a 7f 9c c5 44 3c 86 2b 11 98 62 74 61 93 8d af 4b d1 fc // 7b 21 d6 d7 fd 3f 77 5f 0e 4a 1f 60 43 4a 24 2b 04 9f 15 9d be 5d e1 // 45 e7 41 c5 c9 b4 e5 9a 7f 5d 7d e5 4a 6d 51 cd 87 84 5d de 81 9c a7 // 4e 3a bf 60 35 6f bc f1 8b ff f3 b6 ae 1c 54 5e 24 3c 08 f9 f4 1b 86 // e5 5e d6 e7 1b e4 53 84 3e 0b ff c5 b6 bd cf ee fd 33 07 5e e5 11 06 // 27 d4 f0 5e 00 8e 54 dd d6 2f b6 97 9d 9c 2a 5e 4a 2c b4 5f ad 7b 2d // 77 bd 17 50 89 52 88 9b 30 df 21 24 cd c2 fe 6a 74 9a 12 c9 f6 db bd // 01 22 6c c4 ba 26 93 b7 e6 a8 58 d3 c3 6a c6 51 9e e7 0e 89 65 88 a6 // df 81 b0 e3 be 36 04 bb be 1a 84 50 88 cf 18 34 a0 43 68 dd e8 b6 ee // 76 d0 49 29 11 dc 09 b0 5c f6 64 2e 00 03 cd 8f aa fd 39 88 72 c1 a8 // dc 3e 85 d3 65 8e c8} (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 = 0xaa (4 bytes) // err: fuse_errors = 0x0 (4 bytes) // unique: int64 = 0x2 (8 bytes) // payload: fuse_entry_out { // nodeid: int64 = 0x3 (8 bytes) // generation: int64 = 0x0 (8 bytes) // entry_valid: int64 = 0x0 (8 bytes) // attr_valid: int64 = 0x0 (8 bytes) // entry_valid_nsec: int32 = 0x0 (4 bytes) // attr_valid_nsec: int32 = 0xfffffffc (4 bytes) // attr: fuse_attr { // ino: int64 = 0x5 (8 bytes) // size: int64 = 0x0 (8 bytes) // blocks: int64 = 0x0 (8 bytes) // atime: int64 = 0x0 (8 bytes) // mtime: int64 = 0x0 (8 bytes) // ctime: int64 = 0x0 (8 bytes) // atimensec: int32 = 0x0 (4 bytes) // mtimensec: int32 = 0x0 (4 bytes) // ctimensec: int32 = 0x0 (4 bytes) // mode: fuse_mode = 0xa000 (4 bytes) // nlink: int32 = 0x0 (4 bytes) // uid: uid (resource) // gid: gid (resource) // rdev: int32 = 0xc76 (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*)0x20000000a280, "\x16\x95\x36\x77\x04\xd1\x0d\xd8\x32\x67\x8e\x4e\x2d\x01\x86\x04\x84" "\xa6\x9e\xaa\xc4\x10\xe2\xd6\xcf\x3b\x3d\x39\x25\xf9\xa3\xcb\x60\x25" "\x92\x37\x71\x70\xdf\xfd\xc4\xde\x86\xf1\x63\xe3\x90\xe2\x1d\x07\x45" "\x9b\x0f\x05\x8c\xfc\x24\x8c\x4b\xcb\xe8\x96\xf3\xc6\x80\x06\xf3\xc2" "\xcb\xe0\x7c\x55\xb8\x71\x70\x87\x1c\x1d\x36\x4d\x74\x0f\xae\xb7\x50" "\xc8\xc8\xac\xb7\x6a\xca\x18\xbc\x0c\x01\x8e\xd3\x41\xb5\x5b\x0e\xf8" "\x0c\xef\xe9\x5b\x85\x75\x6a\xac\x97\x8a\x0e\x0b\x5c\xe5\x9c\xae\x66" "\x57\x64\x3e\x7a\xda\x0c\x13\x36\xba\xb3\x10\x88\x83\x51\x66\x45\x53" "\xc2\xfa\xa6\xdd\x39\x05\x4e\x19\xe2\x3c\xc7\xc4\xb4\xd3\x35\x46\x40" "\x7f\x88\x01\x94\xaa\x07\x61\xf2\xa9\x36\x0c\x4b\xa2\x6d\xe3\x42\x32" "\x8b\x92\xdb\x81\xae\x84\xfc\x9c\x1e\x9e\xef\xb4\xb7\xec\x3f\x58\xa6" "\xd5\xd2\x3b\x90\x73\x27\xb1\x44\x80\xa3\x7f\x3c\x84\x30\x57\x29\xa9" "\x1c\x28\x80\x7f\x88\x09\xb9\x97\x23\x5b\xfa\x2d\x4b\x6f\x45\xee\x95" "\x68\xbb\x4a\x41\x6d\xf3\x4f\x41\x40\xc5\xe2\x72\xbf\xc0\x68\xea\x61" "\xa4\x8b\x36\x54\x90\xcc\xb0\x27\x72\xa9\x06\xda\xd4\x57\xf5\xd2\xdd" "\x1a\x57\xcc\x12\x09\xe8\x89\x7c\x81\x15\x04\x9d\x7e\x4e\x3c\x75\x6a" "\x7f\x5a\xd0\xc0\x04\xef\x66\xc8\xbf\x91\xf6\x00\x91\x0e\x73\xb4\xaa" "\x5f\x51\x6b\xab\x5c\xd6\x2a\xd9\x36\x42\x96\x0a\xb3\x2b\x7f\xda\xea" "\xcb\x1a\x95\x87\xa3\x89\xa5\x29\xc2\x31\xf8\xa4\x7a\x65\xfb\x6d\x27" "\xba\x6a\x0e\xeb\x46\x66\x0c\xd7\x5d\xbf\x47\xdf\x89\xe9\xf5\x78\xea" "\xfa\x69\x92\xa1\x2d\x9d\x7d\xe5\x6d\x69\xfd\x0e\x30\xb1\x5c\xaa\xbd" "\x13\xc2\x8d\x63\x92\x15\x97\x46\x62\x92\xf8\xc4\xe8\x7f\x23\xd5\x3d" "\x52\xe6\xe8\xf1\xc9\x29\x5a\xf0\x74\x3c\x8c\x67\x1a\x49\x27\x30\x74" "\xba\x44\xdb\xce\x9e\x9b\x11\x36\xa9\x3d\xbc\x19\xd2\xb8\xe6\x0c\xda" "\x5f\x50\xeb\xa2\xd8\x14\x82\x2a\x68\xa0\xfd\x4f\xf5\xe6\xa2\x5d\xd5" "\x34\x6f\x96\xb2\x6b\x5e\x15\x63\xeb\xb9\x78\x29\xa7\x6f\xd8\xc2\xaa" "\x46\x74\x99\xfd\xce\xd9\x1b\x05\xb1\x93\xb6\x83\x16\x49\x4f\x11\xf5" "\xce\x97\xed\x8e\x13\xd4\x74\xb0\x3c\x6f\x6e\xda\x4e\xff\x54\xb0\xec" "\x36\x2f\xda\x53\x00\x3e\x6e\x2a\x38\x68\xa5\xd5\x7e\x24\x26\xae\xd5" "\xad\xcc\xda\xc8\xe1\x62\xc6\xcc\x20\x36\x1d\xd4\x70\x98\x89\xb7\x9b" "\x28\x10\xba\x42\xf5\x31\xfd\xd3\x74\x65\x62\xa0\x0d\xa6\x5b\x42\x11" "\xfb\x7d\x8f\x48\x2a\x36\x10\x74\x8d\x3b\x80\xd2\x94\x2d\x84\x32\x47" "\x1f\x98\xc6\xe9\x03\x6c\xb5\x7f\x39\x13\xb3\x1d\xd8\xba\xdd\xd6\xd8" "\x5b\x44\xe8\x46\x3b\x83\x8f\xcf\xb6\x97\x96\x28\xc5\xfa\x3d\xbd\x30" "\x68\x8e\x10\xb9\xed\xe2\x57\xeb\xc7\xb9\x6d\x40\x92\xf3\x8d\x11\xb9" "\xe6\xa4\xd1\x04\x90\xa9\xdf\x13\x87\xb3\x74\x3c\xf5\x1e\x20\x6c\x7d" "\xbc\x07\x41\xc4\x08\xbb\xeb\xaa\xe7\xf3\x6d\x81\xb5\xce\x5b\x21\xbb" "\x9f\xe9\x92\xc8\xa0\xcb\x3a\x91\xea\x2d\xf2\x1e\x57\x1f\xf0\x94\xb5" "\x3b\x17\xc4\x6f\xe2\x2c\x0c\xea\xd2\x91\x44\xd2\x03\x29\x4e\xb4\x2c" "\x98\x47\x90\xa6\xb6\x34\x8e\xd8\xb7\xb0\x31\x7e\xe5\xb2\x35\x3c\xc5" "\x4b\xcf\xd8\x08\xbf\x0f\x61\xf7\x39\x17\x58\x4e\x17\xbd\x92\x59\xc8" "\xa0\x4d\x2b\xa3\xb4\xf9\x31\x57\x19\x47\xc7\x70\x35\x97\x59\x33\x47" "\x1f\xb1\x20\x30\x88\xdc\xe4\x78\xeb\x4e\x41\x1d\xdb\x7b\x88\xca\xeb" "\x02\xe1\xcd\xa7\x41\x24\x5d\xf7\x01\xa2\xb5\xc2\x9c\x48\xa6\x31\xea" "\xf1\x85\x49\xbd\x90\xc7\x02\x22\xfd\x6d\xaf\xe5\x55\x07\x26\xbb\x58" "\xdd\x0f\xbf\x84\xff\xee\xae\x68\x3a\x03\x79\x50\x5f\x03\x74\x0a\x65" "\x20\x25\xad\xd8\xe0\xe4\xe6\xb5\xbf\xb4\xbd\x08\x76\xdf\xe1\xec\xb6" "\x39\xac\xc1\x10\xeb\xa9\x72\x94\xa4\xe4\x64\x2a\xef\xbc\xad\x04\xba" "\x50\xd8\x30\xe9\x45\xfd\x99\x00\xee\x7e\x02\x48\x86\x94\x04\x1f\x43" "\xcb\xaa\x86\x28\x0c\x1d\xf6\x4e\x8f\x1f\x81\xf7\xcd\x51\x30\x91\x4e" "\xfd\x19\xb5\x82\x62\xf3\xbd\x2c\x43\xbd\x8b\x4a\x5b\xea\xc0\x9f\x1b" "\xa2\x70\x20\x52\x19\x94\x46\x5e\x62\xc3\x29\xde\xbb\x50\xef\xe0\x71" "\x6d\x22\xcf\x00\x56\xfe\xbc\x7c\xb9\x5a\xa8\x18\xe1\x06\x39\x07\x7e" "\x91\xca\xc3\xc8\x0b\x37\xd6\xee\xbc\x69\x07\xdd\xe9\x71\xb5\x78\x38" "\x3e\xe0\x40\x86\xa0\xda\xd1\x87\x50\xce\xff\x6b\x8d\x6d\x37\x3a\xfa" "\x93\xa5\x1f\xee\x65\xfe\x13\x18\xc1\xac\x29\x1b\x78\x4e\x45\xd6\x69" "\x62\xc8\xb5\x45\x71\xbc\x1e\x92\xa9\x96\xc1\x15\x61\xd9\x4a\xf6\xec" "\xdd\x37\x94\x8d\x35\xad\xbd\x1a\xd6\x3c\x1c\x05\xc3\x1c\x7f\x4a\xfd" "\x70\x7a\xa1\x95\x6d\x14\x44\xfe\xc1\x13\x7f\xb6\xd8\x1f\x56\x56\x68" "\x87\x13\x17\x77\xe5\xfe\x3e\x2f\xaf\xe8\xaf\x8f\x21\xed\x34\x48\x0a" "\xfe\x74\xaf\xb2\x5d\x8d\x16\xf8\x08\x9f\xcb\x85\x1a\xc4\x9d\xd8\x26" "\xb7\xf2\x73\xaa\x3d\x77\x18\x56\xd7\x12\xc6\x23\x97\xd4\x9c\x72\xd9" "\x3e\x3c\x2a\x5e\x6b\x97\x67\xfc\xff\x0f\xc5\xb3\xd7\x0d\xcd\x70\xff" "\x8b\xad\x5d\xfd\x7f\x5a\x84\xc1\x94\xf9\x94\x50\x60\x1f\x97\x01\x04" "\xf9\xbe\x02\x68\x52\xea\xd2\x18\x24\x15\x2d\xd8\xf6\x53\x6f\xcd\x01" "\xa6\x91\x77\xa6\x5f\x2a\xf2\x66\xe6\x19\xd6\x1d\x20\xde\x0c\x73\x86" "\x80\xfb\xec\x29\xe7\xc5\x94\xca\xd2\x9f\x00\x9d\x46\xd8\x79\x08\xc9" "\x51\xb2\xe4\xad\x8d\x9a\x67\xdb\x8b\xe6\xf5\x70\xfe\x54\x16\xd9\xe4" "\xdd\x22\xa1\x08\x14\x0a\x1c\x95\x36\x97\x31\x80\x73\x25\xee\x7f\x42" "\x01\x20\x9a\x79\x5f\xa1\x60\x9c\xe8\xfa\x27\x38\x46\x77\x81\x6f\x65" "\x1a\x96\xcc\x08\x40\x0e\x1b\x64\x7b\xdd\xdf\xb8\x51\x31\x3e\x3c\xca" "\xa4\x72\xb9\xa6\xa1\xda\x3a\x09\x36\xe1\x19\xa6\xd7\x80\x8f\x09\xde" "\x24\x4d\x73\x9c\x39\xdf\x3e\xd3\x60\x04\xb7\x7c\xb5\x4b\x6b\x13\x96" "\xb7\x18\xc8\x7f\xba\x28\xcb\x14\x39\xc7\xd1\xd1\x40\xda\xe1\xee\x2c" "\x2a\x7d\x64\x74\x27\xb1\xe7\x47\x27\x10\xc7\xac\x4f\x1f\xb0\xfc\x0c" "\x9d\x15\xec\xce\x28\x16\x7d\x23\xe2\xe4\x24\x74\xdb\xf1\xc6\x3c\x08" "\x19\x60\x6b\xe9\xc9\xb6\xdc\x2e\xb5\x9b\xf9\x93\x25\x68\xef\x40\x8c" "\x20\xe9\x49\x8c\xf1\x05\xe8\x4e\xee\x30\x46\x0d\x43\x48\xf4\xcd\xfa" "\xb6\x23\xb4\x16\xad\xad\xb4\x42\x78\x87\xd9\xb1\xb6\xb8\xdb\x75\xb2" "\x24\xe8\xa5\x5f\xa0\x35\x1d\x21\x09\x3b\x2b\x7e\x42\xe6\x68\x54\x91" "\xcb\xfc\xe1\x00\xd6\x02\xd0\x28\x1f\x4b\xd0\x86\xb5\x06\x12\xf3\xcc" "\xf0\x55\xfa\xb1\xaa\xd9\x7a\x52\x69\x5a\x23\x3c\x3d\x45\x8b\xe4\x53" "\x6b\x66\xb0\xac\xdd\xa5\xce\x0a\xaa\xb4\x8b\xb7\xd7\xf3\x9a\x8a\xf4" "\x73\xc4\x47\x89\x91\xf1\xc4\x56\x98\x39\xea\xb0\xc1\xd6\x84\x00\x1e" "\xe1\x77\x22\x90\x87\x16\x53\xa2\x29\x3b\xb7\x75\x4c\x1e\xac\x17\x8c" "\x60\xf8\x6e\x2a\x98\xe1\x99\x2d\xee\x19\x8c\x76\x36\x5f\x2d\x04\xd1" "\x59\xd7\xc2\x10\xc6\xcc\x58\x76\x4e\x3b\x7d\xfb\x5b\xc1\x51\x90\x55" "\x5f\xeb\xd0\x1c\x69\xca\xb8\xf5\x59\x26\xc2\x8a\x13\xfa\x4f\x90\x60" "\xdd\xe1\xca\x2d\xf7\xe1\xf7\x1f\xd9\x9a\x0c\x35\x0d\x7f\x0e\x34\x1e" "\xce\x8e\x06\x85\xe9\xc2\x05\xb4\x86\xef\x40\x09\x10\x21\x1b\x68\x8f" "\x07\xfb\x05\xb5\x42\x26\x1c\x74\xb4\x5f\x4a\xc2\x3f\xf5\x3e\x9e\x62" "\x0a\xb1\x2d\xad\x7b\x51\x31\xf6\x71\x28\xbb\x8e\xd6\xa4\xa7\x0c\xae" "\xc4\x37\xf2\x15\x7f\x8b\xcb\x3d\x08\x00\x91\xe5\x71\x5d\xfc\x7d\x75" "\x39\xdd\x03\x20\xc9\x0d\x0a\xab\x6a\x6d\x7a\x44\x7e\xbe\xea\x89\x3a" "\x0e\xfa\x21\x76\x29\x2c\x64\x8c\x62\xce\xdd\x41\x38\xc9\xd0\x53\x5a" "\xb0\x62\x18\x55\x48\x4f\xc4\x3e\x0e\x3e\x84\x35\x7d\xb6\x95\x1b\xb2" "\x1f\xe2\xf4\xe9\x9f\xa1\x88\xeb\xec\xbc\x23\xf7\x3e\xa8\x79\xbd\x30" "\x44\x08\xac\xd1\xc4\x70\xfd\x11\x26\x06\xcc\xfd\x7b\x79\x70\xe9\x50" "\xeb\xd3\x63\xaf\xbb\xa3\x59\xa5\x18\x77\x24\x8a\x42\x84\x50\x97\x09" "\x4f\xf7\x85\xdc\x82\x26\x42\x25\x75\x2f\x3a\xef\xa9\x80\xd9\xed\x53" "\x09\xb4\x8f\x47\xa5\xb5\xef\x49\xf6\x98\x08\xb9\x1b\xde\x95\x52\x77" "\xb6\x52\x5f\x55\x43\x6f\xfe\xba\x0b\xfa\x8c\x13\xf6\x31\x4c\x57\xec" "\x97\xee\xa2\x95\xaf\xc6\x6a\x9f\x4e\xc8\x44\x47\x4c\x0d\xa6\xff\x1e" "\xf0\xc6\xc6\x5c\x03\x5f\x3b\xb7\x4a\x70\xff\xa6\x68\x35\x9b\x58\xa4" "\x6a\xf9\x76\x00\xc4\x28\x62\x6b\x45\xc8\x1a\x4e\x37\x2e\x19\x88\x94" "\xc0\x2e\x2b\xee\x80\x10\xfb\x4c\x2c\x07\x5e\xa6\x23\xa6\xee\x24\xa9" "\x9e\x22\x5f\x80\x93\x22\xdf\x6e\xa6\xf3\x9b\x15\x66\xb1\xae\xe5\x40" "\x3d\x45\xba\x64\x8f\x94\xf7\x09\x76\x01\x31\x99\xb3\x24\x17\x44\x45" "\x8d\x03\x0a\x53\x19\x36\x07\x80\x89\x74\x13\x28\x9d\x89\x26\x7c\x38" "\x9e\x04\xf2\x3d\xe7\x9a\xdf\x4b\x86\x4c\x5c\xa7\x6e\xfc\x22\x5e\xb1" "\xec\xf6\x42\x48\x87\xf0\xd8\xb3\xac\x13\xcb\xe9\xdf\x4e\xb6\x9f\x7b" "\x70\x2e\x85\xfb\x39\x6d\xc4\xa0\x30\xd5\x7a\x8c\x4e\xdd\x22\x7e\xe5" "\x68\xfb\x11\xa9\x85\x99\x35\xad\x53\xdc\xfd\xb0\x17\x27\xf1\x06\xaf" "\x35\x2c\x56\x9a\x02\x0b\x7e\x40\x5a\x1a\xd4\xc6\xb3\x9e\x2e\x87\x96" "\xfe\x9f\x16\xdb\x37\x94\x55\x0f\x5e\xf3\xec\xd6\xaf\x2b\x2a\xb0\x38" "\x3e\x6c\x19\x8f\x17\xad\xa5\x84\x0b\xde\x84\xcc\xba\xa6\x61\xd9\xc4" "\x56\xd9\xdd\xaf\x92\x76\x3b\xa4\x50\x09\x8c\xd5\xa9\x71\xd8\x47\xfd" "\x50\x30\xa4\xc9\xb0\x66\xab\x3b\x00\x96\xdf\xdf\x7e\x5c\xe2\xf8\x34" "\x91\x65\xf9\x4c\x49\x3b\x7e\x41\x92\xe8\x52\x39\xbb\x11\x55\x2f\x91" "\x0f\xb4\x1c\x5e\x96\xee\x10\xfc\x8d\xce\x71\x1e\x88\xe0\x57\x2c\xe0" "\xbb\xbd\x9c\x9f\x3b\x7c\x9d\xae\x89\xf1\xdf\xa6\xaf\x30\x9c\x43\x21" "\x75\x5a\x5b\x19\x07\x0c\x87\x31\xac\x59\x0c\x30\xff\xfb\x69\xfe\xeb" "\x75\xf6\x99\xae\xbb\x10\x1d\x3a\x30\xf7\x84\xf1\x74\x51\x82\xcb\x4f" "\x0b\xf6\x3a\x14\x8b\x52\x1f\x0a\x03\xc6\x91\x92\x76\x94\xee\x45\x3b" "\x27\x85\x23\xe3\xed\x25\x6c\x15\x00\x98\xa9\x32\xf6\x2c\x90\xac\x65" "\xfa\xa4\xb9\x78\x2c\x27\xa3\xef\x6c\xa2\xb5\xec\xae\x6a\x01\xd8\xa1" "\xd7\x09\x6b\xf6\xa7\xd1\xb3\x17\xa9\xea\xb2\x2e\xf4\x90\x7c\x63\x1b" "\xcc\xa2\x24\xf7\x23\xf5\xfb\x9a\x44\xd7\xe1\x29\x51\x86\xcf\x37\xfd" "\x71\x34\x39\x19\xaa\x16\x7f\xa7\x0a\x50\x5a\x73\xe9\xf5\x2a\x11\xcf" "\xbd\x40\xd8\xc1\x08\x7d\x4f\xfd\xfe\x45\xa4\x0e\xd5\xae\xbf\xa4\xb0" "\xc3\x62\x2c\x78\xa9\x14\xd6\x8d\xd9\x2f\x46\x47\x87\x11\x43\x7f\xf8" "\x88\x03\xab\x28\xcd\x9c\xe2\x22\x3a\xa0\xfa\x37\xeb\x9d\x9a\x4a\x78" "\x66\xde\xc4\xca\x6b\xb6\x6e\x79\x4c\xca\xc6\xbd\x19\xb1\x1d\xaa\x0b" "\x6d\x4d\x42\xcb\xcf\x7d\x64\x26\xb5\x71\x80\x30\xca\x51\xbf\x92\xb3" "\xd8\xea\x0b\x11\xc4\x6e\xc5\xc0\xc6\xe3\x80\x5c\x88\xb3\x97\x31\xb2" "\xb7\x51\xd9\x92\x8e\xd1\xdd\xba\x7c\x66\xbc\xc5\x27\x3d\x70\x9f\xd2" "\x95\xaa\x07\x92\x38\x44\x35\xb9\x8c\x1f\x44\x57\x5c\x02\x8f\xf2\x86" "\x90\x74\x15\x67\x13\x93\x1f\x7e\x62\xf8\xb0\xf8\xc7\xee\x9d\xfe\xae" "\xb2\xe0\x96\xe7\x76\x00\x58\x6a\x47\xd6\xf6\xa2\xe1\x3a\x17\xdf\xce" "\xae\x46\xad\x84\x85\x8b\xf8\x87\x3f\x9f\x1e\x35\xfc\x70\x0a\xef\x0a" "\x64\x8a\xf1\x68\xab\x07\x74\xa3\x44\x1a\x20\x3e\xf3\x25\x57\x7f\x2c" "\x76\xf5\xf0\xe5\x80\x8a\xcd\xc7\x96\x5b\xc6\x5e\x8a\xd1\xca\x81\x6b" "\xc3\xb6\x77\x11\xea\x42\xe6\x19\xc9\x57\xd0\xf2\x6b\x39\x4b\xe1\xf3" "\xb0\xc4\xac\x9a\xf8\x55\x8e\xae\xbf\x5c\x1c\x27\xb6\x54\x90\x22\x51" "\x34\x79\xb4\xc2\x8d\xbe\x3f\x1c\x31\x31\xcc\x92\x11\xee\xe7\x68\xf9" "\x6a\x9c\x8b\x5e\x0e\x64\x25\xbe\xf9\x21\xa3\x55\xfa\xcc\xf0\x07\x2b" "\xa1\x9b\x16\xd8\x8b\x75\xfe\xb5\xdc\x8f\xcf\xc1\xb7\xb5\x97\x3e\xb9" "\x65\x4c\xa3\xdc\xfd\x48\x28\x31\xff\x5d\x1f\xe0\x9f\xe7\xae\x43\xcf" "\x12\x9c\x8c\x17\xa6\x68\x66\x85\xa1\x3e\xd0\x76\xf3\x46\x08\xb7\xac" "\x16\xeb\x8e\x9d\xe6\xa4\x44\x18\xc4\xe3\xf8\x16\x2e\x6a\x67\x9b\xc9" "\x48\x2d\xf9\x6a\x04\xb1\x45\x75\xeb\xf0\x93\xb9\x9b\xf5\xcc\x26\x49" "\x5f\x5d\xd6\xe5\x71\x12\x9d\x97\x60\xde\x3f\x80\x1b\x00\x1a\x1f\x32" "\x48\xd1\x4f\x57\x9b\xc5\x19\xde\x2b\x65\x66\x41\xa8\x8d\xa7\x58\xa2" "\xed\x3b\xaf\x15\xfd\xf2\x73\x9d\xdb\x44\xf0\xe5\x89\x2d\xe7\xea\x48" "\xe9\x30\x21\x29\xd0\xc9\x39\x13\x7b\x9d\x06\x87\xb2\x96\x57\x76\x75" "\xbc\xbf\x43\x3a\x53\xf6\xa9\x81\x67\x97\xcb\xfe\xf1\xba\x0c\xaa\x2b" "\x86\x02\x38\x7b\x5a\x8b\xae\x24\xd3\xe1\x5d\x42\xb3\x4d\x81\x70\x87" "\x38\xfd\x26\x9c\x3e\x8c\xba\xcd\xc3\xff\x5a\xb1\xd4\x81\x6a\x78\x3d" "\x7b\xe0\xf0\xa8\x08\x6e\x34\x5a\x6b\x4c\x23\x1f\xfd\x61\x74\x5f\x6c" "\x45\xcf\xce\xaf\x60\x89\xe7\x05\x42\xae\xa1\x57\x4e\x3c\x78\x74\x0f" "\x77\xa0\x8e\xb5\x5b\x37\xf0\x35\x49\xc1\xdd\x31\x8c\xb5\xa7\x60\x94" "\x21\x0e\x8c\xf8\x00\xc3\x50\xd3\x28\xfb\xf9\x44\x2d\x04\x37\xe7\xaf" "\xfd\x54\xb3\xbf\xc3\x3d\xa3\xf2\x45\x58\xf3\xea\x8e\x59\xda\x8e\x61" "\xae\x60\xe7\xe7\xb4\xde\x71\x79\xb8\xcf\x94\x1d\x51\xd4\x20\xc8\xee" "\xe6\x91\x43\x96\x68\x00\xdc\x4f\x7b\xcb\x50\xa0\x33\x33\x1f\xca\xc0" "\x2a\x65\xe8\x8d\xe2\x8a\xb2\x19\xc6\x83\x88\xa9\xda\x91\x96\xe0\x44" "\xdd\x1e\xbb\xd3\x99\x4b\xf8\xcc\x86\x2f\x6f\x8b\x41\x9f\xa1\xf4\xf4" "\xe5\x42\x7f\x10\x86\x6b\x49\x89\x35\xfa\x28\xb8\xe6\xf9\xc5\xe4\x8b" "\xe8\xb7\x4b\x9c\x22\x62\x82\x33\x90\x48\x0f\x71\xaf\xf6\xcf\x72\x28" "\x1f\x52\x62\x65\x87\x7d\x22\x3e\xef\x9a\xd7\xa4\xbe\x74\x38\xf9\xaf" "\xb6\xaf\xf0\xe8\x0c\x51\x25\xc2\xc6\x12\xce\xb8\x3f\x04\x70\xea\x04" "\x47\x99\x79\xc0\xa1\x0f\xbb\xd0\xbe\xd7\x37\x9e\x94\x9c\xc1\x9f\xe3" "\x6f\xbc\xbc\xc5\x9a\x9f\xe3\x0a\x26\x62\xd3\xe4\xd2\x28\x62\xe8\x84" "\x1b\x58\x7b\x89\x95\xef\x84\x82\xbc\x60\xfe\x08\x63\xb4\x17\x52\xef" "\x3d\xd4\x4a\x38\x7e\xff\x10\x15\x95\x82\x2b\xf1\xce\x44\x0f\xf9\xe5" "\xf7\x3e\x56\x0e\x4f\x7f\xbf\xe4\x75\x4d\x9d\xab\xbc\xd9\x2d\xe0\x20" "\x17\xeb\x43\xd3\xcf\x7c\x75\xe4\x5b\xa0\x40\x09\xa7\x82\xa6\x8c\xe1" "\x1e\xef\xd5\x22\x53\xc7\x21\xda\xa5\xf3\x7c\x64\x08\xe3\x7b\x48\xd1" "\xf2\xe3\x6d\x7c\x17\x93\x30\x0f\x2c\x90\x39\xe6\x9a\x52\x05\x74\x86" "\xb6\x3c\x0f\xa6\x44\xd0\x05\x28\xce\x48\xf2\xe5\x51\xca\x88\xe3\x56" "\xac\x25\xae\x74\xc7\x34\x92\xed\x3e\x62\x33\x49\x0a\xcf\xbe\x7e\xd8" "\x24\x4f\x23\xe2\xaf\x86\xe0\xad\xe6\xb7\x8b\xb3\x4a\x75\xa8\x6f\x6c" "\xba\xdb\xd3\x97\x62\x68\x0c\xb0\x82\x1d\x6d\x28\xf1\x8d\x42\x7d\xf1" "\x3d\x0e\x74\x7f\x6d\xa5\x4b\xe9\x70\xe4\x3e\xf8\xca\x82\x85\xdc\x8b" "\xf4\x4e\x3c\xec\xdb\xf2\xd8\x75\x7a\x98\x00\xbb\x88\x9b\x84\x6d\x58" "\xcc\x63\x6a\x26\x48\x80\x94\x51\xa9\x57\x36\xa0\xec\xec\x6e\xa3\xfe" "\x61\xfb\x24\xdc\xd8\xa0\x0a\xc0\xb8\x93\x39\x18\x18\x9c\xda\x55\x5b" "\x17\xe4\x31\xd9\x9e\xe1\x90\xd6\xd0\xd9\xf7\x69\xe6\x65\xec\x19\x3b" "\xa8\x88\x9a\xe7\x2a\x01\xe1\x8b\x98\xce\xbb\x75\xd2\x0e\xd7\x78\xe5" "\x77\x8e\xf6\x57\xce\x85\xd4\x0e\xaf\xa4\x4b\x46\xf2\x93\xd6\x40\x23" "\xb8\x77\xe8\xc5\xd5\x85\x87\xc3\xab\xec\xf9\xa1\xad\x8d\x87\x4a\x4c" "\xdb\xa0\xbf\xbe\xa6\x1b\x7e\xb1\x9e\x81\xf7\xc9\x32\xbe\x12\xa8\x3b" "\xac\xc5\x10\x17\xb4\x2d\xbe\x29\x31\xdc\x11\xc7\x42\xa5\xa9\x42\xcb" "\x6e\xd9\xbd\x99\x22\xad\x78\xf5\x5b\x0f\x6c\xba\xe0\xe8\xd4\x23\x51" "\x40\x26\x3e\xd8\xc8\x3a\xb2\x2e\x71\xa0\xf0\xa6\x2b\x69\x20\xb5\xd5" "\x10\x9e\x41\x52\x54\xe5\x27\x54\x65\x46\xbd\x02\x5c\xf1\x58\x3e\x3e" "\x8d\x9d\x5b\xf7\x35\xa4\x65\x1f\xa2\xe5\xc3\xc8\x6a\x18\x5b\xb7\x7e" "\x9b\x75\x22\x4c\xdd\xa8\xcb\x0e\xb2\x1d\x9e\x3b\xb1\x9e\x28\x68\x32" "\xaa\x5d\xce\x19\xf0\x55\x53\x9a\x0a\x5c\xac\xcf\xd7\x52\x74\x2a\x31" "\xd0\xaf\x88\x2c\x4f\x02\xc2\x9c\xbd\x90\xac\x2c\xdf\x5c\xc6\x1c\x44" "\x8c\xd0\x9e\xb7\xb8\x2b\x93\x0c\xa9\x99\x62\xc0\xe5\xed\x84\x12\x4f" "\xe3\x7f\x7d\x30\xaa\xd0\x29\x6e\xe3\x40\x37\x7a\x7e\x0a\xa7\x41\x3c" "\x49\x5a\xc8\xab\x0b\x48\x2c\x4c\x5f\x59\x87\x2e\xfd\x5a\x1c\xea\xdb" "\xc7\x60\x6e\x67\xd3\xc7\x9a\x77\xd0\x95\xbd\x82\x51\x9d\xb0\x89\x3b" "\x9d\x2b\xbc\x2b\x2f\x3a\x73\x91\x82\x68\x40\xe4\x94\x24\x70\x3c\x00" "\x63\x99\xcd\xe5\xf2\xa5\x2a\x93\x83\xe8\x9d\xfb\xfc\xa2\x84\xbe\x4d" "\x75\xdd\x3a\xaf\xd8\xa4\x3d\xc6\xc7\x1b\xd7\xfd\xe9\x46\x06\x47\xeb" "\x5c\x97\x70\x7e\x96\xdd\xb9\x12\x4d\x60\x20\xda\x38\xee\x7a\xd7\x43" "\xdb\x8f\xd0\x37\x7a\x87\x11\x90\x51\x94\xc4\x96\xe3\x9a\x21\x32\xd7" "\xbb\xf3\x5b\x79\xf9\x20\xb6\xdc\xaa\x73\x62\x5b\xf8\xb5\x32\x0d\xa2" "\x50\x51\x3c\xd4\x5b\xf4\x2c\x80\x72\x80\x9a\xd5\x9d\x69\xc0\x2f\x05" "\x54\xcf\x82\xb7\x9f\xf2\x91\xe4\x2d\x92\x27\xde\x19\x48\x35\x2b\x0d" "\xba\x02\x81\xb6\x98\x76\xae\x0c\xa2\x49\x72\xa5\xe7\x5a\xee\x7e\x0a" "\x46\xbd\x4f\xc8\x3f\x5a\x0d\xd3\xf2\x2d\x66\x6f\x2d\x95\x0c\xa5\x80" "\xc6\xda\x6d\xfa\xaa\x29\x3b\xed\xed\x10\xd1\x32\x86\x13\x61\x1b\x6e" "\x01\xd5\xd8\x56\x75\x41\xe8\x14\x66\x46\x73\x02\xd8\x05\x0a\x3a\xe4" "\x79\x1f\xbd\xdc\x1a\xec\x74\x9e\xdb\x68\x17\x3b\xe5\x34\x11\x66\xc1" "\xd5\xc4\x2d\x63\xe7\x36\x84\x73\xe4\x8b\xaf\xa4\x34\x59\xde\x3f\xa3" "\xa5\x55\x0a\x4a\xc9\x79\x71\x1d\xd9\xa2\xd6\x79\x6b\x0b\xcf\x9b\x58" "\x81\x12\x4a\xde\x4b\x12\xbf\x64\xfa\x55\x72\x49\x76\xa0\xda\x9d\x64" "\x2e\x76\xa0\x36\xc4\x30\xf5\xfb\x2c\x06\xd5\x99\xb0\xf7\x8e\x97\x85" "\x80\xf8\xeb\x76\x3d\x28\x46\x17\x7f\xf1\x8b\x9b\x5c\xf8\xc7\x61\x97" "\xed\x80\x9e\xf2\x42\x12\xbc\x55\x63\xa1\x71\x32\x14\xce\x78\xe0\xe6" "\xcc\xed\x6e\x41\x57\x8d\x46\xa0\x78\x39\x79\x5c\x83\xc1\x89\x61\x02" "\x44\xbc\x1b\x68\x05\x35\xfc\xe3\x9f\x29\x0d\xa9\x0d\x71\x90\x78\x01" "\x5d\x90\x02\x0b\x1d\x45\x67\xa9\x70\x81\xb4\x85\x14\x70\x9d\xf8\xe3" "\x27\xd8\x14\xe8\xc1\x54\x96\xd9\x0e\xfa\xca\xe6\xb1\x3e\x29\x7e\xd5" "\x20\xd2\x80\x20\x38\x96\xbb\xc3\xa2\x3f\x3b\x63\x8a\xdf\x59\x4d\xe0" "\x3a\x78\x2b\xb2\x92\xa9\x3e\xf0\xb1\x4b\x8b\x3e\x13\xc0\x17\x87\xa0" "\xb7\xbf\xb3\xab\xd8\xab\x15\xee\xbb\xc6\x51\xb7\xb0\x54\xd3\xe5\x6e" "\xbb\x78\x08\xde\x9b\x9b\xd0\x67\x56\x0e\xc6\xa6\x43\x24\x55\xb3\x70" "\x54\x29\x2a\x3d\x9d\x32\x43\x45\x06\xbf\x84\xb2\x90\x75\x60\x01\x70" "\x89\xde\x3f\x60\xc2\xde\xb4\xdf\xb7\x37\x1f\x96\xd6\x5a\x57\x5d\x44" "\x6a\xa1\xd2\xdf\x81\x86\x71\x35\x12\x0d\xf4\xe2\x4e\x92\x27\xf7\x2f" "\xf9\xf8\xf0\x15\xa7\x75\x49\x48\x70\x4e\xcd\x08\x4a\x1a\x93\xfb\xeb" "\x5a\x44\xaf\x08\x6e\xf7\x3e\x9f\xc1\xc0\x72\xb7\xd5\x47\x3e\x92\x55" "\x8f\xc2\x82\x4a\xcf\x27\xf1\xdb\xe9\xb0\x19\x24\x7d\x30\x74\xbf\x42" "\x56\xa9\x66\xce\xb6\x74\xa2\xc4\x22\x26\x32\xc8\xe4\xb6\xc0\x73\x6d" "\xe0\x19\xcc\xfe\x4c\xca\x40\xb9\xb0\x7f\x8c\x4d\xf9\x75\x3c\xdf\xb4" "\xad\x66\x64\x3e\xd7\x15\x10\x98\x3e\x29\xc2\xb5\xf9\xae\x7d\xb4\x91" "\x3c\xb7\x4d\x9d\xd0\x46\x1a\x90\x08\x10\x65\x0d\x0d\xa7\x3f\x76\x6a" "\xa6\x88\x23\x85\xf3\xbb\x40\x64\x4b\xf4\x3f\x01\xfa\xf2\xaa\x4c\xd1" "\x87\x65\x9e\xdb\x04\x98\x52\x7f\x20\x14\x42\xb6\x43\x49\xaf\xa8\x14" "\xb3\xda\xe5\xce\x81\x59\x71\xf3\xb1\x1d\x17\x7e\x3e\x1a\xaf\x90\xc7" "\x67\x4c\x09\x7d\x47\x56\x40\x21\x8a\xd2\x7e\x63\xf9\x07\x1c\x90\x81" "\xc0\x6d\x9b\x5d\x1f\x3a\x07\x0d\xa3\xee\xd4\xf4\x08\x01\x90\xa7\x40" "\x63\xe7\xf9\x7b\x5f\x35\x70\x6d\xd1\x17\x3d\xcb\xfa\x13\xa7\x0d\x53" "\x62\xe5\x0d\x57\xd0\xc5\x10\x5c\x8d\x3b\xeb\x92\x6d\x93\xf6\x16\x99" "\xe7\x37\xeb\xe1\xa9\x35\x83\x9c\x3a\xa5\xb6\x29\xdc\x93\xaa\x20\x9d" "\x9e\x77\x74\xc4\x0d\xe7\xf5\x9f\xca\x1e\xb2\x74\xa8\x28\x00\x22\xa1" "\x59\x34\xe5\xdd\x25\x79\xa8\xcf\x5c\xd1\x6a\x3b\x0a\x1f\xf3\xea\x71" "\x2c\x42\x58\x16\x4f\xe2\xfa\x17\xa4\xcb\xfa\x56\x30\xf4\x04\x1b\xad" "\x42\x04\x60\x5e\xb2\xe7\x62\xd6\x10\xfa\x17\xda\xfa\x41\x5e\xd8\xa6" "\x78\xda\x1d\x4b\x5a\x66\x18\xd7\x1d\x00\x66\xd6\x6e\x3a\xc1\x0b\x3c" "\xe6\x51\x37\xa5\xa0\x23\x44\xab\xc5\x7f\x1b\xe4\xce\x0c\xbf\x1a\x2a" "\xc6\x6d\xcb\x5e\x94\x49\x5e\x86\x38\x19\xc6\x27\xe4\x70\x4f\xb4\x79" "\xc2\x32\xb2\x7a\xa4\xa5\xdf\xca\x88\x96\xa7\xeb\x8e\x05\x92\xb6\xb3" "\x92\xec\x9f\xa2\x76\x7f\x56\x9d\x5c\x13\x56\xd7\xef\x7a\x90\x9d\x8e" "\xe3\x44\xba\x01\x7c\x75\xca\x66\x4d\x98\xf5\x28\x82\x30\xb7\xf1\xff" "\xa2\xfa\x7a\x5d\x07\xfa\xb5\xf4\xb5\x3b\x7f\x19\xc3\xfb\x36\x17\x95" "\xfd\x63\x2f\xa8\xa6\x54\x00\x4d\x93\x1b\x4b\x7f\xc0\x89\x09\x27\xae" "\xc7\x27\x16\x0c\xde\xd3\xc0\x1b\x7e\x40\xe6\xb8\x1c\xe0\x15\x79\x68" "\x95\xf9\xc0\x07\x76\x2a\x1c\x22\xac\xfb\x95\x13\xec\xcd\x93\xc8\x45" "\xe9\x1e\xa8\xb0\x96\x0b\x29\x9b\x3c\xe7\x88\xcb\xcc\xe5\xbe\xa9\xa9" "\x43\x25\x28\x9d\x2c\x35\x73\x97\x5c\x51\x2d\x56\xe1\x9c\x46\x55\xf8" "\x49\xb3\x65\x2f\x8b\x5f\x9f\xa6\xf4\x9e\x03\x20\x2f\x20\x31\xde\xbe" "\x3c\x29\x9c\x3c\xec\xeb\x1f\xeb\xf4\xb2\x85\xda\x90\x33\x49\x30\x88" "\xa3\x6f\x88\x5e\xd6\xd3\x95\x8b\x8d\x05\xcc\x6b\xe0\x0f\x34\x65\xde" "\x8b\xf6\xe4\x17\x96\xd1\x7e\x39\x30\x67\x58\x5b\x45\x9b\x14\x3d\x59" "\x2c\xea\x10\x2f\x58\x4e\x48\x67\x6a\x45\xf8\x96\xcf\x66\x2b\xd6\xb3" "\xb2\x30\x9a\xa7\xf4\x6d\x2b\x8e\xc6\x59\x7a\x06\x3f\x12\xbc\xc8\x89" "\x22\x05\x0c\x8c\x1e\x07\x01\x34\xce\x77\xab\x1c\xb7\xa7\xf2\x99\x83" "\xa0\xb3\x0d\x9b\x2a\xbe\xca\x5c\xfb\xfc\x55\xe9\x41\x37\x6c\x61\x6c" "\x28\x34\xb1\xc1\xc9\xa9\x47\x3b\x53\x1c\x86\xc3\xb7\x08\x47\x8e\xe9" "\x59\x23\xfe\x6a\x81\x08\xc2\xc4\xdc\x8a\x78\xa9\xd5\xe9\x95\xf6\xc8" "\x15\xb2\x92\xb9\x86\xca\xb0\xaf\xa2\x33\xef\x10\x56\x7a\x49\xd4\xe8" "\xdc\x17\xf4\x38\xb9\x0b\x62\x0d\xf4\xd2\x91\xb5\x25\x49\xac\x8e\x1b" "\x69\x07\x8b\x62\x01\x1e\xd4\xbb\x0e\x28\x8d\xb7\x40\x81\x7f\xf0\x7d" "\x01\xe7\x79\xe1\x1c\xb8\xe0\x60\x6b\x5c\xa3\xaa\xc6\xc7\xb2\x62\x49" "\x9f\x5a\x11\x5a\xcd\xad\x8a\x67\xb6\xeb\x77\x50\x33\x18\xef\x3b\xf0" "\x00\x83\x47\xb2\x70\xaa\x98\x6d\x9e\x79\xe2\xaf\x17\x4f\x38\xa4\x74" "\x32\x50\xc1\x09\x1e\x60\x53\xa7\xa7\x85\x46\x44\x83\x16\x1a\xad\x3e" "\xf3\xad\x97\x6e\x53\x29\xb7\x1a\xfe\x9b\xbf\xd9\x3d\x75\x41\xa1\x01" "\x4d\xb4\xcc\x15\x9a\xc2\x66\x02\x1e\x84\x1c\x66\x52\x17\xfa\x15\x0e" "\x13\x0f\x92\x1e\xbd\x4c\xfb\x5a\xcc\xdb\x87\xf5\xf9\xbc\x0f\xd9\x4b" "\x40\x22\x89\xdb\x4d\x0a\xc3\xf0\x90\x6a\x68\x9a\xef\x04\x4c\x09\xfc" "\x2c\x5a\x00\xf7\x79\x5e\xa9\x35\xae\xb9\x43\xeb\x32\x82\x6b\xd2\x17" "\x6c\x1d\x1c\xb0\x58\x19\x5e\x32\x29\xd2\x93\x59\x5e\xbc\x07\x51\x4c" "\x6b\x03\x8a\x1d\x96\x41\x99\xc5\x9e\x59\xd4\xfc\x62\x1c\x54\xb7\xbb" "\xd3\x41\x0c\xce\xc2\x2f\x7f\xb6\x75\x15\x27\xc2\xaa\x09\x40\xed\x2f" "\x0c\x9d\xcf\xc4\xe9\x9c\xed\x91\xd0\x9b\xa4\xa3\x70\x42\xb5\xf4\x8b" "\x12\x74\x39\xca\xd2\x4d\xf2\x95\x1f\xf1\xe7\x69\xd3\x89\x2d\xc4\x78" "\x8d\xbb\xe2\x7c\xce\x60\xf7\xf0\x13\x87\x89\x44\x47\x12\xe8\x4e\x05" "\x9a\xc0\xa4\xe8\x75\x57\xf6\xc3\x36\x9f\xc6\x1b\x9a\x84\x3c\x81\x6d" "\xf3\xcb\x4e\xc7\x7a\x11\xe1\x63\x90\x23\x4d\xa2\x4d\xc0\x42\x0f\x6a" "\x44\x55\x4f\xc7\x95\x4c\xc7\x4d\x63\xec\x03\x0d\x4d\x96\x48\x98\xe1" "\x45\x00\xd0\xda\xcd\xbb\x29\x59\xf7\xa8\xa1\x91\x77\x3f\x66\x44\x83" "\x48\xf3\x6c\x3f\x49\x04\x18\x70\x88\xbc\xfe\xaf\xda\x7d\xd7\x21\x23" "\x68\x10\xd0\x44\x69\xe9\x3c\xa4\xe7\x92\x63\x05\xc2\x5b\x1e\xf1\x38" "\x0d\x77\x50\x08\xfd\x23\x8e\x33\xe8\xdd\x2d\xc5\xa9\x78\x3f\x97\x41" "\x44\x87\xa7\xef\x70\xeb\xa3\xdc\xf7\x13\x31\x80\x3f\xad\x22\x3f\x65" "\xaa\xdf\xc8\x7d\x79\x51\x2b\xf3\x11\xc1\x49\x26\xd6\x19\xa0\x89\xf5" "\xe8\x4c\x46\xf4\xa9\xff\x39\x39\x69\xf8\xea\xcc\x8f\xa2\x0a\xca\xa9" "\xeb\x01\xa8\xaa\xb6\x25\x85\x3e\x41\x5d\x38\x71\xe5\x55\xa1\x1e\xe7" "\x1e\xe9\x3c\xba\x85\xee\x9c\xde\x60\xb3\x96\x2e\x29\x4c\x2c\x84\x0f" "\x0a\x1b\xa8\x77\x14\xba\xc5\x4f\x1c\xa0\xeb\xda\x74\xda\xa3\xe8\xe1" "\x9d\x38\x2b\x95\x1d\x64\xa2\x2d\xa4\x8c\x63\x2e\xc5\x75\x4f\x42\x12" "\x92\x14\xa8\x07\x42\x7e\x69\xa9\x3c\x12\x8b\x6b\x0a\x86\x97\xc9\xee" "\x37\x58\x18\xdd\x79\x24\x4a\x38\x28\x7f\xe8\xf6\x6c\x7c\xc3\xaa\x18" "\xae\xe2\xfb\xf8\x04\xfc\x1a\xad\xcc\x7d\x2d\xaf\x75\xbe\x82\xa6\x02" "\x76\xb6\x90\x2a\x51\xf2\xbb\xb6\x4c\x26\x19\x15\xb8\x00\x53\xfb\x96" "\x35\xf4\x05\xf1\xfa\x85\x5d\x1e\xc8\xad\xc0\xeb\xe9\x64\x8b\x81\x51" "\xed\xa7\x0e\xc5\xad\x5f\x70\x4f\xa2\xa3\x37\xbc\xfb\x7e\xcb\xc8\x45" "\xa1\x1c\xae\x7a\x68\xd6\xbc\x58\xf1\x07\xac\x7b\xb0\xc2\xf6\xb8\x3e" "\xdc\x48\x70\x3b\xa0\x0c\x94\x03\x6b\x9a\xf4\xad\xa5\x1d\x6d\x78\xbf" "\xe6\x97\xdf\x06\xf4\x75\x73\xc1\x4c\xd7\x19\x1e\xc5\x2d\xc0\xf2\x08" "\xec\xdc\xf5\x46\x69\x52\x9b\xba\x2c\x2f\xb7\xa6\xb3\x8f\x6f\x2b\x5e" "\xc5\xfe\x87\x6f\x03\xc0\x96\xae\x09\x2b\x6f\x88\x1a\x84\xb0\x0e\xdd" "\x1e\x9f\x67\x44\x90\x69\xd8\x76\xaf\xaa\x99\xeb\x1a\x44\x6f\x20\x65" "\x6b\x51\x04\xc7\x2e\xd2\x8b\xd8\x55\x3c\x72\x47\x85\xf4\xe8\xbf\xdc" "\x33\x19\x44\x09\x96\x0d\xe4\x96\x9b\x70\x8c\xe2\x6e\x4c\xd6\x08\xd2" "\x1a\xce\x0c\x38\xe2\x7d\x54\xb5\x53\x69\xa9\xe8\x07\xcf\xda\x9a\x62" "\x40\x46\x6d\xd9\x4f\x61\x50\xd4\xb0\x10\x5f\x7b\x9a\xe3\x92\x00\x9b" "\x2c\xf1\x46\xd1\xda\xd5\xd7\xc8\x66\x44\x63\xd7\xd6\x0d\x11\xb4\x5f" "\x30\xd0\x1d\xb7\x36\x4e\x21\xac\x55\x7d\x37\xa4\xc9\xad\x88\x92\x6c" "\x47\x2e\x98\x71\x0d\x2c\xbf\xc4\xb7\x0d\x6a\x5d\xbb\x12\x8d\x46\x90" "\x9e\x63\x47\x61\xc6\xf6\x95\x2b\xf9\x02\x1a\xa5\x28\x2c\x39\x1d\xce" "\xe3\x27\x8a\x25\xe3\xe2\xee\x31\xa7\xf6\x71\x39\x79\xa5\x46\x08\x4f" "\xb2\xe5\x98\x21\x4c\x36\xa3\xb7\x61\x8b\xf2\x3c\x57\xbb\x23\xb3\x3e" "\x9c\x98\xdf\xe5\x19\x2e\xf2\x57\xdc\x2d\x89\x1a\x6f\x7c\x11\xbe\x33" "\x4f\xbd\xab\x01\x5e\xed\xaf\xe1\xc4\xae\xa9\x5f\xf1\xfa\x6d\x34\x0d" "\x0c\xad\xe5\x42\xf3\xf7\x82\xc1\x58\x94\x70\xfa\x64\xc6\xfd\x9a\xc0" "\xc3\x15\x36\xec\xee\x0a\xe3\x12\xf9\x92\x73\x3b\xee\xa6\xfc\xaf\x75" "\x62\xdd\x6e\x0f\x2c\x01\x6f\x71\x2c\xe1\x4d\x93\xf0\x2a\x54\xf5\x77" "\xc7\x5b\x44\x4f\xd7\xf4\x6e\x9b\xd2\xcd\x9c\xd1\xf8\x91\x95\x78\x1d" "\x88\xf9\x84\xec\xa4\x5c\x97\x35\x50\x95\xd3\xb4\x8b\x0d\x9b\xd7\x30" "\xc7\xd6\xf6\x3b\x1d\xc7\x8d\x23\x44\xbd\xb0\xf1\x8c\x4e\x15\x54\x82" "\x23\x45\xc1\x1e\xfa\x2b\xa3\x2b\xce\xf4\xf2\x9e\xd0\x53\x15\xcf\x44" "\x61\x7a\x80\xd7\xd1\x39\x2d\xe0\x77\xbb\xda\x08\x66\x9c\x8c\x3c\xb6" "\xc0\xb1\x2f\x87\x2f\x12\x47\xbc\x1d\x07\x63\x4b\xf5\xbf\x4a\xcc\x3a" "\x4e\xcd\xae\x7e\x6a\xcd\x7c\x4a\xf9\x82\x01\x47\xaf\xe5\x55\x00\xa7" "\x27\x0d\x7e\xb5\x11\xf9\x07\x33\x9e\x5a\xf5\x4c\xfa\xf3\x3e\x23\x64" "\xf5\x40\x91\xeb\xee\x2a\x24\x5b\xa0\x48\x45\x2d\x38\x3c\xd4\x41\x60" "\x4c\x4d\xd1\xc6\x37\x6e\x4d\xf8\xb8\x3e\xbf\x60\x70\xd2\xbe\x24\x81" "\x74\xfc\x1d\xc0\xa1\x35\x2c\x10\x33\x25\x36\x0a\xeb\x3a\xb7\x1c\xb7" "\x3b\xb6\x46\xac\x62\x47\xdd\x68\x15\x5f\xd4\x8b\x90\x25\x0c\x3b\x0f" "\x25\x0a\x74\xf8\x27\x78\x03\x67\xe1\x17\xa9\x40\x94\xe5\x00\x5e\x2f" "\x92\x6a\xcc\xae\xf0\xb3\xe3\x6c\x25\xe3\x15\xc1\xe8\x0c\xd4\xc3\x48" "\x1f\x34\x65\xd9\x90\x25\xc7\xde\x91\xc4\x5b\xb8\xdd\x0a\x55\x77\x17" "\x4c\x1f\x36\x60\x17\xd8\x7d\x20\x33\x23\x9a\x8b\x6f\x39\x9a\x90\x95" "\x84\x5b\x5f\xaf\xe9\xcc\xa1\x13\xb9\x3f\x45\x5b\xb7\x90\x70\x9b\x6c" "\x93\xfc\xbb\xd0\xc4\xbd\x7b\x5d\x62\x10\x88\xdc\xa0\x68\x02\xe2\x41" "\x83\x62\x91\x22\x6a\xd5\x6d\x40\xb3\xb4\xe9\x0e\xb6\x8b\xd5\x84\x57" "\x42\xba\xf4\xcb\x4a\x69\xb4\xbd\xb0\x7f\x02\xd0\xbd\x6f\xbb\x5a\x5f" "\xad\x3a\xf0\x30\x81\x6b\x25\x47\x25\xe6\xdb\x40\x73\xb7\xa0\x53\x6b" "\x88\x4c\x89\x85\xc3\xa1\x59\xcd\xb1\x05\xc7\x3f\x7e\x0e\x03\x54\x62" "\x48\x33\x64\x49\xef\xf6\xaf\xeb\x96\xcf\x8a\xd3\x61\x7d\xf1\x8e\xe2" "\x24\x7b\xc2\xd1\x1e\xbb\xe1\x0e\x03\x79\xf5\x57\x8c\x41\x61\x18\x72" "\xc5\x46\x15\x41\xfb\x4d\xa5\xbe\x3f\x33\x48\xe0\x59\x29\x82\xa6\x1c" "\x35\x23\x15\x37\x0a\x9b\x45\x23\x06\xc9\xf3\x1f\x90\x40\xef\x75\x5a" "\xd0\x96\xa8\x73\x3d\xd9\xda\xf6\xbd\xbc\xb7\xa3\x52\x1a\xd2\x28\x2a" "\xe4\xfa\x7b\xfd\xb9\xcd\xa5\x99\x7b\xa3\xa6\x65\x2a\xf4\x6c\x6d\x02" "\x05\xbb\x35\x6d\xfb\x41\x1e\x2b\x93\x1b\x35\x77\x23\xbb\x70\x25\x42" "\x11\x81\x9b\x74\xa4\x61\xed\x5c\x12\x6c\xec\x65\x73\xcd\xa4\xf6\x10" "\x7f\xc3\xeb\xc7\x64\x83\x62\x1e\x9a\xb5\x78\x9a\x55\x75\xea\x3a\x91" "\x46\x3f\x76\x13\x8e\xa0\xf3\xec\x9c\x44\xe1\xcd\xdb\x2d\xe5\x9b\xef" "\x83\x33\x3d\x23\x5e\x92\x2b\x92\x0e\x26\x74\x53\x67\x65\x75\xb3\x8e" "\x64\x15\xbd\x13\x65\x34\xb8\xdf\x23\x60\xab\x48\x9f\xb6\x9e\xef\xd0" "\x4b\x66\x75\x8a\xb5\xdd\x10\x5b\xe7\xb0\x63\x5f\x71\x94\xf9\xe4\xb1" "\x58\xb2\x2b\x21\xac\x97\xfd\xa4\xe8\x04\x74\x7a\x97\x18\xb4\x0a\x32" "\x53\x1c\xd5\xc3\xfd\x1d\x3c\x1d\xd8\xba\x5e\xf9\xc8\x6d\x3c\x8d\xf8" "\xc7\x1f\x81\xda\x1a\x97\x56\xe5\xdb\x4d\xdd\xf7\x07\x55\x05\x3f\x71" "\x29\xd6\x56\xa8\x06\x9f\xe8\x3c\x39\xab\x24\x0c\xf7\xa7\x3f\x0f\x88" "\x0e\xc7\xa7\x91\xc5\x11\x5a\xb2\x62\x18\x48\x39\xb9\x06\xc2\x38\xea" "\xab\xf2\x26\x8d\xfc\xd6\x56\x0c\x5b\xcb\x70\xfe\xa0\x0b\x58\x0a\xd5" "\x2e\x7d\xe0\x33\x3e\x6d\xe6\x3a\xe3\x51\x95\x2e\x6e\x5d\xee\x6e\xdf" "\x28\x4d\xe0\xa2\xf5\x3e\x20\x89\xdb\x13\xbd\x5e\xca\x5f\x98\x88\x3a" "\x24\xeb\x2e\x1a\x58\xae\x19\x9f\x8d\xb9\xc6\x0a\x5b\x6b\x85\x58\x5b" "\x2d\x2a\x17\xd6\xb5\x40\x6e\x56\x68\x68\x5d\x95\xc4\x71\x8c\x37\x5d" "\xb0\x5f\x79\x53\xb3\x63\xc2\x5d\x2e\xd0\x90\x6e\xda\x70\xeb\x65\x98" "\x45\xac\xd3\x1f\xec\x9b\x8e\x4d\x59\x51\xd1\x2f\xd5\x0b\xbb\x96\x9d" "\xd8\x24\xa7\x8c\x72\x62\x2c\x83\x11\xa9\x80\xf0\xf2\xe6\xa1\xdd\xc3" "\x68\x87\x9a\x1f\x3a\x07\xd3\xc0\x78\x0e\x85\xa4\xe5\xd1\x32\x23\xa3" "\x42\x47\x82\xe3\xf7\x7b\xf6\xa1\xeb\xf8\x23\xf4\x68\xd4\x1b\x77\x7f" "\xf6\x13\x45\x06\x4f\x10\x96\xed\x65\x3c\x27\x7b\xab\x90\xca\x5a\xfc" "\x8a\xd6\xd2\x5f\x44\x47\x23\x6c\xdd\x82\x95\x0a\xff\xf2\x77\x63\xf3" "\xfe\xf5\x30\x8f\x03\x43\x79\xf4\xad\x49\x55\xcb\x8c\xc5\x28\x0d\x51" "\xb5\x42\x7d\xe4\xeb\xa3\x74\xf6\x4d\xde\x2f\x1e\x7a\x6a\xe6\x28\xaa" "\x46\x96\x16\x0a\x5c\xf0\xae\x9f\xc7\x0e\x30\x7b\x4e\xb1\x9c\x0a\x5a" "\xf2\xc2\x85\x57\x10\xc8\xe1\x17\x21\x1d\x73\xa7\xe7\xf3\xf7\xf2\xba" "\x55\xd0\x3a\x4b\x73\xd8\x16\xc9\xc3\xfc\x1e\xdb\x86\xec\x95\xdd\xcd" "\x77\x88\x4a\x91\x38\x05\xad\x65\x49\xe7\xa5\xf7\x76\xa1\xc2\x38\x5d" "\xd6\xd8\x38\x77\x72\x7f\x12\x82\x07\xcd\xa2\x9f\x83\x46\x22\x69\xa7" "\xf6\x06\xfa\x31\x93\x4d\x06\xa6\xe0\xef\xd2\x38\xd0\xa1\x80\xc7\x54" "\xa9\xd2\xe8\x56\x09\xfd\x20\xc8\x80\xea\x0e\x79\xcb\xe8\x87\xc4\x42" "\xf9\xf6\x82\x80\x1d\xa7\x83\x52\x9e\x1e\x45\xeb\x3e\x70\x19\x5f\xa2" "\x71\x1f\xa2\x91\xdc\xa4\x3e\xe0\x67\x2b\x7a\xfc\x14\xcf\x87\xb9\x50" "\x6a\x7e\xbe\x22\x30\x19\xc8\x56\x77\x7e\x17\x83\xf6\xae\x1b\x0e\xd9" "\x04\x86\xb3\x2e\x3b\x6f\x7f\xf7\x7b\xe8\x34\xc7\xb6\x67\x6d\xa6\xc8" "\x05\x2f\xa4\x94\x50\xe3\xe1\x6a\x6f\x90\xee\x33\x74\x2b\xbf\xe3\xdc" "\x02\x58\x32\xe0\xbb\xc7\xab\xeb\x62\x50\x77\xb8\xc1\xea\x07\xde\xe8" "\x9c\x7d\xc2\x6f\xa4\x25\x14\xff\x9a\xc2\x1e\x84\x8e\x32\x30\x9b\xc2" "\x86\x2a\x87\x3f\xb5\x77\x96\xe0\x59\x23\xfc\xe4\x2f\xa2\x83\x3c\x73" "\x86\x6e\x22\xa0\x44\x97\xec\x13\xac\xeb\xcd\xff\x6a\xe1\xdf\x71\xdd" "\x87\x56\xf1\xfe\xba\xc0\x4f\x20\x34\xc1\xf3\xe1\xd4\x01\xdd\xbd\xb7" "\xf2\xef\x67\x6d\x5c\x85\x43\x78\x30\xd5\x27\xa5\xfb\x04\xc9\xbb\xf0" "\xd8\x92\xee\x13\x06\xd2\xd2\xdf\x37\x00\x89\x16\xa3\xa6\x6e\x70\xf8" "\x65\xcd\x6d\x25\xde\x16\xfd\xb4\xbb\x4f\x26\x16\x20\x4c\xf8\x6a\x3f" "\xfd\xbf\x14\x72\x23\x96\x8c\x09\x2a\x46\xdc\x2a\xae\x4a\xed\xb3\x2f" "\xb8\x50\xb8\x5d\x4a\xdb\x87\xbf\xad\xa3\x28\xbc\xe4\xc2\xc7\x0e\xc4" "\x2a\xff\xde\x44\x21\x79\xfc\xc1\xd3\xd9\xf5\xe4\xa8\x48\xc8\xba\x03" "\xb0\xdf\x30\x65\xd1\xb2\xd5\xf1\xb0\x8d\x8c\x25\x14\x8c\x51\xbb\x54" "\xe1\x91\xa8\x7e\xa5\x99\x03\x08\x40\x00\xb4\xb5\x20\xff\xfd\xa1\x11" "\xfe\x83\x1d\x4b\xdc\xf6\x24\x23\xc1\xfc\xd6\x73\xb0\x20\xc5\xf2\xc4" "\x19\x73\xdd\x1b\x96\x98\x05\x43\x68\x08\x1f\x91\x77\x15\xe1\xc1\x59" "\x2b\xc7\x8d\xd2\x65\xe0\x51\xbc\xda\x5b\xf5\x87\x78\x21\xfe\xdf\xcf" "\x77\x90\xa5\x8b\x32\x8c\xf7\x80\xf7\x1e\xe7\x14\x91\xe5\x91\x94\x50" "\x4b\xc8\x00\xd3\x19\x25\x16\x07\xe5\x3b\xa0\xe1\xed\x15\xcd\x4f\xd5" "\xc9\x59\xea\xff\x4d\x3a\x1c\x7c\xb2\x8c\x47\x9f\x27\x76\x25\x66\x33" "\xef\x7c\x0f\x0e\x98\x68\x8b\x54\xe8\xc8\x63\x4c\xf5\x7e\x27\xe5\xc1" "\xee\x1e\x43\x57\x3a\xe2\x3b\xfb\xb1\xff\x1b\xef\x6c\xab\xd3\x3c\x02" "\xff\x16\x5c\x44\xf0\xf1\x90\x42\x6b\xa8\x39\x1b\xa4\xf0\x34\x58\xbe" "\x33\x51\x86\x9c\x5c\x5c\x9d\x5f\xa5\x60\x0e\xdb\xcc\xe5\x23\x52\x5b" "\x9c\xd9\xc3\xbb\x04\x0e\x34\x77\x1e\xa2\x77\xd0\x5c\xb7\x63\x02\xc7" "\x2f\xac\x5e\xdc\x81\x54\x12\xdb\xbb\xc6\x51\x37\x1d\x70\xd0\x44\xc4" "\xf8\x9a\x68\xda\x7a\xbd\x83\x6f\xb3\xa4\x95\xe2\x12\xb5\xfd\x13\x81" "\x9c\x41\xc9\xa2\x40\x40\x55\x82\xae\x69\xb7\xc3\x5b\x30\x93\x5a\xf3" "\x08\x5d\x45\x7a\x4d\x76\xa9\x4c\x92\x72\xc5\xea\xfc\xec\xc4\xc9\x2d" "\xd4\xf3\x14\xb0\x4b\x47\x39\x86\x4e\x62\x6a\x5b\xab\x27\xfa\x2f\x34" "\x5f\x05\x2a\xfe\x3b\xae\x2f\xf4\xc4\x42\xc4\x2a\x1c\x83\x09\x1b\xfc" "\xc2\x3a\x3b\x5e\x06\xa5\x11\xd0\x2c\xef\xcd\x61\x8a\x6d\x97\x61\xde" "\x00\xaf\x19\x2c\xf1\xaa\xcc\x90\x2c\xf3\xba\x98\xf8\x98\xc4\x8f\xbc" "\x74\xb6\x71\x0d\xb7\xac\x89\x0b\x4f\x7e\xd7\x37\x7e\x0f\xa3\xb4\xc4" "\x6a\x13\x1e\x77\x51\x30\xa8\x0d\xb5\x01\x4a\x79\xe6\x74\xc8\xfc\x8b" "\x45\x49\x50\x66\xe8\x82\x01\xd2\xe3\x20\x32\x0f\xa4\x56\x1a\xba\xb6" "\x17\xd0\xe6\x7e\x9e\x87\x9b\x00\x80\xa8\xab\x40\x4f\x4e\xb0\x07\xa0" "\x88\x99\x0a\xa6\xa7\xb2\x9a\xfc\xe5\xb8\xdd\x03\x8c\xe9\x6d\x43\xe1" "\x27\x13\x15\xf6\x07\x0e\x76\x1e\x75\x9c\x44\xfb\xa1\xce\x78\x73\x0e" "\x35\xca\x31\xe0\xbf\x58\x40\xcc\x01\x28\x9c\x81\x61\x3a\x07\xc4\x97" "\xf2\x88\xed\x70\xa6\xd1\x0d\x9f\x58\xfe\x13\x55\x58\xb2\xa8\x62\xbd" "\x87\x7f\xcc\x93\x9d\x75\x36\xe7\xdc\x98\x84\x09\x29\x0c\xd7\x3d\xa0" "\x4a\x3b\x13\x99\xb0\xa2\x63\x7f\x73\x7d\x5f\x86\xbb\xa4\xa3\x10\x19" "\x54\x6e\x20\x00\xa3\xca\x57\xf8\x29\x1c\xd9\xaf\x28\x29\x9e\xb9\x39" "\x09\x06\x12\x00\xc9\x73\x8c\xca\x99\x8a\xdd\x04\xe7\xbb\x01\x37\xec" "\xc4\x60\xfc\x3e\xf7\x28\x72\xe7\xd1\x3c\x15\x99\x14\xfc\xdf\x57\x79" "\x10\xe6\xc5\xd7\xa1\x63\x6b\x13\xb7\x8c\x50\x88\x55\x1c\x61\x4e\x3c" "\x75\xbe\xfb\x0f\x37\xfb\x89\xb9\x18\xf4\xaa\xd0\x12\x6a\x9e\xfd\x33" "\x90\xd6\xa0\xca\xb9\x7e\xd0\xe0\x1c\x7e\xae\x0e\x79\x8a\x41\x42\x34" "\x55\x78\xbe\xb1\x0d\x6b\x61\xa9\x0b\x4d\x1f\xe8\x36\x02\x2d\xef\x90" "\xbb\x8e\x37\xe0\x74\x28\xa4\x59\x2e\x7b\xf3\x0e\x93\x59\x51\xe4\x92" "\x23\x4a\x8d\xb9\x6f\x08\x13\x79\xe7\xc4\xe1\x8c\x3b\x6c\xe4\xed\x1f" "\x97\x69\x8d\xc1\xda\x94\x0f\x14\x21\x7e\x87\x7b\xb8\xe0\xf3\x3b\x39" "\x2d\x80\x1a\x01\xc4\x8e\xc6\x2c\xe2\x77\x4d\x2e\x4e\x55\xe9\x41\x5c" "\x06\x3e\x1b\xfa\x31\xa8\xf0\x63\x34\x43\xec\x19\xc5\xfa\xb9\x77\xc1" "\x48\x51\x47\xe4\x6c\x06\xf8\x67\x42\x27\x8f\xd0\x71\xde\x4a\x16\x5d" "\xff\x7e\xdd\xd5\x39\x0a\x1e\x03\x1d\x80\xe3\xd4\x44\x77\xf6\x00\x9c" "\x9f\xc2\x7a\x7d\x92\xb8\x65\xa2\x92\xb0\xd5\x86\x08\x3f\x68\x1c\x2d" "\x92\xda\x7e\x7f\x42\xea\xbd\x07\x6f\xa7\xd6\x1e\xba\x0c\x2b\x40\x6c" "\x75\xf1\xce\xc5\x61\xb1\xa5\x23\xdd\x4c\x6f\x34\x4b\x02\xed\x59\xbd" "\x47\x3d\x7d\x30\xa2\x41\x44\xe9\x81\xfc\x8d\xa4\x34\x93\x1a\xde\xb8" "\x41\xd6\x3b\xb7\x05\x48\x5f\x8f\x58\xa1\x80\xda\x91\xaf\x64\xba\xd1" "\x37\x93\x56\x78\x7b\x37\x46\x7d\xc9\xb4\xa0\xd1\x24\x96\xe5\x04\x8e" "\x7c\xcb\x40\xa9\x78\xee\xbe\xe5\xea\xac\x4e\x9d\xd9\x6f\xaf\x19\x4a" "\xa9\x3a\x22\x33\x3d\x7f\x68\xcc\xcd\xe1\x47\xdc\xe2\x6c\x9f\xf1\x8d" "\x7c\x8f\xfe\x0d\x13\x77\xc7\x0d\xd1\x05\x7d\x54\x47\x3b\x2c\x2b\x2b" "\x3e\xea\x82\xfb\x22\x39\x52\xc0\xdc\x37\x96\xef\xd0\xcd\x94\xaf\xea" "\x38\x34\x1a\xb9\xa8\x3c\x6a\x9e\xe7\x7f\x26\xbf\x8d\xea\x85\x10\xdf" "\xc9\x64\xf9\xb9\xb4\x94\x2c\x08\xad\xe5\x0e\x43\xf0\x6e\x51\x01\xf2" "\xe6\xb6\x8b\x6a\x7f\x9c\xc5\x44\x3c\x86\x2b\x11\x98\x62\x74\x61\x93" "\x8d\xaf\x4b\xd1\xfc\x7b\x21\xd6\xd7\xfd\x3f\x77\x5f\x0e\x4a\x1f\x60" "\x43\x4a\x24\x2b\x04\x9f\x15\x9d\xbe\x5d\xe1\x45\xe7\x41\xc5\xc9\xb4" "\xe5\x9a\x7f\x5d\x7d\xe5\x4a\x6d\x51\xcd\x87\x84\x5d\xde\x81\x9c\xa7" "\x4e\x3a\xbf\x60\x35\x6f\xbc\xf1\x8b\xff\xf3\xb6\xae\x1c\x54\x5e\x24" "\x3c\x08\xf9\xf4\x1b\x86\xe5\x5e\xd6\xe7\x1b\xe4\x53\x84\x3e\x0b\xff" "\xc5\xb6\xbd\xcf\xee\xfd\x33\x07\x5e\xe5\x11\x06\x27\xd4\xf0\x5e\x00" "\x8e\x54\xdd\xd6\x2f\xb6\x97\x9d\x9c\x2a\x5e\x4a\x2c\xb4\x5f\xad\x7b" "\x2d\x77\xbd\x17\x50\x89\x52\x88\x9b\x30\xdf\x21\x24\xcd\xc2\xfe\x6a" "\x74\x9a\x12\xc9\xf6\xdb\xbd\x01\x22\x6c\xc4\xba\x26\x93\xb7\xe6\xa8" "\x58\xd3\xc3\x6a\xc6\x51\x9e\xe7\x0e\x89\x65\x88\xa6\xdf\x81\xb0\xe3" "\xbe\x36\x04\xbb\xbe\x1a\x84\x50\x88\xcf\x18\x34\xa0\x43\x68\xdd\xe8" "\xb6\xee\x76\xd0\x49\x29\x11\xdc\x09\xb0\x5c\xf6\x64\x2e\x00\x03\xcd" "\x8f\xaa\xfd\x39\x88\x72\xc1\xa8\xdc\x3e\x85\xd3\x65\x8e\xc8", 8192); *(uint64_t*)0x200000000dc0 = 0; *(uint64_t*)0x200000000dc8 = 0; *(uint64_t*)0x200000000dd0 = 0; *(uint64_t*)0x200000000dd8 = 0; *(uint64_t*)0x200000000de0 = 0; *(uint64_t*)0x200000000de8 = 0; *(uint64_t*)0x200000000df0 = 0; *(uint64_t*)0x200000000df8 = 0; *(uint64_t*)0x200000000e00 = 0; *(uint64_t*)0x200000000e08 = 0; *(uint64_t*)0x200000000e10 = 0; *(uint64_t*)0x200000000e18 = 0x2000000008c0; *(uint32_t*)0x2000000008c0 = 0xaa; *(uint32_t*)0x2000000008c4 = 0; *(uint64_t*)0x2000000008c8 = 2; *(uint64_t*)0x2000000008d0 = 3; *(uint64_t*)0x2000000008d8 = 0; *(uint64_t*)0x2000000008e0 = 0; *(uint64_t*)0x2000000008e8 = 0; *(uint32_t*)0x2000000008f0 = 0; *(uint32_t*)0x2000000008f4 = 0xfffffffc; *(uint64_t*)0x2000000008f8 = 5; *(uint64_t*)0x200000000900 = 0; *(uint64_t*)0x200000000908 = 0; *(uint64_t*)0x200000000910 = 0; *(uint64_t*)0x200000000918 = 0; *(uint64_t*)0x200000000920 = 0; *(uint32_t*)0x200000000928 = 0; *(uint32_t*)0x20000000092c = 0; *(uint32_t*)0x200000000930 = 0; *(uint32_t*)0x200000000934 = 0xa000; *(uint32_t*)0x200000000938 = 0; *(uint32_t*)0x20000000093c = 0; *(uint32_t*)0x200000000940 = 0; *(uint32_t*)0x200000000944 = 0xc76; *(uint32_t*)0x200000000948 = 0; *(uint32_t*)0x20000000094c = 0; *(uint64_t*)0x200000000e20 = 0; *(uint64_t*)0x200000000e28 = 0; *(uint64_t*)0x200000000e30 = 0; *(uint64_t*)0x200000000e38 = 0; *(uint64_t*)0x200000000e40 = 0; syz_fuse_handle_req(/*fd=*/r[0], /*buf=*/0x20000000a280, /*len=*/0x2000, /*res=*/0x200000000dc0); 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; }