// https://syzkaller.appspot.com/bug?id=88ed9f1d7264bc6b789bc0000f2925a2b8e6b749 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } #define MAX_FDS 30 //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } static void setup_gadgetfs(); static void setup_binderfs(); static void setup_fusectl(); static void sandbox_common_mount_tmpfs(void) { write_file("/proc/sys/fs/mount-max", "100000"); if (mkdir("./syz-tmp", 0777)) exit(1); if (mount("", "./syz-tmp", "tmpfs", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot", 0777)) exit(1); if (mkdir("./syz-tmp/newroot/dev", 0700)) exit(1); unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE; if (mount("/dev", "./syz-tmp/newroot/dev", NULL, bind_mount_flags, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/proc", 0700)) exit(1); if (mount("syz-proc", "./syz-tmp/newroot/proc", "proc", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/selinux", 0700)) exit(1); const char* selinux_path = "./syz-tmp/newroot/selinux"; if (mount("/selinux", selinux_path, NULL, bind_mount_flags, NULL)) { if (errno != ENOENT) exit(1); if (mount("/sys/fs/selinux", selinux_path, NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); } if (mkdir("./syz-tmp/newroot/sys", 0700)) exit(1); if (mount("/sys", "./syz-tmp/newroot/sys", 0, bind_mount_flags, NULL)) exit(1); if (mount("/sys/kernel/debug", "./syz-tmp/newroot/sys/kernel/debug", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/sys/fs/smackfs", "./syz-tmp/newroot/sys/fs/smackfs", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/proc/sys/fs/binfmt_misc", "./syz-tmp/newroot/proc/sys/fs/binfmt_misc", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/newroot/syz-inputs", 0700)) exit(1); if (mount("/syz-inputs", "./syz-tmp/newroot/syz-inputs", NULL, bind_mount_flags | MS_RDONLY, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/pivot", 0777)) exit(1); if (syscall(SYS_pivot_root, "./syz-tmp", "./syz-tmp/pivot")) { if (chdir("./syz-tmp")) exit(1); } else { if (chdir("/")) exit(1); if (umount2("./pivot", MNT_DETACH)) exit(1); } if (chroot("./newroot")) exit(1); if (chdir("/")) exit(1); setup_gadgetfs(); setup_binderfs(); setup_fusectl(); } static void setup_gadgetfs() { if (mkdir("/dev/gadgetfs", 0777)) { } if (mount("gadgetfs", "/dev/gadgetfs", "gadgetfs", 0, NULL)) { } } static void setup_fusectl() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } } static void setup_binderfs() { if (mkdir("/dev/binderfs", 0777)) { } if (mount("binder", "/dev/binderfs", "binder", 0, NULL)) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); if (getppid() == 1) exit(1); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = (200 << 20); setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 128 << 20; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); if (unshare(CLONE_NEWNS)) { } if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(0x02000000)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } typedef struct { const char* name; const char* value; } sysctl_t; static const sysctl_t sysctls[] = { {"/proc/sys/kernel/shmmax", "16777216"}, {"/proc/sys/kernel/shmall", "536870912"}, {"/proc/sys/kernel/shmmni", "1024"}, {"/proc/sys/kernel/msgmax", "8192"}, {"/proc/sys/kernel/msgmni", "1024"}, {"/proc/sys/kernel/msgmnb", "1024"}, {"/proc/sys/kernel/sem", "1024 1048576 500 1024"}, }; unsigned i; for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++) write_file(sysctls[i].name, sysctls[i].value); } static int wait_for_loop(int pid) { if (pid < 0) exit(1); int status = 0; while (waitpid(-1, &status, __WALL) != pid) { } return WEXITSTATUS(status); } static void drop_caps(void) { struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) exit(1); const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE); cap_data[0].effective &= ~drop; cap_data[0].permitted &= ~drop; cap_data[0].inheritable &= ~drop; if (syscall(SYS_capset, &cap_hdr, &cap_data)) exit(1); } static int do_sandbox_none(void) { if (unshare(CLONE_NEWPID)) { } int pid = fork(); if (pid != 0) return wait_for_loop(pid); sandbox_common(); drop_caps(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); sandbox_common_mount_tmpfs(); loop(); exit(1); } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } 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(); close_fds(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[1] = {0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x20108c2 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {75 73 72 71 75 6f 74 61 2c 69 6f 63 68 61 72 73 // 65 74 3d 63 70 39 34 39 2c 64 69 73 63 61 72 64 2c 67 72 70 71 75 // 6f 74 61 2c 65 72 72 6f 72 73 3d 72 65 6d 6f 75 6e 74 2d 72 6f 2c // 75 69 64 3d} (length 0x40) // } // union ANYUNION { // ANYRESHEX: ANYRES64 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {2c 6e 6f 71 75 6f 74 61 00 71 75 6f 74 61 2c 75 // 6d 61 73 6b 3d 30 78 30 30 30 30 30 30 30 30 30 30 30 30 30 30 38 // 31 2c 75 73 72 71 75 6f 74 61 2c 6e 6f 64 69 73 63 61 72 64 2c 75 // 6d 61 73 6b 3d 30 78 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 // 31 2c 67 72 70 71 75 6f 74 61 2c 69 6f 63 68 61 72 73 65 74 3d 63 // 70 38 36 34 2c 72 6f 6f 74 63 6f 6e 74 65 78 d1 7c 34 38 ee 0a 68 // 55 22 d4 e4 3c e8 74 3d 72 6f 6f 74 2c 73 6d 61 63 6b 66 73 66 6c // 6f 5c 72 3d 6e 6f 71 75 6f 74 61 2c 66 73 6e 61 6d 65 3d 5d 40 00 // 00 00 7d 5b 2d 29 2b 2c 00 bf 0f 30 d6 55 7e 48 6e 43 fe 1b 3e 75 // f4 ac 1b 63 3f f1 9a fc a1 48 05 77 27 e6 e4 d2 1d 29 09 51 f6 72 // b2 81 7d 03 9a ca 5b 55 a2 f9 b3 de ef 67 07 19 27 75 56 28 4b ec // 5e bd 49 d6 67 1a f3 e8 f2 de 20 cd 4c ef 9d f9 52 bc 52 f9 5c 96 // f8 c9 83 16 5d b5 c9 8e 60 a3 8f 02 f6 74 0e 6f 31} (length 0x113) // } // union ANYUNION { // ANYRES64: ANYRES64 (resource) // } // } // } // chdir: int8 = 0xff (1 bytes) // size: len = 0x61b4 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x61b4) // } // ] // returns fd_dir memcpy((void*)0x200000000300, "jfs\000", 4); memcpy((void*)0x200000000040, "./file0\000", 8); memcpy( (void*)0x20000001fbc0, "usrquota,iocharset=cp949,discard,grpquota,errors=remount-ro,uid=", 64); sprintf((char*)0x20000001fc00, "0x%016llx", (long long)0); memcpy( (void*)0x20000001fc12, "\x2c\x6e\x6f\x71\x75\x6f\x74\x61\x00\x71\x75\x6f\x74\x61\x2c\x75\x6d\x61" "\x73\x6b\x3d\x30\x78\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30" "\x30\x38\x31\x2c\x75\x73\x72\x71\x75\x6f\x74\x61\x2c\x6e\x6f\x64\x69\x73" "\x63\x61\x72\x64\x2c\x75\x6d\x61\x73\x6b\x3d\x30\x78\x30\x30\x30\x30\x30" "\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x31\x2c\x67\x72\x70\x71\x75\x6f" "\x74\x61\x2c\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x63\x70\x38\x36\x34" "\x2c\x72\x6f\x6f\x74\x63\x6f\x6e\x74\x65\x78\xd1\x7c\x34\x38\xee\x0a\x68" "\x55\x22\xd4\xe4\x3c\xe8\x74\x3d\x72\x6f\x6f\x74\x2c\x73\x6d\x61\x63\x6b" "\x66\x73\x66\x6c\x6f\x5c\x72\x3d\x6e\x6f\x71\x75\x6f\x74\x61\x2c\x66\x73" "\x6e\x61\x6d\x65\x3d\x5d\x40\x00\x00\x00\x7d\x5b\x2d\x29\x2b\x2c\x00\xbf" "\x0f\x30\xd6\x55\x7e\x48\x6e\x43\xfe\x1b\x3e\x75\xf4\xac\x1b\x63\x3f\xf1" "\x9a\xfc\xa1\x48\x05\x77\x27\xe6\xe4\xd2\x1d\x29\x09\x51\xf6\x72\xb2\x81" "\x7d\x03\x9a\xca\x5b\x55\xa2\xf9\xb3\xde\xef\x67\x07\x19\x27\x75\x56\x28" "\x4b\xec\x5e\xbd\x49\xd6\x67\x1a\xf3\xe8\xf2\xde\x20\xcd\x4c\xef\x9d\xf9" "\x52\xbc\x52\xf9\x5c\x96\xf8\xc9\x83\x16\x5d\xb5\xc9\x8e\x60\xa3\x8f\x02" "\xf6\x74\x0e\x6f\x31", 275); *(uint64_t*)0x20000001fd25 = -1; memcpy( (void*)0x20000001fd40, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xbe\xfa\xa5\xb4\xb5\x7a" "\xa8\x4a\x84\x90\x9b\x96\x97\x52\x9a\xc4\x49\x09\x81\x02\x6d\x0f\x70\xe0" "\xd2\x03\xca\x15\x25\x72\xdd\x2a\x22\x05\x94\x04\x94\x56\x16\x71\xe5\x0b" "\x07\x4e\xfc\x05\x20\x24\x8e\x08\x71\x44\x1c\xf8\x03\x7a\xe0\xca\x8d\x13" "\x27\x22\xd9\x48\xa0\x9e\x18\x34\xf6\xf3\xc4\xe3\xcd\x6e\xed\xd4\xf1\xce" "\xda\xcf\xe7\x23\x39\x33\xbf\x79\x66\xbd\xcf\xf8\xbb\xb3\x2f\x99\x99\x7d" "\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x88\xef\x7f\xef" "\x07\x2b\x9d\x88\xb8\xf6\xf3\xb4\x60\x29\xe2\x33\xd1\x8b\xe8\x46\x2c\xd4" "\xf5\x72\x44\x2c\x2c\x2f\xe5\xf5\xfb\x11\xf1\x5c\xec\x34\xc7\xb3\x11\x31" "\x98\x8b\xa8\x6f\xbf\xf3\xcf\xd3\x11\xaf\x46\xc4\x47\x4f\x45\x6c\x6d\xaf" "\xaf\xd6\x8b\x2f\x1e\xb2\x1f\xdf\xfd\xe3\xdf\x7f\xf7\xc3\x27\xde\xfa\xdb" "\x1f\x06\xe7\xff\xfb\xa7\x3b\xbd\xd7\x26\xad\x77\xf7\xee\xaf\xfe\xf3\xe7" "\x7b\x47\xdb\x66\x00\x00\x00\x28\x4d\x55\x55\x55\x27\x7d\xcc\x3f\x93\x3e" "\xdf\x77\xdb\xee\x14\x00\x30\x15\xf9\xf5\xbf\x4a\xf2\xf2\x53\x5f\xff\xfa" "\x9f\x6f\xfd\x65\x96\xfa\xa3\x56\xab\xd5\x6a\xf5\x14\xea\xa6\x6a\xbc\x7b" "\xcd\x22\x22\x36\x9a\xb7\xa9\xdf\x33\x38\x1c\x0f\x00\x27\xcc\x46\x7c\xdc" "\x76\x17\x68\x91\xfc\x8b\xd6\x8f\x88\x27\xda\xee\x04\x30\xd3\x3a\x6d\x77" "\x80\x63\xb1\xb5\xbd\xbe\xda\x49\xf9\x76\x9a\xaf\x07\xcb\xbb\xed\xf9\x5c" "\x90\x7d\xf9\x6f\x74\x1e\x5c\xdf\x31\x69\x7a\x90\xd1\x73\x4c\xa6\xf5\xf8" "\xda\x8c\x5e\x3c\x33\xa1\x3f\x0b\x53\xea\xc3\x2c\xc9\xf9\x77\x47\xf3\xbf" "\xb6\xdb\x3e\x4c\xeb\x1d\x77\xfe\xd3\x32\x29\xff\xe1\xee\xa5\x4f\xc5\xc9" "\xf9\xf7\x46\xf3\x1f\x71\x7a\xf2\xef\x8e\xcd\xbf\x54\x39\xff\xfe\x23\xe5" "\xdf\x93\x3f\x00\x00\x00\x00\x00\xcc\xb0\xfc\xff\xff\x4b\x2d\x1f\xff\x9d" "\x3b\xfa\xa6\x1c\xca\x27\x1d\xff\x5d\x9e\x52\x1f\x00\x00\x00\x00\x00\x00" "\x00\xe0\x71\x3b\xea\xf8\x7f\x0f\x18\xff\x0f\x00\x00\x00\x66\x56\xfd\x59" "\xbd\xf6\x9b\xa7\xf6\x96\x4d\xfa\x2e\xb6\x7a\xf9\xd5\x4e\xc4\x93\x23\xeb" "\x03\x85\x49\x17\xcb\x2c\xb6\xdd\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x28\x49\x7f\xf7\x1c\xde\xab\x9d\x88\x41\x44\x3c\xb9\xb8\x58\x55\x55" "\xfd\xd3\x34\x5a\x3f\xaa\xa3\xde\xfe\xa4\x2b\x7d\xfb\xa1\x64\x6d\x3f\xc9" "\x03\x00\xc0\xae\x8f\x9e\x1a\xb9\x96\xbf\x13\x31\x1f\x11\x57\xd3\x77\xfd" "\x0d\x16\x17\x17\xab\x6a\x7e\x61\xb1\x5a\xac\x16\xe6\xf2\xfb\xd9\xe1\xdc" "\x7c\xb5\xd0\xf8\x5c\x9b\xa7\xf5\xb2\xb9\xe1\x21\xde\x10\xf7\x87\x55\xfd" "\xcb\xe6\x1b\xb7\x6b\x3a\xe8\xf3\xf2\x41\xed\xa3\xbf\xaf\xbe\xaf\x61\xd5" "\x3b\x44\xc7\x1e\x93\x41\xfa\x6b\x4e\x68\x6e\x29\x6c\x00\x48\x76\x5f\x8d" "\xb6\xbc\x22\x9d\x32\x55\xf5\xf4\xa4\x37\x1f\xb0\x8f\xfd\xff\x14\x5a\x8a" "\xa5\xb6\x1f\x57\xcc\xbe\xb6\x1f\xa6\x00\x00\x00\xc0\xf1\xab\xaa\xaa\xea" "\xa4\xaf\xf3\x3e\x93\x8e\xf9\x77\xdb\xee\x14\x00\x30\x15\xf9\xf5\x7f\xf4" "\xb8\xc0\x91\xea\xee\x84\xf6\x88\xc7\xf3\xfb\xd5\x6a\xb5\x5a\xad\x56\x7f" "\xaa\xba\xa9\x1a\xef\x5e\xb3\x88\x88\x8d\xe6\x6d\xea\xf7\x0c\x86\xe3\x07" "\x80\x13\x66\x23\x3e\x6e\xbb\x0b\xb4\x48\xfe\x45\xeb\x47\xc4\x73\x6d\x77" "\x02\x98\x69\x9d\xb6\x3b\xc0\xb1\xd8\xda\x5e\x5f\xed\xa4\x7c\x3b\xcd\xd7" "\x83\x34\xbe\x7b\x3e\x17\x64\x5f\xfe\x1b\x9d\x9d\xdb\xe5\xdb\x8f\x9b\x1e" "\x64\xf4\x1c\x93\x69\x3d\xbe\x36\xa3\x17\xcf\x4c\xe8\xcf\xb3\x53\xea\xc3" "\x2c\xc9\xf9\x77\x47\xf3\xbf\xb6\xdb\x3e\x4c\xeb\x1d\x77\xfe\xd3\x32\x29" "\xff\xe1\xce\x25\x73\xe5\xc9\xf9\xf7\x46\xf3\x1f\x71\x7a\xf2\xef\x8e\xcd" "\xbf\x54\x39\xff\xfe\x23\xe5\xdf\x93\x3f\x00\x00\x00\x00\x00\xcc\xb0\xfc" "\xff\xff\x4b\x8e\xff\xe6\x4d\x06\x00\x00\x00\x00\x00\x00\x80\x13\x67\x6b" "\x7b\x7d\x35\x5f\xf7\x9a\x8f\xff\x7f\x6e\xcc\x7a\xae\xff\x3c\x9d\x72\xfe" "\x9d\x47\xcd\x7f\x21\xcd\xcb\xff\x44\xcb\xf9\x77\x47\xf2\xff\xf2\xc8\x7a" "\xbd\xc6\xfc\xfd\x37\xf7\xf6\xff\x7f\x6f\xaf\xaf\xfe\xfe\xce\xbf\x3e\x9b" "\xa7\x87\xcd\x7f\x2e\xcf\x74\xd2\x23\xab\x93\x1e\x11\x9d\x74\x4f\x9d\x7e" "\x9a\x1e\x65\xeb\x1e\xb6\x39\xe8\x0d\xeb\x7b\x1a\x74\xba\xbd\x7e\x3a\xe7" "\xa7\x1a\xbc\x13\x37\xe2\x66\xac\xc5\x85\x7d\xeb\x76\xd3\xdf\x63\xaf\x7d" "\x65\x5f\x7b\xdd\xd3\xc1\xbe\xf6\x8b\xfb\xda\xfb\x0f\xb5\x5f\xda\xd7\x3e" "\x48\xdf\x3b\x50\x2d\xe4\xf6\x73\xb1\x1a\x3f\x89\x9b\xf1\xf6\x4e\x7b\xdd" "\x36\x77\xc0\xf6\xcf\x1f\xd0\x5e\x1d\xd0\x9e\xf3\xef\x79\xfe\x2f\x52\xce" "\xbf\xdf\xf8\xa9\xf3\x5f\x4c\xed\x9d\x91\x69\xed\xfe\x87\xdd\x87\xf6\xfb" "\xe6\x74\xdc\xfd\xbc\x71\xe3\xf3\xbf\xbc\x70\xfc\x9b\x73\xa0\xcd\xe8\x3d" "\xd8\xb6\xa6\x7a\xfb\xce\xb6\xd0\x9f\x9d\xbf\xc9\x13\xc3\xf8\xd9\xed\xb5" "\x5b\xe7\xee\x5e\xbf\x73\xe7\xd6\x4a\xa4\xc9\xbe\xa5\x17\x23\x4d\x1e\xb3" "\x9c\xff\x60\xe7\x67\x6e\xef\xf9\xff\x85\xdd\xf6\xfc\xbc\xdf\xdc\x5f\xef" "\x7f\x38\x7c\xe4\xfc\x67\xc5\x66\xf4\x27\xe6\xff\x42\x63\xbe\xde\xde\x97" "\xa6\xdc\xb7\x36\xe4\xfc\x87\xe9\x27\xe7\xff\x76\x6a\x1f\xbf\xff\x9f\xe4" "\xfc\x27\xef\xff\x2f\xb7\xd0\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xf8\x24\x55\x55\xed\x5c\x22\xfa\x46\x44\x5c\x4e\xd7\xff\xb4\x75" "\x6d\x26\x00\x30\x5d\xf9\xf5\xbf\x4a\xf2\x72\xb5\x5a\xad\x56\xab\xd5\xa7" "\xaf\x6e\xaa\xc6\x7b\xbd\x59\x44\xc4\x5f\x9b\xb7\xa9\xdf\x33\xfc\x62\xdc" "\x2f\x03\x00\x66\xd9\xff\x22\xe2\x1f\x6d\x77\x82\xd6\xc8\xbf\x60\xf9\xfb" "\xfe\xea\xe9\x8b\x6d\x77\x06\x98\xaa\xdb\xef\x7f\xf0\xa3\xeb\x37\x6f\xae" "\xdd\xba\xdd\x76\x4f\x00\x00\x00\x00\x00\x00\x00\x80\x4f\x2b\x8f\xff\xb9" "\xdc\x18\xff\xf9\xc5\x88\x58\x1a\x59\x6f\xdf\xf8\xaf\x6f\xc6\xf2\x51\xc7" "\xff\xec\xe7\x99\x07\x03\x8c\x3e\xe6\x81\xbe\x27\xd8\xec\x0e\x7b\xdd\xc6" "\x70\xe3\xcf\xc7\xce\xf8\xdc\xe7\x26\x8d\xff\x7d\x36\x1e\x1e\xff\x3b\x8f" "\x89\xdb\x6b\x6e\xc7\x04\x83\x03\xda\x87\x07\xb4\xcf\x1d\xd0\x3e\x3f\x76" "\xe9\x5e\x5a\x63\x2f\xf4\x68\xc8\xf9\x3f\xdf\x18\xef\xbc\xce\xff\xcc\xc8" "\xf0\xeb\x25\x8c\xff\x3a\x3a\xe6\x7d\x09\x72\xfe\x67\x1b\x8f\xe7\x3a\xff" "\x2f\x8d\xac\xd7\xcc\xbf\xfa\xed\xcc\xe5\xbf\x71\xd8\x15\x37\xa3\xbb\x2f" "\xff\xf3\x77\xde\xfb\xe9\xf9\xdb\xef\x7f\xf0\xca\x8d\xf7\xae\xbf\xbb\xf6" "\xee\xda\x8f\x2f\xad\xac\x5c\xb8\x74\xf9\xf2\x95\x2b\x57\xce\xbf\x73\xe3" "\xe6\xda\x85\xdd\x7f\x8f\xa7\xd7\x33\x20\xe7\x9f\xc7\xbe\x76\x1e\x68\x59" "\x72\xfe\x39\x73\xf9\x97\x25\xe7\xff\x85\x54\xcb\xbf\x2c\x39\xff\x2f\xa6" "\x5a\xfe\x65\xc9\xf9\xe7\xf7\x7b\xf2\x2f\x4b\xce\x3f\x7f\xf6\x91\x7f\x59" "\x72\xfe\x2f\xa5\x5a\xfe\x65\xc9\xf9\x7f\x25\xd5\xf2\x2f\xcb\xd6\xf6\xfa" "\x5c\x9d\xff\xcb\xa9\x96\x7f\x59\xf2\xfe\xff\xd5\x54\xcb\xbf\x2c\x39\xff" "\x57\x52\x2d\xff\xb2\xe4\xfc\xcf\xa5\x5a\xfe\x65\xc9\xf9\x9f\x4f\xf5\x21" "\xf2\xf7\xf5\xf0\xa7\x48\xce\x3f\x1f\xe1\xb2\xff\x97\x25\xe7\xbf\x92\x6a" "\xf9\x97\x25\xe7\x7f\x31\xd5\xf2\x2f\x4b\xce\xff\x52\xaa\xe5\x5f\x96\x9c" "\xff\xab\xa9\x96\x7f\x59\x72\xfe\x5f\x4b\xb5\xfc\xcb\x92\xf3\xbf\x9c\x6a" "\xf9\x97\x25\xe7\xff\xf5\x54\xcb\xbf\x2c\x39\xff\x2b\xa9\x96\x7f\x59\x72" "\xfe\xdf\x48\xb5\xfc\xcb\x92\xf3\xff\x66\xaa\xe5\x5f\x96\x9c\xff\x6b\xa9" "\x96\x7f\x59\x72\xfe\xdf\x4a\xb5\xfc\xcb\x92\xf3\xff\x76\xaa\xe5\x5f\x96" "\x9c\xff\x77\x52\x2d\xff\xb2\xe4\xfc\x5f\x4f\xb5\xfc\xcb\xb2\xf7\xfd\xff" "\x66\xcc\x98\x31\x93\x67\xda\x7e\x66\x02\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x46\x4d\xe3\x74\xe2\xb6\xb7\x11\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x80\xff\xb3\x03\x07\x02\x00\x00\x00\x00\x40\xfe\xaf\x8d\x50\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x85\x1d\x38\x10\x00\x00\x00\x00\x00\xf2" "\x7f\x6d\x84\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x2a\xec\xdd\x5b\x8c\x5c" "\xf7\x5d\x07\xf0\x33\x7b\xb1\xd7\x4e\xd3\xb8\x6d\x9a\x3a\xc1\x6d\xd7\x8e" "\xeb\xba\xce\x36\xbb\xbe\xc4\x97\x82\x89\x9b\x26\x69\x48\x5a\x4a\xae\x34" "\x5c\x62\x1b\xef\xda\xd9\xd6\xb7\x78\x6d\x9a\x84\x48\x76\x49\x4b\x23\xd5" "\x11\x15\x2a\x22\x3c\x00\x6d\x15\x41\x24\x84\x6a\xa1\x3e\x14\x14\x4a\x1e" "\x10\x97\x27\x02\x0f\xe5\x05\x15\x21\x55\x22\x42\x69\x94\x56\x54\x02\x54" "\xb2\x68\xe6\xfc\xff\x7f\xcf\xcc\xce\xce\xd9\xf5\x8e\xed\xd9\x73\x3e\x1f" "\x29\xf9\x79\x77\xce\xcc\x39\x73\xe6\x3f\xb3\xfb\x5d\xfb\xbb\x03\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x34\x5b\xff\xb1\xa9\x2f\xd5\xb2" "\x2c\xab\xff\xd7\xf8\xdf\x9a\x2c\x7b\x5b\xfd\xcf\xab\x46\xd7\x34\x3e\xf7" "\x91\xab\x7d\x84\x00\x00\x00\xc0\x52\xfd\x5f\xe3\xff\x6f\x5e\x97\x3e\xb1" "\x6f\x01\x57\x6a\xda\xe6\xef\xde\xf7\x8f\xdf\x9a\x9d\x9d\x9d\xcd\x3e\x3d" "\xf8\xbb\xc3\x5f\x9d\x9d\x4d\x17\x8c\x66\xd9\xf0\xca\x2c\x6b\x5c\x16\x5d" "\xf8\xf7\x47\x6b\xcd\xdb\x04\xcf\x66\x23\xb5\x81\xa6\x8f\x07\x0a\x76\x3f" "\x58\x70\xf9\x50\xc1\xe5\xc3\x05\x97\xaf\x28\xb8\x7c\x65\xc1\xe5\x23\x05" "\x97\xcf\x39\x01\x73\xac\xca\x7f\x1e\xd3\xb8\xb1\x8d\x8d\x3f\xae\xc9\x4f" "\x69\x76\x7d\x36\xdc\xb8\x6c\x63\x87\x6b\x3d\x5b\x5b\x39\x30\x10\x7f\x96" "\xd3\x50\x6b\x5c\x67\x76\xf8\x70\x36\x9d\x1d\xcd\xa6\xb2\x89\x96\xed\xf3" "\x6d\x6b\x8d\xed\x5f\x5e\x5f\xdf\xd7\x3d\x59\xdc\xd7\x40\xd3\xbe\xd6\xd5" "\x57\xc8\x0f\x9f\x39\x14\x8f\xa1\x16\xce\xf1\xc6\x96\x7d\x5d\xbc\xcd\xe8" "\x07\x1f\xcd\x46\x7f\xf4\xc3\x67\x0e\xfd\xf1\xe9\xd7\x6f\xec\x34\x0b\x4f" "\x43\xcb\xed\xe5\xc7\xb9\x79\x43\xfd\x38\xbf\x10\x3e\x93\x1f\x6b\x2d\x5b" "\x99\xce\x49\x3c\xce\x81\xa6\xe3\x5c\xd7\xe1\x31\x19\x6c\x39\xce\x5a\xe3" "\x7a\xf5\x3f\xb7\x1f\xe7\x9b\x0b\x3c\xce\xc1\x8b\x87\x79\x45\xb5\x3f\xe6" "\x23\xd9\x40\xe3\xcf\xaf\x36\xce\xd3\x50\xf3\x8f\xf5\xd2\x79\x5a\x17\x3e" "\xf7\xdf\x37\x67\x59\x76\xee\xe2\x61\xb7\x6f\x33\x67\x5f\xd9\x40\xb6\xba" "\xe5\x33\x03\x17\x1f\x9f\x91\x7c\x45\xd6\x6f\xa3\xbe\x94\xde\x99\x0d\x2d" "\x6a\x9d\xae\x5f\xc0\x3a\xad\xcf\xc9\x8d\xad\xeb\xb4\xfd\x39\x11\x1f\xff" "\xf5\xe1\x7a\x43\xf3\x1c\x43\xf3\xc3\xf4\x83\xcf\xaf\x98\xf3\xb8\x2f\x76" "\x9d\x46\xf5\x7b\x3d\xdf\x73\xa5\x7d\x0d\xf6\xfa\xb9\xd2\x2f\x6b\x30\xae" "\x8b\x57\x1b\x77\xfa\xb9\x8e\x6b\x70\x63\xb8\xff\xcf\x6c\x9a\x7f\x0d\x76" "\x5c\x3b\x1d\xd6\x60\xba\xdf\x4d\x6b\x70\x43\xd1\x1a\x1c\x58\x31\xd8\x38" "\xe6\xf4\x20\xd4\x1a\xd7\xb9\xb8\x06\xb7\xb6\x6c\x3f\xd8\xd8\x53\xad\x31" "\x5f\xdb\xd4\x7d\x0d\x8e\x9f\x3e\x76\x72\x7c\xe6\xa9\xa7\x3f\x3c\x7d\xec" "\xe0\x91\xa9\x23\x53\xc7\xb7\x6f\xdd\x3a\xb1\x7d\xe7\xce\xdd\xbb\x77\x8f" "\x1f\x9e\x3e\x3a\x35\x91\xff\xff\x12\xcf\x76\xff\x5b\x9d\x0d\xa4\xe7\xc0" "\x86\x70\xee\xe2\x73\xe0\x83\x6d\xdb\x36\x2f\xd5\xd9\xaf\xf7\xee\x79\x38" "\xd2\xe5\x79\xb8\xa6\x6d\xdb\x5e\x3f\x0f\x87\xda\xef\x5c\xed\xca\x3c\x21" "\xe7\xae\xe9\xfc\xb9\xf1\x50\xfd\xa4\x8f\x9c\x1f\xc8\xe6\x79\x8e\x35\x1e" "\x9f\x2d\x4b\x7f\x1e\xa6\xfb\xdd\xf4\x3c\x1c\x6a\x7a\x1e\x76\xfc\x9a\xd2" "\xe1\x79\x38\xb4\x80\xe7\x61\x7d\x9b\x93\x5b\x16\xf6\x3d\xcb\x50\xd3\x7f" "\x9d\x8e\xe1\x72\x7d\x2d\x58\xd3\xb4\x06\xdb\xbf\x1f\x69\x5f\x83\xbd\xfe" "\x7e\xa4\x5f\xd6\xe0\x48\x58\x17\xff\xba\x65\xfe\xaf\x05\xeb\xc2\xf1\x3e" "\x37\xb6\xd8\xef\x47\x06\xe7\xac\xc1\x74\x77\xc3\x6b\x4f\xfd\x33\xe9\xfb" "\xfd\x91\xdd\x8d\xd1\x69\x5d\xde\x54\xbf\xe0\x9a\x15\xd9\x99\x99\xa9\x53" "\xb7\x3e\x79\xf0\xf4\xe9\x53\x5b\xb3\x30\xae\x88\x77\x35\xad\x95\xf6\xf5" "\xba\xba\xe9\x3e\x65\x73\xd6\xeb\xc0\xa2\xd7\xeb\xbe\xe9\xf7\x3d\x77\x53" "\x87\xcf\xaf\x09\xe7\x6a\xe4\xc3\xf5\xff\x8d\xcc\xfb\x58\xd5\xb7\xd9\x71" "\x6b\xf7\xc7\xaa\xf1\xd5\xad\xf3\xf9\x6c\xf9\xec\xb6\x2c\x8c\x1e\xbb\xd2" "\xe7\xb3\xd3\x57\xf3\xfa\xf9\x4c\x59\xb2\xcb\xf9\xac\x6f\xf3\x85\xf1\xa5" "\x7f\x2f\x9e\x72\x69\xd3\xeb\xef\xf0\x3c\xaf\xbf\x31\xf7\xbf\x95\xef\x2f" "\xdd\xd4\xb3\x83\xc3\x43\xf9\xf3\x77\x30\x9d\x9d\xe1\x96\xd7\xe3\xd6\x87" "\x6a\xa8\xf1\xda\x55\x6b\xec\xfb\xcd\xf1\x85\xbd\x1e\x0f\x87\xff\xae\xf4" "\xeb\xf1\xf5\x5d\x5e\x8f\xd7\xb6\x6d\xdb\xeb\xd7\xe3\xe1\xf6\x3b\x17\x5f" "\x8f\x6b\x45\x3f\xed\x58\x9a\xf6\xc7\x73\x24\xac\x93\xa3\x13\xdd\x5f\x8f" "\xeb\xdb\xac\xdd\xb6\xd8\x35\x39\xd4\xf5\xf5\xf8\xe6\x30\x6b\xe1\xfc\x7f" "\x28\x24\x85\x94\x8b\x9a\xd6\xce\x7c\xeb\x36\xed\x6b\x68\x68\x38\xdc\xaf" "\xa1\xb8\x87\xd6\x75\xba\xbd\x65\xfb\xe1\x90\xcd\xea\xfb\x7a\x69\xdb\xa5" "\xad\xd3\xcd\x37\xe7\xb7\x35\x98\xee\xdd\x45\x57\x6a\x9d\x8e\xb6\x6d\xdb" "\xeb\x75\x9a\x5e\xaf\xe6\x5b\xa7\xb5\xa2\x9f\xbe\x5d\x9a\xf6\xc7\x73\x24" "\xac\x8b\xeb\xb7\x77\x5f\xa7\xf5\x6d\x5e\xd9\xb1\xf4\xd7\xce\x55\xf1\x8f" "\x4d\xaf\x9d\x2b\x8a\xd6\xe0\xf0\xe0\x8a\xfa\x31\x0f\xa7\x45\x98\xbf\xde" "\xcf\xae\x8a\x6b\xf0\xd6\xec\x50\x76\x22\x3b\x9a\x4d\x36\x2e\x5d\xd1\x58" "\x4f\xb5\xc6\xbe\xc6\x6e\x5b\xd8\x1a\x5c\x11\xfe\xeb\xc5\x6b\x65\xd1\xcf" "\x3d\x9b\xad\xed\xb2\x06\x37\xb7\x6d\xdb\xeb\x35\x98\xbe\x8e\xcd\xb7\xf6" "\x6a\x43\x73\xef\x7c\x0f\xb4\x3f\x9e\x23\x61\x5d\xbc\x70\x5b\xf7\x35\x58" "\xdf\xe6\xce\x5d\xbd\xfd\xde\x75\x73\xf8\x4c\xda\xa6\xe9\x7b\xd7\xf6\x9f" "\xaf\xcd\xf7\x33\xaf\x9b\xda\x4e\xd3\xe5\xfc\x99\x57\xfd\x38\xff\x66\x57" "\xf7\x9f\xcd\xd6\xb7\x39\xba\x7b\xb1\x39\xb3\xfb\x79\xba\x25\x7c\xe6\x9a" "\x0e\xe7\xa9\xfd\xf9\x3b\xdf\x73\x6a\x32\xbb\x32\xe7\x69\x6d\x38\xce\xd7" "\x77\xcf\x7f\x9e\xea\xc7\x53\xdf\xe6\xab\x7b\x16\xb8\x9e\xf6\x65\x59\x76" "\xf6\x89\x3b\x1a\x3f\xef\x0d\x7f\xbf\xf2\xe7\x67\xbe\xfb\xad\x96\xbf\x77" "\xe9\xf4\x77\x3a\x67\x9f\xb8\xe3\x8d\x6b\x0f\xff\xed\x62\x8e\x1f\x80\xe5" "\xef\xad\x7c\xac\xce\xbf\xd6\x35\xfd\xcd\xd4\x42\xfe\xfe\x1f\x00\x00\x00" "\x58\x16\x62\xee\x1f\x08\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\x8f\xff" "\x2a\x3c\x91\xff\x01\x00\x00\xa0\x34\x62\xee\x1f\x0a\x33\xa9\x48\xfe\x5f" "\x7b\xe7\xeb\xd3\x6f\x9d\xcd\x52\x33\x7f\x36\x88\x97\xa7\xd3\x70\x6f\xbe" "\x5d\xec\xb8\x4e\x84\x8f\x47\x67\x2f\xaa\x7f\xfe\x8e\x17\xa7\x7e\xfc\x97" "\x67\x17\xb6\xef\x81\x2c\xcb\x7e\x72\xef\x6f\x74\xdc\x7e\xed\xbd\xf1\xb8" "\x72\xa3\xe1\x38\x2f\xdc\xd5\xfa\xf9\xb9\x57\x3c\xbb\xa0\xfd\x1f\x78\xf8" "\xe2\x76\xcd\xfd\xf5\xaf\x85\xdb\x8f\xf7\x67\xa1\xcb\xa0\x53\x05\x77\x22" "\xcb\xb2\x97\xaf\x7b\xbe\xb1\x9f\xd1\x47\xcf\x37\xe6\x2b\xf7\x1e\x68\xcc" "\x07\xce\x3d\xf7\x6c\x7d\x9b\x37\xf7\xe4\x1f\xc7\xeb\xbf\xf6\xae\x7c\xfb" "\x3f\x08\xe5\xdf\x7d\x87\x0f\xb6\x5c\xff\xb5\x70\x1e\xbe\x1f\xe6\xc4\x7d" "\x9d\xcf\x47\xbc\xde\x37\xcf\x7f\x68\xdd\xae\x47\x2e\xee\x2f\x5e\xaf\xb6" "\xe1\xed\x8d\xbb\xfd\xc2\x63\xf9\xed\xc6\xdf\x93\xf3\x95\x67\xf3\xed\xe3" "\x79\x9e\xef\xf8\xff\xea\xcb\x2f\x7d\xb3\xbe\xfd\x93\x1f\xe8\x7c\xfc\x67" "\x07\x3a\x1f\xff\x4b\xe1\x76\x5f\x0c\xf3\x7f\xde\x9b\x6f\xdf\xfc\x18\xd4" "\x3f\x8e\xd7\xfb\x62\x38\xfe\xb8\xbf\x78\xbd\x5b\xbf\xf1\x9d\x8e\xc7\x7f" "\xe1\x4b\xf9\xf6\x27\xef\xce\xb7\x3b\x10\x66\xdc\xff\xe6\xf0\xf1\xc6\xbb" "\x5f\x9f\x6e\x3e\x5f\x4f\xd6\x0e\xb6\xdc\xaf\xec\xe3\xf9\x76\x71\xff\x13" "\xdf\xfd\xed\xc6\xe5\xf1\xf6\xe2\xed\xb7\x1f\xff\xc8\xfe\xf3\x2d\xe7\xa3" "\x7d\x7d\xbc\xf2\xcf\xf9\xed\x8c\xb7\x6d\x1f\x3f\x1f\xf7\x13\xfd\x45\xdb" "\xfe\xeb\xb7\xd3\xbc\x3e\xe3\xfe\x5f\xfa\xad\x03\x2d\xe7\xb9\x68\xff\x17" "\x1e\x78\xed\xbd\xf5\xdb\x6d\xdf\xff\x2d\x6d\xdb\x0d\xb6\x5d\xbf\xfd\x37" "\x36\xfd\xe1\x17\x9f\xef\xb8\xbf\x78\x3c\xfb\xfe\xec\x64\xcb\xfd\xd9\x77" "\x7f\x78\x1e\x87\xfd\xbf\xf0\x58\x58\x8f\xe1\xf2\xff\xbd\xf0\x7c\xcb\x7e" "\xa3\x03\xf7\xb7\xbe\xfe\xc4\xed\xbf\xb6\xe6\x6c\xcb\xfd\x89\xee\xf9\x51" "\xbe\xff\x0b\xb7\x1f\x69\xcc\xff\x18\xfd\xf1\xef\x5f\xf3\xb6\x6b\xdf\x7e" "\xee\xfd\xf5\x73\x97\x65\xaf\x3e\x98\xdf\x5e\xd1\xfe\x8f\xfc\xd1\x89\x96" "\xe3\xff\xfa\x0d\x5b\x1a\x8f\x47\xbc\x3c\x76\xf4\xdb\xf7\x3f\x9f\xb8\xff" "\x53\x9f\x1b\x3b\x7e\x62\xe6\xcc\xf4\x64\xd3\x59\x6d\xfc\xee\x9c\x4f\xe4" "\xc7\xb3\x72\x64\xd5\xea\xfa\xf1\x5e\x17\x5e\x5b\xdb\x3f\xde\x7f\xe2\xf4" "\xe3\x53\xa7\x46\x27\x46\x27\xb2\x6c\xb4\xbc\xbf\x42\xef\x92\x7d\x23\xcc" "\x37\xf2\x71\x6e\xb1\xd7\xdf\xf2\x70\x78\x3c\x6f\xfa\xbd\x97\x57\x6f\xfa" "\xa7\x2f\xc7\xcf\xff\xcb\x43\xf9\xe7\xcf\xdf\x97\x7f\xdd\xfa\x60\xd8\xee" "\x2b\xe1\xf3\x6b\xf2\xc7\x6f\xb6\xb6\xc4\xfd\xbf\xb0\xfe\x86\xc6\xf3\xbb" "\xf6\x4a\xfe\x71\x4b\x8f\xbd\x07\xd6\x6d\xfc\xcf\xdd\x0b\xda\x30\xdc\xff" "\xf6\xef\x0b\xe2\x7a\x3f\xf9\xee\xc7\x1b\xe7\xa1\x7e\x59\xe3\xeb\x46\x7c" "\x5e\x2f\xf1\xf8\xbf\x37\x99\xdf\xce\xb7\xc3\x79\x9d\x0d\xbf\x99\x79\xc3" "\x0d\x17\xf7\xd7\xbc\x7d\xfc\xdd\x08\xe7\x1f\xcc\x9f\xef\x4b\x3e\x7f\xe1" "\x65\x2e\x3e\xae\x7f\x12\x1e\xef\x4f\x7e\x3f\xbf\xfd\x78\x5c\xf1\xfe\x7e" "\x2f\x7c\x1f\xf3\x9d\xb5\xad\xaf\x77\x71\x7d\x7c\xfb\xec\x40\xfb\xed\x37" "\x7e\x8b\xc7\xb9\xf0\x7a\x92\x9d\xcb\x2f\x8f\x5b\xc5\xf3\x7d\xfe\xcd\x1b" "\x3a\x1e\x5e\xfc\x3d\x24\xd9\xb9\x1b\x1b\x1f\xff\x4e\xba\x9d\x1b\x17\x75" "\x37\xe7\x33\xf3\xd4\xcc\xf8\xd1\xe9\xe3\x67\x9e\x1c\x3f\x3d\x35\x73\x7a" "\x7c\xe6\xa9\xa7\xf7\x1f\x3b\x71\xe6\xf8\xe9\xfd\x8d\xdf\xe5\xb9\xff\x33" "\x45\xd7\xbf\xf8\xfa\xb4\xba\xf1\xfa\x34\x39\xb5\x73\x47\x36\xb1\x2a\xcb" "\xb2\x13\xd9\xc4\x15\x78\xc1\xba\x3c\xc7\x5f\xff\xd3\xc2\x8e\xff\xe4\xc3" "\x87\x26\x77\x4d\x6c\x9a\x9c\x3a\x7c\xf0\xcc\xe1\xd3\x0f\x9f\x9c\x3a\x75" "\xe4\xd0\xcc\xcc\xa1\xa9\xc9\x99\x4d\x07\x0f\x1f\x9e\xfa\x5c\xd1\xf5\xa7" "\x27\xf7\x6e\xdd\xb6\x67\xfb\xae\x6d\x63\x47\xa6\x27\xf7\xee\xde\xb3\x67" "\xfb\x9e\xb1\xe9\xe3\x27\xea\x87\x91\x1f\x54\x81\x9d\x13\x9f\x1d\x3b\x7e" "\x6a\x7f\xe3\x2a\x33\x7b\x77\xec\xd9\x7a\xdb\x6d\x3b\x26\xc6\x8e\x9d\x98" "\x9c\xda\xbb\x6b\x62\x62\xec\x4c\xd1\xf5\x1b\x5f\x9b\xc6\xea\xd7\xfe\xf5" "\xb1\x53\x53\x47\x0f\x9e\x9e\x3e\x36\x35\x36\x33\xfd\xf4\xd4\xde\xad\x7b" "\x76\xee\xdc\x56\xf8\xdb\x00\x8f\x9d\x3c\x3c\x33\x3a\x7e\xea\xcc\xf1\xf1" "\x33\x33\x53\xa7\xc6\xf3\xfb\x32\x7a\xba\xf1\xe9\xfa\xd7\xbe\xa2\xeb\x53" "\x4e\x33\xff\x96\x7f\x3f\xdb\xae\x96\xff\x22\xbe\xec\x53\xb7\xec\x4c\xbf" "\x9f\xb5\xee\xc5\xcf\xcf\x7b\x53\xf9\x26\x6d\xbf\x40\xf4\xf5\xf0\xbb\x68" "\xfe\xe1\x1d\x27\x77\x2f\xe4\xe3\x98\xfb\x87\xc3\x4c\x2a\x92\xff\x01\x00" "\x00\xa0\x0a\x62\xee\x5f\x11\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xbf" "\x32\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\x7f\x24\xcc\xa4\x22\xf9\x5f" "\xff\x5f\xff\x7f\x61\xfd\xff\xfc\x72\xfd\xff\x6a\xf5\xff\x4f\x3e\x91\xf7" "\x4a\x97\x7b\xff\x3f\xf6\xe7\x97\x5d\xff\x7f\x38\x7f\x51\xd6\xff\x5f\x9c" "\xab\xdc\xff\x5f\xf2\xfe\xf5\xff\xf5\xff\xcb\xd7\xff\x5f\x78\x7f\x7e\xb9" "\x1f\xbf\xfe\xbf\xfe\x3f\x73\xf5\x5b\xff\x3f\xe6\xfe\x55\x59\x56\xc9\xfc" "\x0f\x00\x00\x00\x55\x10\x73\xff\xea\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23" "\xe6\xfe\x6b\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xdf\x16\x66\x52" "\x91\xfc\xaf\xff\xbf\xa0\xfe\xff\xb6\xa2\xc2\x55\xf9\xfb\xff\xde\xff\x5f" "\xff\x3f\x5b\x9e\xfd\xff\xf8\xe0\x2c\xc7\xfe\xbf\xf7\xff\xbf\x24\x8b\xee" "\xdf\x3f\xf2\x50\xcb\x87\xfa\xff\x81\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe" "\x3f\x4b\x36\x3c\xef\x25\x57\xab\xff\x1f\x73\xff\xb5\x61\x26\x15\xc9\xff" "\x00\x00\x00\x50\x05\x31\xf7\xbf\x3d\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88" "\xb9\xff\xba\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x35\x61\x26\x15" "\xc9\xff\xfa\xff\xde\xff\x5f\xff\x5f\xff\xbf\xd4\xfd\xff\xa5\xbe\xff\x7f" "\xd3\xc1\xe8\xff\x2f\x0f\xde\xff\x3f\x6a\x7f\x26\xe5\xf4\xff\x0b\x5c\x72" "\xff\x7f\x44\xff\x7f\x39\xf6\xff\x87\x7b\x7b\xfc\xfd\xdd\xff\x2f\x3c\x7c" "\xfd\x7f\x2e\x8b\x7e\x7b\xff\xff\x98\xfb\xdf\x11\x66\x52\x91\xfc\x0f\x00" "\x00\x00\x55\x10\x73\xff\x3b\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb" "\xdf\x15\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x7f\x7d\x98\x49\x45\xf2" "\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xe7\xfd\x17\xbf\xff\x7f\xfe" "\x27\xfd\xff\xfe\xa2\xff\xdf\x9d\xfe\x7f\x01\xef\xff\x5f\xad\xfe\x7f\x8f" "\x8f\xbf\xbf\xfb\xff\x8b\x7d\xff\xff\x55\x59\x96\x75\xeb\xff\x0f\xdf\xd5" "\x7e\x7d\xfd\x7f\x3a\xe9\xb7\xfe\x7f\xcc\xfd\xef\x0e\x33\xa9\x48\xfe\x07" "\x00\x00\x80\x2a\x88\xb9\xff\x86\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6" "\xfe\xf7\x84\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xaf\x0d\x33\xa9\x48" "\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\xbc\xff\xe2\xfe\x7f\x4e" "\xff\xbf\xbf\xe8\xff\x77\xa7\xff\x5f\x40\xff\x5f\xff\x5f\xff\x7f\x61\xef" "\xff\xdf\xe1\x9b\x5f\xfd\x7f\x3a\xe9\xb7\xfe\x7f\xcc\xfd\x37\x86\x99\x54" "\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\x7f\x53\x98\x89\xfc\x0f\x00\x00\x00" "\xa5\x11\x73\xff\x4f\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xaf\x0b" "\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xaf\x56\xff\xff\x96\x15\xfa\xff" "\xfa\xff\xe5\xa6\xff\xdf\x9d\xfe\x7f\x01\xfd\x7f\xfd\x7f\xfd\xff\x85\xf5" "\xff\x3b\x58\x4c\xff\x7f\x65\xd1\x8d\x51\x1a\xfd\xd6\xff\x8f\xb9\xff\xbd" "\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\xbf\x2f\xcc\x44\xfe\x07" "\x00\x00\x80\xd2\x88\xb9\xff\xfd\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc" "\xfd\xa3\x61\x26\x15\xc9\xff\xfa\xff\xe5\xea\xff\xff\xe9\x5f\xbf\xf0\xfe" "\x4c\xff\x5f\xff\xbf\x60\xff\x25\xed\xff\xc7\x65\xa0\xff\x5f\x71\xfa\xff" "\xdd\xe9\xff\x17\xd0\xff\xd7\xff\xd7\xff\xbf\x22\xfd\x7f\xaa\xa3\xdf\xfa" "\xff\x31\xf7\xaf\x0f\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\x7f\x43" "\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xcd\x61\x26\xf2\x3f\x00\x00" "\x00\x94\x46\xcc\xfd\x1b\xc3\x4c\x2a\x92\xff\xf5\xff\xcb\xd5\xff\x8f\xf4" "\xff\xf5\xff\xbb\xed\xbf\xa4\xfd\xff\x44\xff\xbf\xda\xf4\xff\x3b\x68\x7a" "\x92\xea\xff\x17\xd0\xff\xd7\xff\xaf\x7c\xff\x3f\x7e\xf7\xab\xff\x4f\x6f" "\xf4\x5b\xff\x3f\xe6\xfe\x0f\x84\x99\x54\x24\xff\x03\x00\x00\x40\x15\xc4" "\xdc\xbf\x29\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x83\x61\x26\xf2" "\x3f\x00\x00\x00\x94\x46\xcc\xfd\x9b\xc3\x4c\x2a\x92\xff\xf5\xff\xf5\xff" "\xf5\xff\xf5\xff\xf5\xff\x3b\xef\x5f\xff\x7f\x79\xd2\xff\xef\x6e\xb1\xfd" "\xff\x15\xfa\xff\xfa\xff\xfa\xff\x15\xeb\xff\x7b\xff\x7f\x7a\xab\xdf\xfa" "\xff\x31\xf7\x7f\x28\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\x2d" "\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xfc\xf7\x9b\xf9\xbf\x7b\x95\xff\x01" "\x00\x00\xa0\x8c\x62\xee\x1f\x0b\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xaf\x52" "\xff\xbf\xa6\xff\xaf\xff\xaf\xff\x5f\x7a\xfa\xff\xdd\x79\xff\xff\x02\xfa" "\xff\xfa\xff\xfa\xff\xfa\xff\xf4\x54\xbf\xf5\xff\x63\xee\xff\x70\x98\x49" "\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\xb7\x86\x99\xc8\xff\x00\x00\x00" "\x50\x1a\x31\xf7\x8f\x87\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x4f\x84" "\x99\x54\x24\xff\xeb\xff\xeb\xff\x57\xa9\xff\xef\xfd\xff\xf5\xff\xf5\xff" "\xcb\x4f\xff\xbf\x3b\xfd\xff\x02\xfa\xff\xfa\xff\x65\xeb\xff\x67\x99\xfe" "\x3f\x57\x55\xbf\xf5\xff\x63\xee\xdf\x1a\x66\x52\x91\xfc\x0f\x00\x00\x00" "\x55\x10\x73\xff\xb6\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xed\x61" "\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x3b\xc2\x4c\x2a\x92\xff\xf5\xff" "\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x3b\xef\x5f\xff\x7f\x79\xd2\xff\xef\x4e" "\xff\xbf\x80\xfe\xbf\xfe\x7f\xd9\xfa\xff\xde\xff\x9f\xab\xac\xdf\xfa\xff" "\x31\xf7\xdf\x16\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\xce\x30" "\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x5d\x61\x26\x21\xff\x77\xfa\x77" "\xdd\x00\x00\x00\xc0\xf2\x12\x73\xff\xee\x30\x93\x8a\xfc\xfd\xbf\xfe\x7f" "\x49\xfa\xff\xbf\xf9\xf7\x2d\xfb\xd6\xff\xd7\xff\xef\xb6\xff\xde\xf4\xff" "\x57\xe9\xff\x87\xa9\xff\xdf\x5f\x4a\xda\xff\x6f\x7f\x5a\x5c\x32\xfd\xff" "\x02\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xf4\x54\xbf\xf5\xff\x63\xee\xdf\x13" "\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\x47\xc2\x4c\xe4\x7f\x00" "\x00\x00\x28\x8d\x98\xfb\x7f\x3a\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9" "\xff\x67\xc2\x4c\x2a\x92\xff\xf5\xff\x4b\xd2\xff\x6f\xa3\xff\xaf\xff\xdf" "\x6d\xff\xde\xff\x5f\xff\xbf\xcc\x4a\xda\xff\xef\x99\x52\xf5\xff\x07\xf4" "\xff\xf5\xff\xfb\xeb\xf8\xf5\xff\xf5\xff\x99\xeb\xf2\xf7\xff\xe3\x9f\x16" "\xd6\xff\x8f\xb9\x7f\x6f\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd" "\x3f\x1b\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x7f\x7b\x98\x89\xfc\x0f" "\x00\x00\x00\xa5\x11\x73\xff\xbe\x30\x93\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xfd" "\x7f\xfd\xff\xa5\xf5\xff\x47\xe7\xe9\xff\xdf\x9e\xb5\xeb\xc7\xfe\x7f\x7d" "\xf1\xe8\xff\x97\x8b\xfe\x7f\x77\xa5\xea\xff\x7b\xff\x7f\xfd\xff\x3e\x3b" "\x7e\xfd\x7f\xfd\x7f\xe6\xea\xb7\xf7\xff\x8f\xb9\xff\xa3\x61\x26\x15\xc9" "\xff\x00\x00\x00\x50\x05\x31\xf7\xdf\x11\x66\x22\xff\x03\x00\x00\x40\x69" "\xc4\xdc\xff\xb1\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x3b\xc3\x4c" "\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xbd\xff\x7f\xe7\xfd\xeb\xff" "\x2f\x4f\xfa\xff\xdd\xe9\xff\x17\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xa7" "\xfa\xad\xff\x1f\x73\xff\x5d\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31" "\xf7\xdf\x1d\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xff\xf1\x30\x13\xf9" "\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x7b\xc2\x4c\x2a\x92\xff\xf5\xff\xf5\xff" "\xf5\xff\xf5\xff\xf5\xff\x3b\xef\x5f\xff\x7f\x79\xd2\xff\xef\x4e\xff\xbf" "\x80\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x3d\xd5\x6f\xfd\xff\x98\xfb\x7f\x2e" "\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\x7b\xc3\x4c\xe4\x7f\x00" "\x00\x00\x28\x8d\x98\xfb\xef\x0b\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee" "\xff\x44\x98\x49\x45\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xe7" "\xfd\xeb\xff\x2f\x4f\x25\xee\xff\xdf\xbe\xd8\xdb\xea\x44\xff\xbf\x80\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x3d\xd5\x6f\xfd\xff\x98\xfb\x3f\x19\x66\x52" "\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\xcf\x87\x99\xc8\xff\x00\x00\x00" "\x50\x1a\x31\xf7\x7f\x2a\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x17" "\xc2\x4c\x2a\x92\xff\xf5\xff\xf5\xff\xfb\xab\xff\x3f\x7b\xb6\xf9\x7a\xfa" "\xff\xfa\xff\x59\xaf\xfa\xff\xf5\x2b\xe9\xff\x57\x42\x89\xfb\xff\x3d\xa1" "\xff\x5f\xa0\x43\xff\x7f\xa5\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x97\xac\xdf" "\xfa\xff\x31\xf7\xdf\x1f\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff" "\x03\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x0f\x86\x99\xc8\xff\x00" "\x00\x00\x50\x1a\x31\xf7\x3f\x14\x66\x52\x91\xfc\xaf\xff\x5f\xc9\xfe\x7f" "\xba\xcb\xfd\xd7\xff\xf7\xfe\xff\xfa\xff\xde\xff\x5f\xff\x7f\x69\xf4\xff" "\xbb\xd3\xff\x2f\xe0\xfd\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xa9\x7e\xeb\xff" "\xc7\xdc\xff\x70\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\x8f\x84" "\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xff\x62\x98\x89\xfc\x0f\x00\x00" "\x00\xa5\x11\x73\xff\xa7\xc3\x4c\x2a\x92\xff\xf5\xff\x2b\xd9\xff\xef\xe3" "\xf7\xff\x2f\x5b\xff\x7f\xa8\x65\x7d\x54\xa9\xff\x3f\xd2\xf4\x78\xa6\x75" "\xa9\xff\xaf\xff\x7f\x05\xe8\xff\x77\xa7\xff\x5f\x40\xff\x5f\xff\xbf\x9f" "\xfb\xff\x61\x35\xaf\x9a\xe7\xfa\xfa\xff\xf4\xa3\x7e\xeb\xff\xc7\xdc\xff" "\x68\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\xbf\x14\x66\x22\xff" "\x03\x00\x00\x40\x69\xc4\xdc\xff\xcb\x61\x26\xf2\x3f\x00\x00\x00\x94\x46" "\xcc\xfd\xbf\x12\x66\x52\x91\xfc\xaf\xff\xaf\xff\xaf\xff\xef\xfd\xff\xbd" "\xff\x7f\xe7\xfd\xeb\xff\x2f\x4f\xfa\xff\xdd\xe9\xff\x17\xd0\xff\xd7\xff" "\xef\xe7\xfe\x7f\x01\xfd\x7f\xfa\x51\xbf\xf5\xff\x63\xee\xff\xd5\x30\x93" "\x79\x83\xdf\x1b\xff\xb5\x80\xbb\x09\x00\x00\x00\xf4\x91\x98\xfb\x1f\x0b" "\x33\xa9\xc8\xdf\xff\x03\x00\x00\x40\x15\xc4\xdc\xbf\x3f\xcc\x44\xfe\x07" "\x00\x00\x80\xd2\x88\xb9\xff\x40\x98\x49\x45\xf2\xbf\xfe\x7f\x7b\xff\x3f" "\xbe\xa3\xaa\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xff\x72\xd4\xbb\xfe\xff" "\x7b\xae\xcd\x32\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x96\xa2" "\xdf\xfa\xff\x31\xf7\x1f\x0c\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9" "\xff\xd7\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x0f\x85\x99\xc8\xff" "\x00\x00\x00\x50\x1a\x31\xf7\x4f\x86\x99\x54\x24\xff\x5f\xc5\xfe\xff\x70" "\x7f\xf6\xff\xbd\xff\xff\xa5\xf6\xff\x7f\xa2\xff\xaf\xff\x1f\xe8\xff\x77" "\xa6\xff\x7f\x65\x78\xff\xff\xee\xf4\xff\x0b\xe8\xff\xeb\xff\xeb\xff\xeb" "\xff\xd3\x53\xfd\xd6\xff\x8f\xb9\x7f\x2a\xcc\xa4\x22\xf9\x1f\x00\x00\x00" "\x4a\x2c\xfd\x38\x38\xe6\xfe\xc3\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc" "\xfd\x47\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x1f\x0f\x33\xa9\x48" "\xfe\xf7\xfe\xff\xfa\xff\xde\xff\xbf\xbd\xff\x5f\xbf\xe9\xcb\xdd\xff\x1f" "\x6a\xd9\x5e\xff\x3f\xa7\xff\xaf\xff\xdf\x0b\xfa\xff\xdd\xe9\xff\x17\xd0" "\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xa7\xfa\xad\xff\x1f\x73\xff\x74\x98\x49" "\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\x9f\x09\x33\x91\xff\x01\x00\x00" "\xa0\x34\x62\xee\xff\x6c\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xd1" "\x30\x93\x8a\xe4\x7f\xfd\x7f\xfd\xff\xaa\xf7\xff\x6b\x59\x76\xce\xfb\xff" "\xeb\xff\x77\xda\xbf\xfe\xff\xf2\xa4\xff\xdf\x9d\xfe\x7f\x01\xfd\x7f\xfd" "\x7f\xfd\x7f\xfd\x7f\x7a\xaa\xdf\xfa\xff\x31\xf7\x1f\x0b\x33\xa9\x48\xfe" "\x07\x00\x00\x80\x2a\x88\xb9\xff\x78\x98\x89\xfc\x0f\x00\xfc\x3f\x7b\xf7" "\xd1\x24\xc9\x59\xed\x71\xb8\xae\xae\xc6\xad\xee\xfd\x08\xac\x59\xb1\x84" "\x95\xf8\x08\x6c\xd9\x11\xc1\x9a\x10\x46\x78\x23\x09\xef\x41\x78\x6f\x84" "\xf7\xde\x3b\xe1\xbd\x13\xde\x0b\xef\xad\xb0\x82\x88\x21\xd4\x73\xce\x99" "\xee\xe9\xea\xcc\xee\xe9\xec\xaa\xcc\xf7\x7d\x9e\xcd\x61\x26\xd4\x54\xb5" "\x54\x12\xf1\xa7\xf9\x91\x00\x40\x33\x72\xf7\x5f\x1d\xb7\xd8\xff\x00\x00" "\x00\xd0\x8c\xdc\xfd\xf7\x8e\x5b\xda\xde\xff\x15\xa3\xe9\xff\xf5\xff\xbd" "\xf7\xff\xab\x7d\xcf\xff\xd7\xff\xeb\xff\x2f\xd0\xff\x2f\xd3\xbe\xfe\xfe" "\xca\xf5\x7f\xdc\x41\x51\xf8\x81\xfd\xff\x9d\xee\x7c\xcd\x3d\xf4\xff\xfa" "\x7f\xfd\xff\x20\xfd\xbf\xfe\x5f\xff\xcf\xa5\xe6\xd6\xff\xe7\xee\xbf\x4f" "\xdc\xd2\xf6\xfe\x07\x00\x00\x80\xae\xe4\xee\xbf\x6f\xdc\x62\xff\x03\x00" "\x00\x40\x33\x72\xf7\xdf\x2f\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xaf" "\x89\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\xa7\xff\xbf\x49\xff" "\xaf\xff\x5f\x36\xcf\xff\x1f\xa6\xff\x1f\xa1\xff\xd7\xff\xeb\xff\xf5\xff" "\x4c\x6a\x6e\xfd\x7f\xee\xfe\xfb\xc7\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41" "\xee\xfe\x07\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x03\xe3\x16\xfb" "\x1f\x00\x00\x00\x9a\x91\xbb\xff\x41\x71\x4b\x27\xfb\x5f\xff\xaf\xff\xd7" "\xff\x2f\xa5\xff\x3f\xed\xf9\xff\x97\x7c\x3f\xfa\x7f\xfd\xff\x3a\x9b\xed" "\xff\x6f\xae\xaf\xd3\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x9f\xfd\xe6" "\xd6\xff\xe7\xee\x7f\x70\xdc\xb2\x6e\xf8\x9d\x3d\xec\x77\x09\x00\x00\x00" "\xcc\x49\xee\xfe\x87\xc4\x2d\x9d\xfc\xfc\x1f\x00\x00\x00\x7a\x90\xbb\xff" "\xa1\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xb0\xb8\xe5\xe0\xfd\x7f" "\xe6\xe4\xdf\xd5\xe6\xe8\xff\xf5\xff\xfa\xff\xa5\xf4\xff\x1b\x7a\xfe\xbf" "\xfe\x5f\xff\xbf\x70\x37\xae\x2e\xfe\x33\xc1\xf3\xff\xf7\xd3\xff\x8f\x18" "\xe9\xff\x57\x2b\xfd\xff\x90\x43\xf7\xf3\xeb\xbf\xbd\xe5\xbc\xff\x03\xe8" "\xff\xf5\xff\xec\x37\xb7\xfe\x3f\x77\xff\xc3\xe3\x96\xbb\xae\x56\xa7\x2f" "\xf7\x9b\x04\x00\x00\x00\x66\x25\x77\xff\x23\xe2\x16\xff\xfb\x7f\x00\x00" "\x00\x68\x46\xee\xfe\x6b\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xba" "\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xf5\xaf\xaf\xff" "\x5f\xa6\xcd\x3e\xff\xbf\xc7\xfe\xff\x8e\xff\x7f\xaf\x7b\xf6\xdb\xff\x7b" "\xfe\xff\x30\xcf\xff\x9f\xba\xff\xbf\xfd\x93\xa1\xff\x67\xd9\xe6\xd6\xff" "\xe7\xee\xbf\x3e\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x3f\x32\x6e" "\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x1f\x15\xb7\xd8\xff\x00\x00\x00\xd0" "\x8c\xdc\xfd\x8f\x8e\x5b\x3a\xd9\xff\xfa\xff\xd6\xfa\xff\xff\xdd\xf3\x75" "\xbb\xfa\xff\x9d\xda\x45\xff\xaf\xff\xd7\xff\xeb\xff\x5b\xa7\xff\x1f\xe6" "\xf9\xff\x23\x76\xfe\x31\x77\xae\x7e\xb9\xcc\xfe\xff\xec\x91\xbe\xe5\xdd" "\xb6\xdd\xcf\x1f\xd7\xb6\xdf\xff\x61\xfb\xff\x53\x07\x7c\xbd\xe7\xff\xd3" "\xa2\xb9\xf5\xff\xb9\xfb\x1f\x13\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9" "\xfb\x1f\x1b\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x8f\x8b\x5b\xec\x7f" "\x00\x00\x00\x68\x46\xee\xfe\xc7\xc7\x2d\x9d\xec\x7f\xfd\x7f\x6b\xfd\xff" "\xde\xaf\xf3\xfc\x7f\xfd\xff\xba\xd7\xd7\xff\xeb\xff\x5b\xa6\xff\x1f\xa6" "\xff\x1f\xd1\xca\xf3\xff\x2f\xf3\x53\xb3\xed\x7e\xfe\xb8\xb6\xfd\xfe\xa7" "\x7f\xfe\xbf\xfe\x9f\xe5\x9b\x5b\xff\x9f\xbb\xff\x09\x71\x4b\x27\xfb\x1f" "\x00\x00\x00\x7a\x90\xbb\xff\x89\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd" "\xff\xa4\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x72\xdc\xd2\xc9\xfe" "\xd7\xff\xeb\xff\x97\xd1\xff\xe7\x2b\xe8\xff\xf5\xff\x27\xdf\xff\x27\xfd" "\xff\x32\xe9\xff\x87\xe9\xff\x47\xb4\xd2\xff\x5f\xa6\x6d\xf7\xf3\x4b\x7f" "\xff\xfa\x7f\xfd\x3f\xfb\xcd\xad\xff\xcf\xdd\xff\x94\xb8\xa5\x93\xfd\x0f" "\x00\x00\x00\x3d\xc8\xdd\xff\xd4\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee" "\x7f\x5a\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x3d\x6e\xe9\x64\xff" "\xeb\xff\xf5\xff\xcb\xe8\xff\x3d\xff\x5f\xff\xef\xf9\xff\xfa\xff\xc3\xd1" "\xff\x0f\xd3\xff\x8f\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x26\x35\xb7\xfe\x3f" "\x77\xff\x0d\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x19\x71\x8b" "\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xcc\xb8\xc5\xfe\x07\x00\x00\x80\x66" "\xe4\xee\x7f\x56\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff" "\xfa\xd7\xd7\xff\x2f\x93\xfe\x7f\x98\xfe\x7f\x84\xfe\x5f\xff\xaf\xff\xd7" "\xff\x33\xa9\x19\xf5\xff\xbb\xbe\xea\xec\xea\xd9\x71\x4b\x27\xfb\x1f\x00" "\x00\x00\x7a\x90\xbb\xff\x39\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff" "\xdc\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x5e\xdc\xd2\xc9\xfe\xd7" "\xff\xcf\xa6\xff\xdf\xc9\xf9\xda\xea\xff\xcf\xad\x56\x2b\xfd\xff\xaa\xd3" "\xfe\xff\xdc\xae\xbf\x9e\xf5\xb9\xd4\xff\xeb\xff\x37\x40\xff\x3f\x4c\xff" "\x3f\x42\xff\xaf\xff\xd7\xff\xeb\xff\x99\xd4\x8c\xfa\xff\x9d\x5f\xe7\xee" "\x7f\x7e\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x41\xdc\x62\xff" "\x03\x00\x00\x40\x33\x72\xf7\xbf\x30\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9" "\xfb\x5f\x14\xb7\x74\xb2\xff\xf5\xff\xb3\xe9\xff\x77\xb4\xd5\xff\x7b\xfe" "\xff\xa5\x9f\x8f\x9e\xfa\x7f\xcf\xff\xdf\x4f\xff\xbf\x19\xfa\xff\x61\xfa" "\xff\x11\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xa4\xe6\xd6\xff\xe7\xee\x7f\x71" "\xdc\x74\xfa\xd4\x65\x7f\x8b\x00\x00\x00\xc0\xcc\xe4\xee\x7f\x49\xdc\xd2" "\xc9\xcf\xff\x01\x00\x00\xa0\x07\xb9\xfb\x5f\x1a\xb7\xd8\xff\x00\x00\x00" "\xb0\x50\x37\xec\xfb\x9d\xdc\xfd\x2f\x8b\x5b\x3a\xd9\xff\xfa\xff\x69\xfb" "\xff\xd3\xbb\x7e\x4f\xff\xaf\xff\xbf\xf4\xf3\xa1\xff\xd7\xff\xeb\xff\x4f" "\x9e\xfe\x7f\x98\xfe\x7f\x84\xfe\x5f\xff\xaf\xff\xd7\xff\x33\xa9\xb9\xf5" "\xff\xb9\xfb\x5f\x1e\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x6f\x8c" "\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x57\xc4\x2d\xf6\x3f\x00\x00\x00" "\x34\x23\x77\xff\x2b\xe3\x96\x4e\xf6\xbf\xfe\xdf\xf3\xff\xf5\xff\xfa\x7f" "\xfd\xff\xfa\xd7\xd7\xff\x2f\x93\xfe\x7f\x98\xfe\x7f\x84\xfe\x5f\xff\xbf" "\xdd\xfe\xff\xcc\xc5\x7f\xa9\xff\xa7\x0d\x47\xe8\xff\xcf\x9f\x3f\x7f\xed" "\x89\xf7\xff\xb9\xfb\x5f\x15\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb" "\x5f\x1d\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xaf\x89\x5b\xec\x7f\x00" "\x00\x00\x68\x46\xee\xfe\xd7\xc6\x2d\x9d\xec\x7f\xfd\x7f\xa7\xfd\x7f\x7e" "\xd4\x97\xd5\xff\x5f\xb7\x5a\xe9\xff\xf5\xff\xfa\x7f\xfd\xff\x30\xfd\xff" "\x30\xfd\xff\x08\xfd\xbf\xfe\xdf\xf3\xff\xf5\xff\x4c\x6a\x6e\xcf\xff\xcf" "\xdd\xff\xba\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xfa\xb8\xc5" "\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x43\xdc\x62\xff\x03\x00\x00\x40\x33" "\x72\xf7\xbf\x31\x6e\xe9\x64\xff\xeb\xff\x3b\xed\xff\x3d\xff\x5f\xff\xaf" "\xff\xdf\x74\xff\x7f\xdb\x4a\xff\xbf\x11\x8b\xe8\xff\xcf\x1d\xfc\xfa\x73" "\xef\xff\xaf\xd7\xff\xeb\xff\x07\x74\xd7\xff\xdf\xed\x2e\x7b\x7e\xa9\xff" "\xd7\xff\xb3\xdf\xdc\xfa\xff\xdc\xfd\x6f\x8a\x5b\x3a\xd9\xff\x00\x00\x00" "\xd0\x83\xdc\xfd\x6f\x8e\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xb7\xc4" "\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x5b\xe3\xa6\x2b\x3b\xd9\xff\xfa" "\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x5f\xff\xfa\x1b\x7e\xfe\xff\xe9\xd5\x6a" "\xa5\xff\x9f\xc0\x22\xfa\xff\x01\x73\xef\xff\xa7\x79\xfe\xff\xa5\x7f\x97" "\x5f\xa4\xff\xd7\xff\x2f\xf9\xfd\xeb\xff\xf5\xff\xec\x37\xb7\xfe\x3f\x77" "\xff\xdb\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\xdb\xe3\x16\xfb" "\x1f\x00\x00\x00\x9a\x91\xbb\xff\x1d\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8" "\xdd\xff\xce\xb8\xa5\x93\xfd\xaf\xff\x3f\x6e\xff\x7f\xe1\x33\xa3\xff\xdf" "\xfb\xfe\xf5\xff\x7b\xe9\xff\xe3\xf3\xb0\xad\xfe\xff\xfa\x45\xf4\xff\x9e" "\xff\x3f\x11\xfd\xff\xb0\x79\xf4\xff\x07\xd3\xff\xeb\xff\x97\xfc\xfe\xf5" "\xff\xfa\x7f\x0e\x6f\x5b\xfd\x7f\xee\xfe\x77\xc5\x2d\x9d\xec\x7f\x00\x00" "\x00\xe8\x41\xee\xfe\x77\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x7b" "\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xbd\x71\x4b\x27\xfb\x5f\xff" "\xef\xf9\xff\x47\xe9\xff\xf3\x7d\xea\xff\xdb\xea\xff\xcf\xcc\xae\xff\x3f" "\xbb\xe7\xdf\xaf\x93\xe7\xff\xeb\xff\x27\xa2\xff\x1f\xa6\xff\x1f\xa1\xff" "\xd7\xff\xeb\xff\x6f\xd0\xff\x33\xa5\xb9\x3d\xff\x3f\x77\xff\xfb\xe2\x96" "\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\xfb\xe3\xd6\x7f\x75\x6b\xff\x03" "\x00\x00\x40\x33\x72\xf7\x7f\x20\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb" "\x3f\x18\xb7\x74\xb2\xff\xf5\xff\xfa\x7f\xcf\xff\xd7\xff\x1f\xe2\xf9\xff" "\xeb\x3e\xe2\x27\xfa\xfc\xff\xdd\xff\x0f\x00\xfa\x7f\xfd\xff\x51\xe8\xff" "\x87\xe9\xff\x47\xe8\xff\xf5\xff\xfa\x7f\xcf\xff\x67\x52\x73\xeb\xff\x73" "\xf7\x7f\x28\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x7f\x38\x6e\xb1" "\xff\x01\x00\x00\xa0\x19\xb9\xfb\x3f\x12\xb7\xd8\xff\x00\x00\x00\xd0\x8c" "\xdc\xfd\x37\xc5\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x3f\x44\xff" "\x1f\x36\xf5\xfc\xff\xbd\x36\xd1\xff\x5f\xa1\xff\x6f\x86\xfe\x7f\xd8\x66" "\xfa\xff\x73\xfa\x7f\xfd\x7f\xf5\xf3\xff\x13\x7f\x17\xe8\xff\xf5\xff\x63" "\x5f\x4f\x9b\xe6\xd6\xff\xe7\xee\xff\x68\xdc\xd2\xc9\xfe\x07\x00\x00\x80" "\x1e\xe4\xee\xff\x58\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x3c\x6e" "\xb1\xff\x01\x00\x00\x60\x91\xae\x5c\xf3\x7b\xb9\xfb\x3f\x11\xb7\x74\xb2" "\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\xfe\xf5\xf5\xff\xcb\xb4\x95" "\xfe\x3f\x3f\x14\xfa\x7f\xcf\xff\x0f\xfd\xf4\xff\x77\xd8\xf3\xab\xa5\x3d" "\xff\xff\xd2\xff\xfc\xd2\xff\xeb\xff\x99\xde\xdc\xfa\xff\xdc\xfd\x9f\x8c" "\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x9f\x8a\x5b\xec\x7f\x00\x00" "\x00\x68\x46\xee\xfe\x4f\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x67" "\xe2\x96\x4e\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xd7\xbf\xfe\x44" "\xfd\x7f\xfe\x61\xfa\xff\x0d\xf1\xfc\xff\x61\xfa\xff\x11\xfa\xff\xad\x3e" "\x3f\x7f\xe9\xef\x5f\xff\xaf\xff\x67\xbf\xb9\xf5\xff\xb9\xfb\x3f\x1b\xb7" "\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x3f\x17\xb7\xd8\xff\x00\x00\x00" "\xd0\x8c\xdc\xfd\x9f\x8f\x5b\xec\x7f\x00\x00\x00\x68\xc6\xce\xee\xcf\xb8" "\xac\xc3\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xf5\xaf\xef\xf9\xff" "\xcb\xa4\xff\x1f\xa6\xff\x1f\xa1\xff\xd7\xff\xeb\xff\xf5\xff\x4c\x6a\x6e" "\xfd\xff\x17\x76\xbe\xea\xec\xea\x8b\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a" "\x90\xbb\xff\x4b\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xe5\xb8\xc5" "\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x4a\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff" "\x97\xd1\xff\x9f\x3f\x7f\xfe\x5a\xfd\xbf\xfe\x7f\xef\xf7\x73\xb1\xff\xbf" "\x45\xff\x4f\xd1\xff\x0f\xd3\xff\x8f\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x26" "\x35\xb7\xfe\x3f\x77\xff\x57\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77" "\xff\xcd\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xb5\xb8\xc5\xfe\x07" "\x00\x00\x80\x66\xe4\xee\xff\x7a\xdc\xd2\xc9\xfe\xd7\xff\xcf\xa0\xff\x3f" "\xab\xff\xf7\xfc\x7f\xfd\xff\xca\xf3\xff\xf5\xff\x13\xd1\xff\x0f\xd3\xff" "\x8f\x68\xb1\xff\x3f\x7b\xf8\x6f\x7f\xdb\xfd\xfc\x71\x6d\xfb\xfd\xeb\xff" "\xf5\xff\xec\x37\xb7\xfe\x3f\x77\xff\x37\xe2\x96\x4e\xf6\x3f\x00\x00\x00" "\xf4\x20\x77\xff\x37\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x5b\x71" "\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xed\xb8\xa5\x93\xfd\xaf\xff\xdf" "\x5c\xff\x7f\xfb\x9f\xbb\x5e\x9e\xff\x7f\x6e\xb5\xfe\xfd\xeb\xff\xf5\xff" "\xfa\x7f\xfd\xff\x49\xd3\xff\x0f\xd3\xff\x8f\x68\xb1\xff\x3f\x82\x6d\xf7" "\xf3\x4b\x7f\xff\xfa\x7f\xfd\x3f\xfb\xcd\xad\xff\xcf\xdd\xff\x9d\xb8\x65" "\xef\xf0\x3b\x75\xb4\xef\x12\x00\x00\x00\x98\x93\xdc\xfd\xdf\x8d\x5b\x3a" "\xf9\xf9\x3f\x00\x00\x00\xf4\x20\x77\xff\xf7\xe2\x16\xfb\x1f\x00\x00\x00" "\x9a\x91\xbb\xff\xfb\x71\x4b\x27\xfb\x5f\xff\x3f\x83\xe7\xff\x37\xd8\xff" "\x7b\xfe\xff\xfa\xcf\x87\xfe\x7f\xd6\xfd\xff\x15\xfa\xff\x36\xe8\xff\x87" "\xe9\xff\x47\xe8\xff\xf5\xff\xfa\xff\x89\xfa\xff\xfc\x34\xeb\xff\x7b\x37" "\xb7\xfe\x3f\x77\xff\x0f\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff" "\x0f\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x47\x71\x8b\xfd\x0f\x00" "\x00\x00\xcd\xc8\xdd\x7f\x4b\xdc\xb2\x6b\xff\xaf\x6b\xbb\x5b\xa1\xff\xd7" "\xff\xeb\xff\xf5\xff\xfa\xff\xf5\xaf\xaf\xff\x5f\x26\xfd\xff\xb0\xc3\xf6" "\xff\x67\x56\xc7\xeb\xff\x93\xfe\x5f\xff\xaf\xff\xef\xb5\xff\xf7\xfc\x7f" "\x2e\x38\xc1\xfe\xff\xea\xd5\x65\xf4\xff\xb9\xfb\x7f\x1c\xb7\xf8\xf9\x3f" "\x00\x00\x00\x2c\xce\xa9\x03\x7e\x3f\x77\xff\x4f\xe2\x16\xfb\x1f\x00\x00" "\x00\x9a\x91\xbb\xff\xa7\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xb3" "\xb8\xe5\xd6\x2b\xb6\xf5\x96\x36\x4a\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff" "\xeb\x5f\x5f\xff\xbf\x4c\xfa\xff\x61\x9e\xff\x3f\x42\xff\x3f\x45\x3f\x7f" "\x95\xfe\xbf\x8d\xfe\x7f\xb5\xd2\xff\x73\x7c\x27\xd8\xff\xef\x38\x6a\xff" "\x9f\xbb\xff\xe7\x71\x8b\x9f\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x22\x6e" "\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x7f\x19\xb7\xd8\xff\x00\x00\x00\xd0" "\x8c\xdc\xfd\xbf\x8a\x5b\x3a\xd9\xff\xfa\x7f\xfd\xff\x31\xfb\xff\x9d\x34" "\x53\xff\x7f\x81\xfe\xff\x02\xfd\xff\x7a\xfa\xff\xcd\xd0\xff\x0f\xd3\xff" "\x8f\xd0\xff\x7b\xfe\xbf\xfe\xdf\xf3\xff\x99\xd4\xdc\xfa\xff\xdc\xfd\xbf" "\x8e\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xbf\x89\x5b\xec\x7f\x00" "\x00\x00\x68\x46\xee\xfe\xdf\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff" "\xef\xe2\x96\x4e\xf6\xff\xd6\xfa\xff\xf8\x53\xad\xff\x5f\x7c\xff\xef\xf9" "\xff\xfa\x7f\xfd\xbf\xfe\x7f\x56\xf4\xff\xc3\xf4\xff\x23\xf4\xff\xfa\x7f" "\xfd\xbf\xfe\x9f\x49\xcd\xad\xff\xcf\xdd\xff\xfb\xb8\xa5\x93\xfd\x0f\x00" "\x00\x00\x3d\xc8\xdd\xff\x87\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff" "\x63\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x29\x6e\xe9\x64\xff\x7b" "\xfe\xbf\xfe\xbf\x85\xfe\x3f\x5f\x5f\xff\xaf\xff\x5f\xe9\xff\xbb\xa7\xff" "\x1f\xa6\xff\x5f\xaf\xfe\x42\xe9\xff\xf5\xff\xfa\x7f\xfd\x3f\x93\x9a\x5b" "\xff\x9f\xbb\xff\xcf\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x2f" "\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\x7f\x6b\xdc\x62\xff\x03\x00\x00" "\x40\x33\x72\xf7\xff\x35\x6e\xe9\x64\xff\xeb\xff\xf5\xff\x2d\xf4\xff\x9e" "\xff\xaf\xff\xd7\xff\x93\xf4\xff\xc3\xb6\xd9\xff\xdf\xfd\xff\xc6\x5f\xd6" "\xf3\xff\xb7\xde\xff\xe7\x5b\xd0\xff\xeb\xff\xf5\xff\x4c\x62\x6e\xfd\x7f" "\xee\xfe\xbf\xc5\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xbf\xc7\x2d" "\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x3f\xe2\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\x9f\x71\x4b\x27\xfb\x7f\xa4\xff\x3f\x53\x7f\xa0\xfe\x7f\x90" "\xfe\x7f\xef\xfb\xd7\xff\xaf\xff\x7c\xe8\xff\xf5\xff\xfa\xff\x93\x77\x59" "\xfd\xfd\xae\x0f\x9d\xfe\x3f\x74\xf6\xfc\xff\xa2\xff\xf7\xfc\x7f\xfd\xbf" "\xfe\x9f\x49\xcd\xad\xff\xcf\xdd\xff\xaf\xb8\xa5\x93\xfd\x0f\x00\x00\x00" "\x3d\xc8\xdd\x7f\x5b\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x3b\x6e" "\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xff\x13\xb7\x74\xb2\xff\x3d\xff\x7f" "\x49\xfd\xff\x55\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x1f\xe1\xf9\xff\xc3" "\xf4\xff\x23\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x49\xcd\xad\xff\xcf\xdd\xff" "\xdf\x00\x00\x00\xff\xff\x8a\x8a\x4f\x2b", 25012); syz_mount_image( /*fs=*/0x200000000300, /*dir=*/0x200000000040, /*flags=MS_LAZYTIME|MS_POSIXACL|MS_NOSUID|MS_NODIRATIME|MS_MANDLOCK|0x80*/ 0x20108c2, /*opts=*/0x20000001fbc0, /*chdir=*/-1, /*size=*/0x61b4, /*img=*/0x20000001fd40); // open arguments: [ // file: ptr[in, buffer] { // buffer: {2e 2f 62 75 73 00} (length 0x6) // } // flags: open_flags = 0x143142 (8 bytes) // mode: open_mode = 0x0 (8 bytes) // ] // returns fd memcpy((void*)0x200000000100, "./bus\000", 6); syscall(__NR_open, /*file=*/0x200000000100ul, /*flags=O_SYNC|O_NOCTTY|O_NOATIME|O_CREAT|FASYNC|0x2*/ 0x143142ul, /*mode=*/0ul); // mount arguments: [ // src: ptr[in, blockdev_filename] { // union blockdev_filename { // loop: loop_filename { // prefix: buffer: {2f 64 65 76 2f 6c 6f 6f 70} (length 0x9) // id: proc = 0x0 (1 bytes) // z: const = 0x0 (1 bytes) // } // } // } // dst: ptr[in, buffer] { // buffer: {2e 2f 62 75 73 00} (length 0x6) // } // type: nil // flags: mount_flags = 0x1000 (8 bytes) // data: nil // ] memcpy((void*)0x200000000380, "/dev/loop", 9); *(uint8_t*)0x200000000389 = 0x30; *(uint8_t*)0x20000000038a = 0; memcpy((void*)0x2000000001c0, "./bus\000", 6); syscall(__NR_mount, /*src=*/0x200000000380ul, /*dst=*/0x2000000001c0ul, /*type=*/0ul, /*flags=MS_BIND*/ 0x1000ul, /*data=*/0ul); // open arguments: [ // file: ptr[in, buffer] { // buffer: {2e 2f 62 75 73 00} (length 0x6) // } // flags: open_flags = 0x0 (8 bytes) // mode: open_mode = 0x0 (8 bytes) // ] // returns fd memcpy((void*)0x200000000000, "./bus\000", 6); res = syscall(__NR_open, /*file=*/0x200000000000ul, /*flags=*/0ul, /*mode=*/0ul); if (res != -1) r[0] = res; // ioctl$LOOP_SET_STATUS64 arguments: [ // fd: fd_loop (resource) // cmd: const = 0x4c04 (4 bytes) // arg: ptr[in, loop_info64] { // loop_info64 { // lo_device: const = 0x0 (8 bytes) // lo_inode: const = 0x0 (8 bytes) // lo_rdevice: const = 0x0 (8 bytes) // lo_offset: int64 = 0x88 (8 bytes) // lo_sizelimit: int64 = 0x0 (8 bytes) // lo_number: const = 0x0 (4 bytes) // lo_enc_type: lo_encrypt_type = 0x0 (4 bytes) // lo_enc_key_size: int32 = 0x0 (4 bytes) // lo_flags: lo_flags = 0x0 (4 bytes) // lo_file_name: buffer: {ef 35 9f 41 3b b9 38 52 f7 d6 d1 ce 5d 29 c3 // ee 5e 5c a9 00 0f 7c 41 49 9d c2 aa c6 3a 4b 78 c6 60 e6 77 df 70 19 // 08 b9 aa a3 f6 a0 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00} (length 0x40) lo_crypt_name: buffer: {03 6c 47 c6 78 08 20 // d1 cb e7 89 69 e3 fd cf 33 52 63 bd bc ef 54 9b a1 97 fc e4 7d df c2 // 55 3a bd 95 01 ce 72 1b 6a e9 b4 96 00 00 2a 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00} (length 0x40) lo_enc_key: buffer: // {b7 32 67 36 18 1c 20 82 20 00 00 00 b9 00 00 00 00 00 00 00 00 00 // f0 ff ff ff ff f2 ff 00 00 00} (length 0x20) lo_init: array[int64] { // int64 = 0x0 (8 bytes) // int64 = 0x0 (8 bytes) // } // } // } // ] *(uint64_t*)0x200000000240 = 0; *(uint64_t*)0x200000000248 = 0; *(uint64_t*)0x200000000250 = 0; *(uint64_t*)0x200000000258 = 0x88; *(uint64_t*)0x200000000260 = 0; *(uint32_t*)0x200000000268 = 0; *(uint32_t*)0x20000000026c = 0; *(uint32_t*)0x200000000270 = 0; *(uint32_t*)0x200000000274 = 0; memcpy((void*)0x200000000278, "\xef\x35\x9f\x41\x3b\xb9\x38\x52\xf7\xd6\xd1\xce\x5d\x29\xc3\xee\x5e" "\x5c\xa9\x00\x0f\x7c\x41\x49\x9d\xc2\xaa\xc6\x3a\x4b\x78\xc6\x60\xe6" "\x77\xdf\x70\x19\x08\xb9\xaa\xa3\xf6\xa0\x04\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 64); memcpy((void*)0x2000000002b8, "\x03\x6c\x47\xc6\x78\x08\x20\xd1\xcb\xe7\x89\x69\xe3\xfd\xcf\x33\x52" "\x63\xbd\xbc\xef\x54\x9b\xa1\x97\xfc\xe4\x7d\xdf\xc2\x55\x3a\xbd\x95" "\x01\xce\x72\x1b\x6a\xe9\xb4\x96\x00\x00\x2a\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 64); memcpy((void*)0x2000000002f8, "\xb7\x32\x67\x36\x18\x1c\x20\x82\x20\x00\x00\x00\xb9\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xf0\xff\xff\xff\xff\xf2\xff\x00\x00\x00", 32); *(uint64_t*)0x200000000318 = 0; *(uint64_t*)0x200000000320 = 0; syscall(__NR_ioctl, /*fd=*/r[0], /*cmd=*/0x4c04, /*arg=*/0x200000000240ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; use_temporary_dir(); do_sandbox_none(); return 0; }