// https://syzkaller.appspot.com/bug?id=c85a1b3a1516aef28ac9b8d682e24176a6ccecc8 // 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 #include #include #include #include #ifndef __NR_copy_file_range #define __NR_copy_file_range 326 #endif #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; 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; } #define MAX_FDS 30 //% 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; } static void setup_gadgetfs(); static void setup_binderfs(); static void setup_fusectl(); static void sandbox_common_mount_tmpfs(void) { write_file("/proc/sys/fs/mount-max", "100000"); if (mkdir("./syz-tmp", 0777)) exit(1); if (mount("", "./syz-tmp", "tmpfs", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot", 0777)) exit(1); if (mkdir("./syz-tmp/newroot/dev", 0700)) exit(1); unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE; if (mount("/dev", "./syz-tmp/newroot/dev", NULL, bind_mount_flags, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/proc", 0700)) exit(1); if (mount("syz-proc", "./syz-tmp/newroot/proc", "proc", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/selinux", 0700)) exit(1); const char* selinux_path = "./syz-tmp/newroot/selinux"; if (mount("/selinux", selinux_path, NULL, bind_mount_flags, NULL)) { if (errno != ENOENT) exit(1); if (mount("/sys/fs/selinux", selinux_path, NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); } if (mkdir("./syz-tmp/newroot/sys", 0700)) exit(1); if (mount("/sys", "./syz-tmp/newroot/sys", 0, bind_mount_flags, NULL)) exit(1); if (mount("/sys/kernel/debug", "./syz-tmp/newroot/sys/kernel/debug", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/sys/fs/smackfs", "./syz-tmp/newroot/sys/fs/smackfs", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/proc/sys/fs/binfmt_misc", "./syz-tmp/newroot/proc/sys/fs/binfmt_misc", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/newroot/syz-inputs", 0700)) exit(1); if (mount("/syz-inputs", "./syz-tmp/newroot/syz-inputs", NULL, bind_mount_flags | MS_RDONLY, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/pivot", 0777)) exit(1); if (syscall(SYS_pivot_root, "./syz-tmp", "./syz-tmp/pivot")) { if (chdir("./syz-tmp")) exit(1); } else { if (chdir("/")) exit(1); if (umount2("./pivot", MNT_DETACH)) exit(1); } if (chroot("./newroot")) exit(1); if (chdir("/")) exit(1); setup_gadgetfs(); setup_binderfs(); setup_fusectl(); } static void setup_gadgetfs() { if (mkdir("/dev/gadgetfs", 0777)) { } if (mount("gadgetfs", "/dev/gadgetfs", "gadgetfs", 0, NULL)) { } } static void setup_fusectl() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } } static void setup_binderfs() { if (mkdir("/dev/binderfs", 0777)) { } if (mount("binder", "/dev/binderfs", "binder", 0, NULL)) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); if (getppid() == 1) exit(1); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = (200 << 20); setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 128 << 20; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); if (unshare(CLONE_NEWNS)) { } if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(0x02000000)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } typedef struct { const char* name; const char* value; } sysctl_t; static const sysctl_t sysctls[] = { {"/proc/sys/kernel/shmmax", "16777216"}, {"/proc/sys/kernel/shmall", "536870912"}, {"/proc/sys/kernel/shmmni", "1024"}, {"/proc/sys/kernel/msgmax", "8192"}, {"/proc/sys/kernel/msgmni", "1024"}, {"/proc/sys/kernel/msgmnb", "1024"}, {"/proc/sys/kernel/sem", "1024 1048576 500 1024"}, }; unsigned i; for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++) write_file(sysctls[i].name, sysctls[i].value); } static int wait_for_loop(int pid) { if (pid < 0) exit(1); int status = 0; while (waitpid(-1, &status, __WALL) != pid) { } return WEXITSTATUS(status); } static void drop_caps(void) { struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) exit(1); const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE); cap_data[0].effective &= ~drop; cap_data[0].permitted &= ~drop; cap_data[0].inheritable &= ~drop; if (syscall(SYS_capset, &cap_hdr, &cap_data)) exit(1); } static int do_sandbox_none(void) { if (unshare(CLONE_NEWPID)) { } int pid = fork(); if (pid != 0) return wait_for_loop(pid); sandbox_common(); drop_caps(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); sandbox_common_mount_tmpfs(); loop(); exit(1); } #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 close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } 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 < 6; 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); close_fds(); } 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 31 00} (length 0x8) // } // flags: mount_flags = 0x2 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYRESDEC: ANYRES64 (resource) // } // union ANYUNION { // ANYRES16: ANYRES16 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {2a dc 99 c0 a8 97 64 ed 5b d8 c6 c5 20 24 62 // c7 5f 7c d6 1c 91 98 17 9b 7c 0e 02 51 55 88 bb 12 01 7a cf 92 // 29 4c 95 3d 07 57 c1 73 11 11 aa 88 42 35 df 10 9a 64 7f b2 0f // 0d d6 d3 76 94 6e bc 98 1d 95 ad 61 53 0e b5 23 20 e3 3e ef ec // 11 e8 d3 f4 0a d4 b8 30 d9 65 b2 f9 88 ac 12 c6 1e cb 0a d7 71 // 66 1c 42 5e 7f 00 d0 f0 e8 39 41 a0 cd 40 2b 8c f6 a7 5c 85 19 // cc 98 89 be 43 ce 31 be a6 35 e4} (length 0x83) // } // } // } // chdir: int8 = 0xff (1 bytes) // size: len = 0x5a9e (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x5a9e) // } // ] // returns fd_dir memcpy((void*)0x200000000040, "bcachefs\000", 9); memcpy((void*)0x2000000003c0, "./file1\000", 8); sprintf((char*)0x2000000002c0, "%020llu", (long long)-1); *(uint16_t*)0x2000000002d4 = -1; memcpy( (void*)0x2000000002d6, "\x2a\xdc\x99\xc0\xa8\x97\x64\xed\x5b\xd8\xc6\xc5\x20\x24\x62\xc7\x5f" "\x7c\xd6\x1c\x91\x98\x17\x9b\x7c\x0e\x02\x51\x55\x88\xbb\x12\x01\x7a" "\xcf\x92\x29\x4c\x95\x3d\x07\x57\xc1\x73\x11\x11\xaa\x88\x42\x35\xdf" "\x10\x9a\x64\x7f\xb2\x0f\x0d\xd6\xd3\x76\x94\x6e\xbc\x98\x1d\x95\xad" "\x61\x53\x0e\xb5\x23\x20\xe3\x3e\xef\xec\x11\xe8\xd3\xf4\x0a\xd4\xb8" "\x30\xd9\x65\xb2\xf9\x88\xac\x12\xc6\x1e\xcb\x0a\xd7\x71\x66\x1c\x42" "\x5e\x7f\x00\xd0\xf0\xe8\x39\x41\xa0\xcd\x40\x2b\x8c\xf6\xa7\x5c\x85" "\x19\xcc\x98\x89\xbe\x43\xce\x31\xbe\xa6\x35\xe4", 131); memcpy( (void*)0x200000006b40, "\x78\x9c\xec\xdd\x7f\x90\x1c\x57\x7d\x20\xf0\xd7\x33\xb3\xda\xd9\x5d" "\xfd\x58\xc9\x26\x16\x36\x5e\xad\x85\x9d\x38\x26\xa0\x95\x7f\x15\x3f" "\x52\x41\xe4\x12\x48\xd9\xc4\x25\x8a\x14\x41\x3e\x83\xbd\xb6\x57\x8e" "\x60\x25\xab\xf4\x23\xb6\x85\x13\xe4\x9c\xcd\xa1\xb3\x4d\x41\x8a\x5c" "\x62\x92\x3f\x1c\xca\x70\x07\x28\x94\xaf\xf0\x05\x2b\x2e\x1c\x1b\x9f" "\xe4\xe3\x97\xca\x17\xce\x75\x05\xae\x83\x3b\xc3\x1f\x5c\x39\x3e\x54" "\x80\x75\x2e\x8a\x63\x53\x3b\xd3\x6f\x76\xa6\x67\x7a\x7b\x76\x76\x56" "\x5a\xdb\x9f\x4f\x49\xdb\xd3\x6f\xde\x7c\xfb\xdb\xaf\xdf\xf4\xf4\x7b" "\x33\xbb\x13\x00\x00\x00\x78\x45\x38\x76\xd7\xde\x93\x57\x9d\xfd\xbb" "\x5f\xff\xb3\xa9\x17\x3e\xfc\x7b\xff\xb0\xf3\x8e\x30\x52\xae\x95\x57" "\x63\x85\xd1\x74\x79\xeb\xe9\xca\x90\x53\x69\xb0\xb2\xbe\xb6\xcc\xf6" "\x8b\x5f\xfb\xd0\xe7\x7f\x38\x7e\xc3\x6f\x7f\xed\xc1\xe1\xcf\xbc\x78" "\xf4\xc6\xf3\xb6\x7f\xf7\x77\xce\xb8\xe1\x91\x0f\x5c\x71\xe4\xbe\xbf" "\x7e\xfc\x67\xab\x1e\xfa\xe5\xb3\x45\x71\x63\x7f\xba\x68\x6e\x3d\x79" "\x3e\x09\xa1\xfa\x95\x13\x7f\xf1\x91\xa3\xdf\x38\x6b\xb6\x2c\x59\x3d" "\xfb\xb3\x74\x30\x84\xb5\xc9\xba\xc7\xd7\x26\x99\x10\x13\x3f\x0f\x21" "\xdc\x38\x9b\x63\x08\x61\x7d\xe6\xce\x2f\xbd\x70\xc9\xf6\xd9\xe5\x1d" "\x77\x0f\xb6\x94\xaf\xc9\xd4\xcb\xeb\xef\x0d\xfa\xfb\xcb\xda\x6c\x3f" "\x9c\xed\x58\x07\x4e\xde\xf2\xba\xf0\xbd\xb7\x6d\xbb\xf3\x5b\x1b\xbe" "\xf8\x77\x03\x87\x9f\x3b\x38\x57\x25\xa9\x36\xf5\xa7\x10\x56\x5f\xd7" "\xfc\xf8\x81\x10\xc2\x50\xfa\x3f\xa4\x7d\x31\x34\xf5\xc7\xd8\x69\xb7" "\x86\x10\x86\x9b\x1e\xf7\xc6\x82\xbc\x5e\xdb\x65\xfe\x9b\x72\xd6\xcf" "\x49\x97\x2b\xd2\xe5\x48\x41\x9c\x78\xff\xc6\xcc\x7a\x29\x53\x2f\xbb" "\x1e\x0d\x64\x96\xc3\x05\xdb\x5b\xac\xbc\x3c\x7a\xa9\x57\xee\xa2\xce" "\xca\xcc\x7a\xf6\x64\xb4\x58\x79\x79\xc6\xf2\xb5\xe9\xf2\xcb\xe9\xf2" "\xa2\x05\xc6\x2f\xa7\xfb\x50\x4e\x42\x29\x09\x95\x46\xfa\xd3\xc9\x5c" "\x1f\x09\x4d\xc7\x2d\x09\x49\xed\x58\x56\x1b\xeb\xa5\xc6\xb1\x0d\xe9" "\xfe\x67\xd6\x93\xcc\x7a\x29\xb3\x5e\x1e\xc8\xec\x57\x6d\xbb\x69\x47" "\x2b\x27\x49\x6b\x79\xac\x97\x29\x8f\xa7\xe3\x4a\x5a\x7e\x5e\xf3\xb5" "\x49\x07\xef\xce\x29\x7f\x75\xba\xac\xa6\x4f\xd4\x17\xe3\x7a\xc8\xde" "\xa8\x1b\x69\xbb\xd1\xd8\xaf\x9a\x98\xd7\x89\x79\x72\x39\x15\x4a\x4d" "\xe7\xa0\x4e\xe5\x8d\x03\x9f\x1e\x8c\x91\xb4\x6c\x24\x59\xd7\xf6\x98" "\x99\x0e\xe2\x7d\x47\xb7\xdd\x73\x41\xf9\x9a\xaf\x1e\x1b\xcd\xc9\x23" "\x79\x30\x49\xe3\x27\x3d\xc5\x3f\xf0\xcd\xb5\x2b\xdf\xff\x85\x43\xfb" "\xb3\xaf\xeb\x8d\xf8\xd7\x95\xd2\xf8\xa5\x9e\xe2\x7f\xff\xca\xe3\x3f" "\xbe\xfa\xd0\xa7\x3f\x95\x1b\xff\xe3\x31\x7e\xb9\xa7\xf8\x17\x3f\x3a" "\xfc\xfc\x95\x4f\xdc\xb5\x31\xb7\x7d\x4e\xc4\xf6\xa9\xf4\x14\x7f\xf2" "\xd9\x27\xef\xdd\x70\xe6\xf5\x87\x73\xf3\xbf\x3f\xc6\xaf\xf6\x14\x7f" "\xcb\x91\xe3\x83\xab\x4e\x3e\xfa\x58\x6e\xfe\x13\xb1\x7d\x86\x7a\x8a" "\xff\xcc\x5b\xde\xfe\x83\xcf\x3d\xfd\xf0\x73\xb9\xf1\x43\x8c\x3f\xdc" "\x53\xfc\x6b\x8e\xec\xfe\xd8\xe0\xd8\xc9\x0b\x73\xe3\x3f\x16\xdb\x67" "\xa4\xb7\xfe\xf3\xd3\xc3\x97\x7f\x67\x6c\xec\x47\xe3\x79\xf1\x9f\x8a" "\xf1\x57\xf5\x14\xff\xb3\x07\xef\x7b\xf3\x03\x6b\xee\xbe\x22\xf7\xf8" "\x6e\x8d\xed\x33\xda\x53\xfc\x77\x9e\xff\xc8\x9d\x2b\x4f\x3e\x7c\x6e" "\xde\xb9\x33\xb9\xbf\xdb\x57\x58\x00\x3a\x39\x23\xbd\xc6\xfa\x68\xba" "\xde\xd3\x38\x73\x26\x3b\x6b\xb1\x70\x4d\xe3\x85\xbf\x1a\xaf\xd4\xaf" "\xf9\x56\xa6\xff\x57\x2d\x3a\x7a\x93\xcc\xc5\xe7\xec\x76\x56\xf7\x33" "\x3e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x84\x10\x5e\xf5\xba\xff\xfa\x8e\xff\xfd\x9e\xd1\xe7" "\x2b\xe9\xfa\x60\x7a\xe3\x99\x52\x7d\x19\xcb\x57\x84\x90\x0c\x85\x10" "\xf6\xee\x9b\xdc\xb3\x6f\xc7\xae\x9b\xc6\x3f\x70\xf3\xfe\x3d\xbb\x26" "\xa7\xc7\x27\xf7\x8d\x4f\xed\xda\xb7\xe7\xb6\xf1\x4b\x7f\x63\x7c\xcf" "\xd4\xee\xe9\xc9\xdb\x66\xef\x9d\x78\xfd\x25\xf5\xc7\xad\x0b\x49\x7d" "\x99\x9c\xdb\xb6\xed\xa1\x30\x33\x53\x1a\x6d\x2d\x8b\xdb\xfb\x57\xe7" "\x1f\xfe\xde\x05\x6f\xfc\x3f\xff\x1c\xc2\xc4\xab\xbe\x3d\x56\xc9\xcd" "\x7f\xd3\x7d\x3b\x1f\x38\xb3\xc3\xcf\x8c\x64\xcb\xcc\x5b\x77\xee\xbf" "\xea\xdb\x97\xfd\x6d\xba\x5f\xa3\x69\x5e\xa3\x1d\xf2\x9a\x99\x99\x99" "\x09\x39\x79\xfd\xdf\xf7\xfe\xe2\x81\x3f\x3f\xf1\xc3\x0b\x43\x98\xf8" "\x95\x6c\x5e\x77\x34\xdd\x7e\xf2\x99\xdf\xfa\xc7\x96\x84\x6a\x05\x73" "\x71\x52\xa5\xc1\x50\x4f\x68\x30\x19\xee\x98\x47\x23\xeb\x34\x9f\xd8" "\x5e\x95\xed\x3b\xa6\xa7\x26\xe6\x6f\xdf\xd9\xc7\x97\x73\xf6\xe3\x5f" "\x7f\xe8\xb9\x9f\x6f\xbf\xf5\x13\xbf\xa8\xb7\x6f\xb5\xed\xb1\x51\x97" "\xed\x3b\xb4\x65\x66\xba\xf4\x97\xdb\xde\xf9\xff\xff\xf2\xf6\x7a\x41" "\x51\x5e\xa7\xeb\xb8\x17\xb5\x77\xdc\x8b\x98\x5f\x6c\xbf\x6a\xda\xde" "\xab\xd3\xfd\x5a\x9d\xb3\x5f\x95\x9c\xfd\xba\xeb\x5b\x8f\x3d\xfd\x95" "\xb3\x0f\xe5\x37\x74\xc1\x7e\x0d\xa4\x1d\x60\x20\x79\x75\x57\xdb\x8d" "\x7b\x37\x9c\xac\x6d\x29\xaf\xa6\xf5\x63\x22\xf1\x71\x9b\xf6\xed\xdc" "\xbd\x69\xef\x6d\x07\x5e\xbf\x63\xe7\xe4\x4d\x53\x37\x4d\xed\x7a\xd3" "\xe6\x4b\x37\x5f\x3e\x71\xd9\xe5\x97\x6d\xaa\xed\xf9\xa6\xfe\xec\xff" "\xcf\x0e\x86\x89\xca\x4f\x37\x0c\x87\xb8\xfd\x5f\xed\x72\xff\xfb\xd1" "\x9f\x86\xb2\xcf\xbe\xb6\xed\xae\xf9\xe3\x83\x5f\x8e\x3f\xbb\xeb\x4f" "\xad\x79\xad\x58\x70\x7b\xcc\xe6\x55\xdc\x1e\xcd\x19\xe5\x3d\xff\x86" "\xdf\xfd\x91\x4f\xbe\xe9\xbe\x27\xae\xaa\x17\x14\xf5\xf3\x58\xbb\x71" "\x3e\x49\x97\xc3\xb3\xc7\x79\x73\x68\xea\x6f\xed\x6d\xd5\x69\xbf\x8a" "\x8e\x4f\x08\x61\xbc\x53\x3b\xfc\xf8\x67\x57\x84\xb3\xfe\xc7\x8e\x3b" "\x8b\xce\x43\xcd\x47\xa6\xf9\x67\x46\xb2\x65\xe6\x1b\x1b\x7f\xf2\xb7" "\x6f\xfc\x9b\xf5\xbf\x59\x2f\x58\x8a\xf3\x7c\xb3\xda\x69\xbd\x39\xa1" "\x1e\xcf\xf3\x8d\xac\xe7\xf2\xa9\xb5\x57\x75\xfb\x8e\xe6\x97\x95\x65" "\xd7\xbe\x83\xa1\x9c\xee\xd7\x48\xc7\xbc\x36\x7f\xe3\x89\x81\x7b\x8e" "\xfd\xf3\x9f\x34\xf2\x5b\xb1\x22\xdc\x3a\xb9\x6f\xdf\x9e\xcd\xf5\x9f" "\x2b\xd3\x4c\x57\x26\xe7\x74\xcc\x2b\x5b\x1a\xf7\x6b\x43\xed\x67\x39" "\xa4\x87\x37\x34\xba\x69\x87\xfe\x3a\x6b\x20\xd4\xf3\xcb\x9e\x3f\x63" "\xf5\x6c\xab\x8e\xa4\xf7\x8d\x24\xeb\x3a\xee\x57\x56\xbc\xef\xe8\xb6" "\x7b\x2e\x28\x5f\xf3\xd5\x63\x79\x2d\x9d\x3c\x58\xdf\xe2\x50\x58\x55" "\x5f\x26\xaf\xc9\xa9\x39\x9d\x79\x60\xb9\x91\x70\xa7\xed\x2f\xd7\xe7" "\x5f\x51\xff\x18\x7b\xc7\xdf\x3c\xf4\x9e\x87\xfe\xfe\xd2\xb6\xfe\x71" "\x71\xfd\x67\xd1\x7e\x25\x39\xfb\xf5\xc5\xa7\x3f\xfb\xc9\xcf\x7c\xe2" "\xdf\xfe\x7d\xff\xf6\xeb\x1d\xbf\x75\x7c\xf4\x27\xff\xf3\x8f\x2e\xa8" "\x17\x2c\xfb\xf3\x4a\xb9\x9e\x48\x23\xeb\x34\x9f\x64\xee\xbc\x32\x3d" "\x75\x71\x08\x45\xcf\xbf\x0d\xa1\xf3\x7e\x34\x9e\x7f\xff\xbe\x1c\xe3" "\xa6\x19\x75\xde\x9f\xa2\xe7\x5f\x76\x3b\x73\xf5\x3b\xc7\x1b\xcf\xac" "\x8f\x84\x72\x4f\xcf\xd7\x8b\x1f\x1d\x7e\xfe\xca\x27\xee\xda\x98\xfb" "\x7c\x3d\x31\xdf\xf3\xb5\x79\x67\x6f\x6f\x79\x5c\xb9\xe0\xf9\xba\x5c" "\xfa\x4f\xf6\xf9\x95\x54\x5a\xf3\x58\xba\xe7\x57\x4b\x47\x49\xb6\xcc" "\x7c\xed\xa3\x67\x1c\x7c\xfc\xc3\x5b\xcf\xae\x17\x14\xbd\x5e\x36\x6a" "\x77\xea\xd7\x97\x74\x31\xfe\xc8\xd9\xaf\x7f\xbc\xfa\x3b\x63\x37\x8f" "\xff\x9b\xff\xde\xbf\xf3\xc6\xe7\x7f\xe3\x4b\xd7\x7e\x77\x72\xcb\x9f" "\xd6\x0b\x7a\x3f\xee\x31\x97\x85\x1f\xf7\x15\x1d\x8e\x7b\x35\x6d\xdf" "\x6a\x4e\xfb\x36\xb2\x8e\xe3\xce\xe6\xf6\x7d\xc3\x0d\x37\x4f\xdf\x58" "\x2f\x2f\x6a\xe7\xd3\x77\xfd\x9b\x2e\x0b\xc6\x3f\xf1\x54\xb2\xf7\xb6" "\x03\x1f\x9c\x9c\x9e\x9e\xda\xb3\xb7\xbb\xfd\xea\xf6\xf5\x34\x6e\x27" "\xdb\xca\xbd\xbe\x9e\xc6\xb3\xdb\xba\x82\xfd\x2a\xb5\xed\xd7\xd2\xdd" "\xe8\xa6\xbd\xba\x7d\xbe\xc5\xfc\x6f\xec\xb9\xbd\x5a\x9f\x6f\x23\x21" "\xe9\xe9\x75\xe1\xc0\x37\xd7\xae\x7c\xff\x17\x0e\xed\x1f\x6d\x7b\x54" "\xba\xa1\xeb\x4a\x69\xfc\x52\x4f\xf1\xbf\x7f\xe5\xf1\x1f\x5f\x7d\xe8" "\xd3\x9f\xca\x8d\xff\xf1\x18\xbf\xd2\x53\xfc\xc9\x67\x9f\xbc\x77\xc3" "\x99\xd7\x1f\xce\x8d\x7f\x7f\x92\xc6\xaf\xf6\x14\x7f\xcb\x91\xe3\x83" "\xab\x4e\x3e\xfa\x58\x6e\xfc\x89\x98\xff\x50\x4f\xf1\x9f\x79\xcb\xdb" "\x7f\xf0\xb9\xa7\x1f\x7e\x2e\x37\x7e\x88\xf1\x47\x7a\x8a\x9f\xfa\x51" "\x6e\xfc\xa7\x92\x74\x3b\xb3\xd7\x48\x21\x7c\xe9\x85\x4b\xb6\xd7\xd7" "\x93\x30\x90\x3e\xdf\x62\x1e\x03\x2d\x79\x85\xec\x7a\x92\x59\x2f\x65" "\xd6\xcb\xcd\xeb\xa5\x38\x8b\x90\x6e\xa0\x9c\x24\xad\xe5\xb1\x5e\x5a" "\x7e\x5e\x53\x2e\x9d\xfc\x61\x4e\x79\xbc\x0a\xab\xae\xaf\x2f\x5f\x8c" "\xeb\x21\x7b\x63\xfe\xf2\xe5\xa6\xd4\x74\xee\xef\x54\x5e\x74\x9d\x0a" "\x00\xf0\x72\x17\xdf\xff\x8f\xd7\xa0\xf1\xfd\xff\xa9\xf4\x42\x29\x7f" "\xa6\x01\xe6\xf4\x3a\x0e\xfb\xfe\x4f\x0f\x5f\xfe\x9d\xb1\xb1\x1f\xad" "\xcf\x89\x1b\xc7\x61\x73\xf3\x39\xad\xef\xb1\xae\x4f\xe3\xc7\xc7\xc7" "\x79\xc0\xb1\x37\x84\x89\xd9\xe5\x1d\xe3\xf5\x0b\xfd\x85\xbe\x8f\x10" "\x9f\x0f\xd9\x79\xce\xb8\x9d\x0b\x5f\xdb\x1a\xa3\x70\x9e\x73\xa6\xb6" "\xfd\xb6\x79\xce\xce\xf3\xef\x0f\xdd\x1b\x6f\x6d\xcc\xe4\x1a\xf3\xaa" "\xcf\x97\x57\x9a\xc6\xa1\xa9\xf6\x71\x4d\x25\x74\x31\xff\xbe\x31\x13" "\xa6\x68\xfe\x3d\xb3\xfb\xc5\xef\x67\x8d\x7f\xb4\x2d\xad\xf1\xa6\x79" "\xab\xec\xf1\x1b\x48\x67\xcc\x3a\x7d\xde\x21\xb4\xb6\x4b\x65\x36\x42" "\x5e\xff\xc8\xce\x8b\xc5\xcf\x73\x8c\xad\x0e\x5b\x6b\xdb\xeb\xb2\x7f" "\x64\x3f\x47\x13\x8f\x43\xf6\x73\x34\x71\x3b\x67\x67\x4e\x9c\xbd\x7e" "\x8e\x26\xef\xfd\x99\xd1\xf6\x76\x68\xc9\x2b\xf6\x8f\x58\x6f\x9e\xfe" "\x51\x4b\xb9\xf8\xfd\xc8\xf6\xe3\x17\xe6\x69\xdf\xb9\xe3\xd7\x39\x5a" "\xf6\xf8\x2d\xe0\x78\x57\x43\xf8\x4f\x9f\x8e\x2b\x4b\xf5\xfe\x6c\x1f" "\xe6\x0d\x3b\x9e\xd2\xba\x99\x37\x1c\xec\xb0\x85\x78\x5f\xf7\xf3\x86" "\x4b\xfb\x7e\x98\x79\xc9\x9c\xf8\xe9\x13\xac\x8b\x79\xc3\x5f\xae\x69" "\x79\xdc\xa9\x9d\x37\x8c\xe5\x71\x3f\x2a\x5d\xce\x27\xbe\x27\xa7\xbc" "\x5f\xf3\x89\xf1\x74\x11\xf3\x3a\x31\x4f\x2e\xa7\x82\xf9\x44\xe0\xe5" "\x2a\x8e\xff\xe3\x6b\xc4\xec\xf8\x7f\xf6\x02\xfc\xff\x65\xea\x15\x7d" "\x4e\x28\x7b\xd5\x18\xe3\xe5\x7e\x4e\xaf\xdc\x39\x9f\xa2\x71\x47\xfb" "\xe7\xf4\x86\x7b\x7a\x1d\xbf\xe6\xc8\xee\x8f\x0d\x8e\x9d\xbc\x30\xf7" "\x3a\xe7\xb1\x6e\x3f\xa7\xb7\xbb\x65\x6d\xb8\xe0\x73\x3f\x45\xed\x78" "\x41\x66\xbd\xb0\x1d\x73\x26\x68\x8a\xc6\x7b\xd9\xed\x14\xb5\x7b\xf6" "\x73\x19\x23\x61\x55\x4f\xed\xfe\xd9\x83\xf7\xbd\xf9\x81\x35\x77\x5f" "\x91\xdb\xee\x5b\xeb\x2f\xa4\xc5\xed\xfe\xc9\x96\xb5\x55\x05\xed\xbe" "\xd4\x9f\xe7\x7c\xe9\x7f\xce\xc0\x78\xa1\x63\xfc\x65\xfe\x39\x86\x6e" "\xe7\xcf\x4e\xdb\xe7\x18\xd2\x0f\x3e\x2d\xd5\x78\xe4\x0f\x72\xca\x17" "\x3a\x1e\x19\x6e\xbb\xd1\xd8\xaf\x9a\xe5\x3b\x1e\x99\x7b\x21\x1d\x6c" "\x9d\xc0\x03\x00\xe8\x28\x8e\xff\x1b\xef\x9f\xa5\xe3\xff\xff\x15\x2b" "\xa4\xd7\x11\x45\xe3\xd6\x8b\x32\xeb\x31\x5e\xee\xb8\x35\xe7\xfa\x24" "\x6f\xdc\xfa\xfb\xe9\xf2\xd6\x4c\xfd\x91\xf4\x37\x2a\x16\x7a\xdd\xfc" "\xce\xf3\x1f\xb9\x73\xe5\xc9\x87\xcf\xcd\x1d\xb7\xdc\xdf\xed\x38\xf4" "\x3f\xb6\xac\x8d\x16\x8e\x43\x17\x37\x6e\xce\x1d\x47\x6c\xed\xcf\xe7" "\xc5\x73\xc7\x11\x8d\x71\xd6\xe2\xc6\x89\xb9\xf9\x37\xc6\x89\x8b\x1b" "\xa7\xe7\xbc\x4d\xdb\x34\x4e\x5f\xdc\x38\x3a\xb7\x7d\x1a\xe3\xe8\xd6" "\x79\x80\x4f\x1e\xef\x2e\x7e\x9c\x07\xc8\x8d\xdf\x98\x07\xe8\xe3\x38" "\xf7\x97\x73\x95\x4e\xdd\x38\xb7\x60\xbe\x2e\xb3\xb1\xb8\xda\xed\x7c" "\xdd\x69\x19\x47\xaf\x6e\xdd\xcf\x25\x19\x47\xa7\xbf\x3e\xbb\x54\xe3" "\xe8\x77\xe7\x94\x2f\x74\x1c\x3d\xd2\x76\xa3\xb1\x5f\x35\xcb\x77\x1c" "\xdd\x5a\x6e\x1c\x0d\x00\xbc\x5c\xc5\xf1\x7f\xbc\x8c\x8b\xe3\xff\x27" "\x32\xf5\x16\xfb\x3e\x7b\xee\xb8\xa0\x4f\xd7\xed\xd9\xbf\x07\xd2\x88" "\xff\xd4\x92\x8c\x2b\xe7\xe2\xf7\xe9\xfd\xdf\xe2\x71\xdf\x52\x8f\x5b" "\xf3\xc6\xf5\xc9\xc1\x4e\x5b\x89\xf7\x76\x3f\xae\x5f\xea\x79\x89\x97" "\xfa\xfb\xbf\x4b\x3d\x2f\x34\x5a\xfb\x03\x9e\x69\xfc\xcd\xab\xbb\x8c" "\xdf\xed\x3c\xd9\x69\x7b\x7f\x79\xb9\x8c\x8b\xd3\x8d\x1a\x17\x03\x00" "\xb0\x9c\xc5\xf1\xff\x50\xba\x9e\x3f\xfe\x5f\xdc\xf8\xa4\x6d\xfc\x36" "\x50\xbf\x84\x9c\x1b\x9f\xbc\xf4\xc6\xe7\xcd\xf5\x4e\xdf\xf8\xbc\x5f" "\xef\xbb\x1b\x9f\x77\x8c\xdf\xed\xfb\xd6\x39\xf1\x97\xcf\xfc\xd7\xd2" "\x7e\x4e\xe6\x15\x3f\xfe\x8f\xeb\xe9\xea\x8c\xf1\x3f\x00\x00\xcb\x50" "\x1c\xff\xc7\x5f\x7b\x8c\x7f\xff\xef\xbf\xa4\xeb\xd9\xbf\x5b\xbf\xfc" "\xc6\xe9\x33\xe9\x25\xe9\x12\xbd\x8f\x9e\xb6\x87\x71\xba\x71\x7a\x98" "\x67\x9c\xfe\xd6\x9c\xdf\xf7\x88\xf7\x77\x3f\x4e\xef\xf3\x3c\x5b\x8c" "\xdf\xfc\x39\x00\xf3\x00\xa7\xf6\xf3\xf1\x43\x73\xf5\xcd\x03\x00\x00" "\x70\x3a\x0c\xd4\x46\x4a\xed\xbf\x67\xff\xbe\x74\x99\xfd\x3d\xfb\xbc" "\xdf\xcb\xbf\x3a\xa7\x7e\x4d\x17\x7f\x13\xb5\x92\x5e\x1e\x5f\xbf\x6f" "\xcf\xd4\xd4\xb5\xfb\x77\xdf\x38\xb9\x6f\xea\xda\x5d\x37\xdf\x38\xb5" "\xf7\xda\x5b\xf6\xec\xd8\xb7\x6f\x6a\x57\xbd\xde\x62\xc7\x8d\xb9\xe3" "\x96\x34\xc9\x81\x50\x49\xdb\xa3\x73\xbd\xec\xb8\x6d\x4d\x3a\x31\xb0" "\x26\xe7\xef\x21\x64\xeb\xc7\xb0\xe7\xd4\x6e\xb4\xff\x3d\x84\xec\x66" "\x87\x0a\xfe\x8e\xc0\xdc\xf1\xeb\x2e\xdf\xbc\xe3\x57\x9a\xa7\x7e\xa7" "\xfe\x91\x77\xbc\xf3\xe2\xff\x61\x4e\xfd\xa8\x71\xfc\x6f\xf8\xa3\x8b" "\xaf\xdd\xbe\xf7\xda\x1d\xbb\x76\xec\xdb\x31\x39\xbd\xe3\xc0\x54\x6b" "\xf4\xd9\x86\x18\x5e\xc0\xf7\x66\x26\xe9\xff\x05\x7d\x5f\xea\x93\xcf" "\xfc\xbb\x63\x21\xd4\x6f\xd5\xbe\x2d\x35\xa3\xb4\xf0\xef\xef\x8c\x87" "\x67\x81\x79\xb4\xfc\x68\x7b\x22\x95\x66\x5b\x24\xc9\x3d\xfe\xb3\x79" "\x24\x99\x3c\xd6\xa6\x99\xac\xcd\xfb\xfe\x83\x9c\xbc\xbf\xfe\xdf\xfe" "\xfc\x8f\xcf\x9f\xf9\xc5\xe7\x42\x98\x78\x55\xf9\x35\x0b\xcd\xbb\x35" "\xe4\x96\x99\xff\xfc\xde\xa9\xdf\xdf\x77\xec\xdb\xbb\x67\xf3\x2f\xcd" "\x9b\x7f\xa3\x66\x9a\x57\xd1\xf7\x95\x66\xeb\xc7\xfd\xa9\x4c\xdf\xbc" "\x77\xdf\xeb\xb6\xdf\xbc\x7f\x57\xf6\x1b\x25\x7b\x13\xe7\x33\x4a\x8d" "\xf5\x25\x9a\xcf\x48\x9f\xfe\xe5\x2e\xe7\x27\x5e\x6c\xff\x6e\xc3\x9a" "\x85\xfe\xfe\x7e\xb9\xed\xc6\xf2\xd4\xf5\xfc\xc4\xac\xb7\x5d\x7f\xea" "\x12\x03\x00\x58\xe6\xe2\xfb\xff\xf1\x7a\x36\xbe\x7f\xf8\x89\xf4\x02" "\x2a\x96\x77\x3f\x4e\xaf\x5f\x38\xf6\xfa\xfe\x71\xee\x38\x7d\xa2\xbb" "\x71\x7a\xf6\x7b\xc9\x8a\xc6\xe9\xd9\xfa\x71\x7f\xbb\x1d\xa7\x57\x17" "\x39\x4e\xcf\x6e\x3f\x7f\x9c\x3e\x94\x5b\xbf\xd3\x38\x3d\x6f\xdc\x9d" "\x17\xff\x0f\x72\xea\x2f\x54\xf7\xfd\xa4\x87\xdf\xc7\x88\xc3\xcf\x2f" "\x1c\xda\x9f\xdb\x4f\xae\xcb\xf6\x93\xa1\x8e\xf5\xb2\xdf\x67\x50\xd4" "\x4f\xb2\xf5\x17\xda\x4f\x92\x45\xf6\x93\xec\xf6\x8b\xe6\x73\x3a\xd5" "\xef\xd4\x4f\xf2\x8e\x7b\x5e\xfc\x77\xe5\xd4\xcf\x53\xd4\x1f\x2a\x8d" "\xfe\xb0\xb8\xdf\x9f\xc9\xed\x0f\x1f\xef\xee\xbc\xf1\xeb\x99\xf5\xa2" "\xfe\x90\xad\xbf\xd0\xfe\x50\x5a\x64\x7f\xc8\x6e\xbf\xa8\x3f\x74\xaa" "\xdf\xa9\x3f\xe4\x1d\xdf\xbc\xf8\x57\xe5\xd4\xef\x56\x6b\xff\x98\xed" "\x18\xb5\x7e\x31\x75\xed\x2d\x37\xef\xf9\x60\x53\xbd\xa5\xfe\xfe\x8b" "\xd0\xfe\x91\x8c\x6e\xf2\x5b\x31\xf7\xd8\xa5\xfd\xfe\x8f\x5e\x75\xdf" "\xbe\x4b\xfb\xb9\xaf\xc5\xe7\x1f\xc2\x96\x5a\x49\x5e\xfe\x4b\xfb\xb9" "\xb2\xc5\xe7\x5f\xd4\xfe\x0b\xf8\xfd\xaf\xd5\xa1\xed\x73\x65\xb9\xf9" "\x3f\x95\x73\x02\xe9\x7b\xfe\x4b\xfb\xfd\x2e\x19\x79\xd5\xdb\x1f\x7f" "\xaa\xe6\x6b\xd3\x33\x41\xd1\xe7\xcf\x8a\xe6\x71\xb7\xe5\x94\x2f\x74" "\x1e\x77\x45\xdb\x8d\xe5\x69\x41\xf3\xb8\x40\x5f\xc5\xf1\x7f\x7c\xbb" "\x27\x8e\xff\xef\x4e\x97\xfd\x7e\x1b\xe8\xa5\xff\x3d\x69\xbe\xc7\xac" "\x63\xfc\x3e\x7d\x8f\x59\xd1\x75\xcc\x2b\xee\xf5\x3c\xfb\x96\xbb\xd7" "\x73\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\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\xbe\xc1\x10\x06\x2b\xeb\x6b\x37" "\x8f\xdd\xb5\xf7\xe4\x55\x67\xff\xee\xd7\xff\x6c\xea\x85\x0f\xff\xde" "\x3f\xec\xbc\xe3\xd7\x3e\xf4\xf9\x1f\x8e\xdf\xf0\xdb\x5f\x7b\x70\xf8" "\x33\x2f\x1e\xbd\xf1\xbc\xed\xdf\xfd\x9d\x33\x6e\x78\xe4\x03\x57\x1c" "\xb9\xef\xaf\x1f\xff\xd9\xaa\x87\x7e\xf9\x6c\x61\xec\xd1\xda\xcf\xca" "\x45\xe9\x6a\x35\x84\xe4\xf9\x24\x84\xea\x57\x4e\xfc\xc5\x47\x8e\x7e" "\xe3\xac\xd9\xb2\x24\x84\x50\x4e\x46\x0f\x86\xb0\x36\x59\xf7\xf8\xda" "\x24\x13\x61\xe2\xe7\x21\x84\x1b\x63\xaa\x95\xd6\x3b\xbf\xf4\xc2\x25" "\xdb\x67\x97\x77\xdc\x3d\xd8\x52\xbe\x26\x13\x24\xbb\x5f\x61\xa4\x1c" "\xf3\x69\xce\x33\x84\x5b\x0b\xf7\x88\x97\xa0\x6a\xda\xcf\x0e\x9c\xbc" "\xe5\x75\xe1\x7b\x6f\xdb\x76\xe7\xb7\x36\x7c\xf1\xef\x06\x0e\x3f\x77" "\x70\xae\x4a\x52\x6d\xea\x4f\x21\xac\xbe\xae\xf9\xf1\x03\x21\x84\xa1" "\xf4\x7f\xa8\x3f\x65\x6a\xd6\xc7\x07\xa7\xcb\xad\x21\x84\xe1\xa6\xc7" "\xbd\xb1\x20\xaf\xd7\x76\x99\xff\xa6\x9c\xf5\x73\xd2\xe5\x8a\x74\x39" "\x52\x10\x27\xde\xbf\x31\xb3\x5e\xca\xd4\xcb\xae\x47\x03\x99\xe5\x70" "\xc1\xf6\x16\x2b\x2f\x8f\x5e\xeb\x15\x59\x99\x59\xcf\x9e\x8c\x16\x2b" "\x2f\xcf\x58\xbe\x36\x5d\x7e\x39\x5d\x5e\xb4\xc0\xf8\xe5\xf8\x3f\x09" "\xa5\x24\x54\x1a\xe9\x4f\x27\x73\x7d\x24\x34\x1d\xb7\x24\x24\xb5\x63" "\x59\x6d\xac\x97\x1a\xc7\x36\xa4\xfb\x9f\x59\x4f\x32\xeb\xa5\xcc\x7a" "\x79\x20\xb3\x5f\xb5\xed\xa6\x1d\xad\x9c\x24\xad\xe5\xb1\x5e\xa6\x3c" "\x9e\x8e\x2b\x69\xf9\x79\xcd\xe7\xea\x0e\xde\x9d\x53\xfe\xea\x74\x59" "\x4d\x9f\xa8\x2f\xc6\xf5\x90\xbd\x51\x37\xd2\x76\xa3\xb1\x5f\x35\x31" "\xaf\x13\xf3\xe4\x92\xfa\x0f\xc5\x55\x7a\x57\x6a\x3a\x07\x75\x2a\x6f" "\x1c\xf8\xf4\x60\x8c\xa4\x65\x23\xc9\xba\xb6\xc7\xcc\x74\x10\xef\x3b" "\xba\xed\x9e\x0b\xca\xd7\x7c\xf5\xd8\x68\x4e\x1e\xc9\x83\x49\x1a\x3f" "\xe9\x29\xfe\x81\x6f\xae\x5d\xf9\xfe\x2f\x1c\xda\xbf\x3e\x2f\xfe\x75" "\xa5\x34\x7e\xa9\xa7\xf8\xdf\xbf\xf2\xf8\x8f\xaf\x3e\xf4\xe9\x4f\xe5" "\xc6\xff\x78\x8c\x5f\xee\x29\xfe\xc5\x8f\x0e\x3f\x7f\xe5\x13\x77\x6d" "\xcc\x6d\x9f\x13\xb1\x7d\x2a\x3d\xc5\x9f\x7c\xf6\xc9\x7b\x37\x9c\x79" "\xfd\xe1\xdc\xfc\xef\x8f\xf1\xab\x3d\xc5\xdf\x72\xe4\xf8\xe0\xaa\x93" "\x8f\x3e\x96\x9b\xff\x44\x6c\x9f\xa1\x9e\xe2\x3f\xf3\x96\xb7\xff\xe0" "\x73\x4f\x3f\xfc\x5c\x6e\xfc\x10\xe3\x0f\xf7\x14\xff\x9a\x23\xbb\x3f" "\x36\x38\x76\xf2\xc2\xdc\xf8\x8f\xc5\xf6\x19\xe9\xad\xff\xfc\xf4\xf0" "\xe5\xdf\x19\x1b\xfb\xd1\x78\x5e\xfc\xa7\x62\xfc\x55\x3d\xc5\xff\xec" "\xc1\xfb\xde\xfc\xc0\x9a\xbb\xaf\xc8\x3d\xbe\x5b\x63\xfb\x8c\xf6\x14" "\xff\x9d\xe7\x3f\x72\xe7\xca\x93\x0f\x9f\x9b\x77\xee\x4c\xee\xef\xd7" "\x2b\x27\xc0\x2b\xd3\x19\xe9\x35\xd6\x47\xd3\xf5\x85\x8d\x33\x0f\xf6" "\x2d\x8f\xa6\xf1\xc2\x5f\x8d\x57\xea\xd7\x7c\x2b\xd3\xff\xab\xfa\xb6" "\x95\x76\xb3\xdb\x59\xbd\x84\xf1\x01\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\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\x79" "\xfa\xa7\xdb\x2f\x7d\xdf\x7b\xdf\xfa\xae\x6d\x95\x24\x84\x24\xa7\xce" "\x4c\x07\xf1\xbe\xf2\x8a\x2d\x5b\xc6\x7b\xd8\xee\xe4\xb3\x4f\xde\xbb" "\xe1\xcc\xeb\x0f\x37\x97\xad\xef\x21\x0e\x00\x00\x00\x50\x2c\x8e\xc3" "\x4b\x8d\x92\x6a\x58\x1f\x6e\x49\x86\xc2\x39\x1d\xeb\xc7\x39\x82\x73" "\xe2\x5a\xd2\x5a\x9e\x5d\xc6\x38\xd9\x39\x82\x6e\xe3\x84\x4c\x9c\x52" "\x87\x38\xa5\x1e\xe2\x94\xfb\x94\x4f\xa5\x4f\x71\x06\xfa\x14\x67\x45" "\x9f\xe2\x0c\xf6\x29\x4e\xb5\x20\x4e\x35\x74\x17\x67\x68\x9e\x38\x95" "\xd9\x1e\xd0\x65\x3e\xc3\xf3\xe6\xd3\x7d\x9c\x91\x3e\xc5\x59\xd9\xa7" "\x38\xab\xfa\x14\x67\x75\x9f\xe2\xac\xe9\x53\x9c\xd1\x79\xe3\x74\xdf" "\x0f\xd7\xf6\x29\xce\xba\x3e\xc5\x39\xa3\x4f\x71\xce\xec\x53\x9c\x57" "\xf5\x29\xce\xaf\xf4\x29\xce\x59\x7d\x8a\x93\x9d\x53\x5e\x68\x3f\x5c" "\x95\xd6\x3c\x3b\x2f\x4e\xed\x46\xb9\x30\x4e\x25\x29\x37\xee\xe8\x34" "\x9f\x7e\x56\xba\x9d\x73\x17\xb9\x9d\x91\x79\xb7\x53\x9d\x59\x55\xf4" "\x7a\xdc\xe5\x76\x86\x0a\xf6\x27\x6e\xe7\xb5\x99\xc7\x95\x8a\xb7\x73" "\xb0\xb9\x7e\xb5\xcb\xed\xfc\xea\xc2\xb7\xd3\xba\xff\x5d\x6e\xe7\xd7" "\x17\xb9\x9d\x52\xc1\x76\x62\xbf\xbd\x35\x9b\x5f\xdc\x4e\x5c\xeb\xb2" "\xff\xdf\xd6\xa7\x38\x07\xfa\x14\xe7\x43\x7d\x8a\x73\x7b\x9f\xe2\xfc" "\xc9\x42\xe2\x74\x78\x8f\x2c\xc6\xf9\xd3\x3e\xe5\xf3\xe1\x45\xc6\x01" "\xe8\x56\x1c\xff\xcf\x8d\xf7\x46\xc3\x60\xe5\x37\xc3\x70\x7a\xc6\xc9" "\xce\x02\xc4\xf1\xee\x86\xda\xcf\xf6\xd7\xbb\xbc\x13\x52\x8c\xf7\x9a" "\x4c\xf9\x8a\xa2\x78\xd9\x81\x7a\x26\xde\x86\x85\xe4\x57\xed\x30\x81" "\x90\x89\xb7\x31\x13\x6d\xa0\x25\x5e\xa5\x31\x1e\x69\xe4\xd7\x1e\xaf" "\xda\x1c\xef\x82\xcc\x9d\xf3\xed\xef\x5b\xb6\x74\xce\xad\x39\xde\x45" "\x99\xf2\xc1\x79\xe2\xd5\x64\x27\x16\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x60\x09\xfd\xd3\xed\x97\xbe\xef\xbd" "\x6f\x7d\xd7\xb6\x90\x84\xd9\x7f\x1d\xcd\x74\x10\xef\x2b\xaf\xd8\xb2" "\x65\xbc\x87\xed\x1e\xdd\x76\xcf\x05\xe5\x6b\xbe\x7a\xac\xb9\x6c\xb0" "\xd2\x43\x20\x00\x00\x00\xa0\x50\x1c\x87\x0f\x34\x4a\xaa\x61\xb0\xb2" "\x39\x0c\x26\x2b\x5a\xea\x55\xd3\x79\x80\x6a\xba\x5e\x1e\xad\x2f\xc7" "\x56\x87\xad\xb3\xcb\x64\xbc\x54\x5b\x1f\x4e\xd6\xce\xfb\xb8\x4a\xfa" "\xb8\x4d\xfb\x76\xee\xde\xb4\xf7\xb6\x03\xaf\xdf\xb1\x73\xf2\xa6\xa9" "\x9b\xa6\x76\xbd\x69\xf3\xa5\x9b\x2f\x9f\xb8\xec\xf2\xcb\x36\x6d\xdf" "\x31\x3d\x35\x51\xff\x19\xc2\x60\x41\xbc\x10\x42\x6d\xfa\x61\xef\x6d" "\x07\x3e\x38\x39\x3d\x3d\xb5\x67\x6f\xbd\x30\x9b\xff\xfa\xf4\x71\xeb" "\x6b\xc9\xd6\xfe\xd5\x1e\x37\xf6\x86\x30\x31\xbb\xbc\x23\xcd\x7f\x5d" "\xc1\xf6\x4a\x6d\xdb\x5b\xba\x1b\x5d\x1d\x40\x00\x00\x00\x00\x00\xe0" "\x5f\xd8\xb5\xdb\x50\x49\xcb\xf2\x01\xe0\xd7\x33\x33\x67\x66\x3c\xba" "\x7f\xe7\x8f\x6f\xe3\xe2\x1e\x87\x75\x15\x2b\x2b\xb5\x63\x68\x89\xe7" "\x81\x20\xc1\x97\xc5\x83\x10\x73\xac\x93\x2c\xb9\x92\x74\x74\x17\xdd" "\x15\xb3\x49\x17\x52\x53\x8a\x40\x59\x58\x36\xfc\xd0\x86\x49\x9a\xf4" "\xc5\x97\x94\xc8\x17\x16\x0c\xb3\x84\xce\x26\xa1\x52\x7e\xa8\x0f\x85" "\x96\xa1\xe2\x87\x50\x26\xce\x99\x79\xe6\xcc\xcc\x99\x71\x4e\x83\xb8" "\xeb\xf6\xfb\x7d\x78\x5e\xae\xfb\xba\xef\xeb\xb9\x9f\x0f\x07\xae\xe7" "\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\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\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\x21" "\x5a\x6c\x4c\xcf\xd7\x67\x66\xe7\x26\x93\x88\x64\x48\x4e\x73\x80\x6c" "\x2c\x5f\x4c\xd3\xda\x18\x75\xbf\xf2\xc4\xf6\x1f\x94\xa6\xde\x39\xbd" "\x3b\x56\x2a\x8c\xb1\x10\x00\x00\x00\x30\x52\xd6\x87\x4f\x74\x22\xe5" "\x28\x15\xf2\x91\x8f\x13\x97\xef\x36\x46\xd7\x40\xac\xf4\xfd\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x9e\xc5\xc6\xf4\x7c\x7d\x66\x76\xee\xc8\x24\x22\x19\x92" "\xd3\x1c\x20\x1b\xcb\x17\xd3\xb4\x36\x46\xdd\x57\xdf\x7a\xe8\xb3\x2f" "\x4d\x4d\xfd\xad\x3b\x56\x1d\x63\x1d\x00\x00\x00\x60\xb4\xac\x0f\xcf" "\x75\x22\xe5\xa8\xc6\x29\x31\x91\x9c\xb8\xd4\xf9\x77\xa2\xd9\xb7\x81" "\xf5\x7d\xf3\x5b\x79\x2b\xb2\x75\x36\xac\x31\xaf\xff\xdb\xc1\xb0\xbc" "\x53\xd6\x98\x77\xda\x1a\xf3\x3e\x36\x22\x6f\x73\xfb\x7c\x53\x00\x00" "\x00\xc0\x47\x5f\xd6\xff\x17\x3a\x91\x4a\x94\x0a\xeb\x56\xf5\xc3\x59" "\xff\x3f\xaa\xaf\xcf\xf2\x4e\xee\xcb\xcb\xb7\xcf\x6b\xff\xad\x40\x71" "\xcd\x99\x00\x00\x00\xc0\xfb\xcb\xfa\xff\x52\x27\x52\x8d\x52\xa1\xda" "\xe9\xd7\xd7\xda\xef\x6f\xec\xcb\xcb\xe6\x8f\xfa\xbf\x7d\x36\xff\xd4" "\x21\xf3\x47\xfd\x3f\xff\xd2\xf6\xd9\xff\xe9\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\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\xa3\x63" "\xb1\x31\x3d\x5f\x9f\x99\x9d\xcb\x27\x11\xc9\x90\x9c\xe6\x00\xd9\x58" "\xbe\x98\xa6\xb5\x31\xea\x9e\xfd\xe4\xe4\x3f\x2e\xde\x7f\xfb\xc6\xee" "\x58\xa9\x30\xc6\x42\x00\x00\x00\xc0\x48\x59\x1f\xbe\xd2\x7a\x97\xa3" "\x54\x98\x8c\x89\x38\x72\xb9\xef\x9f\xba\xf0\xde\x47\xbe\xf4\xc8\x63" "\xd3\x11\xd1\x6a\xf3\x8b\xc5\xb8\x69\xcb\x8e\x1d\xd7\x9f\xdd\x3a\x66" "\x79\x67\x3d\xbf\x7f\xe2\xfb\xcf\xbe\xfe\xed\x55\x79\x67\xb5\x8e\x07" "\x6d\x83\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x07\x66\xb1\x31\x3d\x5f\x9f\x99\x9d\x3b\x22" "\x89\x48\x86\xe4\x34\x07\xc8\xc6\xf2\xc5\x34\xad\x8d\x51\xf7\x95\xcf" "\x7f\xf1\x2f\x0f\xbc\xf8\xf8\x6b\xdd\xb1\xea\x18\xeb\x00\x00\x00\x00" "\xa3\x65\x7d\xf8\x4a\xef\x5f\x8e\x6a\x14\xa3\x18\xc7\x2f\xdf\x75\xf7" "\xfa\x4b\x72\x7d\xf3\x87\x7d\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x0e\x1f\x37\x7c\xf3\xe6\x6f\x6c\x59\x58\xd8\x7a\xbd\x8b" "\x83\x73\xd1\xcc\x47\x1c\x02\x8f\xe1\xc2\x45\xef\xc5\xc1\xfe\xcb\x04" "\x00\x00\x7c\xd0\x4e\x8e\x24\x9a\xff\xa5\x13\x2e\x3b\xd8\x4f\x0d\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x1c\x0a\x16\x1b\xd3\xf3\xf5\x99\xd9\xb9\x72\x12\x91\x0c\xc9" "\x69\x36\x9b\xbb\x96\x0e\xdd\xb2\xb1\x7c\x31\x4d\x6b\x63\xd4\x4d\x9f" "\x78\xa1\xb4\xee\x9d\x27\x9f\xee\x8e\x55\xc7\x58\x07\x00\x00\x00\x18" "\x2d\xeb\xc3\x57\x7a\xff\x72\x54\x63\x22\x26\xe2\xb8\xe5\xbb\x41\xdf" "\x04\x96\xfb\xff\xca\x87\xf8\x90\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x21\x65\xb1\x31\x3d\x5f\x9f\x99\x9d\x5b\x97\x44\x24\x43" "\x72\x9a\x03\x64\x63\xf9\x62\x9a\xd6\xc6\xa8\x7b\xff\xae\xbd\x9f\xbb" "\xef\xe8\xef\x5d\xd4\x1d\x2b\x15\xc6\x58\x08\x00\x00\x00\x18\x29\xeb" "\xc3\x8b\x9d\x48\x39\x4a\x85\x8f\x47\x29\x4e\x6a\xdf\x2f\xf4\x4e\x48" "\xf2\xed\xf3\xe0\xef\x02\x2b\xf3\xb6\xf7\x4c\x9b\x5c\xf3\xbc\x46\xd7" "\xac\x62\xe4\xd7\x3c\xef\xce\xbe\x9d\x15\xda\xbb\x69\xcd\x2b\xb7\xa3" "\xf9\x4a\xeb\xdc\x99\x57\x5b\x99\x97\x6b\xcf\xab\x75\xcd\xab\x46\xa7" "\x7c\xad\x33\x6f\xf9\x65\xed\xee\xa9\xb6\x6e\xc4\x73\x0e\x7a\xf7\x00" "\x00\x00\xf0\x61\xc9\xfa\xff\x52\x27\x52\x89\x52\xa1\xd4\xd5\xff\xff" "\xb4\x27\xbf\xa2\xcf\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\x86\x58\x6c\x4c\xcf\xd7\x67\x66\xe7\x92\x24\x22" "\x19\x92\xd3\x1c\x20\x1b\xcb\x17\xd3\xb4\x36\x46\xdd\x9b\x7f\xfb\xff" "\x47\x7d\xf5\x67\x77\xed\xec\x8e\x55\xc7\x58\x07\x00\x00\x00\x18\x2d" "\xeb\xc3\x57\x7a\xff\x72\x54\x63\x43\xfc\x5f\x6c\x58\xee\xfb\xa3\xd2" "\x9b\x9f\xe5\xfd\xb3\xfe\xee\x7d\xf7\xfc\xeb\xaf\xa7\x47\x9c\x79\xfc" "\x81\xa9\x42\xff\xb2\x3f\xca\x2e\x7e\xfd\xca\x05\x4f\xf5\x1f\x22\x72" "\xbd\xd9\xb9\x88\xa3\xdb\xf5\x92\x21\xf5\x7e\xf3\xfb\x7b\x6e\xdc\xd4" "\x7c\xf7\x81\x88\x33\x8f\xcb\x9f\xb4\xaa\x5e\xbc\x7f\xbd\xde\x25\xd3" "\xe6\xa3\xf5\xad\x97\xee\x78\xf6\xc0\xf6\x11\x2f\x07\x00\x00\x00\x0e" "\x13\x59\xff\x3f\xd1\x89\x54\xa2\x54\xb8\x6e\x68\xff\x9f\x75\xde\x23" "\xfa\xff\x8e\xe5\x06\xfc\xe8\x1b\x77\xfd\xe2\xd8\xf6\xb1\xdd\x91\xf7" "\xcd\xc8\x55\xda\xf5\x72\x43\xea\x7d\x61\xd3\x43\x7f\x3e\xf5\xdc\xbf" "\xbf\xbe\xd4\xff\xaf\xae\xf7\xc9\xce\xd5\xa7\xf7\x5e\x7b\xdf\xb1\x3d" "\x05\x5b\x91\x3e\x49\xda\x9c\xb9\x76\xe7\xe6\x03\xe7\xec\xcb\x65\xbb" "\x6e\xd5\xcf\xf7\xd5\xcf\xde\xcb\x97\xbf\xf5\xda\xbf\xaf\xbe\xe9\xee" "\x77\x5b\xf5\xcb\x51\x6e\xc7\xd7\xf7\x3d\x4a\xab\xda\xea\x63\x5f\xf9" "\x48\x9b\x0b\xb9\x3d\x73\x97\xbc\xb7\xa7\xd1\x5b\xbf\x30\x64\xff\xb7" "\xff\xee\xe9\x17\x7f\xb5\xfe\xae\xb7\x97\xea\xbf\x75\xf2\x64\xa7\xfe" "\x69\x31\xa8\x7e\x6b\xe7\x85\xa1\xf5\xe3\x88\xb4\x39\x79\xf9\x1d\xbb" "\xcf\xdb\xbb\x7f\x73\x6f\xfd\x88\xa8\x45\x7e\x75\xfd\x37\xde\xbe\x28" "\x4e\xf8\xe3\x35\xb7\xf5\xef\x7f\xb2\x6f\xe1\xee\x37\xdf\x7d\xec\x7f" "\x01\x69\xf3\xf9\x8d\x6f\xee\x3b\xf7\xde\xea\xf9\xbd\xf5\x93\xa5\xfa" "\x5d\xb2\xf7\xff\xf3\x17\xef\xdf\xfd\x93\xbb\xbf\xfb\x58\x56\x3f\xfb" "\xad\xc8\xe9\xa7\xac\xb5\x7e\xae\xaf\xfe\x73\x77\x1e\xb3\xeb\x99\x5b" "\x2f\x5b\xdf\x5b\x3f\xd7\x57\x3f\xdb\xff\x53\x57\xbc\x34\xb5\xad\xf6" "\x9d\x3f\xf4\xef\xff\xaa\x9e\x55\x0b\x43\x9f\x62\xf5\xfe\x1f\x3c\xe3" "\xe1\x2b\x5f\xde\x92\xde\xd2\x3f\x04\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x70\x78\x59\x6c\x4c\xcf\xd7\x67\x66\xe7\x72" "\x49\x44\x32\x24\xa7\x39\x40\x36\x96\x2f\xa6\x69\x6d\x8c\xba\xaf\x5e" "\xfc\xc2\x1b\x57\xdc\xf5\xe3\x1f\x76\xc7\xaa\x63\xac\x03\x00\x00\x00" "\x8c\x96\xf5\xe1\x2b\xbd\x7f\x39\xaa\x51\x8c\x62\x4c\x2e\xf7\xfd\x8f" "\xd6\xb7\x5e\xba\xe3\xd9\x03\xdb\xa3\xd2\x1a\x4d\xda\xe7\xc2\xc2\xb6" "\x1b\x76\x7c\xe2\xea\x6d\x3b\xaf\xbb\xea\x20\x3d\x39\x00\x00\x00\xb0" "\x56\xaf\x5e\x9c\x2c\xf7\xff\x85\x4e\xa4\x12\xa5\xc2\xa6\x98\x68\xf7" "\xff\x33\xd7\xee\xdc\x7c\xe0\x9c\x7d\xb9\xac\xff\xcf\x2d\x9d\x93\x88" "\xb8\xfa\x9a\x85\xad\x67\x46\x27\xef\xb9\x3b\x8f\xd9\xf5\xcc\xad\x97" "\xad\xef\x7c\x27\x88\x58\xfe\x59\x40\x79\x29\xef\x33\x2b\x79\x17\x5e" "\xf0\x42\xe5\xcd\x3f\x7d\xfd\xd4\x81\x79\x67\xaf\xe4\x3d\xbf\xf1\xcd" "\x7d\xe7\xde\x5b\x3d\x3f\xcb\x8b\xee\xbc\xb3\xa2\xf3\x7d\xe2\xc1\x33" "\x1e\xbe\xf2\xe5\x2d\xe9\x2d\x9d\xe7\xeb\xce\xfb\xd4\xd7\xb6\x2d\xb4" "\x3f\x4f\x64\xeb\x4e\x5e\x7e\xc7\xee\xf3\xf6\xee\xdf\x9c\xcb\xbe\x63" "\xb4\xcf\x93\xed\x75\xb3\xbc\x85\xdc\x9e\xb9\x4b\xde\xdb\xd3\xc8\x55" "\xa2\xb4\x34\x9e\x6f\xe7\x95\xdb\xfb\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\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x56\x5b\x6c\x4c\xcf\xd7\x67\x66" "\xe7\x22\x1f\x91\x0c\xc9\x69\x76\x6b\x07\xb2\xb1\x7c\x31\x4d\x6b\x63" "\xd4\xbd\x64\xd3\x2f\x6f\x3b\xea\x9d\xc7\x37\x74\xc7\x4a\x85\x31\x16" "\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xf8\x0f\x3b\x70\x20\x00\x00\x00\x00\x00\xe4" "\xff\xda\x08\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\xd8\xaf\xbf\x10\xa9\xca\x3e\x0e\xe0\xcf\x33\x33\xfb\xee\xec" "\xce\xae\xee\xea\x0b\x6d\x45\xeb\x6a\x45\x61\x17\x4a\x41\x44\xdd\x54" "\x54\x84\x46\x08\x5d\x19\x12\x96\xe6\x45\x14\x04\x11\x85\x5d\xb4\x86" "\x46\x62\x45\x37\x41\xd6\x8d\x44\x05\xd5\x16\x82\x41\x6e\x92\x68\xb1" "\x46\xff\xa4\x9b\x2e\x2a\x28\xb0\x2e\x02\x91\x16\x6a\x17\xe9\x22\x63" "\x67\x9e\x33\xce\x1e\xe7\x34\x3a\x5b\x81\xf4\xf9\xc0\xf0\xec\xf3\x9c" "\x73\xbe\xe7\x77\xce\xf3\xcc\x99\x3d\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9c" "\x57\x7a\x2b\x23\xf5\xf6\xc8\x8e\x47\x66\xef\xbc\xe8\xd6\xcf\x9e\xba" "\x7f\xe6\xc9\xdb\x3f\x78\x68\xdb\x15\x4f\xbc\xf5\xd3\xd8\xa6\x9b\x3f" "\xdd\xdb\xff\xfa\xc9\xa9\xcd\xcb\xb7\x7c\x7b\xcb\xd2\x4d\x07\x1e\x58" "\x33\xb9\xfb\x95\xc3\xbf\x0d\xbe\xf7\xc7\xb1\x8e\xc1\x8f\x37\x9a\x95" "\xa9\x5b\x0d\x21\x9e\x88\x21\x54\x3f\x9c\x7e\xf1\xe9\xa9\xcf\x2f\x98" "\x1b\x8b\x21\x84\x72\x1c\x1a\x0f\x61\x38\x2e\x39\x3c\x1c\x73\x09\xab" "\x7f\x0f\x21\x6c\x6e\xd6\x39\x7f\xe3\xbe\x99\x6b\xb6\xcc\xb5\xdb\x76" "\xf5\xce\x1b\x5f\x9c\x0b\xc9\x5f\x57\xa8\x95\xb3\x7a\x1a\x86\xe6\xd7" "\xdb\xea\x54\x3e\x8c\xf3\x4e\x35\xad\xb3\xad\xb3\x8f\x5d\x15\xbe\xbf" "\x69\xfd\xf6\x2f\x97\xbd\xfb\x4e\xcf\xc4\xf1\xf1\xd3\xbb\xc4\xb9\x7d" "\xca\x69\x3d\x85\xb0\x68\x63\xeb\xf1\x3d\x21\x84\xbe\xf4\x99\x93\xad" "\xb6\x91\xec\xe0\xd4\xae\x0b\x21\xf4\xb7\x1c\x77\x5d\x87\xba\x2e\x3d" "\xcb\xfa\x57\x15\xf4\x2f\x4e\xed\xff\x52\x5b\xeb\x90\x93\x6d\x5f\x91" "\xeb\x97\x72\xfb\xe5\xfb\x99\x9e\x5c\xdb\xdf\xe1\x7c\x0b\x55\x54\x47" "\xb7\xfb\x75\x32\x90\xeb\xe7\x1f\x46\x0b\xd5\xac\x73\x55\xfb\xf1\xe1" "\xd4\xbe\x9f\xda\x95\xe7\x98\x5f\xce\x3e\x31\x94\x62\xa8\x34\xcb\x7f" "\x30\x9e\x5e\x23\xa1\x65\xde\x62\x88\xf5\xb9\xac\x36\xfb\xa5\x6c\x6e" "\x2b\x21\x5d\x7f\x4f\xcb\x71\x31\x84\x98\xeb\x97\x72\xfd\x72\x4f\xee" "\xba\xea\xe7\x4d\x0b\xad\x1c\xe3\xfc\xf1\x6c\xbf\xdc\x78\xf6\x38\xae" "\xa4\xf1\xe5\xad\xcf\xea\x36\xee\x2a\x18\xbf\x30\xb5\xd5\xf4\x45\x3d" "\x99\xf5\x43\xfe\x8f\x86\xda\x19\x7f\x34\xaf\xab\x2e\xab\x6b\xfa\x2f" "\x6a\xf9\x37\x94\x5a\x9e\x41\xed\xc6\x9b\x13\x9f\x26\xa3\x96\xc6\x6a" "\x71\xc9\x19\xc7\x9c\x6a\x23\xdb\x36\xb5\xfe\xd9\xcb\xcb\x1b\x3e\x3a" "\x32\x54\x50\x47\xdc\x1b\x53\x7e\xec\x2a\x7f\xeb\x17\xc3\x03\xf7\xbc" "\xbd\xf3\xd1\x91\xa2\xfc\x8d\xa5\x94\x5f\xea\x2a\xff\x87\xb5\x47\x7f" "\xb9\x7b\xe7\xab\x2f\x17\xe6\xbf\x90\xe5\x97\xbb\xca\xbf\xfa\x60\xff" "\x89\xb5\x1f\xef\x58\x51\x78\x7f\xa6\xb3\xfb\x53\x39\xab\xfc\x98\xfa" "\xd9\xb6\x7b\x8f\x7d\xf2\xdc\xb2\xff\xdf\x37\xd1\x6e\xae\xeb\xf9\x7b" "\xb2\xfc\x6a\x57\xf5\xdf\x38\x79\xb4\x77\x70\xf6\xe0\xa1\xc2\xfa\x57" "\x67\xf7\xa7\xaf\xab\xfc\xef\x6e\xb8\xed\xc7\x37\xbf\xde\x7f\xbc\x30" "\x3f\x64\xf9\xfd\x5d\xe5\x6f\x98\x7c\xf8\xf9\xde\xd1\xd9\x2b\x0b\xf3" "\x0f\x35\xbe\x0a\xb5\xfa\x0a\xed\x62\xfd\xfc\x3a\x71\xed\x37\xa3\xa3" "\x3f\x8f\x15\xe5\x7f\x95\xdd\xff\xc1\x36\xf9\xb1\x63\xfe\x1b\xe3\xbb" "\xaf\x7f\x6d\xf1\xae\x35\x85\xeb\x73\x5d\x76\x7f\x86\x52\x7e\xdf\x39" "\xd5\x7f\xc7\x65\x07\xb6\x0f\xcc\xee\xbf\xa4\xe8\xd9\x19\xf7\xfc\x5d" "\xbf\x9c\x00\xff\x4d\x4b\xd3\xff\x58\xcf\xa4\x7e\xa7\xf7\xcc\x7d\x33" "\xa5\xb6\xef\x99\x0b\xd5\xf2\xbe\xf0\xd2\x58\xa5\xf1\x0b\x34\x90\x3e" "\x9d\xde\x0d\x17\x62\xee\x3c\x8b\xfe\xc1\x7c\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xf8\x93\x1d\x38\x20\x01\x00\x00\x00\x10\xf4\xff\x75\x3b\x02" "\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" "\x9e\x0a\x00\x00\xff\xff\x8a\x76\x1d\xcf", 23198); syz_mount_image(/*fs=*/0x200000000040, /*dir=*/0x2000000003c0, /*flags=MS_NOSUID*/ 2, /*opts=*/0x2000000002c0, /*chdir=*/-1, /*size=*/0x5a9e, /*img=*/0x200000006b40); break; case 1: // open arguments: [ // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0x14927e (8 bytes) // mode: open_mode = 0x20 (8 bytes) // ] // returns fd memcpy((void*)0x2000000001c0, "./file1\000", 8); res = syscall( __NR_open, /*file=*/0x2000000001c0ul, /*flags=O_TRUNC|O_SYNC|O_NOATIME|O_LARGEFILE|O_CREAT|O_RDWR|0x3c*/ 0x14927eul, /*mode=S_IRGRP*/ 0x20ul); if (res != -1) r[0] = res; break; case 2: // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0x101042 (4 bytes) // mode: open_mode = 0x0 (2 bytes) // ] // returns fd memcpy((void*)0x200000000180, "./file1\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000180ul, /*flags=O_SYNC|O_CREAT|O_RDWR*/ 0x101042, /*mode=*/0); if (res != -1) r[1] = res; break; case 3: // pwrite64 arguments: [ // fd: fd (resource) // buf: ptr[in, buffer] { // buffer: {32} (length 0x1) // } // count: len = 0x1 (8 bytes) // pos: intptr = 0xfecd (8 bytes) // ] memset((void*)0x2000000001c0, 50, 1); syscall(__NR_pwrite64, /*fd=*/r[1], /*buf=*/0x2000000001c0ul, /*count=*/1ul, /*pos=*/0xfecdul); break; case 4: // fallocate arguments: [ // fd: fd (resource) // mode: fallocate_mode = 0x0 (8 bytes) // off: intptr = 0x0 (8 bytes) // len: intptr = 0x1001ec (8 bytes) // ] syscall(__NR_fallocate, /*fd=*/r[0], /*mode=*/0ul, /*off=*/0ul, /*len=*/0x1001ecul); break; case 5: // copy_file_range arguments: [ // fd_in: fd (resource) // off_in: nil // fd_out: fd (resource) // off_out: ptr[inout, int64] { // int64 = 0xc615 (8 bytes) // } // len: intptr = 0x101 (8 bytes) // flags: copy_file_range_flags = 0x0 (8 bytes) // ] *(uint64_t*)0x2000000000c0 = 0xc615; syscall(__NR_copy_file_range, /*fd_in=*/r[0], /*off_in=*/0ul, /*fd_out=*/r[0], /*off_out=*/0x2000000000c0ul, /*len=*/0x101ul, /*flags=*/0ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); do_sandbox_none(); } } sleep(1000000); return 0; }