// https://syzkaller.appspot.com/bug?id=d7be4e953ac9003fa6ac6fa1c3a120ac1bf601be // 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 #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) 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 use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } 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; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void setup_sysctl() { int cad_pid = fork(); if (cad_pid < 0) exit(1); if (cad_pid == 0) { for (;;) sleep(100); } char tmppid[32]; snprintf(tmppid, sizeof(tmppid), "%d", cad_pid); struct { const char* name; const char* data; } files[] = { {"/sys/kernel/debug/x86/nmi_longest_ns", "10000000000"}, {"/proc/sys/kernel/hung_task_check_interval_secs", "20"}, {"/proc/sys/net/core/bpf_jit_kallsyms", "1"}, {"/proc/sys/net/core/bpf_jit_harden", "0"}, {"/proc/sys/kernel/kptr_restrict", "0"}, {"/proc/sys/kernel/softlockup_all_cpu_backtrace", "1"}, {"/proc/sys/fs/mount-max", "100"}, {"/proc/sys/vm/oom_dump_tasks", "0"}, {"/proc/sys/debug/exception-trace", "0"}, {"/proc/sys/kernel/printk", "7 4 1 3"}, {"/proc/sys/kernel/keys/gc_delay", "1"}, {"/proc/sys/vm/oom_kill_allocating_task", "1"}, {"/proc/sys/kernel/ctrl-alt-del", "0"}, {"/proc/sys/kernel/cad_pid", tmppid}, }; for (size_t i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].name, files[i].data)) { } } kill(cad_pid, SIGKILL); while (waitpid(cad_pid, NULL, 0) != cad_pid) ; } 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 execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 5; 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 + (call == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[2] = {0xffffffffffffffff, 0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: // syz_mount_image$bcachefs arguments: [ // fs: ptr[in, buffer] { // buffer: {62 63 61 63 68 65 66 73 00} (length 0x9) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x0 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {01} (length 0x1) // } // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x48e9 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x48e9) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x200000004900, "bcachefs\000", 9)); NONFAILING(memcpy((void*)0x200000004940, "./file0\000", 8)); NONFAILING(memset((void*)0x200000004980, 1, 1)); NONFAILING(memcpy( (void*)0x2000000049c0, "\x78\x9c\xec\xdd\x0d\x9c\x1c\x65\x61\x07\xfe\x67\x76\xf7\x2e\xf7\x92" "\x4d\x2e\x31\x84\x00\x1a\x8f\x44\x41\xe4\x2d\xe1\x4d\x24\x41\x2f\x10" "\xde\x15\x62\x44\x4b\x23\x69\x88\xb9\x44\x5e\x22\xc1\x24\x88\x80\xda" "\x80\x55\x11\x1a\xe1\x8f\x96\x8f\x4a\x2d\x95\xf0\x91\xd2\xfe\xf9\x03" "\xd2\xaa\x35\x1f\x50\x14\x10\xb4\x0a\x88\xc5\x97\x0a\x42\x2b\xda\x36" "\xf2\x62\x11\x01\x0d\xdc\xff\x73\x77\x3b\x97\xbd\xb9\x9d\xdb\xbd\xbd" "\x99\x20\xf2\xfd\x2a\x99\x9b\xd9\x67\x7e\xcf\xb3\xb3\x73\x3b\xf3\x3c" "\xb7\x33\x1b\x00\x00\x00\x78\x59\xb8\xf3\xa3\xeb\x7e\xb7\xea\xfb\x97" "\x5d\xf7\x93\xd3\x4f\xb9\x67\xc3\xa1\xcf\x3c\x11\x3a\x8b\x03\xcb\xdb" "\x2a\x8f\xb7\xc5\x3f\x1c\xfc\xa2\x35\x91\xed\xa8\x5c\x2a\x97\x42\x8d" "\xfd\xa2\x7d\xfe\xf9\xbf\x98\xf9\xc6\x63\x66\x6f\x78\xe4\xbe\x4f\x76" "\x6e\xfd\xe5\x47\xbf\x76\xe1\x37\x0e\xec\xf9\xab\xe3\x0f\xbb\xe1\xac" "\x27\x0e\xfd\xea\x81\x67\xbc\xbf\x5e\x6e\xbc\x1b\xed\xb8\x6d\x3e\xfa" "\x41\x14\xc2\x9a\x27\xa6\x5d\x79\xe3\xc6\x77\xcc\xe8\x5f\x16\x85\x10" "\x8a\x51\x61\x43\x08\x53\x2e\x28\xdc\x36\x25\x4a\x44\x74\xff\x3e\x84" "\xd0\x5b\x29\x57\x2e\xcd\x1c\xf8\xf7\xe1\xdb\x06\x1f\xbc\xf0\x6b\x1f" "\x39\xb5\x7f\xba\xe1\x92\x09\xc3\x56\x9a\x9c\x08\xb1\xbf\xbf\xbc\x4d" "\x0b\x21\x74\x86\x10\x2e\xab\xcc\x5f\x78\xd3\xb7\xe7\xff\xd3\x8c\xe3" "\xf6\xba\xe1\xb9\xaf\x9c\xf4\xe5\x8d\xd7\x5d\x1a\x0a\x71\xc9\xee\x30" "\xa1\x6a\xbf\x0a\x3d\x93\x4e\xc9\xb2\x1d\x3b\x56\xfd\xbc\xf5\x2f\x43" "\xe8\xdf\x0b\x67\x54\xf6\xc3\x68\x1c\xed\x5a\x14\x42\xe8\xa8\x9a\xaf" "\xb7\x1b\x37\xba\x9b\xef\x5d\x99\x16\x12\xf3\x07\x25\xca\xed\x90\x98" "\x2f\x24\xe6\x77\xae\x4c\x17\x54\xa6\xd3\x2a\xd3\x19\x95\xe9\xc4\xca" "\x34\xf9\xcb\x1f\xe7\xec\x9a\x98\x26\x7f\xbf\xb3\x72\xc6\xf3\x8d\x95" "\x8b\xdb\x59\xcc\xa8\xde\x1d\x13\xf3\x2d\x19\xe5\xc6\x92\xdb\x35\x69" "\x66\x65\xba\x77\x54\xbb\x3d\xf5\xf2\xa2\xca\x6b\xd8\xff\x5f\xb9\xd9" "\x46\x36\xa0\x7f\x7b\xb7\x87\x10\x2e\xa8\xcc\xc7\x6f\xdb\xfd\xfb\xc3" "\xa4\xfe\xc7\x4a\xdd\x89\x35\x26\x86\xb7\x84\xb7\x86\xe3\xc3\xc2\x70" "\x44\x38\x32\x1c\x15\x8e\x0e\xc7\x86\x63\xc2\x71\x61\x51\xe8\x18\x51" "\xb6\x9c\x52\x76\x4a\xb4\x28\x4c\x1c\x51\x3a\x0a\x5d\x51\xb1\xd2\xa6" "\x62\x14\x0a\x51\x28\x0d\x6d\x96\x85\x51\x08\xad\x55\x65\x27\x0f\xad" "\x53\x18\xf6\xda\xf6\xef\xdf\x13\x6a\x3c\xcf\x78\x79\x1c\xb8\xa1\xf2" "\x43\x67\x65\x59\x67\x34\x75\xc4\x3a\x7d\x35\xc4\x8f\x7d\x7a\xcd\xb3" "\x3d\x97\xde\xd4\xf1\xed\x19\xb5\x36\x6a\x7f\xe6\xf1\x51\x25\x3f\x6a" "\x2a\xff\xa8\xf6\x4b\x1f\xeb\xbe\xf8\x0d\x4b\xbb\xd2\xf2\x67\xc6\xf9" "\x85\xa6\xf2\xdb\x6f\xfb\xf1\x82\x8f\x9f\x17\x6e\x49\xcd\x3f\x3a\xce" "\x2f\x36\x95\xff\xc8\x6e\xb7\x4e\x7e\xfb\xce\x7d\xdf\x4d\xcd\x3f\x31" "\xce\x2f\x45\xcd\xe4\xef\xf3\xb9\xe7\x77\x3f\xfe\x07\x7b\x1c\x92\x9a" "\xdf\x1b\xe7\xb7\x35\xd5\xfe\xdb\x6e\xdc\xb2\x60\xf3\xc1\x9b\x77\x49" "\xcd\x9f\x1f\xe7\xb7\x37\x95\x7f\xf1\x75\x27\x9e\xf0\xd8\x0f\xaf\x98" "\x9b\x9a\x7f\x50\x9c\xdf\xd1\x54\xfe\x03\xd3\xff\xe5\x0f\x37\xbf\xf7" "\xe1\xef\xb4\xa5\xe5\x9f\x1a\xe7\x77\x36\x95\x7f\xcb\x11\x53\x17\x5d" "\x74\xdf\x6f\x36\xa7\xee\xff\x7b\xc5\xf9\x13\x9b\xca\x5f\xf6\xe4\xc6" "\xdb\x17\xb7\x1c\x7a\x64\xea\xf6\x99\x1e\xe7\x97\x9b\xca\x7f\xe8\xea" "\x67\xb7\x6c\x3a\xa3\xfd\xfc\xd4\xfc\xd5\x71\xfe\xa4\xa6\xf2\xbf\xb8" "\xcf\xb5\xf7\xbc\x66\xc6\xf5\x9b\x52\xb7\xcf\xac\x38\x7f\x72\x53\xf9" "\x9b\x2e\xbe\xe3\xf0\x0f\x3d\xf5\xf5\xfb\x53\xdb\x3f\x63\x20\x3f\xea" "\x0c\x5d\x4d\xe5\x2f\x9d\xfb\xad\x6b\x4e\x7e\xfd\x96\x73\x52\xf7\x9f" "\x25\x71\xfb\xa7\x35\x95\x7f\xc7\x94\xad\x3b\x2d\x7e\xa1\x77\x8f\xd4" "\xf6\xaf\xad\x77\x84\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x97\xaf" "\x72\xa9\x5c\xea\x9f\xde\xf9\xd1\x75\xbf\x5b\xf5\xfd\xcb\xae\xfb\xc9" "\xe9\xa7\xdc\xb3\xe1\xd0\x67\x9e\x68\x9f\x7f\xfe\x2f\x66\xbe\xf1\x98" "\xd9\x1b\x1e\xb9\xef\x93\x9d\x5b\x7f\xf9\xd1\xaf\x5d\xf8\x8d\x03\x7b" "\xfe\xea\xf8\xc3\x6e\x38\xeb\x89\x43\xbf\x7a\xe0\x19\xef\xaf\x97\xdb" "\xd6\x36\x38\xdd\x31\x9e\x0f\x21\xfa\x41\x14\xc2\x9a\x27\xa6\x5d\x79" "\xe3\xc6\x77\xcc\xe8\x5f\x16\x85\x10\x8a\x51\x61\x43\x08\x53\x2e\x28" "\xdc\x36\x25\x4a\x44\x74\xff\x3e\x84\xd0\x5b\x29\x57\x2e\xcd\x1c\xf8" "\xf7\xe1\xdb\x06\x1f\xbc\xf0\x6b\x1f\x39\xb5\x7f\xba\xe1\x92\x09\xc3" "\x56\x9a\x9c\x08\x49\x3e\xaf\xd0\x59\x8c\xdb\x33\xac\x9d\xe1\xe0\x31" "\x6d\x36\x5e\x22\xa6\x85\x10\x3a\x43\x08\x97\x55\xe6\x2f\xbc\xe9\xdb" "\xf3\xff\x69\xc6\x71\x7b\xdd\xf0\xdc\x57\x4e\xfa\xf2\xc6\xeb\x2e\x0d" "\x85\xb8\x64\x77\x98\x50\xb5\x5f\x85\x9e\x49\xa7\x64\xd9\x8e\x1d\xab" "\x7e\xde\xfa\x97\x21\xf4\xef\x85\x33\x2a\xfb\x61\x34\x8e\x76\x2d\x0a" "\x21\x74\x54\xcd\xd7\xdb\x8d\x1b\xdd\xcd\xf7\xae\x4c\x0b\x89\xf9\x83" "\x12\xe5\x76\x48\xcc\x17\x12\xf3\x3b\x57\xa6\x0b\x2a\xd3\x69\x95\xe9" "\x8c\xca\x74\x62\x65\x9a\xfc\xe5\x8f\x73\x76\x4d\x4c\x93\xbf\xdf\x59" "\x39\xe3\xf9\xc6\xca\xc5\xed\x2c\x66\x54\xef\x8e\x89\xf9\x96\x8c\x72" "\x63\xc9\xed\x9a\x34\xb3\x32\xdd\x3b\xaa\xdd\x9e\x7a\x79\x51\xe5\x35" "\xec\xff\xaf\xdc\x6c\x23\x1b\xd0\xbf\xbd\xdb\x43\x08\x17\x54\xe6\xe3" "\xb7\xed\xfe\xfd\x61\x52\xff\x63\xa5\xee\xc4\x1a\x13\xc3\x5b\xc2\x5b" "\xc3\xf1\x61\x61\x38\x22\x1c\x19\x8e\x0a\x47\x87\x63\xc3\x31\xe1\xb8" "\xb0\x28\x74\x8c\x28\x5b\x4e\x29\x3b\x25\x5a\x14\x26\x8e\x28\x1d\x85" "\xae\xa8\x58\x69\x53\x31\x0a\x85\x28\x94\x86\x36\xcb\xc2\x28\x84\xd6" "\xaa\xb2\x93\x87\xd6\x29\x0c\x7b\x6d\xfb\xf7\xef\x09\x35\x9e\x67\xbc" "\x3c\x0e\xdc\x50\xf9\xa1\xb3\xb2\xac\x33\x9a\x3a\x62\x9d\xbe\x1a\xe2" "\xc7\x3e\xbd\xe6\xd9\x9e\x4b\x6f\xea\xf8\xf6\x8c\x5a\x1b\xb5\x3f\xf3" "\xf8\xa8\x92\x1f\x35\x95\x7f\x54\xfb\xa5\x8f\x75\x5f\xfc\x86\xa5\x5d" "\x69\xf9\x33\xe3\xfc\x42\x53\xf9\xed\xb7\xfd\x78\xc1\xc7\xcf\x0b\xb7" "\xa4\xe6\x1f\x1d\xe7\x17\x9b\xca\x7f\x64\xb7\x5b\x27\xbf\x7d\xe7\xbe" "\xef\xa6\xe6\x9f\x18\xe7\x97\xa2\x66\xf2\xf7\xf9\xdc\xf3\xbb\x1f\xff" "\x83\x3d\x0e\x49\xcd\xef\x8d\xf3\xdb\x9a\x6a\xff\x6d\x37\x6e\x59\xb0" "\xf9\xe0\xcd\xbb\xa4\xe6\xcf\x8f\xf3\xdb\x9b\xca\xbf\xf8\xba\x13\x4f" "\x78\xec\x87\x57\xcc\x4d\xcd\x3f\x28\xce\xef\x68\x2a\xff\x81\xe9\xff" "\xf2\x87\x9b\xdf\xfb\xf0\x77\xda\xd2\xf2\x4f\x8d\xf3\x3b\x9b\xca\xbf" "\xe5\x88\xa9\x8b\x2e\xba\xef\x37\x9b\x53\xf7\xff\xbd\xe2\xfc\x89\x4d" "\xe5\x2f\x7b\x72\xe3\xed\x8b\x5b\x0e\x3d\x32\x75\xfb\x4c\x8f\xf3\xcb" "\x4d\xe5\x3f\x74\xf5\xb3\x5b\x36\x9d\xd1\x7e\x7e\x6a\xfe\xea\x38\x7f" "\x52\x53\xf9\x5f\xdc\xe7\xda\x7b\x5e\x33\xe3\xfa\x4d\xa9\xdb\x67\x56" "\x9c\x3f\xb9\xa9\xfc\x4d\x17\xdf\x71\xf8\x87\x9e\xfa\xfa\xfd\xa9\xed" "\x9f\x31\x90\x1f\x75\x86\xae\xa6\xf2\x97\xce\xfd\xd6\x35\x27\xbf\x7e" "\xcb\x39\xa9\xfb\xcf\x92\xb8\xfd\xd3\x9a\xca\xbf\x63\xca\xd6\x9d\x16" "\xbf\xd0\xbb\x47\x6a\xfb\xd7\xd6\x3b\xc2\x02\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x1f\xaf" "\x79\xab\x77\x3a\xea\xe7\x13\x77\x99\xd0\x5e\x99\x2f\x97\x06\xa7\xb7" "\x15\x06\xa7\x2d\x95\xe5\xfd\x8b\xfb\xcb\x2c\x5b\xf6\xee\x15\xa7\xee" "\xb7\x6c\xc5\xda\x95\xcb\xd7\xaf\xac\x91\xd7\x12\xa2\xd0\xd1\x3f\x8d" "\x46\x3e\xd6\xd7\xd7\xd7\xd7\xda\x35\x7c\xd9\xd4\x30\x58\x70\x6a\xf4" "\xaa\x86\xca\xc7\xed\xec\xf8\xe6\xea\x15\x1b\x4e\xbf\xf3\x8a\x10\xe6" "\xec\x70\xff\xcc\xb6\xd4\xe7\x77\xc3\x2d\x0b\x0f\x9b\x53\xe3\xdf\x84" "\xa8\xa7\x6f\xf3\x01\x7b\x9e\x75\xd5\xc2\xcb\xe7\x0e\x2e\x98\x52\x79" "\x1e\x53\x52\xda\x15\x12\xed\x8a\x5b\xb0\xf7\x09\x5b\xbb\xfe\xe6\xee" "\x33\x1f\x08\x61\xce\xf4\xfb\x67\x96\x52\xdb\xb5\xef\x67\x37\x1d\x32" "\xbc\x45\x83\x4b\x06\xb7\x74\x95\xc2\xb6\xf6\x84\x31\xb4\xa7\x3d\xe7" "\xf6\xb4\x84\xc2\xa8\xaf\xf3\xd0\xd6\xac\xb4\x6b\x42\x65\xc5\x09\x51" "\x47\x43\xe5\xe3\xd7\xbd\x6d\xd5\x69\xab\x57\xee\x17\x42\x6b\x98\x36" "\xb8\x3c\x9a\x35\xb0\x4f\xb6\xa7\x3e\x93\x41\x71\xb3\xe2\xfd\xf6\xdd" "\xeb\xd7\xae\x5c\xb9\xec\xec\xb3\x7a\x97\xaf\x5f\xb9\xec\xcc\x35\xbd" "\x2b\xd7\x2d\x3b\x67\xed\x69\xeb\xd7\xaf\x3c\x33\x7e\x3e\xa5\xd4\xe7" "\xd3\xef\xfa\xc4\x7c\xb9\xb2\x5d\xca\xd1\x2e\x0d\x95\x8f\xdb\x3b\x7b" "\xe0\xdf\x62\xe8\x4e\xb4\x33\xa4\xd4\x1b\x6b\x09\x9d\x63\x6a\x5f\x7f" "\xf9\x81\x69\xb4\xd3\xb0\xe5\x85\x51\xca\x77\xd4\x28\xbf\x43\xa5\xbe" "\x6f\x44\x8d\xe5\x4f\x4d\x29\xdf\x19\xba\x06\x9e\x62\x67\x34\x75\x44" "\xdb\xfb\x6a\x88\x1f\x5b\x3a\xf7\x5b\xd7\x9c\xfc\xfa\x2d\xe7\xa4\xfd" "\x86\x47\x4b\x06\x2b\x6a\x0f\xe5\xc1\x69\xf4\xca\xda\x05\x37\xbc\x73" "\xd8\x6c\x57\x54\x1c\x98\x76\xa7\xd4\x5f\xbd\xbf\xad\x4d\xec\x6f\x85" "\x62\x34\xe2\x55\x88\x5f\xcf\xea\xf5\xce\x4d\xac\x97\x7c\x2f\xab\x5e" "\xaf\xad\xb2\x5e\x5b\x34\x2b\x6c\x48\xac\x57\x0c\xc5\x91\xcf\x3b\xb1" "\x7e\xa8\x91\xf3\x89\x11\x39\x23\x25\xb7\x77\x2c\xf1\x7e\xbf\xfa\xb4" "\x33\xcf\xa8\xb1\xf6\xd8\xdf\x27\xf3\x7e\x5f\xfa\x63\x7b\x9f\x9c\x5a" "\xd9\x3e\x7f\x6c\xc7\xb7\x17\xef\xb8\x5b\x48\xb4\xeb\xd8\x9b\x36\x7e" "\x7e\xcb\x67\x16\x1f\x31\xb8\xa0\xde\x71\x65\xa8\x74\x83\xc7\x95\x64" "\xf9\x61\xc7\x95\xfd\xb3\x3b\xaf\x99\x30\xc6\xf3\x9a\x64\xf9\x78\xfb" "\x9e\xf8\x81\x4f\xfd\xbc\xf7\x4b\xb3\xf6\xcc\xee\x75\xbf\xf7\xe9\x55" "\x77\x5c\xbe\xe8\xf6\x29\x83\x0b\xfc\xbe\x8e\xef\xbc\x66\x68\x6b\xc6" "\xfb\x51\x65\xc5\xb6\x94\xfd\x2f\x59\x7e\x42\xf5\xfe\xb7\xcf\x8a\x35" "\xab\x7b\x07\xe7\xab\x8f\x1b\xdd\x51\x13\xe7\x37\xfd\x7b\x6f\xff\x19" "\xcd\xca\x65\xa7\xf5\x9f\xde\x24\xcb\xd7\x7b\x1f\x2a\xa5\x9c\xcf\x5e" "\x3d\xb7\x65\xeb\x57\x7e\xf9\x9e\x0f\xf7\xef\x8f\x4f\xbd\xba\x63\x68" "\xf9\xee\x89\x8c\x06\xf7\xc7\xf6\x9e\xbe\x8f\x2d\xeb\xdb\xe3\xb9\x9f" "\x1d\xf6\xbe\x6d\xed\x0a\x63\x68\x57\xfb\x76\x6a\x57\xcd\xed\xda\xbb" "\xf2\x03\xcb\x7a\x57\xae\x5a\x7e\xf6\xea\xf5\xf1\x8a\xfd\xe7\xa2\xa3" "\xed\x2f\x71\xbb\x5a\x86\xde\xaf\x2a\xd3\x68\xca\xb0\xb2\x6d\x29\xe5" "\xd7\x9d\x7b\xde\x19\xcb\x57\xaf\x5e\xb9\x76\xdd\xb6\xed\x35\xda\xeb" "\xd8\x92\xf2\x3a\x7e\xb5\xfb\x9a\x35\x7b\xbc\xf3\xfe\x5f\x67\xf7\xbe" "\xb2\xd3\xc6\x9f\xde\xb5\xfa\xae\xde\xfd\xb6\xb5\x2b\x8c\xa1\x5d\xed" "\x29\xed\x8a\x5b\x96\xfc\x6d\x6a\xb6\x5d\x59\xbf\x8e\xf1\xef\x6f\x7c" "\x16\x3b\xb5\xce\xeb\x38\x61\xc4\xeb\x98\xdf\x0f\xa1\x81\xfd\xe3\xc5" "\x3a\xee\x64\x75\x3c\x8c\x5b\xd6\x9b\x51\xbb\x3a\x2b\xef\xa5\x63\xed" "\x97\x7c\x7a\xcd\xb3\x3d\x97\xde\xd4\xf1\xed\xd4\x7e\xc9\xf1\x51\x25" "\x3f\x6a\x2a\xff\x23\x4b\xaf\x7a\xf0\xae\xde\x4b\x0a\xa9\xf9\x87\xc5" "\xf9\x85\xa6\xf2\xdb\x6f\xfb\xf1\x82\x8f\x9f\x17\x6e\x49\xcd\x3f\x3a" "\xce\x2f\x36\x95\xff\xc8\x6e\xb7\x4e\x7e\xfb\xce\x7d\xdf\x4d\xcd\x3f" "\x31\xce\x2f\x45\xcd\xe4\x7f\x66\xd5\xa2\xc7\x7f\xf5\xd9\x33\x7e\x53" "\xa3\x4b\x35\x98\xff\xca\x38\xbf\xad\xa9\xf6\xdf\x76\xe3\x96\x05\x9b" "\x0f\xde\xbc\x4b\x6a\xfb\xe7\xc7\xf9\xed\x4d\xe5\x5f\x7c\xdd\x89\x27" "\x3c\xf6\xc3\x2b\xe6\xa6\xe6\x1f\x14\xe7\x77\x36\x95\x7f\xcb\x11\x53" "\x17\x5d\x74\xdf\x6f\x36\xa7\xe6\xef\x15\xe7\x4f\x6c\x2a\x7f\xd9\x93" "\x1b\x6f\x5f\xdc\x72\xe8\x91\xa9\xf9\xd3\xe3\xfc\x72\x53\xf9\x47\x2e" "\x9b\x34\xff\xb8\xcb\x97\xee\x93\xfa\xfa\xee\x16\xe7\x4f\x6a\x2a\xff" "\x8b\xfb\x5c\x7b\xcf\x6b\x66\x5c\xbf\x29\xb5\xfd\xb3\xe2\xfc\xc9\x4d" "\xe5\x6f\xba\xf8\x8e\xc3\x3f\xf4\xd4\xd7\xef\x4f\xcd\x9f\x31\x90\x1f" "\x75\x86\x69\x4d\xe5\xbf\xed\xda\x17\x42\xf9\xce\xef\x9d\x9d\xba\x7d" "\x2a\x03\x31\xfd\xff\x4e\x0c\x21\x5c\xf8\xb5\x8f\x9c\x3a\x38\x5f\x18" "\x1a\xd3\x0d\x95\xd3\xde\x09\x35\xd6\x8f\x97\x37\x3a\x3e\x05\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xc0\xf6\x11\x5f\xff\x1f\x5f\x6f\x11\x5f" "\xff\x7f\x77\xe5\x43\xa2\xf1\xe7\xf0\x1b\xbd\x8e\x02\xe0\xa5\x6a\xf8" "\xfd\x22\xce\x5c\xd3\xbb\xb2\xf2\x6e\x77\xce\x9a\xb5\xd5\x57\xc0\x8f" "\xf7\x73\xfb\x33\x52\xea\x8f\x3f\xb7\xdf\x78\x3b\xc6\x77\x7d\x45\x6a" "\x3b\x76\x1b\x6b\x3b\xc6\x77\x9d\x4a\xea\x75\x0c\x7b\x25\xda\xd1\x7f" "\xfc\x19\x6c\xcc\x19\x2b\xcf\x5d\xb6\x62\xf9\x8a\x53\x57\x2e\x3b\x7d" "\xcd\xd9\x6b\xcf\x5c\xbe\x7a\xd9\xaa\xd5\x67\x97\x2b\xf7\xf1\x28\x5f" "\x50\xfb\xbe\x1c\x17\x27\xe6\xe3\xab\xd1\xd3\xee\xcb\x51\xef\xb2\x87" "\x7a\xf7\x01\x49\xd6\x17\xeb\x4e\x64\x37\x5a\x5f\xe3\xaf\xc7\xf8\xae" "\x8b\x49\x7d\x3d\x66\x8d\x75\xbf\x18\xdf\xf5\x69\xa9\xed\x38\x7a\xac" "\xed\x18\xdf\x75\x78\xa9\xed\x38\x6c\xac\xed\x18\xdf\xf5\x44\xa9\xed" "\xa8\x5c\x4f\xd4\x78\x3b\xc6\x77\x5d\x5c\x6a\x3b\xe6\x8f\x75\x7b\x8c" "\xef\xfa\xb9\xd4\x76\x1c\x34\xd6\x76\x8c\xef\x3a\xc7\xd4\x76\x9c\x38" "\xd6\x76\x8c\xef\x7a\xd4\xd4\x76\x1c\x5f\xab\x1d\xcd\xdf\x0f\xe9\xff" "\x4d\xcc\xd7\x7b\x1f\x4c\x96\x8f\xfb\x1b\x69\xef\xbb\x1b\xea\xde\x0f" "\x69\xf4\xf6\xfd\x7f\x63\x6c\x5f\xb2\xfc\x78\xdb\x57\xef\x38\x74\x59" "\x62\xbe\xb5\x5e\x7d\xa3\x57\x57\xf7\xf9\x25\xeb\x8b\x9f\xdf\xae\x03" "\x75\x6c\xbb\xdb\x44\xa3\xf5\xd5\xbb\x1f\x55\xf2\xf5\x4e\xbb\x5f\x54" "\x34\x4a\xf9\x81\xfc\x0b\x1a\xbf\x7f\x55\x18\xe3\xfd\xb1\x6a\xe5\xa7" "\xdd\xbf\x2a\xad\xfd\x53\x52\xcb\x4f\x1c\x75\xfb\x24\x5f\x8f\x96\x81" "\xab\x34\x47\xe6\xa7\x95\x7f\x6d\x98\x34\x90\xff\xda\x0b\x66\xd6\xae" "\xe0\x8f\x56\xf4\xa2\x5c\x4a\xda\xbf\xbd\x06\xa6\xd1\x4b\x73\x7b\x6d" "\xef\x6d\xd6\x19\x4a\x03\x55\xd6\x3a\x0e\xf5\xbb\x3b\xa5\x41\x27\x9d" "\x73\xdd\xdf\x4f\x39\xf5\xa2\x0f\x74\x55\xda\xbc\x38\xf1\x78\x74\x52" "\x54\x37\x7f\xb4\xe3\xdc\xfc\xf3\x1f\xfa\xd5\x96\x4d\x0b\x4f\x88\xf3" "\x93\xed\x88\x4e\x1e\x5c\xd0\x52\xb9\x1f\x5c\xda\xef\x5f\x08\x47\x0f" "\x9b\xab\xbe\xff\xce\xdf\x46\xc3\xef\x3f\x52\xeb\x7e\x6f\x0f\x57\xda" "\x55\xbd\xde\xa6\xc4\x7a\xad\x35\x6e\x4b\x14\xaf\x57\xf7\x7e\x75\x61" "\xf8\xfd\xea\x4a\x55\xf7\xab\x0b\x35\x9e\x77\x75\x3b\xfe\xb9\x81\xf6" "\xd7\xba\x5f\xdd\xe6\x06\xda\x1f\xaf\x57\xbf\xfd\x7f\x96\xda\xfe\x5a" "\xaf\x6f\x75\x3b\xfe\xad\xc9\xf6\xdf\x3f\x86\xf6\x57\xdf\x27\xef\xa7" "\x89\xf5\x8a\x35\xee\xbe\x94\xb6\x1b\x55\xe7\xfc\xd7\x88\x9c\x91\x77" "\xdc\x8b\x9f\xef\xc3\x89\xfd\xba\x3a\xe7\xd7\x0d\xe4\x34\x72\xff\xbf" "\xa7\x47\xe4\x8c\x94\xfc\xfd\xaa\x95\xf3\x42\x46\xed\x99\x50\x68\xbe" "\x3d\xdb\xab\x9f\x97\x3a\x1e\x92\xec\xe7\x65\x74\x3f\xa1\x62\x7c\x5f" "\xba\xca\x7c\x6b\xd4\x3a\xac\x6c\xf2\x7e\x42\x71\xf9\xe8\xdd\x95\xfb" "\xe9\xd4\xb9\xdf\x4f\x31\xe5\x7e\x50\xeb\x27\x7d\x70\xfa\xad\xc7\x9e" "\xf2\x4c\x46\xf7\xfb\x69\xef\xe9\xbb\xf5\xfa\x7b\x1f\xbf\xe4\xd4\x79" "\x2b\xc2\x50\xbb\xc2\x18\xda\xd5\x91\xd2\xae\xb8\x65\x3b\x97\xb2\x69" "\x57\xbd\x7e\xc3\x4d\x89\xf9\x7a\xe7\xd5\xc9\xf2\xc3\xfb\x0d\xa5\xa1" "\xf6\x37\xde\xaf\x19\xfd\xbc\x3a\x59\x5f\xbd\xfb\xbc\xd6\x2a\x5f\xeb" "\xbc\x37\xfd\x3c\xb6\x76\xfe\xa4\x94\xf2\xf5\xef\xc3\x7a\x52\x62\xc1" "\xe0\xf6\x4d\xdb\xcf\xab\xdf\xdf\x9f\x4c\xbc\x7f\x14\x4a\x23\x8f\x0b" "\xf1\xfa\xd5\xeb\x3d\x93\x58\xaf\xa5\xc6\x1b\x4c\xdb\xd0\xb4\xea\x7d" "\x2f\xb1\x5e\x5b\x72\xa7\xad\x7a\x5d\xdb\x12\xd3\x96\xca\x9a\x69\xe7" "\xf3\x55\xaf\x4b\x77\xff\x33\xaf\xae\xb7\x5c\x4c\xbe\x4f\x8e\x3c\x90" "\x25\xeb\x9d\x51\xa3\xfd\xd3\x47\xe4\x8c\x54\xf7\xfd\x76\x9c\xef\x73" "\x71\xbb\x5a\xeb\xbc\xcf\xcd\x48\x29\x7f\x41\x83\xef\x73\x2f\xd6\xfd" "\x4a\xc7\x7a\x1f\xd5\x8e\x94\x76\xc5\xcf\xfb\x75\xb3\xb3\x69\xd7\xd0" "\xf8\xc3\x76\x7a\xdf\x1a\xef\xfb\xe4\x58\xc7\x57\xea\xbe\xcf\xfc\xfd" "\xc8\xf7\x99\xee\x51\xf6\xb3\xea\xf7\x8b\x8d\xc5\xfa\xef\x33\x43\xeb" "\x57\xad\xf7\xe9\x62\xfd\xf7\x99\x5a\xbf\xa7\x57\x26\xd6\x6b\xab\x71" "\xa3\xe8\x28\xb1\x7e\x3c\xdd\xf6\x3e\x53\x73\x2b\x8c\xfa\x3e\xf3\x8f" "\x0d\xbc\xcf\x24\xdb\xfd\xdf\x95\xf7\x8b\xac\xc6\x11\x6f\x4c\xcc\xd7" "\xdb\x8f\x92\xe5\xf3\x1e\x47\xfc\xd2\x18\xdb\x97\x2c\x9f\xf7\x38\xe2" "\x27\x13\xf3\x2d\xf5\xea\x1b\xbd\xba\xba\xcf\x2f\x59\xdf\x78\xc7\x11" "\xeb\x3d\xbf\xac\xc7\x8d\xc7\x3a\x4e\x1d\x4b\x7d\x7e\xe3\x3c\x9f\x4b" "\xee\xcf\xf5\xc6\x49\x6b\x95\xaf\x75\xdf\xfe\xd1\xce\xff\xc2\x18\xcf" "\x2f\x6b\x9d\x2f\xa6\x9d\xff\xa5\xb5\xbf\xdc\xe4\x38\xe9\xc8\xfd\x7b" "\xf4\x71\xd2\x5a\xe5\xc7\x36\x4e\x3d\x7a\x7e\xb2\xfc\x4b\x7d\x1c\x76" "\x7b\x8f\x2b\xbe\xb4\xc7\x61\x47\x1f\xbb\xce\x63\x5b\x36\x3b\x0e\xbb" "\xff\x45\xd7\xbe\xee\x1f\xae\xda\x70\x49\xea\x38\xec\x29\xdb\xc6\x61" "\x9b\x19\x2f\xd9\xe7\x73\xcf\xef\x7e\xfc\x0f\xf6\x38\x24\xf5\xfe\x96" "\xbd\x8d\x8e\xc3\x0e\x1f\xe7\xac\x3e\x9f\x7a\x6d\xa9\xb9\x71\xd8\xbd" "\x4a\x8d\x8f\xc3\xd6\x6f\xdf\x51\xa9\xed\x7b\x63\x93\xed\xeb\x19\x43" "\xfb\xea\x8f\xb3\x0e\x3f\xcf\x1d\xcb\x38\xf1\xdb\x1a\x68\x7f\xad\x71" "\xd6\x93\x1a\x68\x7f\xe3\xe3\xc4\x7f\x3e\xbc\xfd\x85\xc6\xc7\x89\x4f" "\x6b\xb2\xfd\x67\x8d\xa1\xfd\xd5\xe7\xcb\xe7\x94\xb2\x19\x27\xde\x30" "\x22\xa7\xb9\x71\xe2\x4f\x64\xd4\x9e\xcb\x33\x6a\xcf\x95\x0d\xe4\x34" "\x32\x4e\x7c\xcd\x88\x9c\x91\x1a\x19\xb7\xbe\x3e\xa3\xf6\x7c\x79\x1c" "\xed\xc9\xff\xfe\xca\xf9\x7e\xaf\x52\x94\xd1\xfd\x83\xeb\x9d\x27\x03" "\x00\x00\x00\x90\x8f\xf8\xfa\xff\xce\xca\x7c\xb9\x34\x38\x16\x76\x78" "\x62\x4c\x74\xd8\xe7\x81\x7a\xd7\x2c\xeb\x3d\x6d\xdd\x8a\xe5\x6b\x7b" "\xd7\x2d\x5b\xb5\x7c\xdd\xfa\xaa\x0f\x61\xd6\xfb\xdc\x49\xd6\x7f\x5f" "\x6d\xf6\xef\xb9\x69\xd7\x5f\x36\xfe\xf7\xdc\xc6\xaf\x63\x09\x63\xbc" "\x4e\x26\xdf\xef\x79\x9f\x58\xb3\xfd\xe9\xed\x99\x38\xa6\xf6\x57\x8f" "\x9b\xb6\x54\xae\x67\x8b\xd5\x1a\x37\x6d\x64\x7c\x7a\xd2\x88\x9c\x91" "\xe3\xdc\x75\x3f\xc7\x36\xce\xcf\xa9\xfc\x73\x62\xbe\xde\x7e\x97\x2c" "\x1f\xb7\xbf\xf9\xcf\xa9\x8c\xbe\x5f\x24\xeb\xab\xf7\x39\x82\x5a\xe5" "\x6b\xfd\x9d\x3f\xfd\xef\xf6\xb5\xf3\x3b\x53\xca\xf7\xa7\x37\x33\x4e" "\xfd\xc0\xf4\x7f\xf9\xc3\xcd\xef\x7d\xf8\x3b\xa9\xe3\xd4\xa7\x0e\x56" "\x54\xff\xef\x4c\x4b\x86\xcd\x75\x8c\xf1\xfb\xff\xab\xf7\xbf\xb1\x7c" "\xff\x7f\xf5\x7a\xad\x23\xbf\x22\x3a\xf5\xfb\xff\x87\xef\xef\xcd\x7f" "\xff\x7f\xbd\xdf\xbf\xbc\x7f\x6f\xbe\x9c\x98\xaf\xf7\x7b\x93\x2c\x3f" "\xde\xdf\x9b\x7a\x9f\x2f\xfa\x54\x62\x3e\xef\xcf\x4f\x25\xeb\x8b\x9f" "\x5f\x5e\xd7\x61\x26\xb7\x67\xbd\xf7\x85\x5a\xe5\x6b\xbd\x2f\xa4\xfd" "\x9e\xa7\xe5\xb7\x37\xf9\xf9\x9f\x91\xaf\xcf\xe8\x9f\xcf\x49\x96\x7f" "\x69\x7f\x3e\x67\xfb\x7f\xde\xe4\x4f\xe0\xf3\x39\xa9\x9b\x25\x9f\xcf" "\xe7\x34\x77\xff\x95\x87\xae\x7e\x76\xcb\xa6\x33\xda\xcf\x4f\x3d\xae" "\xad\x6e\xf0\xf3\x33\x1b\x8e\x19\x36\x5b\x7d\xfc\xf9\xf7\x06\x8e\x5b" "\xb5\x3e\x9f\xf2\xb3\xe4\x71\xab\x3c\xb2\xda\xc6\x3f\x9f\xf2\xae\x61" "\x73\xe5\x31\x1c\x77\x1f\x6b\xf2\xb8\xfb\xdb\x06\xda\x5f\xeb\xb8\xfb" "\x87\x06\xce\x33\x1b\x39\x5f\x2d\x45\xf5\x8f\xdf\xf1\xf3\x1d\xed\xf3" "\x14\xe5\x06\x72\x1a\x39\x0f\x98\x3e\x22\x67\xa4\xbc\xcf\x03\xfe\x35" "\x31\x5f\xef\x38\x99\x2c\x9f\xf7\x79\xc0\x27\x12\xf3\x79\x9f\x07\x24" "\xeb\xcb\xfb\x3c\x20\xb9\x3d\xeb\xf5\x1b\x6b\x95\xaf\x75\x1e\x90\x7e" "\x5c\xaf\x9d\xdf\xda\xe4\x79\xc0\xc8\xd7\x67\xf4\xf3\x80\x64\xf9\x3f" "\x81\xf3\x80\xed\x7a\x5c\x7b\xc9\x9e\x07\x44\x2f\xd6\x79\x40\x73\xf7" "\x83\xbb\x63\xca\xd6\x9d\x16\xbf\xd0\xbb\x47\xea\x79\xc0\xda\x46\xcf" "\x03\x16\x0e\x9b\xad\x3e\x1e\x3e\x10\x35\x77\x1e\xf0\x60\x62\xbd\xd6" "\x69\x23\xab\x6d\xf8\x3c\x60\xc3\xc9\xc3\x66\xa7\x8d\xe1\x3c\xe0\xf1" "\x06\xda\x5f\xeb\x3c\xe0\xe9\x06\xda\x5f\xeb\x3c\x60\xeb\x88\xe3\x65" "\x73\xe7\x01\x2d\x85\x6c\xce\x03\x26\x35\x90\xd3\xc8\x79\xc0\x8e\x23" "\x72\x46\xca\xfb\x3c\xe0\xd2\xc4\x7c\xbd\xe3\x64\xb2\x7c\xde\xe7\x01" "\x5f\x48\xcc\xb7\xd5\xa9\xaf\xde\x9b\x49\xbd\xe7\x97\xac\xaf\xde\x79" "\x40\xbd\xfa\xd2\x8e\xd3\xf1\x6a\x23\xef\x3b\x34\xfa\xf8\x74\xad\xfb" "\x14\x8d\xf6\xfa\x26\x9f\x4f\xbd\xe3\x74\xb2\xfc\x4b\xf6\x38\xfd\x22" "\x1d\x77\xfe\xe4\x8e\xd3\x51\xcd\x1f\x33\xd3\xec\xfd\x41\x8e\x6a\xbf" "\xf4\xb1\xee\x8b\xdf\xb0\x34\xf5\x38\x3d\xb3\xd1\xe3\xf4\xa2\x61\xb3" "\xd5\xc7\xab\x1f\x15\x9a\x3b\x4e\x3f\x94\x58\xaf\xb5\x46\xdd\x8d\x1f" "\xa7\x87\x5f\xef\x12\x8d\xe1\x38\xfd\x44\x03\xed\xaf\x75\x9c\xfe\x5d" "\x03\xed\xaf\x75\x9c\x7e\x7e\xc4\xf1\xac\xb9\xe3\x74\x6b\x31\x9b\xe3" "\xf4\xe4\x06\x72\x1a\x39\x4e\xcf\x18\x91\x33\x52\xda\x71\x3a\xef\xfb" "\x47\xe6\x7d\x3f\xd7\xbc\xef\xc3\x99\xf7\xf5\x6e\x79\xdf\x57\x35\xef" "\xfb\xa5\xe6\x7d\x1f\xe7\xfc\xaf\x87\xc9\xf7\xbe\xc7\x79\xdf\xbf\xd7" "\xf5\x3c\x00\x00\x00\xe4\x21\xfe\xfc\xff\xc4\xca\x7c\xfc\xf9\xff\x6f" "\x25\xca\xe5\x7d\xff\xe5\x78\x7c\x35\xb5\x7f\x3c\x33\xee\x7f\x1b\xdf" "\xaa\x99\x6f\x7c\xab\xc1\xf1\xad\x7c\x3f\x87\xfe\xd2\x1f\x3f\xcb\xf7" "\xf3\x8c\xc6\xe7\x52\xf2\x97\xc4\xed\xcf\xf7\x73\x24\xc6\xff\x00\x00" "\x5e\xde\xe2\xfe\x7f\x7c\x89\x4c\xfc\xfd\xff\xcf\xc5\xf3\x95\x69\xde" "\xdf\x8b\x1d\x9f\xbf\xa6\x9e\x7f\x57\xce\x5f\xf3\xfe\x5e\xec\xb8\x1f" "\x93\xda\x8e\xd5\x63\x6d\x47\x29\xea\xe8\x9f\x5e\xd0\xe0\xfd\x9b\x0f" "\x78\xfb\x5e\x1b\x3e\xdf\xd7\x37\x96\xfb\x37\x87\x71\xdc\x1f\x7a\x46" "\x9d\xfc\xed\xf5\xbd\xb5\xa9\xdf\xbb\x55\xf3\x7b\x6b\xf3\xfb\xde\xeb" "\xd4\x76\x8c\xf9\x7b\xaf\xc7\xd7\x4f\x4f\xdd\xff\xa6\x8f\xb5\x1d\xe3" "\x1b\x8f\x48\xdd\x1e\x43\xe3\x11\x79\x8f\xf7\x19\x8f\xab\x99\x6f\x3c" "\xae\xc1\xf1\xb8\x97\xf6\x78\x90\xf1\x1a\x00\x20\x6b\x71\xff\x7f\x52" "\x65\x7e\xfc\x7f\xff\x1f\xdf\xf9\x6e\xea\xf9\x56\x6f\x36\x7f\xff\xaf" "\xd7\xcf\xd4\x9f\x49\xc9\x3f\x51\x7f\x63\x7b\xfc\xfd\xbf\x7e\x7f\x3b" "\xdf\x71\x85\xbc\xc7\xcd\xf2\x1e\x9f\x79\xa9\xf7\xf7\xf2\x1e\x3f\xd5" "\x9f\x04\x00\x78\x79\x8b\xfb\xff\x93\x2b\xf3\xf1\xdf\xff\xbf\x5e\x99" "\x9f\x9c\x28\xaf\xff\x9d\x92\xff\x12\xf9\x7b\x62\xfd\xf1\x15\xfd\xfb" "\x9a\xf9\xfa\xf7\xfa\xf7\xa3\xe4\xeb\xdf\x03\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7f\x2c\xb6\xce\x7b" "\x74\xe9\xaa\x95\x4b\x6e\x2e\x15\x43\x88\x52\xca\xf4\xd5\x10\x3f\x56" "\x6c\xed\xe9\xe9\x6e\xa2\xde\xb7\x5d\xfb\x42\x28\xdf\xf9\xbd\xb3\xab" "\x97\x95\x4b\x4d\x04\x01\x00\x00\x00\x75\xc5\xfd\xf0\xc2\xd0\x92\xb6" "\x50\x2e\xbd\x26\xb4\x45\xb3\xc2\x95\xad\x21\x54\x77\xc9\x8b\x35\xd6" "\xef\x4d\x19\x34\x68\x8d\x66\x85\xeb\x8a\x21\x14\xaa\x97\xd5\xe8\xdf" "\xc7\x63\x07\xfd\xf5\x5d\x3e\xa2\xbe\x91\xe1\x57\x56\xa6\x47\xbf\x62" "\x70\x3a\xa3\x6a\xfd\x1b\x13\xf5\x15\x6b\xb4\x38\x4a\xd4\x5b\xdd\xde" "\xab\x13\xeb\x17\x8a\xd1\x88\x06\x34\x33\xd6\x01\x00\x00\x00\x2f\xb6" "\xb8\xff\xdf\x3e\xb4\xa4\x2b\x94\x4b\x1b\x06\xfa\xc3\xdd\x51\x08\xed" "\x75\xd6\x6f\x8b\xa7\xd1\xac\xf0\x89\x30\xbc\x7c\xad\xf1\x82\xdd\x47" "\x19\x2f\xb8\xbb\xb0\x2d\x6f\x60\x59\x8d\x72\xdd\x55\xe5\x9f\x0c\x89" "\xf2\x35\xb2\xab\xcb\xff\x59\x94\x28\x5f\x18\xbd\xfc\xae\xa5\x44\xf9" "\x1a\x4f\xa8\xba\xfc\x03\x51\x08\x2d\xd5\xe5\x6b\x8c\x77\x9c\x52\x55" "\xfe\x13\xc9\xf6\xb7\x8d\x9e\x3f\x2b\x59\xbe\xc6\x8b\x53\x5d\x7e\xa7" "\x96\xe1\xdb\xb0\xb5\x73\xf4\xf2\x87\x17\x13\xed\x9f\x38\x7a\xf9\x5b" "\x4b\x89\xf2\xe5\xd1\xcb\x2f\x4c\x96\x9f\x34\x7a\xf9\x03\x42\x08\x13" "\xaa\xcb\x4f\x1e\xbd\xfc\xb9\x89\xfd\xaf\xb5\x6b\xf4\xf2\xbf\x2d\x24" "\xda\x33\x2d\xbd\x7c\xff\xfe\x7d\x7e\x69\xf8\xf6\xac\x35\x3e\x75\x5b" "\x5c\xbe\x32\x30\x55\x3d\x3e\x35\xab\x35\xb9\xfe\xc8\x1d\x70\xe8\xf5" "\x4d\x44\xf7\xaf\xbf\x61\xc4\xef\xd7\xc8\x1d\x72\xe8\x29\x27\xa2\xfb" "\x9f\xef\xda\xc4\xfa\xb5\xc6\xb7\x6a\x34\x09\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x68" "\x50\xfc\xfd\xff\x13\xa3\xed\xfb\xfd\xff\xcb\x9e\xdc\x78\xfb\xe2\x96" "\x43\x8f\xac\x5e\xe6\xfb\xff\x01\x00\x00\x20\x1f\x71\x3f\x7c\xdb\x57" "\xc3\xb5\x85\x72\x69\x72\x28\x86\x9d\x06\xe6\x3e\x91\x28\x1f\x2f\xff" "\x64\xca\xf2\xcb\x52\x96\x7f\x2a\x65\xf9\x17\x32\x78\x0e\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xf0\xa7\x2e\xbe\xfe\x7f\xf2\x76\xbe" "\xfe\x7f\xd3\xc5\x77\x1c\xfe\xa1\xa7\xbe\x7e\x7f\xf5\x32\xd7\xff\x03" "\x00\x00\x40\x3e\xe2\x7e\xf8\x84\xa1\x25\x6d\xa1\x5c\x2a\x85\x52\x78" "\xf5\xc0\x5c\x72\x4c\x20\xaa\x8c\x07\x6c\xe7\x66\x02\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xc0\xcb\x5a\x7c\xfd\x7f\x29\x0a\xa1\x30\x4a" "\xb9\xc5\x29\xcb\xa3\xd6\xd0\xd6\x4c\xbd\xf7\x4d\xbe\x7a\xef\x5f\xec" "\xbd\xf1\x86\xea\x65\xe5\xd2\x96\x42\x7b\xd8\x65\x30\xb7\xb2\x6c\x76" "\x65\x2e\xbe\xc7\x40\x94\x98\xa6\xa9\xe4\x44\x19\xe5\x14\x32\xca\x29" "\x66\x94\x53\xca\x28\xa7\x25\xa3\x9c\xd6\x8c\x72\x26\x64\x94\xd3\x96" "\x51\x4e\x7b\x46\x39\x1d\x19\xe5\x74\x66\x94\x33\x31\xa3\x9c\x72\x46" "\x39\x93\x32\xca\x99\x9c\x51\x4e\x57\x46\x39\x53\x32\xca\x99\x9a\x51" "\xce\x2b\x32\xca\x99\x96\x51\xce\x0e\x19\xe5\x4c\xcf\x28\x67\xc7\x8c" "\x72\x66\x64\x94\xb3\x53\x46\x39\x3b\x67\x94\xb3\x4b\x46\x39\xaf\xcc" "\x28\xe7\x55\x19\xe5\xcc\xcc\x28\xe7\xd5\x19\xe5\x74\x67\x94\xb3\x6b" "\x46\x39\xb3\x32\xca\x99\x9d\x51\xce\x6b\x32\xca\x79\x6d\x21\x9b\x9c" "\xdd\x32\xca\xd9\x3d\xa3\x9c\xd7\x65\x94\xb3\x47\x46\x39\xaf\xcf\x28" "\x67\xcf\x8c\x72\xf6\xca\x28\x67\xef\x8c\x72\xf6\xc9\x28\x67\xdf\x8c" "\x72\xe6\x64\x94\x33\x37\xa3\x9c\xfd\x32\xca\xd9\x3f\xa3\x9c\x03\x32" "\xca\x39\x30\xa3\x9c\x83\x32\xca\x79\x43\x46\x39\x07\x67\x94\xf3\xc6" "\x8c\x72\x0e\xc9\x28\x67\x5e\x46\x39\xf3\x33\xca\x39\x34\xa3\x9c\x37" "\x65\x94\xf3\xe6\x8c\x72\x7a\x32\xca\x59\x90\x51\xce\x61\x19\xe5\x1c" "\x9e\x51\xce\xc2\x8c\x72\x8e\xc8\x28\xe7\xc8\x8c\x72\x8e\xca\x28\xe7" "\xe8\x8c\x72\x8e\xc9\x28\xe7\xd8\x8c\x72\x8e\x2b\x66\x93\xf3\x96\x8c" "\x72\xde\x9a\x51\xce\xf1\x19\xe5\x9c\x90\x51\xce\xa2\x8c\x72\xde\x96" "\x51\xce\xe2\xf1\xe6\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd9\x89\xbf" "\xff\x3f\x1a\xe5\xfb\xff\xfb\x6a\x88\x1f\x2b\xb6\xf6\xf4\x74\x37\x51" "\xef\x51\xed\x97\x3e\xd6\x7d\xf1\x1b\x96\x56\x2f\x2b\x97\xce\x0f\x93" "\xc3\xab\x06\xea\x0b\x5d\xc3\xcb\x4f\xa8\x4c\xf7\x3e\x61\x6b\xd7\xdf" "\xdc\x7d\xe6\x03\x21\xcc\x99\x7e\xff\xcc\x52\x6a\xfe\xbe\x9f\xdd\x74" "\xc8\x9c\x1a\xff\x8e\x50\x79\xd2\x5d\x95\x7a\xa3\x94\x7a\x3f\xbc\xe4" "\xf4\x57\x2c\x88\x0a\xfb\x86\x30\x67\x87\xe2\x2b\xc7\x5d\x6f\xd4\xd3" "\x77\xe8\xec\xdf\x1f\xfe\xb9\x42\x71\xe7\xe1\xf5\x17\x12\xf5\xb7\x55" "\xa6\x67\x6f\x79\xf3\x41\x6f\xba\x63\xe7\x1f\xf5\xd7\x3f\xda\xf3\xbe" "\xe1\x96\x85\x87\xcd\xa9\xf1\xef\xc8\xfa\x2f\x5c\x30\x7b\x79\xef\xc3" "\x0f\x76\x0f\xaf\xbf\x98\x52\xff\xfa\x49\x1f\x9c\x7e\xeb\xb1\xa7\x3c" "\x33\x58\x7f\xdb\x78\xeb\x6f\xef\xe9\xbb\xf5\xfa\x7b\x1f\xbf\xe4\xd4" "\x79\x2b\x06\x17\x4c\xac\xd4\x5f\x4a\xa9\xff\xea\xb9\x2d\x5b\xbf\xf2" "\xcb\xf7\x7c\x78\x43\x98\x53\x7a\xea\xd5\x1d\x63\xae\x3f\x7e\x7e\x2d" "\x29\xf9\x5f\xed\xbe\x66\xcd\x1e\xef\xbc\xff\xd7\x19\x3d\xbf\xa8\xa7" "\x6f\xa7\x8d\x3f\xbd\x6b\xf5\x5d\xbd\xfb\x0d\x2e\x88\xeb\x6f\x4d\xd4" "\xdf\x5e\x99\x76\x7c\x73\xf5\x8a\x0d\xa7\xdf\x79\x45\x76\xf5\x6f\x3e" "\x60\xcf\xb3\xae\x5a\x78\xf9\xdc\xe1\xf5\x4f\x48\xa9\xff\xc4\x0f\x7c" "\xea\xe7\xbd\x5f\x9a\xb5\x67\x76\xf5\xdf\xfb\xf4\xaa\x3b\x2e\x5f\x74" "\xfb\x94\xd4\x28\x00\x00\x60\x3b\x8b\xfb\xe1\xdb\x7a\x54\x6d\xa1\x5c" "\x5a\x96\xda\x0f\x8f\xfb\x0b\x63\xeb\x87\x57\xf7\x14\xe2\xfe\x70\x62" "\x9d\x44\x3f\x3c\xd9\x0f\x8d\xdb\x97\xec\x87\xc6\x3d\x95\x9d\x13\x71" "\xcd\xf6\x43\xbb\x52\xfa\xa1\xf1\xf3\x8e\xfb\xa1\xfd\xf5\xf7\xf7\x43" "\xe3\xfa\x77\x0f\xcd\xd6\xff\xb1\x65\x7d\x7b\x3c\xf7\xb3\xc3\xde\x37" "\xbc\xfe\x64\x3f\x35\xae\x3f\xd9\x4f\x6d\x4b\x6c\x9f\x31\xd6\xdf\x70" "\x3f\x35\xce\x4f\xf6\x53\x67\x54\x96\xbf\x6e\x76\xa3\xf5\x17\x12\xf5" "\x1f\x7b\xd3\xc6\xcf\x6f\xf9\xcc\xe2\x23\x86\xd7\xdf\x68\x3f\x35\x7e" "\xfe\xbd\x4d\x3f\x7f\xfd\x54\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xe0\xa5\x21\xbe\xfe\xbf\x14\x85\x50\x0c\x21\x44\x21\x84\xc5\x89\x32" "\x79\x5c\xff\x7f\xe5\x8a\xa7\xbf\xb2\xfb\xd3\xfb\x9f\x53\xbd\xac\x5c" "\xfa\xdb\x62\x67\xd8\x65\xe0\xe7\xb7\x27\xca\x17\x2b\xd3\xc1\x8f\x99" "\x47\x21\xae\x33\x4a\x4c\xd3\xc4\xb9\x27\xe6\x94\xfb\x8e\x9c\x72\xdf" "\x99\x53\xee\x9f\xe5\x94\x7b\x52\x4e\xb9\x7f\x9e\x53\xee\x92\x9c\x72" "\xdf\x95\x53\xee\xc9\x39\xe5\x2e\xcd\x29\xf7\x2f\x72\xca\x5d\x96\x53" "\xee\x29\x39\xe5\x2e\xcf\x29\xf7\xdd\x39\xe5\xae\xc8\x29\x37\x79\x9d" "\x4e\x56\xb9\x2b\x73\xca\x5d\x95\x53\xee\x7b\x72\xca\x3d\x35\xa7\xdc" "\xd3\x72\xca\x3d\x3d\xa7\xdc\x33\x72\xca\x5d\x9d\x53\xee\x7b\x73\xca" "\x3d\x33\xa7\xdc\x35\x39\xe5\x9e\x95\x53\xee\xfb\x72\xca\x5d\x9b\x53" "\xee\xba\xc4\xf2\x52\x46\xb9\xeb\x73\xca\x3d\x3b\xa7\xdc\xf7\xe7\x94" "\x7b\x4e\x4e\xb9\x1f\xc8\x29\xf7\xdc\x9c\x72\xcf\xcb\x29\xf7\xfc\x9c" "\x72\x3f\x98\x53\xee\x87\x72\xca\xfd\x70\x4e\xb9\x7f\x99\x53\xee\x86" "\x3a\xb9\x6d\x4d\xe6\x5e\x9c\x58\x5e\x18\x96\x5b\x6c\xba\xbd\x7f\x9d" "\x58\xde\x52\x27\x37\xf9\xfc\xd2\x72\x37\xe6\x94\xfb\xc9\x9c\x72\xbf" "\x91\xd8\x60\x59\xed\x0f\xb7\xe5\x94\xfb\xcd\x9c\x72\xbf\x95\x53\xee" "\xed\x39\xe5\xde\x91\x53\xee\x9d\x39\xe5\x7e\x3b\xa7\xdc\xbb\x72\xca" "\xbd\x7b\x8c\xb9\x8d\xfe\xbe\x7d\x27\xa7\xdc\xef\xe6\x94\xfb\x6f\x39" "\xe5\x7e\x2f\xa7\xdc\xef\xe7\x94\x7b\x4f\x4e\xb9\xf7\xe6\x94\x7b\x5f" "\x4e\xb9\x3f\xc8\x29\xf7\xfe\x9c\x72\x7f\x98\x53\xee\xbf\xe7\x94\xfb" "\x40\x4e\xb9\x3f\xca\x29\xf7\xc7\x39\xe5\xfe\x24\xa7\xdc\x9f\x26\x72" "\x5b\x32\xca\xfd\x8f\x9c\x72\x7f\x96\x53\xee\x83\x39\xe5\x3e\x94\x53" "\xee\xcf\x73\xca\x7d\x38\xa7\xdc\x47\x32\xce\x85\x3f\x26\xf1\xdf\xe1" "\xdb\x87\x96\x74\x85\x72\x69\x6e\x21\xde\xff\x2f\x48\x94\x6f\xad\x4c" "\x07\xf7\xff\x42\xd3\xbf\x57\x17\xe6\x94\xfb\x91\x9c\x72\xff\x2a\xa7" "\xdc\x8f\xe6\x94\xfb\xb1\x9c\x72\x3f\x9e\x53\xee\x45\x39\xe5\x7e\x22" "\xb1\x3c\xab\xf1\x96\x4b\x72\xca\xbd\x2c\xb1\xbc\x35\xa3\xdc\xff\x27" "\xa7\xf6\x7e\x2a\xa7\xdc\x2b\x12\xcb\xb3\xda\x0e\x57\x26\x96\xb7\xd5" "\xc9\xad\x37\xd0\x10\xe7\xfe\x5d\x4e\xb9\x5f\xc8\x29\xf7\x9a\x9c\x72" "\xaf\xcd\x29\xf7\x1f\x73\xca\xbd\x3e\xb1\xbc\x3d\xa3\xdc\xff\xcc\xe9" "\x7c\xf4\xbf\x72\xca\xfd\x45\x4e\xb9\x8f\xe6\x94\xfb\xcb\x9c\x72\x7f" "\x95\x53\xee\x7f\xe7\x94\xfb\x3f\x39\xe5\xfe\x6f\x4e\xb9\x5b\x72\xca" "\xfd\x75\x22\xb7\x35\xa3\xdc\xc7\x72\xca\x7d\x3c\xa7\xdc\x27\x72\xca" "\x7d\x32\xa7\xdc\xdf\xe4\x94\xfb\x7f\x39\xe5\x3e\x95\x53\xee\x6f\x73" "\xca\x7d\x3a\xa7\xdc\xdf\xe5\x94\xfb\x4c\x4e\xb9\xcf\xe6\x94\xfb\x5c" "\x4e\xb9\xbf\xcf\x29\xf7\x0f\x39\xe5\x6e\xcd\x29\xf7\xf9\x9c\x72\x5f" "\xc8\x29\xb7\x2f\xe3\x5c\x00\x00\x00\xc8\x42\x7c\xfd\xff\xa4\x28\xfd" "\x4f\x1b\x79\x5c\xff\xff\xc5\x7d\xae\xbd\xe7\x35\x33\xae\xdf\x54\xbd" "\xac\x9c\xfe\x35\x82\x00\x00\x00\xc0\x38\xc4\xfd\xf0\xd6\xa1\x25\x6d" "\xa1\x5c\x9a\x1d\x66\x87\x99\x2f\x6a\xbb\xea\x8b\xea\x5e\x03\x0c\x00" "\x00\x00\x0c\x8a\xfb\xff\x9d\x43\x4b\xba\x5e\x1a\xfd\xff\x28\x0a\x83" "\xff\x4b\x0c\x03\x44\x35\x7f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x5c\xc5\xdf" "\xff\x5f\xde\xce\xdf\xff\x7f\xe4\xb2\x49\xf3\x8f\xbb\x7c\xe9\x3e\xd5" "\xcb\x7c\xff\x3f\x00\x00\x00\xe4\x23\xee\x87\x17\x86\x96\xb4\x85\x72" "\x69\x42\x98\x10\x5e\x59\x99\x3f\x62\x58\xf9\x52\x54\x1c\x98\x76\xd7" "\x19\x17\x00\x00\x00\x00\xfe\x78\xc4\xfd\xff\xf6\xa1\x25\x5d\xa1\x5c" "\x5a\xb7\xad\xff\xbf\x61\xe1\xb0\xf2\xd3\xea\xf4\xff\x8b\x43\x25\x87" "\x8f\x1b\x6c\xcb\x1b\xbe\x7c\x62\x9d\xbc\x6d\xe3\x10\x47\x0e\x5b\x6f" "\x72\xa3\xeb\x6d\x18\xbe\x5e\xf5\xf8\x45\xbf\xc5\x89\xed\xb1\xad\xbe" "\xa3\x86\xaf\x57\x68\xb4\x9d\x47\xa7\xd6\x37\x7a\x3b\x87\xaf\x37\xa9" "\xe1\xf5\x8e\x19\xb6\x5e\xb9\xe1\xed\x79\xdc\xb0\xf5\x3a\x1b\xae\xef" "\xad\xc3\xd6\x6b\x6f\xb8\xbe\x13\x86\xad\xd7\xd6\x70\x7d\x8b\x86\xad" "\x17\x35\x5c\xdf\xf0\x57\xb6\xd0\x70\x7d\x6f\x0f\xc3\x2b\x6c\xb4\xbe" "\x77\x0c\x5b\xad\xd8\x70\x7d\xef\x1c\xb6\x5e\x97\xf1\x35\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x68\xda\xd6\x79\x8f\x2e\x5d\xb5\x72\xc9\xcd\x9d\x51\x08\x51\x4a" "\x99\xbe\x1a\xe2\xc7\x8a\xad\x3d\x3d\xdd\x4d\xd4\x7b\xcb\x11\x53\x17" "\x5d\x74\xdf\x6f\x36\x57\x2f\x2b\x97\x9a\x08\x02\x00\x00\x00\xea\x8a" "\xfb\xe1\xed\x43\x4b\xda\x42\xb9\x34\x3f\xb4\x44\x3b\x0d\x2b\x17\x8f" "\x0d\x5c\x92\x58\x3f\xad\xdc\x65\x0d\x96\xfb\x54\x9d\x72\x85\xca\xf4" "\x8a\x3a\xe5\xe2\xa1\x83\x2b\x1b\xcc\xfb\xbb\x06\xcb\x7d\xa1\xc1\x72" "\xd7\x34\x58\xee\xda\x06\xcb\xfd\x63\x83\xe5\xae\xaf\x53\x6e\x6a\x65" "\x43\x7f\x23\x6d\x70\x07\x00\x00\x80\x97\x85\xb8\xff\xdf\x39\xb4\xa4" "\x2b\x94\x4b\xbb\x86\x62\x65\xae\x5e\x3f\xbe\xd1\x7e\x68\xdc\xfd\xbc" "\xb1\xc1\x72\xff\xdc\x60\xb9\x2f\x37\xd8\xbe\x7f\xad\x53\xae\x55\x3f" "\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x78\x89\xdb\x3a\xef\xd1\xa5\xab\x56\x2e\xb9\xb9\x3d\x0a" "\x21\x4a\x29\xd3\x57\x43\xfc\x58\xb1\xb5\xa7\xa7\xbb\x89\x7a\x2f\xbe" "\xee\xc4\x13\x1e\xfb\xe1\x15\x73\xab\x97\x95\x4b\x4d\x04\x01\x00\x00" "\x00\x75\xc5\xfd\xf0\x09\x43\x4b\xda\x42\xb9\xd4\x11\x3a\xc2\xf4\x81" "\xb9\xea\xbe\x7e\xbf\x42\x62\xfd\x28\xa4\x8f\x1b\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x40\x56\xb6\xce\x7b\x74\xe9\xaa\x95\x4b\x6e\x6e\x8b" "\x42\x88\x52\xca\xf4\xd5\x10\x3f\x56\x6c\xed\xe9\xe9\x6e\xa2\xde\xdb" "\x6e\xdc\xb2\x60\xf3\xc1\x9b\x77\xa9\x5e\x56\x2e\x35\x11\x04\x00\x00" "\x00\xd4\x15\xf7\xc3\x27\x0c\x2d\x69\x0b\xe5\x52\x5b\x68\x0b\x3b\x0c" "\xcc\xd5\x1a\x13\x18\xe8\xff\x77\x6d\xc7\x46\x02\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xf0\xb2\xb7\x75\xde\xa3\x4b\x57\xad\x5c\x72\x73\x14\x85" "\x10\xa5\x94\xe9\xab\x21\x7e\xac\xd8\xda\xd3\xd3\xdd\x44\xbd\x1f\x59" "\x7a\xd5\x83\x77\xf5\x5e\x52\xa8\x5e\x56\x2e\x35\x11\x04\x00\x00\x00" "\xd4\x15\xf7\xc3\xdb\x87\x96\xb4\x85\x72\xe9\xfc\x30\x39\xbc\x6a\xa0" "\xdf\x1f\xba\x86\x97\x9f\x50\x99\xee\x7d\xc2\xd6\xae\xbf\xb9\xfb\xcc" "\x07\x42\x98\x33\xfd\xfe\x99\xe9\x1d\xf7\x7d\x3f\xbb\xe9\x90\x39\x35" "\xfe\x1d\xa1\x32\x12\xd0\x55\xa9\x37\x4a\xa9\xf7\xc3\x4b\x4e\x7f\xc5" "\x82\xa8\xb0\x6f\x08\x73\x76\x28\xbe\x72\xdc\xf5\x46\x3d\x7d\x87\xce" "\xfe\xfd\xe1\x9f\x2b\x14\x77\x1e\x5e\x7f\x21\x51\x7f\x5b\x65\x7a\xf6" "\x96\x37\x1f\xf4\xa6\x3b\x76\xfe\x51\x7f\xfd\xa3\x3d\xef\x1b\x6e\x59" "\x78\xd8\x9c\x1a\xff\x8e\xac\xff\xc2\x05\xb3\x97\xf7\x3e\xfc\x60\xf7" "\xf0\xfa\x8b\x29\xf5\xaf\x9f\xf4\xc1\xe9\xb7\x1e\x7b\xca\x33\x83\xf5" "\xb7\x8d\xb7\xfe\xf6\x9e\xbe\x5b\xaf\xbf\xf7\xf1\x4b\x4e\x9d\xb7\x62" "\x70\xc1\xc4\x4a\xfd\xa5\x94\xfa\xaf\x9e\xdb\xb2\xf5\x2b\xbf\x7c\xcf" "\x87\x37\x84\x39\xa5\xa7\x5e\xdd\x31\xe6\xfa\xe3\xe7\xd7\x92\x92\xff" "\xd5\xee\x6b\xd6\xec\xf1\xce\xfb\x7f\x9d\xd1\xf3\x8b\x7a\xfa\x76\xda" "\xf8\xd3\xbb\x56\xdf\xd5\xbb\xdf\xe0\x82\xb8\xfe\xd6\x44\xfd\xf1\xfe" "\xdf\xf1\xcd\xd5\x2b\x36\x9c\x7e\xe7\x15\xd9\xd5\xbf\xf9\x80\x3d\xcf" "\xba\x6a\xe1\xe5\x73\x87\xd7\x3f\x21\xa5\xfe\x13\x3f\xf0\xa9\x9f\xf7" "\x7e\x69\xd6\x9e\xd9\xd5\x7f\xef\xd3\xab\xee\xb8\x7c\xd1\xed\x53\x52" "\xa3\x00\x00\x80\x97\x89\xb8\xff\xbf\xad\xa7\xd1\x15\xca\xa5\xae\x17" "\xbd\x1f\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x63\xb1\x75\xde\xa3\x4b\x57\xad\x5c" "\x72\x73\x21\x0a\x21\x4a\x29\xd3\x57\x43\xfc\x58\xb1\xb5\xa7\xa7\xbb" "\x89\x7a\xdb\x6f\xfb\xf1\x82\x8f\x9f\x17\x6e\xa9\x5e\x56\x2e\x35\x11" "\x04\x00\x00\x00\xd4\x15\xf7\xc3\xdb\x87\x96\xb4\x85\x72\xe9\xf5\xa1" "\x35\x74\x0c\xf4\xfb\xef\x7d\x7a\xd5\x1d\x97\x2f\xba\x7d\x4a\xe8\x1a" "\x7c\x74\x42\x65\xda\xb6\xea\xb4\xd5\x2b\xf7\x59\xb1\x66\x75\xef\xe0" "\x7c\x5c\xfe\xd0\xd9\xbf\x3f\xfc\x73\x85\xe2\xce\x71\xf9\xa8\x32\x2d" "\xad\x5e\xb3\x6e\xfd\x9e\xab\xd6\x9c\x7d\xe6\xe0\x0a\x2d\x95\xf2\x17" "\x2e\x98\xbd\xbc\xf7\xe1\x07\xbb\xe3\xf2\x85\xb8\x7c\x7f\xfe\x9c\x6d" "\xe5\x36\x1f\xb0\xe7\x59\x57\x2d\xbc\x7c\x6e\x5c\xae\xb5\xba\x1d\xfb" "\x6d\x2b\xb7\xd3\xc6\x9f\xde\xb5\xfa\xae\xde\xfd\xe2\x72\x2d\xd5\xe5" "\xe6\x6e\x2b\x77\xec\x4d\x1b\x3f\xbf\xe5\x33\x8b\x8f\xa8\x99\xb7\xff" "\xb6\x72\xb7\x5e\x7f\xef\xe3\x97\x9c\x3a\x6f\x45\xdc\xae\x62\x75\xb9" "\xaa\xf6\x7d\x6c\x59\xdf\x1e\xcf\xfd\xec\xb0\xf7\x0d\xb5\xbf\x32\xed" "\xa8\xd4\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xf8\x6c\x9d\xf7\xe8" "\xd2\x55\x2b\x97\xdc\x1c\xa2\xd0\xff\xff\x9a\xfa\x6a\x88\x1f\x2b\xb6" "\xf6\xf4\x74\x37\x51\xef\xa7\xd7\x3c\xdb\x73\xe9\x4d\x1d\xdf\xae\x5e" "\x56\x2e\x35\x11\x04\x00\x00\x00\xd4\x15\xf7\xc3\xdb\x87\x96\xb4\x85" "\x72\x69\x76\xe8\x88\xa6\x0c\x2b\xd7\x56\x19\x07\x68\xab\xcc\x97\xba" "\x06\xa7\xfb\xae\x7f\xef\x59\xfb\xae\x3b\xf7\xbc\xbd\x4f\x7b\xef\xf2" "\xf7\xac\x7c\xcf\xca\x33\xf7\xdf\xef\xc0\xfd\x0e\x7c\xc3\x81\x6f\x3c" "\xf0\x80\x7d\x57\x9d\xb6\x7a\xe5\x9c\xc1\x7f\xc3\x84\x3a\x79\x2d\x95" "\xbc\x75\xe7\x9e\x77\xc6\xf2\xd5\xab\x57\xae\x5d\x37\x38\x3f\xb5\xce" "\x7a\x13\x46\xac\x97\xdf\x0f\x19\x6d\x72\x00\x00\x00\xd8\xee\xe2\xfe" "\x7f\xc7\xd0\x92\xae\x50\x2e\x4d\x0c\xad\x51\xeb\xb0\x72\xc9\x7e\x77" "\xb1\xd2\xef\x8e\xde\x3d\xf8\xa9\x81\x64\xf9\x19\x95\xf2\x33\x2a\xf3" "\xad\x95\xf2\x17\xbc\x3b\xed\x53\x06\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd0\xbc\xad" "\xf3\x1e\x5d\xba\x6a\xe5\x92\x9b\x8b\x51\x08\x51\x4a\x99\xbe\x1a\xe2" "\xc7\x8a\xad\x3d\x3d\xdd\x4d\xd4\xfb\xc8\x6e\xb7\x4e\x7e\xfb\xce\x7d" "\xdf\xad\x5e\x56\x2e\x35\x11\x04\x00\x00\x00\xd4\x15\xf7\xc3\xdb\x86" "\x96\xb4\x85\x72\xa9\x23\xb4\x84\xce\x81\x7e\xff\x25\x5b\xdf\x17\xfd" "\xdf\xbe\xef\x9a\xdd\xd2\x55\x79\xb8\xb5\x35\x7c\x60\xf9\xfa\xf5\x6b" "\xe7\x0e\xfe\x1b\x97\x3b\xaa\x30\x7f\xdf\x47\x3e\xf7\xd7\xbb\x8d\x28" "\xb7\xdf\xe0\xbf\x2f\xca\x93\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0" "\x4f\xc6\xd6\x79\x8f\x2e\x5d\xb5\x72\xc9\xcd\xa1\x18\x42\x94\x52\xa6" "\xaf\x86\xf8\xb1\x62\x6b\x4f\x4f\x77\x13\xf5\x2e\x9d\xfb\xad\x6b\x4e" "\x7e\xfd\x96\x73\xaa\x97\x95\x4b\x4d\x04\x01\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x9f\x80\xf8\xfa\xff\x52\x14\x42" "\x29\x0c\xde\x03\xe0\xee\xc4\x8d\x00\xf2\xb8\xfe\x7f\xfe\xf9\x0f\xfd" "\x6a\xcb\xa6\x85\x27\x54\x2f\x2b\x97\x16\x17\x3a\xc3\x2e\x03\x3f\x7f" "\x27\xd1\x86\xf8\xd6\x00\xb3\x07\xfe\x8d\x42\x5c\x67\x5c\x6c\x43\x9d" "\xfa\xe2\xdc\xef\xe6\x94\xfb\x6f\x39\xe5\x7e\x2f\xa7\xdc\xef\xe7\x94" "\x7b\x4f\x4e\xb9\xf7\xe6\x94\x7b\x5f\x4e\xb9\x3f\xc8\x29\xf7\xfe\x9c" "\x72\x7f\x98\x53\xee\xbf\xe7\x94\xfb\x40\x4e\xb9\x3f\xca\x29\xf7\xc7" "\x39\xe5\xfe\x24\xa7\xdc\x9f\x26\x72\x5b\x32\xca\xfd\x8f\x9c\x72\x7f" "\x96\x53\xee\x83\x39\xe5\x3e\x94\x53\xee\xcf\x73\xca\x7d\x38\xa7\xdc" "\x47\x72\xca\xfd\xcf\x9c\x72\xff\x2b\xa7\xdc\x5f\xe4\x94\xfb\x68\x4e" "\xb9\xbf\xcc\x29\xf7\x57\x39\xe5\xfe\x77\x4e\xb9\xff\x93\x53\xee\xff" "\xe6\x94\xbb\x25\xa7\xdc\x5f\x27\x72\x5b\x33\xca\x7d\x2c\xa7\xdc\xc7" "\x73\xca\x7d\x22\xa7\xdc\x27\x73\xca\xfd\x4d\x4e\xb9\xff\x97\x53\xee" "\x53\x39\xe5\xfe\x36\xa7\xdc\xa7\x73\xca\xfd\x5d\x4e\xb9\xcf\xe4\x94" "\xfb\x6c\x4e\xb9\xcf\xe5\x94\xfb\xfb\x9c\x72\xff\x90\x53\xee\xd6\x9c" "\x72\x9f\xcf\x29\xf7\x85\x9c\x72\xfb\x32\xce\x05\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x88\x55\x7f\xff\x7f\x4b\xe5\x7b\xd1\x16\xd7\x28\x77" "\x77\x54\x7b\xfd\xa8\x35\x74\xb5\x55\xcd\xd7\x5a\xb7\x96\xfd\x2f\xba" "\xf6\x75\xff\x70\xd5\x86\x4b\xaa\x97\x95\x4b\x5b\x0a\xed\x03\xdf\xe3" "\x16\x85\x62\x65\x59\xda\xf7\xb6\xa5\x34\x67\xc8\x60\x4e\x21\xa3\x9c" "\x62\x46\x39\xa5\x8c\x72\x5a\x32\xca\x69\xcd\x28\x67\x42\x46\x39\x6d" "\x19\xe5\xb4\x67\x94\xd3\x91\x51\x4e\x67\x46\x39\x13\x33\xca\x29\x67" "\x94\x33\x29\xa3\x9c\xc9\x19\xe5\x74\x65\x94\x33\x25\xa3\x9c\xa9\x19" "\xe5\xbc\x22\xa3\x9c\x69\x19\xe5\xec\x90\x51\xce\xf4\x8c\x72\x76\xcc" "\x28\x67\x46\x46\x39\x3b\x65\x94\xb3\x73\x46\x39\xbb\x64\x94\xf3\xca" "\x8c\x72\x5e\x95\x51\xce\xcc\x8c\x72\x5e\x9d\x51\x4e\x77\x46\x39\xbb" "\x86\x52\x26\x39\xb3\x32\xca\x99\x9d\x51\xce\x6b\x32\xca\x79\x6d\x46" "\x39\xbb\x65\x94\xb3\x7b\x46\x39\xaf\xcb\x28\x67\x8f\x8c\x72\x5e\x9f" "\x51\xce\x9e\x19\xe5\xec\x95\x51\xce\xde\x19\xe5\xec\x33\x22\xa7\xad" "\xa9\x9c\x7d\x13\xdf\x53\x5d\x18\xf3\xf7\x54\x0f\xe6\xcc\xc9\x28\x67" "\x6e\x46\x39\xfb\x65\x94\xb3\x7f\x46\x39\x07\x64\x94\x73\x60\x46\x39" "\x07\x65\x94\xf3\x86\x81\xbe\xfb\xb6\x9c\x62\x93\x39\x07\x0f\xcd\x77" "\x27\xf6\xdd\xb1\xed\xcf\x6f\xcc\xa8\x3d\x87\x84\x09\x55\x39\x51\xd3" "\x39\xf3\x32\x6a\xcf\xfc\x8c\x72\xde\x94\x78\xdd\x9b\xcd\x79\x73\x46" "\xed\x59\x90\x51\xce\xc2\x8c\x9e\xd7\x31\x43\xef\xa3\x69\x39\xf5\x76" "\xc4\xc1\x9c\xb7\x64\x94\x73\x42\x46\x39\x8b\x33\xca\x79\x47\x46\x39" "\x27\x65\x94\xb3\x24\x74\xd4\xc9\xd9\xd0\x50\xce\xbb\x42\x7b\x26\xed" "\x39\x39\xa3\xf6\x9c\x19\x65\x73\x9e\xb0\x26\xa3\x9c\xb3\x32\xca\x79" "\x5f\x46\x39\x6b\x33\xca\x59\x97\x51\xce\xfa\x8c\x72\xce\xce\x28\xe7" "\xfd\x19\xe5\x9c\x53\x37\xa7\xde\xfb\x2a\x00\x40\x2c\xfe\x3b\x7c\xe7" "\xd0\x92\xae\x50\x2e\x9d\x3d\x34\xae\x10\x2f\xdf\x75\xe0\x5c\xa3\x7d" "\xa8\xd4\x58\xfb\xcd\x1d\x99\xe4\x1c\x3a\xd4\x9e\xf1\x9d\xd7\xbf\x29" "\xa3\xf6\x2c\xc8\x68\xfb\x9c\x50\x37\xa7\xd1\x7e\x58\x2c\x6d\xfc\xa6" "\xb1\xed\xf3\x17\x19\xf5\x9f\x96\x25\x72\x4a\x4d\xe6\x9c\x92\x51\x7b" "\xde\x9d\xd1\xfe\xd3\x9b\x51\xce\x7b\xc6\x9d\x03\x00\x00\x00\x00\x00" "\x00\xbc\x7c\xad\x3b\xf7\xbc\x33\x96\xaf\x5e\xbd\x72\xad\x1f\xfc\xe0" "\x07\x3f\x0c\xfd\xf0\x62\xbf\x33\x01\x00\x00\x00\x00\x00\x00\x00\x00" "\xf0\xff\xb3\x77\xff\x3e\x52\xd4\x7d\x1c\xc0\xbf\xb3\x3b\xbb\xec\x01" "\x0b\xf7\x10\xf2\xe4\xe0\x79\xa2\x17\x1b\x20\x11\x7b\x95\xe2\x02\xa8" "\x28\x08\x04\xe2\x2f\x44\x43\xa1\x36\x8a\xb1\xb1\x22\x31\x67\x6d\xfc" "\x07\x88\x24\x06\x62\x63\x63\x41\x8c\x9d\x89\x05\x05\x76\x1a\x43\x49" "\x2c\x34\x9a\x50\xda\x98\x88\x8c\x99\xdd\x99\xdb\xfd\xce\xcc\x32\x13" "\xe2\x8f\x04\x5f\xaf\x82\xb9\x9b\xfd\xbc\xbf\x9f\xef\xcc\x0d\xc5\xe7" "\x8a\x1b\x00\x00\x00\x00\x00\x28\xdf\xff\xbf\x33\x59\xfc\x27\xe6\xb3" "\x06\xe5\x67\xfd\xe1\xda\xda\xea\x3d\xf4\x7d\xe4\xe2\xef\x7b\x8e\x7f" "\xbb\xef\xb1\xf9\x73\xe3\xf4\x7f\x61\x29\xec\x98\x7c\x7d\xaa\x1a\x38" "\x70\xfa\xe1\xf5\x4b\x59\xf6\xcd\xf6\xcb\xfb\x7f\xd8\xff\xe1\x67\xcb" "\x0b\xd6\x4d\x76\x4f\xaf\xa2\x5c\xe7\xfa\x82\x8b\x2a\xdf\x7b\xb0\x5c" "\xfc\xad\xf5\x6a\xbf\xe4\xdc\x6c\x9d\xc6\xeb\x3f\xf8\xc1\xbb\xef\x5d" "\xca\xb2\x03\x17\x6e\xfe\x74\xeb\xca\xe1\x13\xe5\x3a\xd5\x7e\xc9\x59" "\x7f\xc0\x1d\x00\x00\x80\x7f\x5e\x39\x87\x8f\x37\xce\x8c\xc2\x38\x5d" "\xea\x3c\x3f\xaf\xb4\xcc\xcf\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x70\x3f\x28\xdf\xff\xbf\xf9\x6f\x7e\xff\xff\x8d\xff\x7e\xfe\xdb\xd5" "\xf3\xdf\x7f\x3d\x7f\x6e\x9c\xde\xc3\x42\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xf0\x27\x28\xdf\xff\x3f\x4e\x42\xe8\x2d" "\xa8\xf9\x2b\xde\xff\x7f\xf3\xf2\xaf\xb7\xae\xbc\xb9\x74\x61\xfe\xdc" "\x38\x7d\x27\x6c\x0a\xff\x9f\x7e\xb3\x7e\x38\xaa\xdf\x99\xf4\x27\xc7" "\xd5\x05\xfb\x99\xe5\x9e\x88\x72\x5b\xbb\xe6\xc2\x93\x51\x6e\x7b\xe7" "\x7e\x71\x2e\x9d\xcb\xe5\x4e\x55\xae\x7b\xd6\xef\xa9\x38\xd7\xeb\xba" "\xcf\x23\x0b\xfb\xdd\x7d\x9f\x71\x6e\x5b\xe7\xdc\xd3\x51\x6e\xdc\xf9" "\x7e\x1e\x8d\x72\x5b\x3a\xf7\x7b\x36\xca\x2d\x75\xee\x77\x22\xca\x8d" "\x3a\xf7\x3b\x19\xe5\x92\xce\xfd\xe2\x9f\x6c\xaf\x73\xbf\xd3\x21\x6e" "\xd8\xb5\xdf\x73\x51\xac\xdf\xb9\xdf\xf3\x51\x6e\xb9\x25\x17\x00\x00" "\x80\xfb\x56\x39\x87\x6f\xd9\x38\x33\x0a\xe3\xf4\x78\xe8\x97\xdf\x56" "\xe6\xf0\x8d\xf3\x95\xf9\x75\x36\x6f\xc4\xe7\xdb\xe6\xa9\xd9\x7a\x47" "\x9a\xfb\x54\xe6\xcf\xd9\xf9\x93\xcd\xfd\xc3\x0b\xd1\xf9\xce\xf3\x71" "\x78\x71\x61\x2e\x77\x3d\x09\x0b\xae\x37\xce\x85\x90\x4e\xfe\x1d\x15" "\xfd\x46\xe5\xbe\x97\x2b\xb9\x8f\xeb\xb9\xbc\xd7\x4a\x91\x5b\x29\xce" "\x0e\xab\xb9\xf0\x52\x9c\xea\xfc\x7b\x83\x33\x51\x6e\x73\xe7\xfb\xf2" "\x72\x94\xeb\x3c\xff\xaf\x9f\x8d\x72\x6d\xbf\xbf\x09\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x2d\x6e\x3f\xfe\xe3\x2b\x6f\xbc\x7e\xe6\x6a\xda" "\x0f\xa1\xb7\xa0\x26\x6b\x50\x7e\x96\x0e\xd7\xd6\x56\x43\xd8\xdb\xb5" "\xdf\x8d\x24\x84\x41\x08\xe1\xda\x7f\x6e\xef\x3a\x75\xe7\xb5\x7d\xf3" "\x9f\x8d\xd3\xb7\xc2\x20\x3c\x94\x7f\xf9\x4c\x96\x65\xfd\xa6\xfc\xa8" "\x38\x6e\x9a\xd6\x5d\xbd\x93\x65\xfd\xa6\xc2\x3d\x49\x73\xff\x62\xfd" "\x5f\x42\x08\xfd\x61\xc3\xe7\xab\x71\xdd\xee\x2c\xcb\x7a\xc3\x86\xb5" "\x2a\x75\xef\x4f\xea\x1a\x6e\x60\xa5\xee\x68\x2f\xef\xdb\xb0\xe1\x4a" "\xdd\xc4\x30\xad\xd7\x9d\x8b\xeb\xf2\xeb\xef\x0d\x47\xad\xeb\x1d\x9b" "\xd4\x2d\xb5\xd6\x1d\xea\x87\x90\x0c\xb7\xb4\xd6\x9d\xcf\x6f\xc9\x70" "\x6b\x6b\xdd\xcf\xf9\x2d\x19\x8e\x5b\xeb\xde\x9e\xd4\x6d\x6b\xad\x7b" "\xf5\x4e\x96\x25\xc3\xed\xad\x75\x57\xf2\xe7\x62\xb8\xdc\x5a\xf7\xc0" "\xe4\x3a\x76\x2e\xae\x2b\x9e\xb3\x4f\x7a\x21\x24\xfd\x50\x7f\x10\xbe" "\x2a\x8e\xa3\x95\xe9\x71\x25\xce\x1d\x4b\x27\xb9\xfa\x83\xb1\xf1\x23" "\xab\x2c\x59\xe4\x3e\x9d\x3e\xd7\xf5\x07\x65\xe3\x92\x2a\x4b\x16\xd7" "\xf3\x51\x9e\xeb\xf5\x93\xfa\x46\x17\xfd\xe7\x06\x00\x00\xfe\x35\xca" "\x39\x7c\x36\xf2\x8d\xc2\x38\x3d\x54\xce\x21\x07\x93\x10\x9a\xc6\xd5" "\xf0\xe0\xdd\xe7\xeb\x8b\xbd\x10\x06\x4d\xf3\xeb\x7a\x5c\x97\xcf\x69" "\x83\xe1\xe6\x7a\x5d\x65\xfe\x7a\x74\xba\x8f\xfa\x4e\x76\x14\xc7\xb5" "\xca\x7c\x53\xe4\xbe\x4b\x42\x18\xf4\x43\x7d\x23\x49\xa5\x4f\x25\xb7" "\x67\xda\xaf\x3e\x30\x0f\xea\x5b\x9d\xcf\xed\xcd\xfb\x8d\xfa\xf5\xc1" "\xb3\xec\x37\xaa\x1c\x8b\xdc\xb5\x49\xae\x61\x60\x2d\x73\x2b\x95\x63" "\x71\xff\x76\xe5\xfb\x6c\x9a\xf7\xca\xfb\x51\xd4\x7d\x91\xaf\xdf\x4b" "\xeb\x75\x95\x79\xf8\xcb\xbc\x6e\x30\xff\x0b\x9e\x4a\x1d\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7f\xb0\x57\x77\x21" "\x52\x95\x61\x1c\xc0\x9f\x33\xbb\xe6\xce\xce\x8e\xeb\xca\xa6\x93\xc1" "\xb2\x7d\x50\x18\x2a\x78\xa1\x59\x28\x68\xf9\x99\xb5\x2d\x66\x10\x91" "\xe4\x85\x84\x64\x61\x14\x14\x24\xd1\x6a\x49\x61\x98\x5e\x44\x17\x75" "\x97\x51\x48\x84\x4a\xf4\x81\x62\xb5\x94\x09\x05\x89\x16\x51\x37\xa1" "\x10\xdd\x88\x58\x04\x65\xa5\x19\xa3\xe7\xc8\x7a\xdc\xc3\xca\x69\x21" "\xa8\xdf\x0f\xf4\x99\xf7\x9c\xf7\xfc\xf7\x99\x77\x9e\xd9\x05\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x80\x7f\x4f\xbd\xb5\xde\xda\xac\x9f\x6d\x7a\xec\xd7" "\x07\xbe\xdc\xb6\xe3\xbb\x07\x57\x1d\x1c\x98\xfb\xdb\x89\xea\x9c\xf5" "\x3f\xf4\xdc\xb4\xf4\x9a\x81\xa3\x87\x5e\xac\x9d\xfa\x71\xd3\x9e\x8d" "\x1f\xcf\x9c\xf7\x6c\xdf\x2d\x3b\x1f\x39\x31\xf7\x83\x99\x6b\x1f\x1f" "\x31\x78\xf6\xb9\x32\x29\x5d\xb6\x45\x24\x87\x93\x88\x75\x27\xba\x5f" "\xdd\xb5\xe5\xee\x46\xf3\x5a\x12\x11\x2d\x49\x65\x20\xa2\x6b\x43\x65" "\xb0\x2b\xc9\x25\xf4\xfe\x11\x11\xab\xd3\x7d\xf5\xd6\x9e\xb3\xff\x1f" "\x19\x3c\x77\x73\xe3\x9e\x67\xd6\x34\xeb\xc0\x0b\x63\x2f\x78\xa8\x33" "\x17\x92\x7f\x5f\x51\x6b\xc9\xfa\x39\x57\xdb\x2e\xec\x97\xff\x96\xee" "\x88\xa8\x45\xc4\xb6\x74\xbd\x71\xf7\x81\x39\x6f\x35\x96\x4d\xdd\xf9" "\xfb\xfb\xf7\xbc\xb7\x65\xc7\xd6\xa8\x64\x3b\x7b\x63\xec\x90\xb9\x8a" "\x79\xe3\x56\x8d\x66\x1f\x93\x86\xbc\x3e\xf5\x74\x44\x73\x0a\x1b\xe9" "\x1c\x26\xff\xa0\xaf\xfe\x88\x68\x1f\xb2\x1e\x69\x8c\x2f\x75\xcc\xa7" "\xa5\xb5\x92\x5b\xcf\xca\xed\xbb\x3c\xb7\xae\xe4\xd6\x93\xd3\x3a\x3f" "\xad\xdd\x69\x6d\xa4\xb5\x23\xad\xf9\x2f\x7f\x96\x73\x55\xae\xe6\xbf" "\xdf\xa3\x65\xed\xe9\x4b\xdb\x97\xf5\xd9\x32\x4a\x3f\x77\x52\x6e\x3d" "\x66\x94\x72\x33\xf9\x73\xcd\xeb\x49\xeb\xb4\x64\xf8\x7e\x46\xca\x4b" "\xd2\xcf\xb0\xf9\xaf\x5e\xb6\xc9\x4b\xd0\x3c\xef\x6a\x44\x6c\x48\xd7" "\xd9\xaf\xed\xe6\x3c\x8c\x6b\xde\x6b\xed\xcd\x3d\xd1\x11\xb7\xc7\x1d" "\xd1\x17\x0b\x62\x61\x2c\x8a\xc5\xb1\x24\x6e\x8b\xa5\xb1\x2c\xfa\xa3" "\xfd\xa2\xbd\xf5\x82\xbd\x5d\x49\x7f\x74\x5c\xb4\x3b\x89\xf1\x49\x4b" "\xda\x53\x4b\x12\x95\x24\x5a\xcf\x1f\xcb\x82\x24\xe2\xb2\x21\x7b\x3b" "\xcf\x3f\x53\xb9\xe0\xb3\x6d\xce\xf7\xd8\x61\xde\x67\x76\x3d\x0b\x1c" "\x48\x5f\xd4\xd2\x6b\xb5\x64\xc2\x45\xcf\x9c\x19\x46\x76\xef\xa5\x75" "\x27\xe7\x6d\xdd\xdd\x7e\xa0\x31\xdc\xa1\x36\x33\xfb\x92\x34\x3f\x29" "\x95\xbf\xb8\xba\xf5\x78\xef\xe6\x1b\x57\x8e\x2f\xca\xef\xc9\xf2\x2b" "\xa5\xf2\xab\x83\xdf\xce\x7f\xee\xc9\xd8\x57\x98\xbf\x24\xcb\x6f\x29" "\x95\x7f\xf4\xba\x0f\x3b\xef\x9a\x7c\xe6\x8b\xc2\xfc\x15\x59\x7e\x6b" "\x52\x26\x7f\xfa\x2b\xa7\xaf\xef\x3b\x3c\xe5\xe6\xc2\xfc\xd5\x59\x7e" "\x5b\xa9\xfe\x07\x77\x1d\x9b\xbf\x77\xf6\xde\x2b\x0b\xf3\xe7\x64\xf9" "\xd5\x52\xf9\x9b\x77\xac\xb8\xf3\xf8\xd7\x2f\xcf\x28\xcc\x9f\x95\xe5" "\xb7\x97\xca\xff\x66\xe2\xbb\x7f\xbe\xf3\xf0\x91\xcf\xdb\x8a\xf2\xd7" "\x64\xf9\xb5\x52\xf9\xfb\x16\x4e\xe8\x7f\xfe\xd0\xcf\x7b\x0b\xe7\x7f" "\x6a\x96\xdf\x51\x2a\xff\xfe\x9f\xb6\x7c\xba\x7c\xcc\xdc\x45\x85\xe7" "\x33\x31\xcb\xaf\x97\xca\xff\xfe\xb5\x93\xc7\xb6\xaf\xad\xae\x2f\xcc" "\x7f\x28\xcb\x1f\x57\x2a\xff\x8d\xe9\x6f\x1e\xbc\xb6\xf1\xf6\xf6\xc2" "\xf3\xb9\x3a\xcb\xef\x2c\x95\xbf\x7d\xf3\xfe\x5b\x9f\xfa\xe5\xa3\xaf" "\x0a\xfb\x6f\x9c\xcd\x4f\x6a\x31\xbe\x54\xfe\xca\x19\x9f\xbc\x7e\xdf" "\x0d\xc7\x9e\x28\x9c\x9f\x7b\xb3\xfe\xbb\x4b\xe5\xef\xef\x3a\x75\xc5" "\xf2\xbf\x56\x4f\x29\xec\xff\xd1\x91\xfe\xc2\x02\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xc0\xff\xc7\xdf\x01\x00\x00\xff\xff\xf9\xa8\x79\x7f", 18665)); NONFAILING(syz_mount_image(/*fs=*/0x200000004900, /*dir=*/0x200000004940, /*flags=*/0, /*opts=*/0x200000004980, /*chdir=*/1, /*size=*/0x48e9, /*img=*/0x2000000049c0)); break; case 1: // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0xc4042 (4 bytes) // mode: open_mode = 0x1ff (2 bytes) // ] // returns fd NONFAILING(memcpy((void*)0x200000000300, "./file1\000", 8)); res = syscall( __NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000300ul, /*flags=O_NOATIME|O_DIRECT|O_CREAT|O_CLOEXEC|0x2*/ 0xc4042, /*mode=S_IXOTH|S_IWOTH|S_IROTH|S_IXGRP|S_IWGRP|S_IRGRP|S_IXUSR|S_IWUSR|0x100*/ 0x1ff); if (res != -1) r[0] = res; break; case 2: // openat$nullb arguments: [ // fd: const = 0xffffffffffffff9c (8 bytes) // file: ptr[in, buffer] { // buffer: {2f 64 65 76 2f 6e 75 6c 6c 62 30 00} (length 0xc) // } // flags: open_flags = 0x2000 (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd_block NONFAILING(memcpy((void*)0x200000000140, "/dev/nullb0\000", 12)); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x200000000140ul, /*flags=FASYNC*/ 0x2000, /*mode=*/0); if (res != -1) r[1] = res; break; case 3: // sendfile arguments: [ // fdout: fd (resource) // fdin: fd (resource) // off: nil // count: intptr = 0x20fffe82 (8 bytes) // ] syscall(__NR_sendfile, /*fdout=*/r[0], /*fdin=*/r[1], /*off=*/0ul, /*count=*/0x20fffe82ul); break; case 4: // truncate arguments: [ // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // len: intptr = 0x6 (8 bytes) // ] NONFAILING(memcpy((void*)0x2000000001c0, "./file1\000", 8)); syscall(__NR_truncate, /*file=*/0x2000000001c0ul, /*len=*/6ul); 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); setup_sysctl(); const char* reason; (void)reason; install_segv_handler(); for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }