// https://syzkaller.appspot.com/bug?id=3e6a8499b70dc448ca4f8dcd150ba509b9b69a26 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include <dirent.h> #include <endian.h> #include <errno.h> #include <fcntl.h> #include <pthread.h> #include <sched.h> #include <setjmp.h> #include <signal.h> #include <stdarg.h> #include <stdbool.h> #include <stddef.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/ioctl.h> #include <sys/mman.h> #include <sys/mount.h> #include <sys/prctl.h> #include <sys/resource.h> #include <sys/stat.h> #include <sys/syscall.h> #include <sys/time.h> #include <sys/types.h> #include <sys/wait.h> #include <time.h> #include <unistd.h> #include <linux/capability.h> #include <linux/futex.h> #include <linux/loop.h> #ifndef __NR_memfd_create #define __NR_memfd_create 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #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"); } 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 < 1; 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); } } void execute_call(int call) { switch (call) { case 0: memcpy((void*)0x20000040, "jfs\000", 4); memcpy((void*)0x20000000, "./file0\000", 8); memcpy((void*)0x20000200, "noquota,quota,iocharset=iso8859-13,nointegrity,quota,noquota," "nointegrity\000usrquota,uid=", 86); sprintf((char*)0x20000256, "0x%016llx", (long long)0); memcpy((void*)0x20000268, ",nointegrity,nodiscard,nointegrity,gid=", 39); sprintf((char*)0x2000028f, "0x%016llx", (long long)0); memcpy((void*)0x200002a1, "\x2c\x6e\x84\xf5\x6f\x71\x75\x6f\x74\x71\x2c\x72\x65\x73\x69\x7a" "\x9e\x9f\x5b\xd1\x46\xac\xa8\x0f\x30\x30\x30\x30\x30\x05\x30\x30" "\x30\x66\x37\x64\x13\xe4\x09\x00\x3b\x62\x83\x8a\x0e\xd0\x36\xed" "\xdf\x06\x90\x94\x04\x65\x70\x21\xd5\x30\xa5\xbe\x6b\x6e\x77\x5d" "\xf9\x0e\x00\x84\xd3\x0c\x17", 71); memcpy( (void*)0x20028e00, "\x78\x9c\xec\xdd\x4b\x8f\x1c\x57\xd9\x07\xf0\xa7\xaf\x73\xc9\x9b\x64" "\x94\x45\x94\xd7\x42\x68\xe2\x84\x4b\x08\xf1\x35\x18\x43\x80\x24\x0b" "\x58\xb0\xc9\x02\x79\x8b\x6c\x4d\x26\x91\x85\x03\xc8\x36\xc8\x89\x2c" "\x3c\xd1\x6c\x58\xb0\xe2\x13\x80\x90\x58\x22\xc4\x12\xb1\xe0\x03\x64" "\xc1\x96\x1d\x2b\x56\x58\xb2\x91\x40\x59\x51\xa8\x66\xce\xf1\x54\xb7" "\xbb\xdd\x63\xc6\xd3\xd5\x33\xe7\xf7\x93\xc6\x55\x4f\x9d\xea\xe9\x53" "\xf3\xef\xea\x8b\xab\xaa\x4f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xf1\xdd\xef\x7c\xef\x6c\x27\x22\x2e\xff\x34\x2d" "\x58\x8b\xf8\xbf\xe8\x45\x74\x23\x56\xea\x7a\x3d\x22\x56\xd6\xd7\xf2" "\xfa\xfd\x88\x78\x21\x76\x9a\xe3\xf9\x88\x18\x2c\x45\xd4\xb7\xdf\xf9" "\xe7\xd9\x88\xd7\x23\xe2\x93\x67\x22\xee\xdd\xbf\xbd\x51\x2f\x3e\xb7" "\xcf\x7e\x7c\xfb\xf7\x7f\xfd\xcd\xf7\x9f\x7a\xe7\x2f\xbf\x1b\x9c\xfe" "\xf7\x1f\x6e\xf6\xde\x98\xb6\xde\xad\x5b\xbf\xf8\xd7\x1f\xef\x1c\x6c" "\x9b\x01\x00\x00\xa0\x34\x55\x55\x55\x9d\xf4\x31\xff\x44\xfa\x7c\xdf" "\x6d\xbb\x53\x00\xc0\x5c\xe4\xd7\xff\x2a\xc9\xcb\x8f\x7d\xfd\xcb\xbf" "\xbf\xf3\xa7\x45\xea\x8f\x5a\xad\x56\xab\xd5\x73\xa8\x9b\xaa\xc9\xee" "\x34\x8b\x88\xd8\x6a\xde\xa6\x7e\xcf\xe0\x70\x3c\x00\x1c\x31\x5b\xf1" "\x69\xdb\x5d\xa0\x45\xf2\x2f\x5a\x3f\x22\x9e\x6a\xbb\x13\xc0\x42\xeb" "\xb4\xdd\x01\x0e\xc5\xbd\xfb\xb7\x37\x3a\x29\xdf\x4e\xf3\xf5\x60\x7d" "\xb7\x3d\x9f\x0b\x32\x92\xff\x56\xe7\xc1\xf5\x1d\xd3\xa6\xb3\x8c\x9f" "\x63\x32\xaf\xc7\xd7\x76\xf4\xe2\xb9\x29\xfd\x59\x99\x53\x1f\x16\x49" "\xce\xbf\x3b\x9e\xff\xe5\xdd\xf6\x61\x5a\xef\xb0\xf3\x9f\x97\x69\xf9" "\x0f\x77\x2f\x7d\x2a\x4e\xce\xbf\x37\x9e\xff\x98\xe3\x93\x7f\x77\x62" "\xfe\xa5\xca\xf9\xf7\x1f\x2b\xff\x9e\xfc\x01\x00\x00\x00\x00\x60\x81" "\xe5\xff\xff\x5f\x6b\xf9\xf8\xef\xd2\xc1\x37\x65\x5f\x1e\x75\xfc\x77" "\x7d\x4e\x7d\x00\x00\x00\x00\x00\x00\x00\x80\x27\xed\xa0\xe3\xff\x3d" "\x60\xfc\x3f\x00\x00\x00\x58\x58\xf5\x67\xf5\xda\xaf\x9e\xd9\x5b\x36" "\xed\xbb\xd8\xea\xe5\x97\x3a\x11\x4f\x8f\xad\x0f\x14\x26\x5d\x2c\xb3" "\xda\x76\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x24\xfd\xdd" "\x73\x78\x2f\x75\x22\x06\x11\xf1\xf4\xea\x6a\x55\x55\xf5\x4f\xd3\x78" "\xfd\xb8\x0e\x7a\xfb\xa3\xae\xf4\xed\x87\x92\xb5\xfd\x24\x0f\x00\x00" "\xbb\x3e\x79\x66\xec\x5a\xfe\x4e\xc4\x72\x44\x5c\x4a\xdf\xf5\x37\x58" "\x5d\x5d\xad\xaa\xe5\x95\xd5\x6a\xb5\x5a\x59\xca\xef\x67\x87\x4b\xcb" "\xd5\x4a\xe3\x73\x6d\x9e\xd6\xcb\x96\x86\xfb\x78\x43\xdc\x1f\x56\xf5" "\x2f\x5b\x6e\xdc\xae\x69\xd6\xe7\xe5\x59\xed\xe3\xbf\xaf\xbe\xaf\x61" "\xd5\xdb\x47\xc7\x9e\x90\x41\xfa\x6b\x4e\x69\x6e\x29\x6c\x00\x48\x76" "\x5f\x8d\xee\x79\x45\x3a\x66\xaa\xea\xd9\x69\x6f\x3e\x60\x84\xfd\xff" "\xf8\xb1\xff\xb3\x1f\x6d\x3f\x4e\x01\x00\x00\x80\xc3\x57\x55\x55\xd5" "\x49\x5f\xe7\x7d\x22\x1d\xf3\xef\xb6\xdd\x29\x00\x60\x2e\xf2\xeb\xff" "\xf8\x71\x81\x43\xa9\x23\x0e\xf7\xf7\xab\xd5\x6a\xb5\x5a\xad\x7e\x64" "\xdd\x54\x4d\x76\xa7\x59\x44\xc4\x56\xf3\x36\xf5\x7b\x06\xc3\xf1\x03" "\xc0\x11\xb3\x15\x9f\xb6\xdd\x05\x5a\x24\xff\xa2\xf5\x23\xe2\x85\xb6" "\x3b\x01\x2c\xb4\x4e\xdb\x1d\xe0\x50\xdc\xbb\x7f\x7b\xa3\x93\xf2\xed" "\x34\x5f\x0f\xd2\xf8\xee\xf9\x5c\x90\x91\xfc\xb7\x3a\x3b\xb7\xcb\xb7" "\x9f\x34\x9d\x65\xfc\x1c\x93\x79\x3d\xbe\xb6\xa3\x17\xcf\x4d\xe9\xcf" "\xf3\x73\xea\xc3\x22\xc9\xf9\x77\xc7\xf3\xbf\xbc\xdb\x3e\x4c\xeb\x1d" "\x76\xfe\xf3\x32\x2d\xff\x7a\x3b\xd7\x5a\xe8\x4f\xdb\x72\xfe\xbd\xf1" "\xfc\xc7\x1c\x9f\xfc\xbb\x13\xf3\x2f\x55\xce\xbf\xff\x58\xf9\xf7\xe4" "\x0f\x00\x00\x00\x00\x00\x0b\x2c\xff\xff\xff\x9a\xe3\xbf\x79\x93\x01" "\x00\x00\x00\x00\x00\x00\xe0\xc8\xb9\x77\xff\xf6\x46\xbe\xee\x35\x1f" "\xff\xff\xcc\x84\xf5\x5c\xff\x79\x3c\xe5\xfc\x3b\xf2\x2f\x52\xce\xbf" "\x3b\x96\xff\x17\xc7\xd6\xeb\x35\xe6\xef\xbe\xbd\x97\xff\x3f\xef\xdf" "\xde\xf8\xed\xcd\x7f\xfc\x7f\x9e\xee\x37\xff\xa5\x3c\xd3\x49\x8f\xac" "\x4e\x7a\x44\x74\xd2\x3d\x75\xfa\x69\x7a\x90\xad\x7b\xd8\xf6\xa0\x37" "\xac\xef\x69\xd0\xe9\xf6\xfa\xe9\x9c\x9f\x6a\xf0\x5e\x5c\x8d\x6b\xb1" "\x19\x67\x46\xd6\xed\xa6\xbf\xc7\x5e\xfb\xd9\x91\xf6\xba\xa7\x83\x91" "\xf6\x73\x23\xed\xfd\x87\xda\xcf\x8f\xb4\x0f\xd2\xf7\x0e\x54\x2b\xb9" "\xfd\x54\x6c\xc4\x8f\xe2\x5a\xbc\xbb\xd3\x5e\xb7\x2d\xcd\xd8\xfe\xe5" "\x19\xed\xd5\x8c\xf6\x9c\x7f\xcf\xfe\x5f\xa4\x9c\x7f\xbf\xf1\x53\xe7" "\xbf\x9a\xda\x3b\x63\xd3\xda\xdd\x8f\xbb\x0f\xed\xf7\xcd\xe9\xa4\xfb" "\x79\xeb\xea\x67\x7f\x7e\xe6\xf0\x37\x67\xa6\xed\xe8\x3d\xd8\xb6\xa6" "\x7a\xfb\x4e\xb6\xd0\x9f\x9d\xbf\xc9\x53\xc3\xf8\xc9\x8d\xcd\xeb\xa7" "\x6e\x5d\xb9\x79\xf3\xfa\xd9\x48\x93\x91\xa5\xe7\x22\x4d\x9e\xb0\x9c" "\xff\x60\xe7\x67\x69\xef\xf9\xff\xa5\xdd\xf6\xfc\xbc\xdf\xdc\x5f\xef" "\x7e\x3c\x7c\xec\xfc\x17\xc5\x76\xf4\xa7\xe6\xff\x52\x63\xbe\xde\xde" "\x57\xe6\xdc\xb7\x36\xe4\xfc\x87\xe9\x27\xe7\xff\x6e\x6a\x9f\xbc\xff" "\x1f\xe5\xfc\xa7\xef\xff\xaf\xb6\xd0\x1f\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x78\x94\xaa\xaa\x76\x2e\x11\x7d\x2b\x22\x2e\xa4" "\xeb\x7f\xda\xba\x36\x13\x00\x98\xaf\xfc\xfa\x5f\x25\x79\xb9\x5a\xad" "\x56\xab\xd5\xea\xe3\x57\x37\x55\x93\xbd\xd9\x2c\x22\xe2\xcf\xcd\xdb" "\xd4\xef\x19\x7e\x36\xe9\x97\x01\x00\x8b\xec\x3f\x11\xf1\xb7\xb6\x3b" "\x41\x6b\xe4\x5f\xb0\xfc\x7d\x7f\xf5\xf4\xe5\xb6\x3b\x03\xcc\xd5\x8d" "\x0f\x3f\xfa\xc1\x95\x6b\xd7\x36\xaf\xdf\x68\xbb\x27\x00\x00\x00\x00" "\x00\x00\x00\xc0\xff\x2a\x8f\xff\xb9\xde\x18\xff\xf9\xe5\x88\x58\x1b" "\x5b\x6f\x64\xfc\xd7\xb7\x63\xfd\xa0\xe3\x7f\xf6\xf3\xcc\x83\x01\x46" "\x9f\xf0\x40\xdf\x53\x6c\x77\x87\xbd\x6e\x63\xb8\xf1\x17\x63\x67\x7c" "\xee\x53\xd3\xc6\xff\x3e\x19\x8f\x1e\xff\xbb\x3f\xe3\xfe\x06\x33\xda" "\x87\x33\xda\x97\x66\xb4\x2f\x4f\x5c\xba\x97\xd6\xc4\x0b\x3d\x1a\x72" "\xfe\x2f\x36\xc6\x3b\xaf\xf3\x3f\x31\x36\xfc\x7a\x09\xe3\xbf\x8e\x8f" "\x79\x3f\xc3\xac\xe8\x8f\x84\x9c\xff\xc9\xc6\xe3\xb9\xce\xff\x0b\x63" "\xeb\x35\xf3\xaf\x7e\xbd\x70\xf9\x6f\xed\x77\xc5\xed\xe8\x8e\xe4\x7f" "\xfa\xe6\x07\x3f\x3e\x7d\xe3\xc3\x8f\x5e\xbb\xfa\xc1\x95\xf7\x37\xdf" "\xdf\xfc\xe1\xf9\xb3\x67\xcf\x9c\xbf\x70\xe1\xe2\xc5\x8b\xa7\xdf\xbb" "\x7a\x6d\xf3\xcc\xee\xbf\x87\xd3\xeb\x05\x90\xf3\xcf\x63\x5f\x3b\x0f" "\xb4\x2c\x39\xff\x9c\xb9\xfc\xcb\x92\xf3\xff\x5c\xaa\xe5\x5f\x96\x9c" "\xff\xe7\x53\x2d\xff\xb2\xe4\xfc\xf3\xfb\x3d\xf9\x97\x25\xe7\x9f\x3f" "\xfb\xc8\xbf\x2c\x39\xff\x57\x52\x2d\xff\xb2\xe4\xfc\xbf\x94\x6a\xf9" "\x97\x25\xe7\xff\x6a\xaa\xe5\x5f\x96\x9c\xff\x97\x53\x2d\xff\xb2\xe4" "\xfc\x5f\x4b\xb5\xfc\xcb\x92\xf3\x3f\x95\x6a\xf9\x97\x25\xe7\x7f\x3a" "\xd5\xfb\xc8\xdf\xd7\xc3\x1f\x23\x39\xff\x7c\x84\xcb\xfe\x5f\x96\x9c" "\x7f\x3e\xb3\x41\xfe\x65\xc9\xf9\x9f\x4b\xb5\xfc\xcb\x92\xf3\x3f\x9f" "\x6a\xf9\x97\x25\xe7\xff\x7a\xaa\xe5\x5f\x96\x9c\xff\x57\x52\x2d\xff" "\xb2\xe4\xfc\x2f\xa4\x5a\xfe\x65\xc9\xf9\x7f\x35\xd5\xf2\x2f\x4b\xce" "\xff\x62\xaa\xe5\x5f\x96\x9c\xff\xd7\x52\x2d\xff\xb2\xe4\xfc\xbf\x9e" "\x6a\xf9\x97\x25\xe7\xff\x46\xaa\xe5\x5f\x96\x9c\xff\x37\x52\x2d\xff" "\xb2\xe4\xfc\xbf\x99\x6a\xf9\x97\x25\xe7\xff\xad\x54\xcb\xbf\x2c\x39" "\xff\x37\x53\x2d\xff\xb2\xec\x7d\xff\xbf\x19\x33\x66\xcc\xe4\x99\xb6" "\x9f\x99\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x71\xf3\x38\x9d" "\xb8\xed\x6d\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\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\xbf\xec\xc0\x81\x00\x00\x00\x00\x00\x90\xff\x6b\x23\x54" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x61\x07" "\x0e\x04\x00\x00\x00\x00\x80\xfc\x5f\x1b\xa1\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x0a\x7b\xf7\x1a\x23\xd7\x59\xdf" "\x0f\xfc\xcc\x5e\xec\xb5\x43\x88\x81\x10\x9c\xfc\x0d\x6c\x12\x63\x8c" "\xb3\x64\xd7\x97\xf8\xc2\xbf\x2e\x26\x5c\x1b\xa0\x14\x48\x28\xf4\x82" "\xed\x7a\xd7\x66\xc1\x37\xbc\x76\x09\x14\xc9\xa6\x81\x12\x09\xa3\xa2" "\x8a\xaa\xe9\x8b\xb6\x80\x50\x1b\xa9\xaa\xb0\x2a\x5e\xd0\x8a\xd2\xbc" "\xa8\x7a\x79\x55\xda\x17\xf4\x4d\x45\x55\x09\xa9\x51\x15\x50\x40\x42" "\x6a\x2b\xca\x56\x33\xe7\x79\x1e\xcf\x8c\x67\xe7\xac\xbd\xe3\xf5\xec" "\x79\x3e\x1f\x29\xfe\x79\x77\xce\xcc\x39\x73\xe6\x99\xd9\xfd\xae\xf3" "\xdd\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\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xda" "\xdd\xfb\xc6\xb9\xcf\x36\x8a\xa2\x68\xfe\xd7\xfa\x63\x53\x51\xbc\xa0" "\xf9\xf7\x0d\x93\x9b\x5a\x9f\x7b\xdd\xad\x3e\x42\x00\x00\x00\x60\xa5" "\xfe\xb7\xf5\xe7\xf3\x77\xa4\x4f\x1c\x5a\xc6\x95\xda\xb6\xf9\xbb\x57" "\xfc\xe3\xd7\x17\x17\x17\x17\x8b\xf7\x8f\xfe\xee\xf8\x17\x17\x17\xd3" "\x05\x93\x45\x31\xbe\xbe\x28\x5a\x97\x45\x57\xfe\xfd\x03\x8d\xf6\x6d" "\x82\x27\x8a\x89\xc6\x48\xdb\xc7\x23\x15\xbb\x1f\xad\xb8\x7c\xac\xe2" "\xf2\xf1\x8a\xcb\xd7\x55\x5c\xbe\xbe\xe2\xf2\x89\x8a\xcb\xaf\x39\x01" "\xd7\xd8\x50\xfe\x3c\xa6\x75\x63\x5b\x5b\x7f\xdd\x54\x9e\xd2\xe2\xce" "\x62\xbc\x75\xd9\xd6\x1e\xd7\x7a\xa2\xb1\x7e\x64\x24\xfe\x2c\xa7\xa5" "\xd1\xba\xce\xe2\xf8\xf1\x62\xbe\x38\x59\xcc\x15\x33\x1d\xdb\x97\xdb" "\x36\x5a\xdb\x7f\xf3\xde\xe6\xbe\xde\x56\xc4\x7d\x8d\xb4\xed\x6b\x4b" "\x73\x85\xfc\xf0\x93\xc7\xe2\x31\x34\xc2\x39\xde\xda\xb1\xaf\xab\xb7" "\x19\x7d\xff\x0d\xc5\xe4\x8f\x7e\xf8\xc9\x63\x7f\x7c\xfe\xb9\xbb\x7b" "\xcd\xca\xd3\xd0\x71\x7b\xe5\x71\x6e\xbf\xaf\x79\x9c\x9f\x0e\x9f\x29" "\x8f\xb5\x51\xac\x4f\xe7\x24\x1e\xe7\x48\xdb\x71\x6e\xe9\xf1\x98\x8c" "\x76\x1c\x67\xa3\x75\xbd\xe6\xdf\xbb\x8f\xf3\xf9\x65\x1e\xe7\xe8\xd5" "\xc3\x5c\x55\xdd\x8f\xf9\x44\x31\xd2\xfa\xfb\xb7\x5b\xe7\x69\xac\xfd" "\xc7\x7a\xe9\x3c\x6d\x09\x9f\xfb\xaf\xfb\x8b\xa2\xb8\x74\xf5\xb0\xbb" "\xb7\xb9\x66\x5f\xc5\x48\xb1\xb1\xe3\x33\x23\x57\x1f\x9f\x89\x72\x45" "\x36\x6f\xa3\xb9\x94\x5e\x5c\x8c\x5d\xd7\x3a\xbd\x77\x19\xeb\xb4\x39" "\x67\xb7\x76\xae\xd3\xee\xe7\x44\x7c\xfc\xef\x0d\xd7\x1b\x5b\xe2\x18" "\xda\x1f\xa6\xef\x7f\x6a\xdd\x35\x8f\xfb\xf5\xae\xd3\xa8\x79\xaf\x97" "\x7a\xae\x74\xaf\xc1\x41\x3f\x57\x86\x65\x0d\xc6\x75\xf1\xed\xd6\x9d" "\x7e\xb2\xe7\x1a\xdc\x1a\xee\xff\x27\xb7\x2d\xbd\x06\x7b\xae\x9d\x1e" "\x6b\x30\xdd\xef\xb6\x35\x78\x5f\xd5\x1a\x1c\x59\x37\xda\x3a\xe6\xf4" "\x20\x34\x5a\xd7\xb9\xba\x06\x77\x76\x6c\x3f\xda\xda\x53\xa3\x35\x9f" "\xdd\xd6\x7f\x0d\x4e\x9f\x3f\x75\x76\x7a\xe1\xe3\x9f\x78\xed\xfc\xa9" "\xa3\x27\xe6\x4e\xcc\x9d\xde\xbd\x73\xe7\xcc\xee\xbd\x7b\xf7\xef\xdf" "\x3f\x7d\x7c\xfe\xe4\xdc\x4c\xf9\xe7\x0d\x9e\xed\xe1\xb7\xb1\x18\x49" "\xcf\x81\xfb\xc2\xb9\x8b\xcf\x81\x57\x77\x6d\xdb\xbe\x54\x17\xbf\x3c" "\xb8\xe7\xe1\x44\x9f\xe7\xe1\xa6\xae\x6d\x07\xfd\x3c\x1c\xeb\xbe\x73" "\x8d\xd5\x79\x42\x5e\xbb\xa6\xcb\xe7\xc6\xa3\xcd\x93\x3e\x71\x79\xa4" "\x58\xe2\x39\xd6\x7a\x7c\x76\xac\xfc\x79\x98\xee\x77\xdb\xf3\x70\xac" "\xed\x79\xd8\xf3\x6b\x4a\x8f\xe7\xe1\xd8\x32\x9e\x87\xcd\x6d\xce\xee" "\x58\xde\xf7\x2c\x63\x6d\xff\xf5\x3a\x86\x9b\xf5\xb5\x60\x53\xdb\x1a" "\xec\xfe\x7e\xa4\x7b\x0d\x0e\xfa\xfb\x91\x61\x59\x83\x13\x61\x5d\xfc" "\xeb\x8e\xa5\xbf\x16\x6c\x09\xc7\xfb\xe4\xd4\xf5\x7e\x3f\x32\x7a\xcd" "\x1a\x4c\x77\x37\xbc\xf6\x34\x3f\x93\xbe\xdf\x9f\xd8\xdf\x1a\xbd\xd6" "\xe5\x3d\xcd\x0b\x6e\x5b\x57\x5c\x58\x98\x3b\xf7\xe0\xe3\x47\xcf\x9f" "\x3f\xb7\xb3\x08\x63\x55\xbc\xa4\x6d\xad\x74\xaf\xd7\x8d\x6d\xf7\xa9" "\xb8\x66\xbd\x8e\x5c\xf7\x7a\x3d\x34\xff\x8a\x27\xef\xe9\xf1\xf9\x4d" "\xe1\x5c\x4d\xbc\xb6\xf9\xc7\xc4\x92\x8f\x55\x73\x9b\x3d\x0f\xf6\x7f" "\xac\x5a\x5f\xdd\x7a\x9f\xcf\x8e\xcf\xee\x2a\xc2\x18\xb0\xd5\x3e\x9f" "\xbd\xbe\x9a\x37\xcf\x67\xca\x92\x7d\xce\x67\x73\x9b\x4f\x4f\xaf\xfc" "\x7b\xf1\x94\x4b\xdb\x5e\x7f\xc7\x97\x78\xfd\x8d\xb9\xff\xa7\xe5\xfe" "\xd2\x4d\x3d\x31\x3a\x3e\x56\x3e\x7f\x47\xd3\xd9\x19\xef\x78\x3d\xee" "\x7c\xa8\xc6\x5a\xaf\x5d\x8d\xd6\xbe\x9f\x9f\x5e\xde\xeb\xf1\x78\xf8" "\x6f\xb5\x5f\x8f\xef\xec\xf3\x7a\xbc\xb9\x6b\xdb\x41\xbf\x1e\x8f\x77" "\xdf\xb9\xf8\x7a\xdc\xa8\xfa\x69\xc7\xca\x74\x3f\x9e\x13\x61\x9d\x9c" "\x9c\xe9\xff\x7a\xdc\xdc\x66\xf3\xae\xeb\x5d\x93\x63\x7d\x5f\x8f\xef" "\x0f\xb3\x11\xce\xff\x6b\x42\x52\x48\xb9\xa8\x6d\xed\x2c\xb5\x6e\xd3" "\xbe\xc6\xc6\xc6\xc3\xfd\x1a\x8b\x7b\xe8\x5c\xa7\xbb\x3b\xb6\x1f\x0f" "\xd9\xac\xb9\xaf\xa7\x77\xdd\xd8\x3a\xdd\x7e\x7f\x79\x5b\xa3\xe9\xde" "\x5d\xb5\x5a\xeb\x74\xb2\x6b\xdb\x41\xaf\xd3\xf4\x7a\xb5\xd4\x3a\x6d" "\x54\xfd\xf4\xed\xc6\x74\x3f\x9e\x13\x61\x5d\xdc\xb9\xbb\xff\x3a\x6d" "\x6e\xf3\xcc\x9e\x95\xbf\x76\x6e\x88\x7f\x6d\x7b\xed\x5c\x57\xb5\x06" "\xc7\x47\xd7\x35\x8f\x79\x3c\x2d\xc2\xf2\xf5\x7e\x71\x43\x5c\x83\x0f" "\x16\xc7\x8a\x33\xc5\xc9\x62\xb6\x75\xe9\xba\xd6\x7a\x6a\xb4\xf6\x35" "\xf5\xd0\xf2\xd6\xe0\xba\xf0\xdf\x6a\xbf\x56\x6e\xee\xb3\x06\xb7\x77" "\x6d\x3b\xe8\x35\x98\xbe\x8e\x2d\xb5\xf6\x1a\x63\xd7\xde\xf9\x01\xe8" "\x7e\x3c\x27\xc2\xba\x78\xea\xa1\xfe\x6b\xb0\xb9\xcd\x9b\xf6\x0d\xf6" "\x7b\xd7\xed\xe1\x33\x69\x9b\xb6\xef\x5d\xbb\x7f\xbe\xb6\xd4\xcf\xbc" "\xee\xe9\x3a\x4d\x37\xf3\x67\x5e\xcd\xe3\xfc\x9b\x7d\xfd\x7f\x36\xdb" "\xdc\xe6\xe4\xfe\xeb\xcd\x99\xfd\xcf\xd3\x03\xe1\x33\xb7\xf5\x38\x4f" "\xdd\xcf\xdf\xa5\x9e\x53\xb3\xc5\xea\x9c\xa7\xcd\xe1\x38\x9f\xdb\xbf" "\xf4\x79\x6a\x1e\x4f\x73\x9b\x2f\x1e\x58\xe6\x7a\x3a\x54\x14\xc5\xc5" "\x8f\x3e\xdc\xfa\x79\x6f\xf8\xf7\x95\x3f\xbf\xf0\x9d\xaf\x77\xfc\xbb" "\x4b\xaf\x7f\xd3\xb9\xf8\xd1\x87\x7f\x70\xfb\xf1\xbf\xbd\x9e\xe3\x07" "\x60\xed\xfb\x69\x39\x36\x96\x5f\xeb\xda\xfe\x65\x6a\x39\xff\xfe\x0f" "\x00\x00\x00\xac\x09\x31\xf7\x8f\x84\x99\xc8\xff\x00\x00\x00\x50\x1b" "\x31\xf7\xc7\xff\x2b\x3c\x91\xff\x01\x00\x00\xa0\x36\x62\xee\x1f\x0b" "\x33\xc9\x24\xff\x6f\x7e\xd3\x73\xf3\x3f\xbd\x58\xa4\x66\xfe\x62\x10" "\x2f\x4f\xa7\xe1\x91\x72\xbb\xd8\x71\x9d\x09\x1f\x4f\x2e\x5e\xd5\xfc" "\xfc\xc3\x5f\x9d\xfb\xf1\x5f\x5e\x5c\xde\xbe\x47\x8a\xa2\xf8\xc9\x23" "\xbf\xd1\x73\xfb\xcd\x8f\xc4\xe3\x2a\x4d\x86\xe3\xbc\xf2\xe6\xce\xcf" "\x5f\x7b\xc5\x8b\xcb\xda\xff\x91\xc7\xae\x6e\xd7\xde\x5f\xff\x52\xb8" "\xfd\x78\x7f\xfa\x2e\x83\xc5\xc5\xc5\x8b\x61\xc3\x5e\x15\xdc\x99\xa2" "\x28\xbe\x79\xc7\xe7\x5b\xfb\x99\xfc\xc0\xe5\xd6\x7c\xe6\x91\x23\xad" "\xf9\x9e\x4b\x4f\x3e\xd1\xdc\xe6\xf9\x03\xe5\xc7\xf1\xfa\xcf\xbe\xa4" "\xdc\xfe\x0f\x42\xf9\xf7\xd0\xf1\xa3\x1d\xd7\x7f\x36\x9c\x87\xef\x85" "\x39\xf3\xf6\xde\xe7\x23\x5e\xef\x6b\x97\x5f\xb3\x65\xdf\xfb\xae\xee" "\x2f\x5e\xaf\x71\xdf\x0b\x5b\x77\xfb\xa9\x0f\x96\xb7\x1b\x7f\x4f\xce" "\x17\x9e\x28\xb7\x8f\xe7\x79\xa9\xe3\xff\xab\xcf\x3d\xfd\xb5\xe6\xf6" "\x8f\xbf\xaa\xf7\xf1\x5f\x1c\xe9\x7d\xfc\x4f\x87\xdb\xfd\x6a\x98\xff" "\xfd\xf2\x72\xfb\xf6\xc7\xa0\xf9\x71\xbc\xde\x67\xc2\xf1\xc7\xfd\xc5" "\xeb\x3d\xf8\x95\x6f\xf5\x3c\xfe\x2b\x9f\x2d\xb7\x3f\xfb\x96\x72\xbb" "\x23\x61\xc6\xfd\x6f\x0f\x1f\x6f\x7d\xcb\x73\xf3\xed\xe7\xeb\xf1\xc6" "\xd1\x8e\xfb\x55\xbc\xb5\xdc\x2e\xee\x7f\xe6\x3b\xbf\xdd\xba\x3c\xde" "\x5e\xbc\xfd\xee\xe3\x9f\x38\x7c\xb9\xe3\x7c\x44\xf1\xe3\x67\xfe\xb9" "\xbc\x9d\xe9\xae\xed\xe3\xe7\xe3\x7e\xa2\xbf\xe8\xda\x7f\xf3\x76\xda" "\xd7\x67\xdc\xff\xd3\xbf\x75\xa4\xe3\x3c\x57\xed\xff\xca\x7b\x9e\x7d" "\x79\xf3\x76\xbb\xf7\xff\x40\xd7\x76\xa3\x5d\xd7\xef\xfe\x8d\x4d\x7f" "\xf8\x99\xcf\xf7\xdc\x5f\x3c\x9e\x43\x7f\x76\xb6\xe3\xfe\x1c\x7a\x77" "\x78\x1e\x87\xfd\x3f\xf5\xc1\xb0\x1e\xc3\xe5\xff\x73\xe5\xf3\x1d\xfb" "\x8d\x8e\xbc\xbb\xf3\xf5\x27\x6e\xff\xa5\x4d\x17\x3b\xee\x4f\xf4\xb6" "\x1f\x95\xfb\xbf\xf2\xfa\x13\xad\xf9\x1f\x93\x3f\xfe\xfd\xdb\x5e\x70" "\xfb\x0b\x2f\xbd\xb2\x79\xee\x8a\xe2\xdb\xef\x2d\x6f\xaf\x6a\xff\x27" "\xfe\xe8\x4c\xc7\xf1\x7f\xf9\xae\x1d\xad\xc7\x23\x5e\x1e\x3b\xfa\xdd" "\xfb\x5f\x4a\xdc\xff\xb9\x8f\x4d\x9d\x3e\xb3\x70\x61\x7e\xb6\xed\xac" "\xb6\x7e\x77\xce\x3b\xca\xe3\x59\x3f\xb1\x61\x63\xf3\x78\xef\x08\xaf" "\xad\xdd\x1f\x1f\x3e\x73\xfe\x43\x73\xe7\x26\x67\x26\x67\x8a\x62\xb2" "\xbe\xbf\x42\xef\x86\x7d\x25\xcc\x1f\x94\xe3\xd2\xf5\x5e\x7f\xc7\x63" "\xe1\xf1\xbc\xe7\xf7\xbe\xb9\x71\xdb\x3f\x7d\x2e\x7e\xfe\x5f\x1e\x2d" "\x3f\x7f\xf9\xed\xe5\xd7\xad\x57\x87\xed\xbe\x10\x3e\xbf\xa9\x7c\xfc" "\x16\x1b\x2b\xdc\xff\x53\xf7\xde\xd5\x7a\x7e\x37\x9e\x29\x3f\xee\xe8" "\xb1\x0f\xc0\x96\xad\xff\xb9\x7f\x59\x1b\x86\xfb\xdf\xfd\x7d\x41\x5c" "\xef\x67\x5f\xfa\xa1\xd6\x79\x68\x5e\xd6\xfa\xba\x11\x9f\xd7\x2b\x3c" "\xfe\xef\xce\x96\xb7\xf3\x8d\x70\x5e\x17\xc3\x6f\x66\xbe\xef\xae\xab" "\xfb\x6b\xdf\x3e\xfe\x6e\x84\xcb\xef\x2d\x9f\xef\x2b\x3e\x7f\xe1\x65" "\x2e\x3e\xae\x7f\x12\x1e\xef\x77\x7e\xaf\xbc\xfd\x78\x5c\xf1\xfe\x7e" "\x37\x7c\x1f\xf3\xad\xcd\x9d\xaf\x77\x71\x7d\x7c\xe3\xe2\x48\xf7\xed" "\xb7\x7e\x8b\xc7\xa5\xf0\x7a\x52\x5c\x2a\x2f\x8f\x5b\xc5\xf3\x7d\xf9" "\xf9\xbb\x7a\x1e\x5e\xfc\x3d\x24\xc5\xa5\xbb\x5b\x1f\xff\x4e\xba\x9d" "\xbb\xaf\xeb\x6e\x2e\x65\xe1\xe3\x0b\xd3\x27\xe7\x4f\x5f\x78\x7c\xfa" "\xfc\xdc\xc2\xf9\xe9\x85\x8f\x7f\xe2\xf0\xa9\x33\x17\x4e\x9f\x3f\xdc" "\xfa\x5d\x9e\x87\x3f\x5c\x75\xfd\xab\xaf\x4f\x1b\x5b\xaf\x4f\xb3\x73" "\x7b\xf7\x14\x33\x1b\x8a\xa2\x38\x53\xcc\xac\xc2\x0b\xd6\xcd\x39\xfe" "\xe6\xdf\x96\x77\xfc\x67\x1f\x3b\x36\xbb\x6f\x66\xdb\xec\xdc\xf1\xa3" "\x17\x8e\x9f\x7f\xec\xec\xdc\xb9\x13\xc7\x16\x16\x8e\xcd\xcd\x2e\x6c" "\x3b\x7a\xfc\xf8\xdc\xc7\xaa\xae\x3f\x3f\x7b\x70\xe7\xae\x03\xbb\xf7" "\xed\x9a\x3a\x31\x3f\x7b\x70\xff\x81\x03\xbb\x0f\x4c\xcd\x9f\x3e\xd3" "\x3c\x8c\xf2\xa0\x2a\xec\x9d\xf9\xc8\xd4\xe9\x73\x87\x5b\x57\x59\x38" "\xb8\xe7\xc0\xce\x87\x1e\xda\x33\x33\x75\xea\xcc\xec\xdc\xc1\x7d\x33" "\x33\x53\x17\xaa\xae\xdf\xfa\xda\x34\xd5\xbc\xf6\xaf\x4f\x9d\x9b\x3b" "\x79\xf4\xfc\xfc\xa9\xb9\xa9\x85\xf9\x4f\xcc\x1d\xdc\x79\x60\xef\xde" "\x5d\x95\xbf\x0d\xf0\xd4\xd9\xe3\x0b\x93\xd3\xe7\x2e\x9c\x9e\xbe\xb0" "\x30\x77\x6e\xba\xbc\x2f\x93\xe7\x5b\x9f\x6e\x7e\xed\xab\xba\x3e\xf5" "\xb4\xf0\x6f\xe5\xf7\xb3\xdd\x1a\xe5\x2f\xe2\x2b\xde\xf5\xc0\xde\xf4" "\xfb\x59\x9b\xbe\xfa\xa9\x25\x6f\xaa\xdc\xa4\xeb\x17\x88\x3e\x17\x7e" "\x17\xcd\x3f\xbc\xe8\xec\xfe\xe5\x7c\x1c\x73\xff\x78\x98\x49\x26\xf9" "\x1f\x00\x00\x00\x72\x10\x73\xff\xba\x30\x13\xf9\x1f\x00\x00\x00\x6a" "\x23\xe6\xfe\xf5\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\x13\x61" "\x26\x99\xe4\x7f\xfd\xff\x15\xf4\xff\xdb\xd4\xbf\xff\x5f\x5e\xae\xff" "\x9f\x57\xff\xff\xec\x47\xcb\x5e\xe9\x5a\xef\xff\xc7\xfe\xbc\xfe\x7f" "\x1e\x6e\x71\xff\x7f\xc5\xfb\xd7\xff\xd7\xff\xaf\x5f\xff\x7f\xf9\xfd" "\xf9\xb5\x7e\xfc\xfa\xff\xfa\xff\x5c\x6b\xd8\xfa\xff\x31\xf7\x6f\x28" "\x8a\x2c\xf3\x3f\x00\x00\x00\xe4\x20\xe6\xfe\x8d\x61\x26\xf2\x3f\x00" "\x00\x00\xd4\x46\xcc\xfd\xb7\x85\x99\xc8\xff\x00\x00\x00\x50\x1b\x31" "\xf7\xbf\x20\xcc\x24\x93\xfc\xaf\xff\xbf\xac\xfe\xff\xae\xaa\xc2\x55" "\xfd\xfb\xff\xde\xff\x5f\xff\xbf\x58\x9b\xfd\xff\xf8\xe0\xe8\xff\x67" "\xe3\xba\xfb\xf7\xef\x7b\xb4\xe3\x43\xfd\xff\x40\xff\x5f\xff\x5f\xff" "\x5f\xff\x5f\xff\x9f\x15\x1b\x5f\xf2\x92\x5b\xd5\xff\x8f\xb9\xff\xf6" "\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\x17\x86\x99\xc8\xff" "\x00\x00\x00\x50\x1b\x31\xf7\xdf\x11\x66\x22\xff\x03\x00\x00\x40\x6d" "\xc4\xdc\xbf\x29\xcc\x24\x93\xfc\xaf\xff\xef\xfd\xff\xf5\xff\xf5\xff" "\x6b\xdd\xff\x5f\xe9\xfb\xff\xb7\x1d\x8c\xfe\xff\xda\xe0\xfd\xff\xfb" "\xd3\xff\xaf\x70\xc3\xfd\xff\x09\xfd\xff\xb5\xd8\xff\x1f\x1f\xec\xf1" "\x0f\x77\xff\xbf\xf2\xf0\xf5\xff\xb9\x29\x86\xed\xfd\xff\x63\xee\x7f" "\x51\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\x8b\xc3\x4c\xe4" "\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x5f\x12\x66\x22\xff\x03\x00\x00\x40" "\x6d\xc4\xdc\x7f\x67\x98\x49\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff" "\x5f\xff\xbf\xf7\xfe\xab\xdf\xff\xbf\xfc\x9b\xfe\xff\x70\xd1\xff\xef" "\x4f\xff\xbf\x82\xf7\xff\xcf\xab\xff\x3f\xe0\xe3\x1f\xee\xfe\xff\xa0" "\xdf\xff\x7f\xfc\xcd\xdd\xd7\xd7\xff\xa7\x97\x61\xeb\xff\xc7\xdc\xff" "\xd2\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\xbb\xc2\x4c\xe4" "\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x5f\x16\x66\x22\xff\x03\x00\x00\x40" "\x6d\xc4\xdc\xbf\x39\xcc\x24\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff" "\xaf\xff\xdf\x7b\xff\xd5\xfd\xff\x92\xfe\xff\x70\xd1\xff\xef\x4f\xff" "\xbf\x82\xfe\xbf\xfe\xbf\xfe\xff\xf2\xfa\xff\x3d\xbe\xf9\xd5\xff\xa7" "\x97\x61\xeb\xff\xc7\xdc\x7f\x77\x98\x49\x26\xf9\x1f\x00\x00\x00\x72" "\x10\x73\xff\x3d\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\xff\x2f" "\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\x7f\x4b\x98\x49\x26\xf9\x5f" "\xff\x5f\xff\x5f\xff\x3f\xaf\xfe\xff\x03\xeb\xf4\xff\xf5\xff\xeb\x4d" "\xff\xbf\x3f\xfd\xff\x0a\xfa\xff\xfa\xff\xfa\xff\xcb\x7c\xff\xff\x6b" "\x5d\x4f\xff\x7f\x7d\xd5\x8d\x51\x1b\xc3\xd6\xff\x8f\xb9\xff\xe5\x61" "\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\xaf\x08\x33\x91\xff\x01" "\x00\x00\xa0\x36\x62\xee\x7f\x65\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11" "\x73\xff\x64\x98\x49\x26\xf9\x5f\xff\xbf\x5e\xfd\xff\x3f\xfd\xeb\xa7" "\x5e\x59\xe8\xff\xeb\xff\x57\xec\xbf\xa6\xfd\xff\xb8\x0c\xf4\xff\x33" "\xa7\xff\xdf\x9f\xfe\x7f\x05\xfd\x7f\xfd\x7f\xfd\xff\x55\xe9\xff\x93" "\x8f\x61\xeb\xff\xc7\xdc\x7f\x6f\x98\x49\x26\xf9\x1f\x00\x00\x00\x72" "\x10\x73\xff\x7d\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\xf7\x87" "\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\x6f\x0d\x33\xc9\x24\xff\xeb" "\xff\xd7\xab\xff\x1f\xe9\xff\xeb\xff\xf7\xdb\x7f\x4d\xfb\xff\x89\xfe" "\x7f\xde\xf4\xff\x7b\x68\x7b\x92\xea\xff\x57\xd0\xff\xd7\xff\xcf\xbe" "\xff\x1f\xbf\xfb\xd5\xff\x67\x30\x86\xad\xff\x1f\x73\xff\xab\xc2\x4c" "\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\xb7\x85\x99\xc8\xff\x00\x00" "\x00\x50\x1b\x31\xf7\xbf\x3a\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9" "\x7f\x7b\x98\x49\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf" "\xf7\xfe\xf5\xff\xd7\x26\xfd\xff\xfe\xf4\xff\x2b\xe8\xff\xeb\xff\x67" "\xdf\xff\xf7\xfe\xff\x0c\xd6\xb0\xf5\xff\x63\xee\x7f\x4d\x98\x49\x26" "\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\x8e\x30\x13\xf9\x1f\x00\x00\x00" "\x6a\x23\xfe\xff\x9b\xe5\xff\xf7\x2a\xff\x03\x00\x00\x40\x1d\xc5\xdc" "\x3f\x15\x66\x92\x49\xfe\xd7\xff\xd7\xff\xcf\xa9\xff\xdf\xc8\xb5\xff" "\x1f\x3f\xa1\xff\xaf\xff\x9f\x01\xfd\xff\xfe\xf4\xff\x2b\xe8\xff\xeb" "\xff\xeb\xff\xeb\xff\x33\x50\xc3\xd6\xff\x8f\xb9\xff\xb5\x61\x26\x99" "\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\x0f\x86\x99\xc8\xff\x00\x00\x00" "\x50\x1b\x31\xf7\x4f\x87\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xcf" "\x84\x99\x64\x92\xff\xf5\xff\xf5\xff\x73\xea\xff\x7b\xff\x7f\xfd\x7f" "\xfd\xff\xfa\xd3\xff\xef\x4f\xff\xbf\x82\xfe\xbf\xfe\x7f\xdd\xfa\xff" "\x45\xa1\xff\xcf\x2d\x35\x6c\xfd\xff\x98\xfb\x77\x86\x99\x64\x92\xff" "\x01\x00\x00\x20\x07\x31\xf7\xef\x0a\x33\x91\xff\x01\x00\x00\xa0\x36" "\x62\xee\xdf\x1d\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\xbf\x27\xcc" "\x24\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x7b\xff\xfa" "\xff\x6b\xd3\x5a\xea\xff\x8f\xf4\xf8\x9c\xfe\xbf\xfe\xbf\xfe\xff\xda" "\x3d\xfe\xa1\xec\xff\x7b\xff\x7f\x6e\xb1\x61\xeb\xff\xc7\xdc\xff\x50" "\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\xde\x30\x13\xf9\x1f" "\x00\x00\x00\x6a\x23\xe6\xfe\x7d\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46" "\xcc\xfd\xfb\xc3\x4c\x32\xc9\xff\xfa\xff\x35\xe9\xff\xff\xe6\xdf\x77" "\xec\x5b\xff\x5f\xff\xbf\xdf\xfe\x07\xd3\xff\xdf\xa0\xff\x1f\xa6\xfe" "\xff\x70\x59\x4b\xfd\xff\x5e\x96\xe8\xaf\x77\x3f\x2d\x6e\x98\xfe\x7f" "\x05\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x06\x6a\xd8\xfa\xff\x31\xf7\x1f" "\x08\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\x7f\x5d\x98\x89\xfc" "\x0f\x00\x00\x00\xb5\x11\x73\xff\xff\x0f\x33\x91\xff\x01\x00\x00\xa0" "\x36\x62\xee\xff\x99\x30\x93\x4c\xf2\xbf\xfe\x7f\x4d\xfa\xff\x5d\xf4" "\xff\xf5\xff\xfb\xed\xdf\xfb\xff\xeb\xff\xd7\x59\x4d\xfb\xff\x03\xa3" "\xff\x5f\x41\xff\x5f\xff\x5f\xff\x5f\xff\x9f\x81\xba\xf9\xfd\xff\xf8" "\xb7\xe5\xf5\xff\x63\xee\x3f\x18\x66\x92\x49\xfe\x07\x00\x00\x80\x1c" "\xc4\xdc\xff\xb3\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\xaf\x0f" "\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\x3f\x14\x66\x92\x49\xfe\xd7" "\xff\xd7\xff\xd7\xff\xd7\xff\xbf\x39\xfd\xff\xd7\x17\xdd\x86\xb1\xff" "\xdf\x5c\x3c\xfa\xff\xf5\xa2\xff\xdf\x9f\xfe\x7f\x05\xfd\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\x06\x6a\xd8\xde\xff\x3f\xe6\xfe\x37\x84\x99\x64\x92" "\xff\x01\x00\x00\x20\x07\x31\xf7\x3f\x1c\x66\x22\xff\x03\x00\x00\x40" "\x6d\xc4\xdc\xff\xc6\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\x37" "\x85\x99\x64\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xbd\xff\x7f\xef" "\xfd\xeb\xff\xaf\x4d\xfa\xff\xfd\xe9\xff\x57\xd0\xff\xd7\xff\xd7\xff" "\xd7\xff\x67\xa0\x86\xad\xff\x1f\x73\xff\x9b\xc3\x4c\x32\xc9\xff\x00" "\x00\x00\x90\x83\x98\xfb\xdf\x12\x66\x22\xff\x03\x00\x00\x40\x6d\xc4" "\xdc\xff\xd6\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\xb7\x85\x99" "\x64\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x7b\xef\x5f\xff" "\x7f\x6d\xd2\xff\xef\x4f\xff\xbf\x82\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f" "\x03\x35\x6c\xfd\xff\x98\xfb\x7f\x2e\xcc\x24\x93\xfc\x0f\x00\x00\x00" "\x39\x88\xb9\xff\x91\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\xb7" "\x87\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xbf\x23\xcc\x24\x93\xfc" "\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x7b\xff\xfa\xff\x6b\x93" "\xfe\x7f\x7f\xfa\xff\x15\xf4\xff\xf5\xff\xf5\xff\xf5\xff\x19\xa8\x61" "\xeb\xff\xc7\xdc\xff\xce\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6" "\xfe\x9f\x0f\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\x7f\x57\x98\x89" "\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\x2f\x84\x99\x64\x92\xff\xf5\xff" "\xf5\xff\xf5\xff\xf5\xff\xb3\xe8\xff\x37\xaf\xa4\xff\x9f\x05\xfd\xff" "\xfe\xf4\xff\x2b\xf4\xe8\xff\xaf\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xe7" "\x86\x0d\x5b\xff\x3f\xe6\xfe\x77\x87\x99\x64\x92\xff\x01\x00\x00\x20" "\x07\x31\xf7\xbf\x27\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\xbd" "\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\x8f\x86\x99\x64\x92\xff" "\xf5\xff\xb3\xec\xff\xa7\xbb\xac\xff\x5f\xd2\xff\xcf\xa0\xff\xef\xfd" "\xff\xb3\xa1\xff\xdf\x9f\xfe\x7f\x05\xef\xff\xaf\xff\xaf\xff\xaf\xff" "\xcf\x40\x0d\x5b\xff\x3f\xe6\xfe\xc7\xc2\x4c\x32\xc9\xff\x00\x00\x00" "\x90\x83\x98\xfb\xdf\x17\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\xff" "\x8b\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\xef\x0f\x33\xc9\x24" "\xff\xeb\xff\x67\xd9\xff\xf7\xfe\xff\xab\xd6\xff\x1f\xeb\x58\x1f\x39" "\xf5\xff\x27\xda\x1e\xcf\xb4\x2e\xf5\xff\xf5\xff\x57\x81\xfe\x7f\x7f" "\xfa\xff\x15\xf4\xff\xf5\xff\x87\xb9\xff\x1f\x56\xf3\x86\x25\xae\xaf" "\xff\xcf\x30\x1a\xb6\xfe\x7f\xcc\xfd\x1f\x08\x33\xc9\x24\xff\x03\x00" "\x00\x40\x0e\x62\xee\xff\xa5\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6" "\xfe\x5f\x0e\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\xff\x95\x30\x93" "\x4c\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xf7\xff\xf7\xfe\xff\xbd\xf7\xaf" "\xff\xbf\x36\xe9\xff\xf7\xa7\xff\x5f\x41\xff\x5f\xff\x7f\x98\xfb\xff" "\x15\xf4\xff\x19\x46\xc3\xd6\xff\x8f\xb9\xff\x57\xc3\x4c\x32\xc9\xff" "\x00\x00\x00\x90\x83\x98\xfb\x3f\x18\x66\x22\xff\x03\x00\x00\x40\x6d" "\xc4\xdc\x7f\x38\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\x48\x98" "\x49\x26\xf9\x5f\xff\xbf\xbb\xff\x1f\xdf\x51\x55\xff\x5f\xff\x5f\xff" "\x5f\xff\x5f\xff\x7f\x2d\x1a\x5c\xff\xff\x65\xb7\x17\x85\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x2b\x31\x6c\xfd\xff\x98\xfb\x8f" "\x86\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7\xff\x5a\x98\x89\xfc" "\x0f\x00\x00\x00\xb5\x11\x73\xff\xb1\x30\x13\xf9\x1f\x00\x00\x00\x6a" "\x23\xe6\xfe\xd9\x30\x93\x4c\xf2\xbf\xfe\xbf\xf7\xff\x1f\x54\xff\xff" "\x27\xfa\xff\xfa\xff\x81\xfe\x7f\x6f\xfa\xff\xab\xc3\xfb\xff\xf7\xa7" "\xff\x5f\x41\xff\x5f\xff\x5f\xff\x5f\xff\x9f\x81\x1a\xb6\xfe\x7f\xcc" "\xfd\x73\x61\x26\x99\xe4\x7f\x00\x00\x00\xa8\xb1\xf4\xe3\xe0\x98\xfb" "\x8f\x87\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\x9f\x08\x33\x91\xff" "\x01\x00\x00\xa0\x36\x62\xee\xff\x50\x98\x49\x26\xf9\x5f\xff\x5f\xff" "\xdf\xfb\xff\xdf\x8a\xfe\xff\x58\xc7\xf6\xfa\xff\x25\xfd\x7f\xfd\xff" "\x41\xd0\xff\xef\x4f\xff\xbf\x82\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x03" "\x35\x6c\xfd\xff\x98\xfb\xe7\xc3\x4c\x32\xc9\xff\x00\x00\x00\x90\x83" "\x98\xfb\x3f\x1c\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\xff\x91\x30" "\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\x93\x61\x26\x99\xe4\x7f\xfd" "\x7f\xfd\xff\xdc\xfb\xff\x8d\xa2\xb8\xe4\xfd\xff\xf5\xff\x7b\xed\x5f" "\xff\x7f\x6d\xd2\xff\xef\x4f\xff\xbf\x82\xfe\xbf\xfe\xbf\xfe\xbf\xfe" "\x3f\x03\x35\x6c\xfd\xff\x98\xfb\x4f\x85\x99\x64\x92\xff\x01\x00\x00" "\x20\x07\x31\xf7\x9f\x0e\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\x3f" "\x13\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\x7f\x36\xcc\x24\x93\xfc" "\xaf\xff\xaf\xff\xff\x7f\xec\xdd\x47\x93\x5c\x67\x15\xc7\xe1\xc6\xc8" "\x0a\x0b\x0a\x3e\x02\x6b\x56\x2c\x61\xc5\x57\x60\xcb\x8e\x2a\xd6\x2c" "\xc0\x26\x07\x63\x72\x06\x93\x73\x30\x39\xe7\x9c\x4c\xce\x39\x67\x93" "\x73\x34\xd1\x50\x25\x8a\xd1\x39\xc7\x1a\x4d\xeb\xde\x91\xa7\x35\x7d" "\xfb\x3d\xcf\xb3\x39\x48\x65\xb9\x47\xf6\x60\xea\x8f\xeb\x57\x6f\xf7" "\xfe\x7f\xb5\x95\xf7\xff\xf7\xff\xf1\xfa\xff\x73\xf4\xff\xfa\xff\x4d" "\x38\xd0\xdf\x9f\xb8\xb4\x5f\x7f\xd1\xfe\xff\xce\x77\xb9\xfa\x9e\xfa" "\x7f\xfd\xbf\xfe\x7f\x92\xfe\x5f\xff\xaf\xff\xe7\x42\x4b\xeb\xff\x73" "\xf7\xdf\x27\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xf7\x8d\x5b" "\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xab\xe2\x16\xfb\x1f\x00\x00\x00" "\x86\x91\xbb\xff\xea\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\xff" "\x7d\xfd\xff\x0d\xfa\x7f\xfd\xff\x6e\xf3\xfe\xff\x34\xfd\xff\x0c\xfd" "\xbf\xfe\x5f\xff\xaf\xff\x67\xa3\x96\xd6\xff\xe7\xee\xbf\x5f\xdc\xd2" "\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xef\x1f\xb7\xd8\xff\x00\x00\x00" "\x30\x8c\xdc\xfd\x0f\x88\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x07" "\xc6\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x7b\xff\x7f\xfd\xe7" "\xeb\xff\x77\x93\xfe\x7f\x9a\xfe\x7f\x86\xfe\x5f\xff\xaf\xff\xd7\xff" "\xb3\x51\x4b\xeb\xff\x73\xf7\x3f\x28\x6e\x69\xb2\xff\x01\x00\x00\xa0" "\x83\xdc\xfd\x0f\x8e\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x87\xc4" "\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x43\xe3\x96\x26\xfb\x5f\xff" "\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xeb\x3f\x5f\xff\xbf\x9b\xae\x5f\xdd" "\xf2\xcf\x04\xfd\xff\x41\xfa\xff\x19\x33\xfd\xff\x6a\xa5\xff\x9f\x72" "\xe8\x7e\x7e\xfd\x6f\x6f\x77\xbe\xfe\x8b\xd0\xff\xeb\xff\x39\x68\x69" "\xfd\x7f\xee\xfe\x87\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff" "\xe1\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\x7f\x4d\xdc\x62\xff\x03" "\x00\x00\xc0\x30\x72\xf7\x3f\x22\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd" "\xbf\xfe\x5f\xff\xbf\xfe\xf3\xf5\xff\xbb\xc9\xfb\xff\xd3\x8e\xde\xff" "\xdf\xe9\x0e\xf7\xbe\x57\xdf\xfe\xdf\xfb\xff\xd3\xbc\xff\xaf\xff\xd7" "\xff\x73\xa1\xa5\xf5\xff\xb9\xfb\xaf\x8d\x5b\x9a\xec\x7f\x00\x00\x00" "\xe8\x20\x77\xff\x23\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x51" "\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xe8\xb8\xa5\xc9\xfe\xd7" "\xff\xb7\xe9\xff\xf7\x6a\x17\xfd\xbf\xfe\x5f\xff\xaf\xff\x1f\x9d\xfe" "\x7f\x9a\xf7\xff\x67\xec\xfd\x63\xee\x4c\xfd\x50\xff\xaf\xff\xd7\xff" "\xeb\xff\x39\x9a\xa5\xf5\xff\xb9\xfb\x1f\x13\xb7\x34\xd9\xff\x00\x00" "\x00\xd0\x41\xee\xfe\xc7\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff" "\xe3\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xf1\x71\x4b\x93\xfd" "\xaf\xff\x6f\xd3\xff\x7b\xff\x5f\xff\xaf\xff\xd7\xff\xb7\xa0\xff\x9f" "\xa6\xff\x9f\x31\xca\xfb\xff\xb7\xf2\xbb\x66\xdb\xfd\xfc\x51\x6d\xfb" "\xeb\xef\xd5\xff\x9f\x3c\xf0\xeb\xf5\xff\xac\xb3\xb4\xfe\x3f\x77\xff" "\x13\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xc4\xb8\xc5\xfe" "\x07\x00\x00\x80\x61\xe4\xee\x7f\x52\xdc\x62\xff\x03\x00\x00\xc0\x30" "\x72\xf7\x3f\x39\x6e\x69\xb2\xff\xf5\xff\xfa\xff\xdd\xe8\xff\xf3\x13" "\xf4\xff\xfa\x7f\xfd\xbf\xfe\x7f\x9a\xfe\x7f\x9a\xfe\x7f\xc6\x28\xfd" "\xff\xad\xb4\xed\x7e\x7e\xd7\xbf\xfe\x5e\xfd\xff\x41\xfa\x7f\xd6\x59" "\x5a\xff\x9f\xbb\xff\x29\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee" "\x7f\x6a\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f\x2d\x6e\xb1\xff" "\x01\x00\x00\x60\x18\xb9\xfb\x9f\x1e\xb7\x34\xd9\xff\xfa\x7f\xfd\xff" "\x6e\xf4\xff\xde\xff\xd7\xff\xeb\xff\xf5\xff\x87\xa3\xff\x9f\xa6\xff" "\x9f\xa1\xff\xd7\xff\xeb\xff\xf5\xff\x6c\xd4\xd2\xfa\xff\xdc\xfd\xd7" "\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x19\x71\x8b\xfd\x0f" "\x00\x00\x00\xc3\xc8\xdd\xff\xcc\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4" "\xee\x7f\x56\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f" "\xfd\xe7\xeb\xff\x77\x93\xfe\x7f\x9a\xfe\x7f\x86\xfe\x5f\xff\xaf\xff" "\xd7\xff\xb3\x51\x0b\xea\xff\xcf\xfb\x55\xa7\x57\xcf\x8e\x5b\x9a\xec" "\x7f\x00\x00\x00\xe8\x20\x77\xff\x73\xe2\x16\xfb\x1f\x00\x00\x00\x86" "\x91\xbb\xff\xb9\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xbc\xb8" "\xa5\xc9\xfe\xd7\xff\x2f\xa6\xff\xdf\xcb\xf9\xc6\xea\xff\xcf\xac\x56" "\x2b\xfd\xff\xaa\x69\xff\x7f\xe6\xbc\xbf\x9f\xf5\x7d\xa9\xff\xd7\xff" "\x1f\x03\xfd\xff\x34\xfd\xff\x0c\xfd\xff\xa0\xfd\xff\xe1\xbe\x0f\xf4" "\xff\xfa\x7f\x36\x6f\x41\xfd\xff\xde\x8f\x73\xf7\x3f\x3f\x6e\x69\xb2" "\xff\x01\x00\x00\xa0\x83\xdc\xfd\x2f\x88\x5b\xec\x7f\x00\x00\x00\x18" "\x46\xee\xfe\x17\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x8b\xe2" "\x96\x26\xfb\x5f\xff\x7f\x09\xfd\xff\x55\xb7\xbb\xe8\x9f\xcf\xfb\xff" "\xfb\xbf\x7e\xef\xff\xaf\xff\xfe\xe8\xd4\xff\x7b\xff\xff\xa0\xc3\xf4" "\xff\xb7\xd5\xff\x1f\x99\xfe\x7f\x9a\xfe\x7f\x86\xfe\x7f\xd0\xfe\xdf" "\xfb\xff\xfa\x7f\xb6\x65\x69\xfd\x7f\xee\xfe\x17\xc7\x4d\x27\xaf\xbc" "\xd5\xbf\x45\x00\x00\x00\x60\x61\x72\xf7\xbf\x24\x6e\x69\xf2\xef\xff" "\x01\x00\x00\xa0\x83\xdc\xfd\x2f\x8d\x5b\xec\x7f\x00\x00\x00\xd8\x51" "\xd7\x1d\xf8\x99\xdc\xfd\x2f\x8b\x5b\x9a\xec\x7f\xfd\xff\x66\xdf\xff" "\x3f\x79\xde\xcf\xe9\xff\xf5\xff\x17\x7e\x7f\xe8\xff\xf5\xff\xde\xff" "\xbf\xfc\xf4\xff\xd3\x0e\xdf\xff\xdf\x7c\x56\xff\xaf\xff\xd7\xff\xeb" "\xff\xf5\xff\x1c\xd5\xd2\xfa\xff\xdc\xfd\x2f\x8f\x5b\x9a\xec\x7f\x00" "\x00\x00\xe8\x20\x77\xff\xf5\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd" "\xff\x8a\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x65\xdc\xd2\x64" "\xff\xeb\xff\x37\xdb\xff\x9f\x4f\xff\xaf\xff\xbf\xf0\xfb\x43\xff\xaf" "\xff\xd7\xff\x5f\x7e\xc7\xd9\xff\x9f\x18\xba\xff\xf7\xfe\xbf\xfe\x5f" "\xff\xbf\x85\xfe\xff\xd4\x2d\xff\x51\xff\xcf\x18\x2e\xa1\xff\x3f\x7b" "\xf6\xec\x35\x97\xbd\xff\xcf\xdd\xff\xaa\xb8\xa5\xc9\xfe\x07\x00\x00" "\x80\x0e\x72\xf7\xbf\x3a\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x5f" "\x13\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xaf\x8d\x5b\x9a\xec\x7f" "\xfd\x7f\xd3\xfe\x3f\xbf\xd5\xf5\xff\x7b\xf4\xff\xfa\xff\x75\x9f\xaf" "\xff\xdf\x4d\xde\xff\x9f\xa6\xff\x9f\xa1\xff\xd7\xff\x7b\xff\x5f\xff" "\xcf\x46\x2d\xed\xfd\xff\xdc\xfd\xaf\x8b\x5b\x9a\xec\x7f\x00\x00\x00" "\xe8\x20\x77\xff\xeb\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x0d" "\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xc6\xb8\xa5\xc9\xfe\xd7" "\xff\x37\xed\xff\xbd\xff\xaf\xff\xd7\xff\x1f\x77\xff\x7f\xf3\x4a\xff" "\x7f\x2c\x76\xa2\xff\x3f\x73\xf1\xcf\x5f\x7a\xff\x7f\xad\xfe\x5f\xff" "\x3f\xa1\x5d\xff\x7f\xf7\xbb\xee\xfb\xa1\xfe\x5f\xff\xcf\x41\x4b\xeb" "\xff\x73\xf7\xbf\x29\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x6f" "\x8e\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xb7\xc4\x2d\xf6\x3f\x00" "\x00\x00\x0c\x23\x77\xff\x5b\xe3\xa6\x13\x4d\xf6\xbf\xfe\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\xd7\x7f\xfe\x31\xbf\xff\x7f\x72\xb5\x5a\xe9\xff" "\x37\x60\x27\xfa\xff\x09\x4b\xef\xff\xbd\xff\xaf\xff\x9f\xd2\xae\xff" "\xbf\x80\xfe\x5f\xff\xcf\x41\x4b\xeb\xff\x73\xf7\xbf\x2d\x6e\x69\xb2" "\xff\x01\x00\x00\xa0\x83\xdc\xfd\x6f\x8f\x5b\xec\x7f\x00\x00\x00\x18" "\x46\xee\xfe\x77\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x3b\xe3" "\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x87\xef\xff\xaf\xdd\x89" "\xfe\xdf\xfb\xff\x1b\xa2\xff\x9f\xa6\xff\x9f\xa1\xff\xd7\xff\xeb\xff" "\xf5\xff\x1c\x8b\x6d\xf5\xff\xb9\xfb\xdf\x15\xb7\x34\xd9\xff\x00\x00" "\x00\xd0\x41\xee\xfe\x77\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff" "\x7b\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xbd\x71\x4b\x93\xfd" "\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xa7\x16\xd7\xff\x9f\xde\xf7\xe7\x6b" "\xf2\xfe\xbf\xfe\x7f\x43\xf4\xff\xd3\xf4\xff\x33\xf4\xff\xfa\x7f\xfd" "\xff\x75\xfa\x7f\x36\x69\x69\xef\xff\xe7\xee\x7f\x5f\xdc\xd2\x64\xff" "\x03\x00\x00\x40\x07\xb9\xfb\xdf\x1f\xb7\xfe\xaf\x5b\xfb\x1f\x00\x00" "\x00\x86\x91\xbb\xff\x03\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff" "\xc1\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xe1\xdf\xff\xd7" "\xff\xb7\xa2\xff\x9f\xa6\xff\x9f\xa1\xff\xd7\xff\xeb\xff\xbd\xff\xcf" "\x46\x2d\xad\xff\xcf\xdd\xff\xa1\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e" "\x72\xf7\x7f\x38\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x3f\x12\xb7" "\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x37\xc4\x2d\x4d\xf6\xbf\xfe\x5f" "\xff\xaf\xff\xd7\xff\xeb\xff\xcf\xfd\x3d\xd4\xff\x8f\x41\xff\x3f\xed" "\x78\xfa\xff\x33\xfa\x7f\xfd\x7f\xf5\xf3\xb7\x89\xff\x16\xe8\xff\xf5" "\xff\x73\xbf\x9e\x31\x2d\xad\xff\xcf\xdd\xff\xd1\xb8\xa5\xc9\xfe\x07" "\x00\x00\x80\x0e\x72\xf7\x7f\x2c\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9" "\xfb\x3f\x1e\xb7\xd8\xff\x00\x00\x00\xb0\x93\x4e\xac\xf9\xb9\xdc\xfd" "\x9f\x88\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xaf\xff" "\x7c\xfd\xff\x6e\xd2\xff\x4f\xf3\xfe\xff\x0c\xfd\xff\x25\xf6\xf3\x77" "\xdc\xf7\xa3\x5d\x7b\xff\xff\xc2\xff\xfd\xd2\xff\xeb\xff\xd9\xbc\xa5" "\xf5\xff\xb9\xfb\x3f\x19\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe" "\x4f\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xa7\xe3\x16\xfb\x1f" "\x00\x00\x00\x86\x91\xbb\xff\x33\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb" "\xff\xf5\xff\xfa\xff\xf5\x9f\xaf\xff\xdf\x4d\xfa\xff\x69\xfa\xff\x19" "\xfa\xff\xad\xbe\x9f\xbf\xeb\x5f\xbf\xfe\x5f\xff\xcf\x41\x4b\xeb\xff" "\x73\xf7\x7f\x36\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x9f\x8b" "\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xcf\xc7\x2d\xf6\x3f\x00\x00" "\x00\x0c\x63\x6f\xf7\x67\x5c\xd6\x70\xff\xeb\xff\xf5\xff\xfa\x7f\xfd" "\xbf\xfe\x7f\xfd\xe7\xeb\xff\x77\x93\xfe\x7f\x9a\xfe\x7f\x86\xfe\x5f" "\xff\xaf\xff\xd7\xff\xb3\x51\x4b\xeb\xff\xbf\xb0\xf7\xab\x4e\xaf\xbe" "\x18\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x2f\xc5\x2d\xf6\x3f" "\x00\x00\x00\x0c\x23\x77\xff\x97\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91" "\xbb\xff\x2b\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xef\x46\xff\x7f\xf6\xec" "\xd9\x6b\xf4\xff\xfa\xff\xfd\xbf\x9f\x5b\xfa\xff\x1b\xf5\xff\x14\xfd" "\xff\x34\xfd\xff\x0c\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xa3\x96\xd6\xff" "\xe7\xee\xff\x6a\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xbf\x16" "\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x5f\x8f\x5b\xec\x7f\x00\x00" "\x00\x18\x46\xee\xfe\x6f\xc4\x2d\x4d\xf6\xbf\xfe\x7f\x01\xfd\xff\x69" "\xfd\xbf\xf7\xff\xf5\xff\x2b\xef\xff\xeb\xff\x37\x44\xff\x3f\x4d\xff" "\x3f\x63\xc4\xfe\xff\xf4\xe1\x7f\xfb\xdb\xee\xe7\x8f\x6a\xdb\x5f\xbf" "\xfe\x5f\xff\xcf\x41\x4b\xeb\xff\x73\xf7\x7f\x33\x6e\x69\xb2\xff\x01" "\x00\x00\xa0\x83\xdc\xfd\xdf\x8a\x5b\xec\x7f\x00\x00\x00\x18\x46\xee" "\xfe\x6f\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x77\xe2\x96\x26" "\xfb\x5f\xff\x7f\x7c\xfd\xff\xff\xff\xda\x75\x79\xff\xff\xcc\x6a\xfd" "\xd7\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x97\x9b\xfe\x7f\x9a\xfe\x7f\xc6" "\x88\xfd\xff\x25\xd8\x76\x3f\xbf\xeb\x5f\xbf\xfe\x5f\xff\xcf\x41\x4b" "\xeb\xff\x73\xf7\x7f\x37\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd" "\xdf\x8b\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xef\xc7\x2d\xf6\x3f" "\x00\x00\x00\x0c\x23\x77\xff\x0f\xe2\x96\x26\xfb\x5f\xff\xbf\x80\xf7" "\xff\x07\xec\xff\xbd\xff\xbf\xfe\xfb\x43\xff\xbf\xe8\xfe\xff\x0a\xfd" "\xff\x18\xf4\xff\xd3\xf4\xff\x33\xf4\xff\xfa\x7f\xfd\xff\x86\xfa\xff" "\xfc\x6e\xd6\xff\x77\xb7\xb4\xfe\x3f\x77\xff\x0f\xe3\x96\x26\xfb\x1f" "\x00\x00\x00\x3a\xc8\xdd\xff\xa3\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4" "\xee\xff\x71\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xdf\x18\xb7\x9c" "\xb7\xff\xd7\xb5\xdd\xa3\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xfa" "\xcf\xd7\xff\xef\x26\xfd\xff\xb4\xc3\xf6\xff\xa7\x56\x47\xeb\xff\x93" "\xfe\x5f\xff\xaf\xff\xef\xda\xff\x7b\xff\x9f\x73\x96\xd6\xff\xe7\xee" "\xff\x49\xdc\xe2\xdf\xff\x03\x00\x00\xc0\xce\xb9\xf2\x22\x3f\x9f\xbb" "\xff\xa7\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xb3\xb8\xc5\xfe" "\x07\x00\x00\x80\x61\xe4\xee\xff\x79\xdc\x72\xd3\x15\xdb\xfa\x92\x8e" "\x95\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xd7\x7f\xbe\xfe\x7f\x37\xe9" "\xff\xa7\x79\xff\x7f\x86\xfe\x7f\x13\xfd\xfc\xdd\xf4\xff\x63\xf4\xff" "\xab\x95\xfe\x9f\xa3\x5b\x5a\xff\x9f\xbb\xff\x17\x71\x8b\x7f\xff\x0f" "\x00\x00\x00\xc3\xc8\xdd\xff\xcb\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4" "\xee\xff\x55\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x3a\x6e\x69" "\xb2\xff\xf5\xff\xfa\xff\x23\xf6\xff\x7b\x69\xa6\xfe\xff\x1c\xfd\xff" "\x39\xfa\xff\xf5\xf4\xff\xc7\x43\xff\x3f\x4d\xff\x3f\x43\xff\xef\xfd" "\x7f\xfd\xbf\xf7\xff\xd9\xa8\xa5\xf5\xff\xb9\xfb\x7f\x13\xb7\x34\xd9" "\xff\x00\x00\x00\xd0\x41\xee\xfe\xdf\xc6\x2d\xf6\x3f\x00\x00\x00\x0c" "\x23\x77\xff\xef\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xf7\x71" "\x4b\x93\xfd\xbf\xb5\xfe\x3f\xfe\x52\xeb\xff\x77\xbe\xff\xf7\xfe\xbf" "\xfe\x5f\xff\xaf\xff\x5f\x14\xfd\xff\x34\xfd\xff\x0c\xfd\xbf\xfe\x5f" "\xff\xaf\xff\x67\xa3\x96\xd6\xff\xe7\xee\xff\x43\xdc\xd2\x64\xff\x03" "\x00\x00\x40\x07\xb9\xfb\xff\x18\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc" "\xfd\x7f\x8a\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x3f\xc7\x2d\x4d" "\xf6\xbf\xf7\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xfd\xe7\xeb\xff\x77" "\x93\xfe\x7f\x9a\xfe\x7f\xbd\xfa\x1b\xa5\xff\xd7\xff\xeb\xff\xf5\xff" "\x6c\xd4\xd2\xfa\xff\xdc\xfd\x7f\x89\x5b\x9a\xec\x7f\x00\x00\x00\xe8" "\x20\x77\xff\x5f\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xa6\xb8" "\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x5b\xdc\xd2\x64\xff\xeb\xff" "\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xfd\xe7\xeb\xff\x77\x93\xfe\x7f\xda" "\x36\xfb\xff\x7b\xdc\x7e\xfe\x63\xbd\xff\xbf\xf5\xfe\x3f\xbf\x04\xfd" "\xbf\xfe\x5f\xff\xcf\x46\x2c\xad\xff\xcf\xdd\xff\xf7\xb8\xa5\xc9\xfe" "\x07\x00\x00\x80\x0e\x72\xf7\xff\x23\x6e\xb1\xff\x01\x00\x00\x60\x18" "\xb9\xfb\xff\x19\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xff\x8a\x5b" "\x9a\xec\xff\x99\xfe\xff\x54\xfd\x81\xfa\xff\x49\xfa\xff\xfd\x5f\xbf" "\xfe\x7f\xfd\xf7\x87\xfe\x5f\xff\xaf\xff\xbf\xfc\xf4\xff\xd3\xbc\xff" "\x3f\x43\xff\xef\xfd\x7f\xfd\xbf\xfe\x9f\x8d\x5a\x5a\xff\x9f\xbb\xff" "\xdf\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xbf\x39\x6e\xb1\xff" "\x01\x00\x00\x60\x18\xb9\xfb\xff\x13\xb7\xd8\xff\x00\x00\x00\x30\x8c" "\xdc\xfd\xff\x8d\x5b\x9a\xec\x7f\xef\xff\xeb\xff\xf5\xff\xfa\x7f\xfd" "\xff\xfa\xcf\xd7\xff\xef\x26\xfd\xff\x34\xfd\xff\x0c\xfd\xbf\xfe\x5f" "\xff\xaf\xff\x67\xa3\x96\xd6\xff\xe7\xee\xff\x5f\x00\x00\x00\xff\xff" "\xcd\x3c\x66\xb7", 24807); syz_mount_image(/*fs=*/0x20000040, /*dir=*/0x20000000, /*flags=MS_SILENT|MS_NODIRATIME*/ 0x8800, /*opts=*/0x20000200, /*chdir=*/1, /*size=*/0x60e7, /*img=*/0x20028e00); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*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=*/0x21000000ul, /*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; }