// https://syzkaller.appspot.com/bug?id=78f98000deba69b5db400d53ad5890d7f51f16d6 // 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 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static 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 mount_cgroups(const char* dir, const char** controllers, int count) { if (mkdir(dir, 0777)) { return; } char enabled[128] = {0}; int i = 0; for (; i < count; i++) { if (mount("none", dir, "cgroup", 0, controllers[i])) { continue; } umount(dir); strcat(enabled, ","); strcat(enabled, controllers[i]); } if (enabled[0] == 0) { if (rmdir(dir) && errno != EBUSY) exit(1); return; } if (mount("none", dir, "cgroup", 0, enabled + 1)) { if (rmdir(dir) && errno != EBUSY) exit(1); } if (chmod(dir, 0777)) { } } static void mount_cgroups2(const char** controllers, int count) { if (mkdir("/syzcgroup/unified", 0777)) { return; } if (mount("none", "/syzcgroup/unified", "cgroup2", 0, NULL)) { if (rmdir("/syzcgroup/unified") && errno != EBUSY) exit(1); return; } if (chmod("/syzcgroup/unified", 0777)) { } int control = open("/syzcgroup/unified/cgroup.subtree_control", O_WRONLY); if (control == -1) return; int i; for (i = 0; i < count; i++) if (write(control, controllers[i], strlen(controllers[i])) < 0) { } close(control); } static void setup_cgroups() { const char* unified_controllers[] = {"+cpu", "+io", "+pids"}; const char* net_controllers[] = {"net", "net_prio", "devices", "blkio", "freezer"}; const char* cpu_controllers[] = {"cpuset", "cpuacct", "hugetlb", "rlimit", "memory"}; if (mkdir("/syzcgroup", 0777)) { return; } mount_cgroups2(unified_controllers, sizeof(unified_controllers) / sizeof(unified_controllers[0])); mount_cgroups("/syzcgroup/net", net_controllers, sizeof(net_controllers) / sizeof(net_controllers[0])); mount_cgroups("/syzcgroup/cpu", cpu_controllers, sizeof(cpu_controllers) / sizeof(cpu_controllers[0])); write_file("/syzcgroup/cpu/cgroup.clone_children", "1"); write_file("/syzcgroup/cpu/cpuset.memory_pressure_enabled", "1"); } static void setup_cgroups_loop() { int pid = getpid(); char file[128]; char cgroupdir[64]; snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/unified/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/pids.max", cgroupdir); write_file(file, "32"); snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); write_file(file, "%d", pid); snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/cpu/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); write_file(file, "%d", pid); snprintf(file, sizeof(file), "%s/memory.soft_limit_in_bytes", cgroupdir); write_file(file, "%d", 299 << 20); snprintf(file, sizeof(file), "%s/memory.limit_in_bytes", cgroupdir); write_file(file, "%d", 300 << 20); snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/net/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); write_file(file, "%d", pid); } static void setup_cgroups_test() { char cgroupdir[64]; snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/unified/syz%llu", procid); if (symlink(cgroupdir, "./cgroup")) { } snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/cpu/syz%llu", procid); if (symlink(cgroupdir, "./cgroup.cpu")) { } snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/net/syz%llu", procid); if (symlink(cgroupdir, "./cgroup.net")) { } } static void initialize_cgroups() { if (mkdir("./syz-tmp/newroot/syzcgroup", 0700)) exit(1); if (mkdir("./syz-tmp/newroot/syzcgroup/unified", 0700)) exit(1); if (mkdir("./syz-tmp/newroot/syzcgroup/cpu", 0700)) exit(1); if (mkdir("./syz-tmp/newroot/syzcgroup/net", 0700)) exit(1); unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE; if (mount("/syzcgroup/unified", "./syz-tmp/newroot/syzcgroup/unified", NULL, bind_mount_flags, NULL)) { } if (mount("/syzcgroup/cpu", "./syz-tmp/newroot/syzcgroup/cpu", NULL, bind_mount_flags, NULL)) { } if (mount("/syzcgroup/net", "./syz-tmp/newroot/syzcgroup/net", NULL, bind_mount_flags, NULL)) { } } 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); initialize_cgroups(); 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 setup_loop() { setup_cgroups_loop(); } 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(); setup_cgroups_test(); 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) { setup_loop(); 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); } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x20005d80, "bcachefs\000", 9); memcpy((void*)0x20005dc0, "./file0\000", 8); memcpy((void*)0x20000280, "\x65\x72\x72\x6f\x72\x73\x3d\x63\x6f\x6e\x74\x69\x6e\x75\x65\x2c\x6e" "\x6f\x63\x6f\x77\x5f\x65\x6e\x61\x62\x6c\x65\x64\x2c\x64\x69\x72\x65" "\x63\x74\x5f\x69\x6f\x2c\x6a\x6f\x75\x72\x6e\x61\x6c\x5f\x74\x72\x61" "\xb6\x37\xc3\x93\xbe\xcc\x2f\xca\x5f\x6e\x61\x6d\x65\x73\x2c\x72\x65" "\x61\x64\x5f\x6f\x6e\x6c\x79\x2c\x00", 77); memcpy( (void*)0x2000bb80, "\x78\x9c\xec\xdd\x7d\x90\x1c\xe5\x99\x18\xf0\xee\x99\x59\xed\xae\x56\x82" "\x95\x2c\xcc\x0a\x09\xb1\x18\xd9\x8e\xb8\x60\x0b\x14\x88\xe5\x3b\x47\x1b" "\xe7\xec\xd8\x8e\x6c\x64\x61\x01\x16\xa7\x93\x64\x58\xd9\x3a\x0b\x49\xd6" "\x07\x02\xe9\x12\xbe\x72\x98\x60\x27\xa5\x2a\xa8\x83\x40\x9c\x70\xe0\x72" "\xae\x52\x57\x09\x2e\x5d\x42\x7c\xa7\x54\xc9\x18\xe3\x8b\xaf\x8a\x42\x76" "\xfc\x87\x8f\x7c\x1d\x15\x3b\x7f\xc4\x47\x54\x67\x89\x73\x24\xc7\x7b\xb5" "\xbb\xdd\xbb\xd3\xbd\xfd\x76\xcf\xce\xcc\x0a\x71\xf7\xfb\x55\x69\x67\xdf" "\xde\x67\x9e\xf7\x79\x7a\xdf\xe9\xe9\x1e\xed\xce\x46\x00\x00\x00\xfc\xb5" "\xf0\xd2\x6f\xed\x7f\xe3\x13\x97\x7d\xe8\xbb\x0f\x8c\x9e\xb9\xf7\x23\x7f" "\x70\xe7\xfd\xd1\x40\x7d\x62\x7b\x5f\x1a\x30\x98\xdc\xde\xfd\x66\x55\xc8" "\x5c\x5a\xf5\xbd\x73\x99\xef\x6c\x6f\x63\x68\xe2\x36\xbf\x2e\x2e\xfd\xc3" "\x25\x6f\x0c\x3e\xb8\xfe\xe3\x8f\xac\xfd\xf0\xf7\xb6\xfd\xd1\xa2\x91\x15" "\x2b\x47\x6f\xf8\xfa\xb1\x1b\x1f\x7a\xf0\x85\x0f\xfc\xfc\x85\xc7\x9f\x5c" "\x5f\x35\x4f\xba\x9e\xae\x9e\x1e\xc7\x7f\x16\x47\xd1\x8a\x1f\x1d\x7b\xfc" "\xa1\x6f\xff\xf1\xa5\xe3\xdb\xe2\xf1\xf9\xe3\xc1\xfb\xa2\x45\x8b\xe2\xc5" "\xdf\x5c\x14\xe7\x52\xac\x3e\x1b\x45\xd1\x1d\x53\x75\x66\xbf\x78\xec\xcc" "\x9a\x1d\xe3\xb7\xf7\x7f\xa9\x37\xb3\xfd\xe2\x5c\x12\xeb\xfd\xaf\xb7\xbe" "\x64\x9d\x1d\xd9\xfa\x99\x67\x4e\x7c\x7e\xe4\xdb\xc7\x86\xf7\xae\xf9\xc9" "\xe9\xeb\xf7\xdc\x37\x1d\x12\xf7\x35\xad\xa7\x28\xba\x68\x5b\xf3\xfd\x7b" "\xa2\x28\xea\x4f\xfe\x8d\x4b\x57\xdb\x50\x7a\xe7\xe4\x76\x43\x14\x45\xf3" "\x9b\xee\xf7\xbe\x8a\xba\xae\x6a\xb1\xfe\x6b\x02\xe3\xe5\xc9\xed\xbc\xe4" "\x76\xa0\x22\x4f\xfa\xf5\x2b\x73\xe3\x46\x8b\x75\x34\x72\xb7\xbd\x2d\xde" "\xaf\x5d\xb5\x39\xce\x9f\x97\xdf\x7f\xf9\x83\xd1\x5c\x49\xfb\xbc\x28\xb9" "\x7d\x3e\xb9\xbd\x7a\x96\x79\xea\xe9\xbf\x38\xaa\xc5\x51\x63\xaa\xfc\x5d" "\xf1\xf4\x1a\x89\x9a\xbe\x6f\x71\x14\x4f\xac\xed\xbe\xa9\x71\x6d\x62\x1c" "\x4d\x8d\xa3\xfc\x38\xce\x8d\x6b\xb9\x71\xbd\x27\xd7\xd7\xc4\xbc\xc9\x8e" "\xad\xc7\x71\x76\x7b\x1a\x97\xdb\x9e\x1e\x8e\x1b\xc9\xf6\x2b\x9b\x8f\xd5" "\x05\x36\x06\xb6\x2f\x4d\x6e\xfb\x92\x07\xea\xcf\xd2\x71\x94\xff\x64\xd2" "\xc0\x8c\x4f\xa6\xfb\x88\x9a\xea\x3a\x75\xbe\x16\x46\x40\x2d\xf0\xd8\x4b" "\xb7\x4f\x95\x97\x7c\x33\x06\x92\x6d\x03\xf1\xe2\x19\xf7\x19\x2b\x90\x7e" "\xed\xd4\x77\xb6\x6f\x7e\xfd\x87\x87\x9f\x1f\x0c\xd4\x11\x3f\x17\x27\xf9" "\xe3\xb6\xf2\x8f\x8c\x3e\x75\xe2\x6b\xb7\x1e\x5f\x3a\x14\xca\xbf\xad\x96" "\xe4\xaf\xb5\x95\xff\xa5\xfa\xcb\x67\xbf\x7a\x7a\x68\x41\x30\xff\xd1\x34" "\x7f\xbd\xad\xfc\x9b\x7e\xf1\xe3\x87\x1f\xb8\xe9\xd0\x92\xe0\xfe\x39\x95" "\xee\x9f\x46\x5b\xf9\x57\x7e\x79\xc1\x91\x33\x87\x36\xf6\x0e\x87\xf2\x3f" "\x9d\xe6\xef\x6b\x2b\xff\x0d\x5b\x56\xac\xbd\xfc\xf4\xc1\xbb\x82\xf5\xaf" "\x4e\xf7\x4f\x7f\x5b\xf9\x7f\xf0\xe8\xaa\x73\x5b\x8e\x7e\xe3\x78\x30\x7f" "\x94\xe6\x9f\xdf\x56\xfe\x57\x9f\x7a\x76\x79\x7d\xe9\x63\x27\x83\xf9\x4f" "\xa4\xfb\x67\xa0\xad\xfc\x37\xaf\x79\x62\xdd\xc7\x96\x3d\xf8\x64\x70\xff" "\xbf\x92\xe6\x5f\xd8\x56\xfe\xcd\x27\x1f\xda\xb6\xf7\x99\x17\x57\x05\xd7" "\xe7\x86\x74\xff\x0c\xb6\x95\xff\xec\xba\xef\xbf\x76\x6e\x70\xfd\xb3\xa1" "\x63\x67\xfc\xf4\xf9\x7e\x86\x05\xf8\xab\xe5\x6d\xc9\x39\xd6\xc3\xc9\xb8" "\xdd\xeb\xcc\x4e\x35\x5d\x2f\x3c\x31\xdc\x98\x3c\xe7\x5b\x90\xfc\x5b\xd8" "\xcd\x89\x72\xe2\xa6\x6b\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x68\xd7\x63\xeb\xfe\xfd\x17\x9a\xc7\xef" "\xfc\x3f\x77\x6d\x3a\xf9\x1f\x56\xec\x6c\x24\xe3\xde\x46\x14\xc5\x51\x14" "\xbd\x5e\x9f\x1c\xa7\xdb\xe7\x45\x51\xdc\x1f\x45\xd1\xfe\x03\xdb\xf7\x1d" "\xd8\xb9\xfb\xb3\xc3\xbf\xb1\xe7\xe0\xbe\xdd\xdb\x77\x0d\x6f\x3f\x30\x3c" "\xba\xfb\xc0\xbe\x7b\x86\xff\xd6\xdf\x1c\xde\x37\xba\x77\xd7\xf6\x7b\xc6" "\xbf\xba\xfa\x9a\x35\x93\xf7\x5b\x3c\x91\x2d\x8a\x16\xc7\x97\xcf\xa8\x65" "\x6c\x6c\x6c\x2c\x8a\xa2\xe1\xe6\x6d\xe9\x7c\xbf\xf3\xd1\xe7\xfe\xdf\xa6" "\x27\xff\xfc\xd3\x51\xb4\xfa\x92\xef\xaf\x68\x04\xfb\x79\xef\x7f\x7d\xed" "\x43\x4b\x0a\x3e\xe6\xc4\x23\x63\x1b\xfe\xc5\xf5\x8f\x1e\x9e\xf7\xbf\x2e" "\x9e\xdc\x30\x98\xd4\x35\x18\xaa\x6b\x30\xbb\x2d\xad\x60\x60\xe4\x95\x3f" "\xf9\xe0\xf3\x3f\x1c\xaf\xeb\xed\x65\x75\x3d\xfe\xf2\x2d\xff\x37\x53\xd0" "\xc4\x86\xe9\x3c\x89\x5a\x6f\x54\x9b\xf8\xa4\x37\x9e\x5f\x58\xc7\x54\xd5" "\xd3\xf5\x4c\xec\xaf\xc6\x8e\x9d\xbb\x46\x57\x57\xef\xdf\x38\xb0\x7f\xdf" "\xfd\xe2\xef\x9f\xfe\x77\x77\x6f\xfa\xa7\x93\xfb\xb7\x2f\xd8\x47\x8b\xfb" "\x77\x7c\xaf\x36\xc6\x1e\xf9\xe9\x03\xef\xbe\xef\x83\xa3\xef\xbf\x80\xbf" "\xef\x55\xfb\xbb\xa9\x85\x89\xfa\xd2\xfd\xd7\x97\xec\xef\x8b\x92\xbe\x2e" "\x0a\xf4\x55\x0b\xf4\x75\xd7\xf0\xab\xa7\xfe\xd9\xbf\xfd\x4f\x5f\xbd\x2f" "\x5a\xdd\xf8\xe9\x15\x33\xe7\xae\xea\xab\x27\x59\x00\x3d\xf1\xd2\x96\xe6" "\x4d\x67\x98\x1f\x2f\xca\xc4\xf6\x25\xf1\xe9\x77\x3c\xbd\xdf\x7b\x0f\xdc" "\xb9\xf7\xbd\xfb\xef\x39\x7c\xcd\xce\x3b\xb7\x7f\x76\xf4\xb3\xa3\xbb\xd7" "\xac\xb9\x7e\xed\xb5\x6b\xae\xbd\x6e\xed\x9a\xf7\x4e\xb4\x3e\xf9\xb1\x6b" "\xfd\xa7\xf3\xbf\xbb\xc5\xfe\x17\x24\x99\x16\xc4\xcb\x0a\xf7\x5b\x7e\x6b" "\x3a\xef\x15\x13\x1f\xeb\x51\x52\x76\x7a\xd3\xf4\x49\x56\x4f\x34\x30\x79" "\x9b\xdb\xcf\x69\x78\xbe\xeb\x81\xe4\x6b\x03\xf1\xe2\x19\xb9\xc6\x0a\xa4" "\x5f\x3b\xf5\x9d\xed\x9b\x5f\xff\xe1\xe1\xe7\x43\x8f\xbc\xf8\xb9\xc9\x19" "\xfb\xa3\x85\x93\xb7\xf1\xf2\x40\xe4\xae\xdc\x1d\xeb\x53\x05\x17\xcd\x7f" "\x7e\x1e\x97\x7b\x7e\xbb\x6f\x57\xfa\xb1\xb5\xc7\x65\x55\x5d\x55\xeb\x6a" "\xbc\xae\xea\x75\xd5\x5c\x51\xc9\x71\xec\xe5\xab\x1e\xfe\xe9\x33\x5f\xfc" "\xe7\xb7\xb5\x70\xbc\x68\x0a\x9d\xa8\x2f\xad\x73\xfe\xf8\xc3\xe5\xda\xa8" "\xe9\x71\x3b\x73\x5f\x15\xf5\xd5\xc2\xf7\x67\xa4\x68\x3f\xdc\x7e\xcd\xbe" "\xdf\xbf\x67\xe7\xe6\xa3\x55\xc7\xf3\xe6\xef\x4c\xf3\xc7\x9c\x78\x64\xec" "\x7f\x2e\x8f\x3f\x7e\x70\xff\x9f\xec\x9b\xdc\x70\x5e\x9e\x2f\x9b\x0b\x6a" "\xf3\xf9\x72\xaa\xea\xe9\x7a\x26\xf6\x57\x5f\xf2\xfd\xb8\x50\xf7\x6f\x6f" "\x54\x4f\xfa\x1a\x28\xac\x6b\x63\xfc\xcc\x07\xde\x7d\xe7\xf1\x5f\x9a\xaa" "\x6f\xde\xbc\xe8\xee\xed\x07\x0e\xec\xbb\x76\xf2\xe3\x5b\xb5\xaf\x3f\x9d" "\x77\xf1\x92\x9d\xf7\x2f\xbb\x7c\x46\x5f\xd7\x4d\x7e\xac\x3a\xee\x5f\x91" "\x1b\x57\x1e\xf7\x6b\xc5\xfd\x55\x1d\xf7\xf3\xf3\x4c\xc7\x17\xe7\x1b\xce" "\x8d\x07\xa2\x7a\x5b\xcf\x13\x9b\x7e\xf1\xe3\x87\x1f\xb8\xe9\xd0\x92\xe0" "\xf3\xc4\xa9\x56\x9f\x27\x7e\x33\x33\xaa\x77\xf8\x3c\x51\x0b\x3c\xde\x1f" "\xf9\xf3\xaf\x0c\xbf\x71\xdb\xa7\xde\xa8\x5a\x4f\x37\xee\x5f\x76\xef\x92" "\x82\x8f\xf9\xf6\x46\xc6\xbe\xf1\x7b\xbf\x7c\xed\xfb\x6f\xb9\xe9\xc3\x93" "\x1b\xce\xcb\x71\xa8\xb9\xa0\x36\x8f\x43\x53\x55\x27\xf5\xa4\xfb\x6b\xe2" "\x38\x74\xdd\x85\xd3\xc7\x9b\xf7\x7d\xce\x3c\x10\xe3\x91\xb1\x2b\xbe\xfe" "\xae\x9b\xcf\x9d\xf9\xc2\x27\x27\x37\x54\xed\xdf\xa9\xe8\xa2\xfd\xbb\xa6" "\xfa\x38\x5f\x0f\xf4\x75\x5b\xcf\x3b\x16\x3d\xfa\x93\x65\xef\xe8\xde\xfa" "\xdd\xbf\xf5\x2f\xae\x7a\xcf\xfc\x05\x17\xd8\xfa\xed\x4b\xf6\x6f\x5f\x60" "\xff\x4e\x55\x9d\xd4\x53\x6f\xde\xbf\xef\xb9\x7d\xcf\xae\x3b\x26\xc7\x17" "\xee\x79\xdb\xa4\xde\x8a\xeb\x9f\xf4\x79\x67\xff\x3d\x87\x3f\xbf\x7d\xd7" "\xae\xd1\x7d\xfb\x5b\xeb\xab\xd5\xe7\xd3\x74\x9e\xfc\x5e\x6e\xf7\xf9\x34" "\x7d\xf6\x58\x5c\xd1\x57\xfa\xfd\x9a\xee\x6b\xee\x3e\x69\x65\x7f\xb5\xfa" "\x78\x4b\xeb\xbf\x23\x97\xa3\xdd\xc7\x1b\x40\x6a\xfa\x79\x61\x5e\x66\x7b" "\xfe\xf8\x99\xbe\xee\xb7\xe2\xa2\x68\xd3\x7b\xbe\xf8\xad\x97\xe3\xe1\xc9" "\xe7\xcb\x6e\xbd\xde\x9a\xce\x73\x59\xee\x89\xb9\xdd\xd7\x5b\xab\xae\x93" "\xde\x91\x1b\x67\xaf\x93\x1a\x51\x53\xdf\x93\x66\x5e\x27\x4d\xdc\xa5\xea" "\x3a\x29\x3f\x4f\xd5\x75\xd2\x55\xb9\x71\xf5\x75\xcc\xc3\x85\x9d\x84\xbe" "\x7f\x3d\xc9\x33\x6f\xd1\xeb\xa6\xb9\x7a\x1b\xe3\x19\x42\xeb\x63\x28\xc9" "\x3f\x94\x8c\xd3\xf3\xcd\x15\xef\x89\xae\xaf\x3f\xff\xce\x8f\xc6\x23\xad" "\xad\x8f\x56\xcf\xa7\xd3\x79\xfe\x46\x6e\x07\xb5\x7b\x3e\x5d\xb5\x3e\x56" "\x46\xc5\x75\x75\x7b\x7d\xbc\x2b\x77\xa7\xea\xef\xf7\xd1\xc2\xca\xfa\x02" "\xdf\x8f\xaa\xef\xf7\xca\x4c\xa2\xb1\xb1\x4e\xaf\xcb\x07\x03\x55\xa7\xd7" "\xe5\x03\x51\xdc\x56\xfe\x91\xd1\xa7\x4e\x7c\xed\xd6\xe3\x4b\x83\xf9\xb7" "\xd5\x92\xfc\xb5\xb6\xf2\xbf\x54\x7f\xf9\xec\x57\x4f\x0f\x2d\x08\xe6\x3f" "\x9a\xe6\x6f\xb4\x95\x7f\xe5\x97\x17\x1c\x39\x73\x68\x63\x6f\x30\xff\xd3" "\xe9\xfe\xe9\x6b\x2b\xff\x0d\x5b\x56\xac\xbd\xfc\xf4\xc1\xbb\x82\xf9\x57" "\xa7\xf5\xf7\xb7\x95\xff\x07\x8f\xae\x3a\xb7\xe5\xe8\x37\x8e\x07\xf3\x47" "\x69\xfe\x81\xb6\xf2\xdf\xbc\xe6\x89\x75\x1f\x5b\xf6\xe0\x93\xc1\xfc\xaf" "\xc4\xc9\x3c\xe3\x8f\xdd\x28\x3a\x76\x66\xcd\x8e\xc9\x71\x1c\xf5\x24\xeb" "\x3f\xad\xa3\x27\x53\x57\x94\x1f\xc7\x53\xe3\x79\x45\x7d\x44\xf5\xe6\xf8" "\x5a\x1a\x96\x4c\x50\x8f\xe3\xec\xf6\x34\x2e\xb7\x3d\xed\xa3\x91\x6c\xbf" "\xb2\xa9\xc6\x22\x9b\x02\xdb\xd3\x47\x6d\x5f\xf2\xc0\xfe\x59\x3a\x8e\xf2" "\x9f\x94\x6f\x4f\x0f\x4f\x69\x5d\xa7\x02\xcf\x3f\xe7\x4b\xad\xe9\xdc\xa3" "\x68\x7b\xd5\xeb\x93\xdd\xf2\xfa\x8f\x86\x7e\xa7\x79\x9c\xfe\xff\x7f\xba" "\x06\x7a\x1b\x93\xdf\xbb\xeb\x72\xfb\xab\xea\xf9\x23\x7f\xf4\x4e\xf3\x05" "\x5f\x87\x0d\xbc\x84\x51\x75\xbe\x30\xf3\xff\xdf\xe6\xb7\xf5\xf8\x7b\xf5" "\xa9\x67\x97\xd7\x97\x3e\x76\x32\xf8\xba\xea\x89\x56\x5f\x57\xdd\x9b\x19" "\xcd\xaf\x78\x5d\xb5\xd3\x7a\x83\xc7\x8b\x13\xe9\xf1\xb4\xb3\xe3\xd1\x50" "\x28\xff\x2b\x69\xfe\xce\x9e\x0f\x82\xf9\x93\xe7\x83\xaa\x75\xf6\xce\xdc" "\xb8\x72\x9d\xf5\x14\xcf\x57\xb5\xce\xf2\xe7\x29\x03\xd1\xc2\xb6\xfa\xde" "\x7c\xf2\xa1\x6d\x7b\x9f\x79\x71\x55\x70\x9d\x6d\x98\x7c\xc0\x57\xaf\xb3" "\xc7\x32\xa3\x85\x95\xeb\xac\xb3\xff\x97\x0e\xae\xb3\xe7\xe2\xae\xec\x8f" "\x60\xfe\x0d\xdd\x39\xaf\x09\xae\xb3\xe4\xbc\xa6\x6a\x9d\x5d\x9d\x1b\x77" "\xbe\xce\xb2\xe7\xa3\x1f\x4f\x6e\xef\xce\xc5\x0f\x24\xaf\x10\xcf\xb6\xef" "\xb3\xeb\xbe\xff\xda\xb9\xc1\xf5\xcf\x06\xd7\xd9\xd3\xad\xae\xb3\xdf\xcd" "\x8c\x06\x2b\xd7\x59\x67\xe7\xb7\xc1\xef\xd3\xd4\xf9\xed\x5c\x9f\x9f\xbf" "\xb5\xcf\x3f\xbb\x7a\x7e\x38\x39\xae\xe5\xc6\xc5\xe7\x87\xc9\x7f\xe7\xce" "\xd5\xf9\xe1\xc6\xc0\xf6\xd9\x9e\x1f\x0e\xcc\xf8\x64\xba\x8f\xe8\xad\x78" "\x7e\x18\x38\xce\x00\x40\x99\xef\x3e\x72\xcf\xff\x6e\x1e\xa7\xd7\xff\xe9" "\x73\x77\x7a\xfd\xff\xad\xdc\xfd\x3a\xbd\xae\xcc\xff\x3c\x54\xaa\x5b\xd7" "\x95\xc1\xfc\x4f\x77\xe7\x7a\x25\x78\x9e\x3a\x75\xbd\x32\xd7\xd7\x5b\x73" "\x7d\x9e\x3d\xb7\xd7\x5b\xce\xe3\x03\xf9\xa7\x5e\x47\x9e\xeb\xd7\x85\xe6" "\xf6\xba\xd2\x75\x48\x32\x8e\xf2\x9f\x4c\x72\x1d\x02\x00\xc0\x9b\xe1\xca" "\x7f\xfd\x95\x5f\x6d\x1e\xa7\xd7\xff\x53\x3f\xf7\x96\xfc\xfe\xff\x8b\xe9" "\x38\x77\x7f\xd7\xb9\x81\xfc\xe7\xed\x3a\x77\xae\x5f\x27\x71\x1d\x5d\x98" "\xbf\x4b\x3f\x5f\x51\xfd\x3a\xd8\x5c\xbf\x4e\x55\xf6\x3a\x40\x9c\x9b\xe9" "\x3f\x5f\x92\x7e\xcd\xeb\x00\xc5\xbc\x0e\x70\x7e\xeb\x02\x00\x60\x76\xb6" "\xee\xd8\x37\x3a\xba\x7f\xef\xf6\xdb\x47\xb7\xee\xdc\xbd\xf3\xc0\xd4\xf6" "\x9e\x89\x2b\xa7\x99\x3f\xa7\xfa\xb7\x93\xdb\x0d\xb9\x3c\x55\x3f\x3f\x5d" "\x14\x3f\xbf\x24\xfe\x93\xc1\xfc\xd9\x7a\xde\x17\x88\x0f\x69\x4c\xfc\xcc" "\x6b\x14\x7d\xe6\xf6\xcf\x5d\xb7\xf5\x8e\xd1\xbb\x66\xdb\x7f\x68\xbe\xaa" "\xfe\x8b\xe2\xcb\xfa\xcf\x5f\x5f\x84\xfa\x5f\x1b\x88\x0f\xe9\xb4\xff\xd0" "\x7c\x55\xfd\x17\xc5\x97\xf5\x7f\x53\x30\x7f\xb6\x9e\xf7\x07\xe2\x43\x3a" "\xed\x3f\x34\x5f\x55\xff\x45\xf1\x65\xfd\x7f\x2a\x98\x3f\x5b\xcf\x2f\x07" "\xe2\x43\x3a\xed\x3f\x34\x5f\x55\xff\x45\xf1\x65\xfd\xe7\x7f\x1f\x2c\xd4" "\xff\xaf\x04\xe2\x43\x3a\xed\x3f\x34\x5f\x55\xff\x45\xf1\x65\xfd\xdf\x1c" "\xcc\x9f\xad\xe7\x03\x81\xf8\x90\x4e\xfb\x0f\xcd\x57\xd5\x7f\x51\x7c\x59" "\xff\xb7\x04\xf3\x67\xeb\xf9\x3b\x81\xf8\x90\x4e\xfb\x0f\xcd\x57\xd5\x7f" "\x51\x7c\x59\xff\xb7\x06\xf3\x67\xeb\x59\x17\x88\x0f\xe9\xb4\xff\xd0\x7c" "\x55\xfd\x17\xc5\x97\xf5\xff\xe9\x60\xfe\x6c\x3d\x23\x81\xf8\x02\x0b\xa2" "\x2e\xf4\x1f\x9a\xaf\xaa\xff\xa2\xf8\xb2\xfe\x37\x07\xf3\x67\xeb\xf9\xbb" "\x81\xf8\x90\x4e\xfb\x0f\xcd\x57\xd5\x7f\x51\x7c\x59\xff\xb7\x05\xf3\x67" "\xeb\xf9\x60\x20\x3e\xa4\xd3\xfe\x43\xf3\x55\xf5\x5f\x14\x5f\xd6\xff\xaf" "\x05\xf3\x67\xeb\xf9\x7b\x81\xf8\x90\xd2\xfe\x0b\xeb\x6b\x6d\xbe\xaa\xfe" "\x8b\xe2\xcb\xfa\xdf\x12\xcc\x9f\xad\xe7\x57\x03\xf1\x21\x9d\x7e\xff\x43" "\xf3\x55\xf5\x5f\x14\x5f\xd6\xff\xaf\x07\xf3\x67\xeb\xf9\x50\x20\x3e\xa4" "\xd3\xfe\x43\xf3\x55\xf5\x5f\x14\x5f\xd6\xff\xd6\x60\xfe\x6c\x3d\x1f\x0e" "\xc4\x87\x74\xda\x7f\x68\xbe\xaa\xfe\x8b\xe2\xcb\xfa\xdf\x16\xcc\x9f\xad" "\xe7\xef\x07\xe2\x43\x3a\xed\x3f\x34\x5f\x55\xff\x45\xf1\x65\xfd\x6f\x0f" "\xe6\xcf\xd6\xf3\x91\x40\x7c\x48\xa7\xfd\x87\xe6\xab\xea\xbf\x28\xbe\xac" "\xff\xcf\x04\xf3\x67\xeb\xf9\x68\x20\x3e\xa4\xd3\xfe\x43\xf3\x55\xf5\x5f" "\x14\x5f\xd6\xff\xed\xc1\xfc\xd9\x7a\x3e\x16\x88\x0f\xe9\xb4\xff\xd0\x7c" "\x55\xfd\x17\xc5\x97\xf5\x9f\x7f\xbf\xc3\x50\xff\xff\x20\x10\x1f\xd2\x69" "\xff\xa1\xf9\xaa\xfa\x2f\x8a\x2f\xeb\x7f\x34\x98\x3f\x5b\xcf\xfa\x40\x7c" "\x48\xa7\xfd\x87\xe6\xab\xea\xbf\x28\xbe\xac\xff\x1d\xc1\xfc\xc5\xef\x1b" "\x90\x8f\x0f\xe9\xb4\xff\xd0\x7c\x55\xfd\x17\xc5\x97\xf5\xff\xd9\x60\xfe" "\x6c\x3d\x9f\x08\xc4\x87\x74\xda\x7f\x68\xbe\xaa\xfe\x8b\xe2\xcb\xfa\xff" "\x5c\x30\x7f\xb6\x9e\x1b\x03\xf1\x21\x9d\xf6\x1f\x9a\xaf\xaa\xff\xa2\xf8" "\xb2\xfe\x77\x06\xf3\x67\xeb\xd9\x10\x88\x0f\xe9\xb4\xff\xd0\x7c\x55\xfd" "\x17\xc5\x97\xf5\xff\x1b\xc1\xfc\xd9\x7a\x3e\x19\x88\x0f\xe9\xb4\xff\xd0" "\x7c\x55\xfd\x17\xc5\x97\xf5\xff\xf9\x60\xfe\x6c\x3d\x1b\x03\xf1\x21\x9d" "\xf6\x1f\x9a\xaf\xaa\xff\xa2\xf8\xb2\xfe\x77\x05\xf3\x67\xeb\xb9\x29\x10" "\x1f\xd2\x69\xff\xa1\xf9\xaa\xfa\x2f\x8a\x2f\xeb\xff\xce\x60\xfe\x6c\x3d" "\x9f\x0a\xc4\x87\x74\xda\xff\xf8\x7c\xff\xaa\x20\x6f\x55\xff\x45\xfd\x94" "\xf5\xbf\x3b\x98\x3f\x5b\xcf\xa6\x40\x7c\x48\xa7\xfd\x87\xe6\xab\xea\xbf" "\x28\xbe\xac\xff\x3d\xc1\xfc\xd9\x7a\x6e\x0e\xc4\x87\x74\xda\x7f\x68\xbe" "\xaa\xfe\x8b\xe2\xcb\xfa\xdf\x1b\xcc\x9f\xad\xe7\x96\x40\x7c\x48\xa7\xfd" "\x87\xe6\xab\xea\xbf\x28\xbe\xac\xff\x2f\x04\xf3\x67\xeb\xb9\x35\x10\x1f" "\xd2\x69\xff\xa1\xf9\xaa\xfa\x2f\x8a\x2f\xeb\x7f\x5f\x30\x7f\xb6\x9e\x4f" "\x07\xe2\x43\x3a\xed\x3f\x34\x5f\x55\xff\x45\xf1\x65\xfd\xef\x0f\xe6\xcf" "\xd6\xb3\x39\x10\x1f\xd2\x69\xff\xa1\xf9\xaa\xfa\x2f\x8a\x2f\xeb\xff\x40" "\x30\x7f\xb6\x9e\xdb\x02\xf1\x21\x9d\xf6\x1f\x9a\xaf\xaa\xff\xa2\xf8\xb2" "\xfe\x0f\x06\xf3\x67\xeb\xf9\xb5\x40\x7c\x48\xa7\xfd\x87\xe6\xab\xea\xbf" "\x28\xbe\xac\xff\xbb\x82\xf9\xb3\xf5\x6c\x09\xc4\x87\x74\xda\x7f\x68\xbe" "\xaa\xfe\x8b\xe2\xcb\xfa\x3f\x14\xcc\x9f\xad\xe7\xd7\x03\xf1\x21\x9d\xf6" "\x1f\x9a\xaf\xaa\xff\xa2\xf8\xb2\xfe\xf3\xef\x03\x19\xea\x7f\x6b\x20\x3e" "\x64\xaa\xff\x03\xfb\x46\x47\xb7\x1e\xdc\x7b\xc7\xf6\x03\xa3\x5b\x77\xef" "\xb9\x63\x74\xff\xd6\x43\xfb\x76\x1e\x38\x30\x9a\x9c\xa8\x75\xfa\x7b\x65" "\xe1\xdf\x0b\x7a\x93\x7f\x91\x85\x52\x99\xc7\xc7\xe4\x22\xd9\xb9\x7b\xff" "\xe8\xbe\x99\xc7\xef\xfe\xd2\xf5\xdb\xbc\x26\xa2\x89\x5f\x7b\xea\x9f\xbc" "\x8d\xdf\xde\x52\x7c\xfe\x6d\xaf\xdb\x5d\x35\x17\xca\x7a\xef\x89\x1a\xa5" "\xfb\xeb\xb2\xdc\xf8\xe2\xe4\xfd\x68\x2f\x0e\xbc\x1f\x6d\x3e\x3e\x4d\xbb" "\x6c\xe2\x93\x99\xef\x47\x9b\x9f\xb6\x51\xf1\x3e\xae\x55\xc7\xa7\xfc\xfc" "\xa1\xe3\x53\x5c\x12\x5f\x74\x7c\x0d\x1d\xcf\xaa\x9e\xff\x66\x7d\xfc\xab" "\x5c\xdf\x7d\xa5\xfd\xe7\x37\xf7\x26\xbf\xd8\xd7\x1b\x5f\xd2\x52\x7c\x54" "\xf2\xf7\xdd\x5a\x5b\xaf\x9d\xfd\xde\x69\x70\xbd\xbe\xd2\xda\x7a\xcd\xbf" "\xef\x7a\xd5\x7a\xcd\xc7\xcf\x76\xbd\x0e\x74\xb8\x5e\xf3\xf3\x37\x3d\x5f" "\x67\x76\x50\xad\x24\xbe\xec\x7c\xa8\xd5\xf5\xba\x39\x10\x9f\x6a\x7d\x7d" "\xc6\xc1\x7e\x8b\xd6\xd5\x6c\xff\xce\x60\x9a\x76\x56\x7f\x67\x30\xf7\x61" "\x86\x36\xfe\x96\x41\xeb\x8f\x87\xce\x7e\x8f\x3c\xf8\x78\x48\x8a\xae\x7a" "\x3c\xe4\x7f\x8f\xbb\xea\xf1\x90\x8f\x9f\xed\xe3\xa1\xbf\xd5\xc7\x43\x7f" "\x6b\xf5\x86\xd6\x6b\xad\x24\xbe\xec\xfa\xb8\xd5\xc7\xc3\x2d\x81\xf8\x90" "\xd6\xd7\x43\x67\xef\x5b\x10\x5c\x0f\xab\x5b\x5b\x0f\xf9\xbf\x63\x55\xb5" "\x1e\xf2\xf1\xb3\x5d\x0f\x7d\x1d\x1e\x1f\xf3\xf3\x57\xad\x87\xa2\xf8\xb2" "\xd7\x0b\x5b\x5d\x0f\x9f\x0a\xc4\xb7\xaa\xf5\xf5\xd1\xd9\xfb\x8a\x04\xd7" "\xc7\xb6\xd6\xd6\x47\xfe\xef\x49\x54\xad\x8f\x7c\xfc\x6c\xd7\x47\xdc\xe1" "\xfa\xc8\xcf\x5f\xb5\x3e\x8a\xe2\x43\xff\x9f\x12\xcd\x62\x7d\x7c\x32\x10" "\x9f\xca\x3c\x7f\xee\xd8\x3f\x71\x51\xbf\x73\xfb\xae\x9d\x87\x73\x3f\x80" "\x31\x98\x3c\x7f\xbe\xd9\xcf\x87\xe7\xe5\x79\xf9\x2f\x7e\xe5\x4f\x7f\x36" "\xf9\x21\xa9\xa3\x36\xa3\x8e\xaa\xf3\x89\x38\x57\xc7\xa2\xa4\x92\x45\xa1" "\xbf\x7b\x18\xa8\xfb\xf6\xff\xf2\x6f\x36\x7d\xeb\xe7\x5f\xfc\x4a\x14\xad" "\xbe\xa4\xbe\x3c\x5c\xf7\x74\xc9\xd3\x1f\x72\xe2\x91\xb1\xc5\xf7\xae\xfc" "\xda\xad\x6f\x3f\xf9\xc1\xf1\xfa\x6b\xa5\xf5\x4f\x45\xa6\x7f\xb7\xb8\xe2" "\xef\x1d\xe7\xe3\xd3\x7e\x1a\xbb\xf6\xec\x3f\xf0\x4b\x3b\xf6\x1c\xdc\xdd" "\xea\x4f\x5c\x95\x4b\xdf\x0f\xa5\x36\x35\x9e\xa3\xf7\x43\x49\x36\xd6\x5b" "\x7c\x7f\x93\xd0\xef\x13\xcc\xf6\xfd\x4d\x7a\x66\x7c\x72\x61\x6a\xf9\xfd" "\x4d\x00\xfe\x8a\xb8\xf8\xe9\xe7\x16\x36\x8f\xd3\xf7\xff\x4b\x9f\x8f\x86" "\x92\x63\x5f\x7f\x72\x00\x4c\xb7\xb7\x7e\x9e\xdd\xd9\xfb\xeb\x05\xcf\xb3" "\x8f\xb6\x76\x9e\xbd\x2a\xdf\x6f\xc5\x79\x76\x3e\x3e\xed\xb7\xd5\xf3\xec" "\x5a\x87\xe7\xd9\xf9\xf9\xab\xce\xb3\x8b\xe2\xcb\x7e\x6e\xaf\xd5\xf3\xec" "\x4f\x04\xe2\x67\x2b\xbb\x4e\xc6\x17\xc8\xc4\xfa\x18\xdd\x7a\x68\xcf\xbe" "\xe6\x9f\x89\x9b\xeb\xbf\x5b\xdb\x46\xbd\xe9\xdb\xc5\x05\xea\x9d\xdb\xbf" "\xe3\xdb\x42\x7d\x15\xfb\x73\x6e\xdf\xb7\xb1\x5d\xad\xd7\x3f\xf1\x7a\x5e" "\xdf\x5c\xbd\x2f\x64\x27\xf5\xcf\x6b\xa9\xfe\xb9\xfd\x3b\xc0\x9d\xd4\xdf" "\xda\xfe\x9f\xdb\xbf\xf3\xdc\xae\xf3\x76\xbd\x94\x3c\xfa\xab\xde\x3f\xb2" "\xea\x3a\x2a\xf4\x7b\xe9\xb3\xbd\x8e\x9a\x37\xe3\x93\x0b\x93\xeb\x28\x00" "\xb8\xf0\xfd\x93\x7d\x3f\xfa\x97\xcd\xe3\xf4\xfa\x3f\xb9\x8a\x9d\xba\xfe" "\xff\x52\x32\xae\x77\x79\xfe\xb9\xbe\x8e\x9a\xeb\xeb\xca\xb9\x3e\x4f\x7e" "\xeb\xbf\xff\xfe\xdc\x5e\x07\xb9\x1e\x28\x99\xec\x02\xe0\x7a\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\xd8" "\xef\xfe\xf7\xff\xf8\xcd\xe6\x71\x6f\x63\x68\xe2\xf6\xa5\xdf\xda\xff\xc6" "\x27\x2e\xfb\xd0\x77\x1f\x18\x3d\x73\xef\x47\xfe\xe0\xce\xfb\x2f\xfd\xc3" "\x25\x6f\x0c\x3e\xb8\xfe\xe3\x8f\xac\xfd\xf0\xf7\xb6\xfd\xd1\xa2\x91\x15" "\x2b\x47\x6f\xf8\xfa\xb1\x1b\x1f\x7a\xf0\x85\x0f\xfc\xfc\x85\xc7\x9f\x5c" "\x5f\x39\xd1\xe0\xe4\xcd\xd5\xc9\xb0\x2f\x8a\xe2\x3f\x8b\xa3\x68\xc5\x8f" "\x8e\x3d\xfe\xd0\xb7\xff\xf8\xd2\xf1\x6d\xf1\xf8\xfc\xf1\xe0\x7d\xd1\xa2" "\x45\xf1\xe2\x6f\x2e\x8a\x73\x19\x56\x9f\x8d\xa2\xe8\x8e\xa9\x3a\xb3\x5f" "\x3c\x76\x66\xcd\x8e\xf1\xdb\xfb\xbf\xd4\x9b\xd9\x7e\x71\x2e\x49\xbe\xaf" "\x68\xa0\x9e\xd6\x93\xa9\x33\xba\xbb\xb2\x23\xde\x82\xfa\x92\x75\x76\x64" "\xeb\x67\x9e\x39\xf1\xf9\x91\x6f\x1f\x1b\xde\xbb\xe6\x27\xa7\xaf\xdf\x73" "\xdf\x74\x48\xdc\xd7\xb4\x9e\xa2\xe8\xa2\x6d\xcd\xf7\xef\x89\xa2\xa8\x3f" "\xf9\x37\x2e\x5d\x6d\x43\xe9\x9d\x93\xdb\x0d\x51\x14\xcd\x6f\xba\xdf\xfb" "\x2a\xea\xba\xaa\xc5\xfa\xaf\x09\x8c\x97\x27\xb7\xf3\x92\xdb\x81\x8a\x3c" "\xe9\xd7\xaf\xcc\x8d\x1b\x2d\xd6\xd1\xc8\xdd\xf6\xb6\x78\xbf\x36\xfd\xff" "\xda\xdc\xe6\x9f\x21\xbf\xff\xf2\x07\xa3\xb9\x92\xf6\x79\x51\x72\xfb\x7c" "\x72\x7b\xf5\x2c\xf3\xd4\xd3\x7f\x71\x54\x8b\xa3\xc6\x54\xf9\xbb\xe2\xe9" "\x35\x12\x35\x7d\xdf\xe2\x28\x9e\x58\xdb\x7d\x53\xe3\xda\xc4\x38\x9a\x1a" "\x47\xf9\x71\x9c\x1b\xd7\x72\xe3\x7a\x4f\xae\xaf\x89\x79\x93\x1d\x5b\x8f" "\xe3\xec\xf6\x34\x2e\xb7\x3d\x3d\x1c\x37\x92\xed\x57\x36\x1f\xab\x0b\x6c" "\x0c\x6c\x5f\x9a\xdc\xf6\x25\x0f\xd4\x9f\xa5\xe3\x28\xff\xc9\xa4\x81\x19" "\x9f\x4c\xf7\x11\x35\xd5\x75\xea\x7c\x2d\x8c\x80\x5a\xe0\xb1\x97\x6e\x9f" "\x2a\x2f\xf9\x66\x0c\x24\xdb\x06\xe2\xc5\x33\xee\x33\x56\x20\xfd\xda\xa9" "\xef\x6c\xdf\xfc\xfa\x0f\x0f\x3f\x3f\x18\xa8\x23\x7e\x2e\x4e\xf2\xc7\x6d" "\xe5\x1f\x19\x7d\xea\xc4\xd7\x6e\x3d\xbe\x74\x28\x94\x7f\x5b\x2d\xc9\x5f" "\x6b\x2b\xff\x4b\xf5\x97\xcf\x7e\xf5\xf4\xd0\x82\x60\xfe\xa3\x69\xfe\x7a" "\x5b\xf9\x37\xfd\xe2\xc7\x0f\x3f\x70\xd3\xa1\x25\xc1\xfd\x73\x2a\xdd\x3f" "\x8d\xb6\xf2\xaf\xfc\xf2\x82\x23\x67\x0e\x6d\xec\x1d\x0e\xe5\x7f\x3a\xcd" "\xdf\xd7\x56\xfe\x1b\xb6\xac\x58\x7b\xf9\xe9\x83\x77\x05\xeb\x5f\x9d\xee" "\x9f\xfe\xb6\xf2\xff\xe0\xd1\x55\xe7\xb6\x1c\xfd\xc6\xf1\x60\xfe\x28\xcd" "\x3f\xbf\xad\xfc\xaf\x3e\xf5\xec\xf2\xfa\xd2\xc7\x4e\x06\xf3\x9f\x48\xf7" "\xcf\x40\x5b\xf9\x6f\x5e\xf3\xc4\xba\x8f\x2d\x7b\xf0\xc9\xe0\xfe\x7f\x25" "\xcd\xbf\xb0\xad\xfc\x9b\x4f\x3e\xb4\x6d\xef\x33\x2f\xae\x0a\xae\xcf\x0d" "\xe9\xfe\x19\x6c\x2b\xff\xd9\x75\xdf\x7f\xed\xdc\xe0\xfa\x67\x8b\x8e\x9d" "\x3d\x81\x39\x01\x68\xdd\xdb\x92\x73\xac\x87\x93\x71\xbb\xd7\x99\x9d\x6a" "\xba\x5e\x78\x62\xb8\x31\x79\xce\xb7\x20\xf9\xb7\xb0\x9b\x13\xe5\xc4\x4d" "\xd7\x2e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x10\xb2\x67\xac\x7e\xb0\x79\xfc\xda\xf1\x47" "\x6e\xfc\xdc\xff\xd8\xfa\xdf\x1a\x71\x14\xc5\x81\xfb\x8c\x15\x48\xbf\x56" "\x9f\x37\x32\x32\xdc\x46\x1d\x2b\xbf\xbc\xe0\xc8\x99\x43\x1b\x7b\xd3\xf1" "\xf8\xdc\x43\x6d\xe4\x01\x00\x00\x00\x66\x5a\xf6\xea\x17\xbf\xd0\x3c\x4e" "\xaf\xc3\x6b\xc9\x38\x8e\xfa\xa2\xa1\xe8\x50\xdc\x1f\x2d\x2b\xbc\x7f\xfa" "\x1a\xc1\xb2\x74\x14\x67\xb7\xe7\x5f\x43\xe8\x9f\x8e\xec\x4a\x9e\x5a\x97" "\xf2\xd4\xbb\x94\xa7\xd1\xa5\x3c\x3d\x5d\xca\x33\xaf\x4b\x79\x7a\xbb\x94" "\xa7\xaf\x22\x4f\x5f\xd4\x5a\x9e\xfe\xd2\x3c\xb5\x96\xeb\x99\xdf\xa5\x3c" "\x03\x5d\xca\xb3\xa0\x4b\x79\x16\x76\x29\xcf\x45\xed\xe7\x69\x34\xe7\xb9" "\xb8\x4b\xf5\x0c\x96\xe6\x69\x7d\x1d\x2e\xea\x52\x9e\xc5\x5d\xca\xf3\xb6" "\x2e\xe5\x59\xd2\xa5\x3c\x97\x74\x29\xcf\xdb\xbb\x94\xe7\xd2\x2e\xe5\xc9" "\xbf\xa6\x3c\xdb\x75\xb8\x30\x89\xbc\x2c\x94\x67\xe2\x93\x7a\x65\x9e\x46" "\x5c\x9f\xfa\x42\xd1\xeb\xe9\xe9\x3c\x97\x77\x38\xcf\x40\x8b\xf3\xe4\x5f" "\xb3\x9f\xed\x3c\xfd\x2d\xce\x73\x55\x87\xf3\xf4\xb5\x38\xcf\xbb\x3a\x9c" "\x27\x6e\x71\x9e\x55\xb9\xfb\xd5\x66\x39\x4f\xad\x62\x9e\x74\xdd\xde\x1d" "\xea\x27\x1d\xb5\xb8\xfe\xef\xe9\x52\x9e\xc3\x5d\xca\x73\xa4\x4b\x79\x7e" "\xb3\x4b\x79\xfe\x61\x97\xf2\xfc\xa3\x2e\xe5\xb9\xb7\xc3\x3c\x00\x21\xbf" "\xfd\xc2\xd5\xbf\xd7\x3c\x4e\xaf\xff\xd3\xeb\xcf\x38\x1a\x8c\x7a\x1b\xd7" "\x45\xf3\x93\x23\x4e\xfe\x55\x80\xf4\x7a\xf7\x8a\x89\x8f\x33\x9f\xef\x42" "\x07\xa4\x34\xdf\xf2\xdc\xf6\x9e\xaa\x7c\xf9\x0b\xec\x5c\xbe\x2b\x66\x5b" "\x5f\xfe\x05\x84\x5c\xbe\x77\x94\xe6\x6b\xcc\xb8\x5e\x2d\xc8\xd7\x68\xce" "\xb7\xb2\x4b\xf9\x00\x00\x00\x60\x36\xfe\xf1\xd9\x23\x99\xff\x9a\x9b\x79" "\xfd\x3f\x14\xf5\x36\x96\x4c\x5d\xbf\xbe\x33\x77\xff\xca\xeb\xf5\xfc\x7f" "\x64\x27\xd2\x7c\x57\x77\x29\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x7f\xc9\xae\xbd\xc6\xc8\x55\x96\x0f\x00" "\x7f\xcf\xce\xec\xcc\xfc\x97\x4b\x17\xd2\x96\x29\xbd\x6d\xda\xfe\x29\x84" "\xd0\x0b\x4d\x8d\xa0\xc2\xa4\x89\x24\x18\x61\x8b\xd8\x72\x69\xc8\x5a\x61" "\x61\x1b\x96\x16\xba\x2d\xd0\xaa\x29\x82\xb1\xcd\x26\x18\xb4\x78\xe1\xf6" "\xc1\x82\xc4\x10\x22\x90\x90\x34\xe8\x9a\x60\x40\x89\x1f\x6c\x6c\x10\xc3" "\xc5\x75\x61\x25\xf0\x85\x08\xd2\x1b\x50\x74\xcc\xec\x9e\xb3\x7b\x76\x76" "\x86\x5d\x46\x69\xad\xfe\x7e\x21\xe7\xcc\x73\xce\xf3\xbc\xcf\x7b\x0e\x09" "\xc9\x73\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf8\xcf\xf7\xc7\xef\xff\xed\xd9\x74" "\x3c\xd8\xd7\xdb\xde\x35\xd0\xd1\x1f\xa2\x50\xf9\xa7\xa6\x72\x0d\xc9\xbd" "\x4c\xae\x54\x6a\x6b\x60\x1f\xef\x3c\xb7\xf6\xca\xbf\xbe\xb4\x75\x77\x12" "\x57\x7a\xe7\xb3\x0d\x2c\x04\x00\x00\x00\x8c\xf3\xf8\x79\x33\x4e\x4f\xc7" "\xc9\x1c\x9e\x8c\xde\x51\x28\x84\x7c\x76\x69\xc8\x47\xb9\x31\x75\xc5\xf8" "\x3b\x40\x31\x8e\x9b\x5a\x87\xcf\x73\x16\x85\xe5\x99\xdd\xff\x7f\x61\x54" "\x6a\x1a\x8a\x4f\x8e\x4e\x1a\x53\x57\x88\xeb\x0a\x71\x9c\x89\xeb\x7a\xb6" "\x6c\xbd\x7e\x6d\x77\x77\xe7\xc6\x4f\xf0\x47\xa5\x4f\xf5\x73\x54\xef\x27" "\x0a\x61\xe8\xf3\xc5\x9c\x13\xc3\xaa\x45\xdb\x9f\xd9\x13\xb5\x0d\x3f\x47" "\xcb\x04\xcf\xd1\x14\xd7\x2d\xde\x74\xc3\x8d\x8b\x7b\xb6\x6c\x3d\x6b\xdd" "\x0d\x6b\xaf\xeb\xbc\xae\x73\xfd\xb2\x65\xcb\xcf\x59\xba\x6c\xe9\xd9\xe7" "\x2c\x5b\x7c\xed\xba\xee\xce\x25\xc3\xc7\x90\x9f\x60\xbd\x10\x42\x69\xec" "\x7b\x99\xe0\x5f\x24\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x1c\x01\xdb\x7e\xbb\xfb\x5b\xe9\x78\xb0\xaf\xb7\xbd\x6b\xa0\xa3\xbf" "\x25\x0a\x21\xaa\x53\x53\xae\x21\xb9\x97\xc9\x95\x4a\x6d\x0d\xec\xe3\x95" "\xfb\x1e\x9c\x95\x99\x71\xf7\xde\x24\xae\xf4\xce\x67\x1b\x58\x08\x00\x00" "\x00\x18\xe7\x57\x8f\xcf\x38\x3f\x1d\x27\x73\x78\x32\x7a\x47\xa1\x10\xf2" "\xd9\x5c\xc8\x84\x19\x43\xf1\xbc\xd1\xd4\x6c\x08\xe5\x72\x72\x7d\x41\xd5" "\xf5\x23\xb1\x77\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xe0\xc8\xda\x77\xb0\xfd\xcf\xe9\x78\xb0\xaf\xb7\xbd\x6b\xa0\xa3\xff\xb8" "\x28\x84\xa8\x4e\x4d\xb9\x86\xe4\x5e\x26\x57\x2a\xb5\x35\xb0\x8f\xd5\xcb" "\x7e\x74\xfe\x17\x66\xde\x71\x6f\x12\x57\x7a\x17\x1b\x58\x07\x00\x00\x00" "\x18\xef\x85\xd3\x9b\xef\x48\xc7\xc9\x1c\xde\x14\xc7\x51\x28\x84\x62\x98" "\x1f\x9a\xa3\x19\x63\xea\x92\x6f\x03\xa7\x56\xad\x57\x9d\x97\xac\x33\x7b" "\x92\x79\xd5\xdf\x0e\xea\xe5\xcd\x9f\x64\xde\x69\x93\xcc\x3b\x63\x82\xbc" "\x8b\xe3\xf3\xad\x01\x00\x00\x00\x8e\x3d\x57\xb4\xfe\x6e\x75\x3a\x4e\xe6" "\xff\xe6\x38\x8e\x42\x6b\xc8\x67\x8b\x21\x13\xc7\x13\xcd\xf1\xc9\x77\x81" "\xb9\x55\x79\x49\xfd\x44\xf3\x7d\x52\x3f\xaf\x4e\xfd\x44\x73\x7f\x52\x5f" "\x3d\xf7\x03\x00\x00\xc0\xff\xb2\xb3\xde\x7c\xe2\xc3\x74\x3c\x7e\xfe\x2f" "\x86\x7c\xb6\x30\x32\x7f\x4f\xf4\xf7\xf4\x8b\xe2\xb3\xbf\x93\x03\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xf5\xfc\xfa\xe0\x85\xbf\x48\xc7\x83\x7d\xbd\xed\x5d" "\x03\x1d\xfd\x99\x28\x84\xa8\x4e\x4d\xb9\x86\xe4\x5e\x26\x57\x2a\xb5\x35" "\xb0\x8f\x55\xff\x78\x63\xc7\xed\x97\xde\x32\x35\x89\x2b\xbd\xf3\xd9\x06" "\x16\x02\x00\x00\x00\xc6\x79\x34\xf7\xe9\x5b\xd2\x71\x32\x87\x27\xa3\x77" "\x14\x0a\x21\x9f\x6d\x09\xcd\xe1\xb8\xa1\xb9\xff\xb5\xdc\x94\xa9\xeb\xbe" "\x39\x73\x76\x08\xa1\x34\x94\x90\xcb\x85\x5b\xd7\x6e\xda\xb4\xf1\xec\xe1" "\x63\x92\xf7\xa5\x68\xd7\xe7\x16\xde\xd0\x77\xe6\xb8\xbc\xa5\xc3\xc7\x23" "\xff\xa4\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xbf" "\x6a\xd9\x23\x3b\xd7\xa4\xe3\xc1\xbe\xde\xf6\xae\x81\x8e\xfe\xff\x8b\x42" "\x88\xea\xd4\x94\x6b\x48\xee\x65\x72\xa5\x52\x5b\x03\xfb\x78\x61\xe7\x19" "\x87\xaf\xba\xeb\xa9\xbe\x24\xae\xf4\x2e\x36\xb0\x0e\x00\x00\x00\x30\xde" "\xac\xee\xa7\xff\x92\x8e\x93\x39\x3c\x99\xfd\xa3\x50\x08\xc5\x90\x0b\xb9" "\x30\x7d\x28\x4e\xcf\xfa\x15\x4d\x55\xeb\xd5\xfb\x66\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfc\xf7\xe8\xd9\xb2\xf5\xfa" "\xb5\xdd\xdd\x9d\x1b\xfd\xf0\xc3\x0f\x3f\x46\x7e\x1c\xed\xff\x32\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x47\xcb" "\xcf\xd7\x7f\xef\xed\x74\x3c\xd8\xd7\xdb\xde\x35\xd0\xd1\x5f\x88\x42\x88" "\xea\xd4\x94\x6b\x48\xee\x65\x72\xa5\x52\x5b\x03\xfb\xf8\xd4\x55\x73\xce" "\x99\xbd\x7f\xf3\xcd\x49\x5c\xe9\x5d\x6c\x60\x1d\x00\x00\x00\x60\xbc\x35" "\x6f\x6d\xde\x9f\x8e\x93\x39\x3c\x99\xfd\xa3\x50\x08\xc5\xd0\x1c\x9a\xc3" "\xb4\x38\x1e\x6f\x68\xfe\x6f\x3d\x12\xbb\x05\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x8e\xa6\xb9\x21\x0a\xe5\x8f\xe9\x94\x95\x47" "\x7b\xd7\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xc0\x27\xe1\xc0\x8b\xab\xee\x4b\xc7\x83\x7d\xbd\xed\x5d\x03\x1d" "\xfd\x27\x44\x21\x44\x75\x6a\xca\x35\x24\xf7\x32\xb9\x52\xa9\xad\x81\x7d" "\x5c\xb9\xf7\xdb\x5f\xb9\x71\xd7\xb3\x67\x24\x71\xa5\x77\x3e\xdb\xc0\x42" "\x00\x00\x00\xc0\x38\xcd\x6f\xbe\xf8\xd5\x74\x9c\xcc\xe1\xc9\xe8\x1d\x85" "\x42\xc8\x67\x67\x85\x7c\x98\x15\x5f\xe9\x1e\xbb\x40\x94\x49\x12\x6b\x7e" "\x17\x18\xad\xfb\xfa\x98\xb2\xcc\xa4\xeb\x76\x54\xed\x78\x78\x67\x85\xf8" "\x3b\x44\x61\x64\x9f\x61\xe8\xb3\xc3\x68\xdd\x5d\x1f\x59\x57\x8c\xaf\x36" "\xb5\x4e\xee\x3d\x01\x00\x00\xc0\xb1\x6c\xda\x8e\x8b\xbf\x91\x8e\x93\xf9" "\xbf\x39\x8e\xa3\xd0\x1a\xf2\xd9\x69\xa9\xb9\xfa\xc6\x31\xf5\x2d\x93\x9e" "\xe3\xef\x1e\x53\x77\xc2\xa4\xeb\x7e\x3a\xa6\xae\x75\x82\xba\x7f\xc3\x2b" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1a\x74\xe7\xca\xe7\x4e\x49" "\xc7\x83\x7d\xbd\xed\x5d\x03\x1d\xfd\x51\x14\x42\x54\xa7\xa6\x5c\x43\x72" "\x2f\x93\x2b\x95\xda\x3e\xa2\x5f\x54\x67\xd5\x52\xe7\x7d\x4f\x3f\x7c\x79" "\xdf\x8c\xd1\xbc\x10\x8a\x1f\xff\x71\x00\x00\x00\x80\x1a\x2e\x7d\xa3\xf0" "\xdd\x74\x9c\xcc\xe1\xc9\x94\x1e\x85\x42\x28\x86\xd9\xe1\xc4\x30\x7b\x68" "\xee\x0f\xad\x63\xeb\x93\xbc\xe3\x4a\xbf\x7f\x79\xc5\xee\x97\xae\x08\x61" "\xc9\xf4\xe7\xe7\x64\xeb\xf6\xfb\xe1\x9e\xcb\xde\x0e\x87\x3e\xfb\xda\x7b" "\xc3\x87\xa1\x30\x84\xa6\xb1\x49\x4d\x21\x4c\x89\xfb\x45\x75\xfa\x5d\xfd" "\x87\x47\x56\x3d\xf3\xe1\xf6\x07\x42\x58\x32\x2d\x33\xab\x7e\xbf\xd1\x56" "\xa3\x87\x2a\x51\xa9\x7c\xf2\xb6\x05\x0f\x5f\x3e\x7d\xef\x8a\xba\xcb\x00" "\x00\x00\xc0\x31\xad\xf0\xe0\x81\x9f\xa4\xe3\x64\xfe\x4f\x26\xea\x28\xb4" "\x86\x7c\x76\x7d\xdd\xf9\x3f\xc9\xfb\x58\xf3\x7f\x7b\xcf\xcc\x6d\x53\xe3" "\x63\xfc\x05\xa0\xaa\xa2\xa9\x35\xee\xd7\x54\xa7\x5f\xef\xbb\x0f\xb4\x1d" "\x5c\xf3\xe5\x83\x95\xf9\xff\xf9\x39\x85\x91\xff\x57\xe0\xf4\xf9\x63\xf3" "\xd3\xad\xd2\xc7\xaa\x6f\x0e\x51\xa9\x3c\xf7\x89\xd3\x56\x1f\x3e\x70\xd3" "\x25\xc3\x17\x92\xfe\x99\x3a\xfd\xd7\x34\xcf\x3b\x69\xe7\x5b\x33\xe7\x25" "\xfd\x0b\xf1\xf5\x6b\xc2\x64\xfb\x87\xaa\xfe\x3d\x1d\x87\xe6\x2f\x6a\x39" "\xfe\x82\xb1\xfd\x43\x08\x6d\xb5\xfa\xff\xf8\xc2\xc7\xdf\x5f\x75\xef\xbb" "\x57\x0c\xf7\xaf\xff\xbe\x17\xff\x69\xf0\xf3\x53\xc3\x86\x1f\x14\xba\x93" "\xe3\xf0\x95\xf1\xfd\x57\xde\xbf\x7c\xe7\xd6\xdc\xeb\x53\xc6\xf6\x8f\xea" "\xf4\x5f\xf8\xec\x93\xfb\x1f\xbb\x75\xd5\x9d\xd5\xcf\x7f\x6a\xb6\x56\xff" "\xf1\xc7\x2a\x95\xae\xd9\x72\xef\xbe\xdb\x17\xde\xb6\xa2\xf3\xdc\x54\xff" "\xa6\x3a\xfd\x6f\x6e\x7b\xe5\x9d\xef\xfc\xec\x97\x0f\x55\xfa\xef\x9b\xdb" "\x32\xd2\x7f\xe1\x47\x3c\xff\x84\xfd\xf7\xcc\xdf\xb1\x6f\xd7\xf6\x7b\xd6" "\x8c\x7d\xff\xa5\xf1\xfd\x6f\x0b\x57\x9f\xb5\xf1\xc9\x2d\xeb\xae\xbc\xab" "\xfa\xf9\x5b\xaa\x16\x4e\xbf\xf9\xf4\x71\xfc\xfb\x7f\x75\x56\x74\xd1\xe6" "\x9e\x97\x37\x56\xdf\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x38" "\xb6\x75\x3c\xf6\xc1\xa1\x74\x3c\xd8\xd7\xdb\xde\x35\xd0\xd1\xdf\x14\x85" "\x10\xd5\xa9\x29\xd7\x90\xdc\xcb\xe4\x4a\xa5\xb6\x06\xf6\xf1\x9b\xcc\x9e" "\x0f\x1e\xda\x5f\x3c\x3e\x89\x2b\xbd\x8b\x0d\xac\x03\x00\x00\x00\x8c\x77" "\xc9\x8a\x57\xaf\x4b\xc7\xc9\x1c\x9e\xcc\xfe\x51\x28\x84\x62\xc8\x85\x5c" "\x68\x19\x9a\xfb\x4f\xde\xb6\xe0\xe1\xcb\xa7\xef\x5d\x11\x5a\xe3\xfb\xf1" "\x39\xdb\xbd\xa1\x67\xd3\x99\xd7\x6e\xd8\xbc\xfe\x9a\x23\xfd\x08\x00\x00" "\x00\xc0\x04\x76\x9d\xf7\xfe\x8a\x74\x9c\xcc\xff\xd9\x38\x8e\x42\x6b\xc8" "\x67\x17\x84\xe6\x78\xfe\x5f\x79\xff\xf2\x9d\x5b\x73\xaf\x4f\x49\xe6\xff" "\x10\xc2\xd0\x9f\xfb\xb3\xd7\xae\xeb\xee\x5c\x12\x46\xbe\x13\xf4\x74\x1c" "\x9a\xbf\xa8\xe5\xf8\x0b\x92\xbc\x4c\x7c\x2e\x54\xf2\x16\x5d\xbd\xa1\x3b" "\xfe\x4c\x90\xac\xfb\xd4\xa3\x9f\x59\x7a\xee\x65\x97\x8e\xe4\x37\xa5\xf3" "\xcf\x1e\xcd\x9b\xfb\xc4\x69\xab\x0f\x1f\xb8\xe9\x92\x9a\x79\xcb\x46\xf3" "\x5e\x9d\x15\x5d\xb4\xb9\xe7\xe5\x8d\xa9\x7d\x96\x46\xf2\x96\x8e\xe6\xf5" "\xee\xbb\x7d\xe1\x6d\x2b\x3a\xcf\x4d\x9e\x23\x8a\xcf\x85\xf8\x79\x92\xbc" "\x3d\xf3\x77\xec\xdb\xb5\xfd\x9e\x35\x49\x5e\x53\x7c\x6e\x89\xd7\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\x42\x38\xe9\xbd\xbf\x7f\x2d\x1d\x0f" "\xf6\xf5\xb6\x77\x0d\x74\xf4\x87\x4c\x08\x51\x9d\x9a\x72\x0d\xc9\xbd\x4c" "\xae\x54\x6a\x6b\x60\x1f\x1f\x9c\xff\xfc\xe0\xe1\xd6\x2f\x3e\x98\xc4\x95" "\xde\xf9\x6c\x03\x0b\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x3f\xd9\x81\x03\x01\x00\x00" "\x00\x00\x20\xff\xd7\x46\xa8\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xc2\x5e" "\xfd\x85\x48\x55\xc5\x71\x00\x3f\x67\x66\x6c\x47\xc7\x6c\xd6\x04\x77\xcb" "\x16\x25\x5f\x14\x02\x61\x49\xf2\x21\xdc\x97\xfe\x10\x5b\x89\x51\x94\x20" "\x6d\xd1\xf6\x52\x91\x10\x65\xe4\x43\xea\xd2\x12\xd5\x83\x50\x60\xe8\x8b" "\x68\xf4\x5c\xec\x83\x54\x3e\x6c\x92\x16\x05\x91\x45\x0f\xd1\x53\x41\x3d" "\x55\xec\xc3\xae\xc4\x1a\x15\x3b\x7b\xcf\xec\xcc\xd5\xcb\x6e\x17\x94\x58" "\x3e\x1f\x18\xce\xfc\xce\x9d\xfb\xbd\xbf\x7b\xe6\xcc\x1d\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xe0\x7f\xed\xb1\x9f\xee\xa9\x75\xd6\x3d\xb5\xbe\xd6\x78" "\xfe\xb5\x17\x2e\x3e\x70\xd3\x5d\x5f\x1e\x1e\x9d\x79\xf5\xde\x8f\x9f\x3b" "\xb4\xfe\x93\x75\x17\x9b\x63\xc3\xf7\xbf\xb1\xe3\xee\x6f\x47\xbe\xe8\x1d" "\x1a\xd8\x3c\xba\xfd\xc3\x89\x07\xc7\xc7\xce\xde\xf9\xd7\xd9\xa3\xc7\x86" "\x17\xbd\xd0\xcb\xf3\xc3\xd6\xac\xac\x87\x10\x7f\x8f\x21\x0c\xfc\x32\x71" "\x74\xfc\xdc\x57\xeb\xe7\xe6\xe2\xdc\xf5\x63\xf3\x60\xe8\xed\x8d\x6b\x3f" "\xed\x8d\xb9\x84\x6d\xb3\x21\x84\xa7\xda\x7d\x76\x1f\x9c\x98\x19\x7c\x7a" "\x6e\x3c\xf4\x66\x4f\xd7\xfc\x0d\xb9\x90\xfc\x7d\x85\x46\x35\xf5\x33\xaf" "\xd9\xdd\x2f\xcb\x4b\x3d\xdb\x67\x07\x1e\x7f\xf2\xe4\xe4\x33\x43\xe7\x26" "\x36\xee\x1b\xfc\x6d\xfa\xf6\xe7\x0f\x2e\x7c\x24\xd6\x3b\xf6\x53\x08\x6b" "\x46\x3a\xcf\x5f\x11\x42\x58\x99\xbd\xe6\xa4\xdd\xd6\x97\x4e\xce\xc6\x5d" "\x21\x84\x55\x1d\xe7\xdd\xb1\x48\x5f\xb7\x2e\xb1\xff\xdb\x0a\xea\x0d\xd9" "\x78\x5d\x36\x36\x16\xc9\x49\xc7\x37\xe5\xea\xda\x12\xfb\xa8\xe5\xc6\x9e" "\x25\x9e\x57\x56\xe5\x2a\xe7\xe7\xe5\xd7\x2f\xff\x30\xba\x5a\xd2\x7d\xae" "\xc9\xc6\xd3\xd9\xb8\xf5\x3f\xe6\x54\xd3\x2b\x86\x4a\x0c\xb5\x76\xfb\xcf" "\xc6\x85\x3d\x12\x3a\xbe\xb7\x18\x62\x6b\x6f\xd7\xdb\x75\xa5\x55\x87\x76" "\x1d\xf2\x75\xcc\xd5\x95\x5c\x5d\x5d\x91\xbb\xaf\xd6\x75\xb3\x85\xad\xc6" "\xd8\x3d\x9f\x3e\x97\x9b\x4f\x8f\xe3\x5a\x36\xbf\xa9\xf3\x59\x7d\x05\xbb" "\x0b\xe6\xfb\xb3\xb1\x9e\xfd\x50\xff\x4c\x75\xc8\xbf\x99\xd7\xb8\xec\xcd" "\xc2\x7d\x84\x8e\xbe\xa6\xae\xd5\xc6\x28\x50\x29\xf8\xed\xa5\xf9\x76\x7b" "\xd9\x97\xd1\xc8\xe6\x1a\x71\xed\x65\xe7\xfc\x73\x05\xe9\xd8\xd4\xe7\x4f" "\xec\xf9\xe3\x87\x57\x4e\x37\x0b\xfa\x88\x1f\xc4\x2c\x3f\x96\xca\x1f\x1a" "\x3d\x3e\xf9\xfe\xa3\x67\xfa\xfb\x8a\xf2\x47\x2a\x59\x7e\xa5\x54\xfe\xf9" "\xea\xd7\xb3\xef\x4d\xf7\xad\x2e\xcc\x3f\x92\xf2\xab\xa5\xf2\x1f\xfe\xfb" "\xd7\xd7\x0f\x3f\xb4\x7f\x5d\xe1\xfa\x4c\xa5\xf5\xa9\x95\xca\xdf\xfc\xd6" "\xea\x03\x33\xfb\x77\xf7\x6c\x2c\xca\x3f\x91\xf2\xeb\xa5\xf2\xb7\xef\x1d" "\xd8\x71\xcb\xf4\x8b\x2f\x15\xf6\xbf\x2d\xad\xcf\xca\x52\xf9\xdf\xbf\xbd" "\xe5\xd2\xde\x23\x1f\x9d\x29\xcc\x0f\x29\x7f\x55\xa9\xfc\x1f\x8f\x9f\xda" "\x50\xed\x7f\xe7\x42\x61\xfe\x64\x5a\x9f\x46\xa9\xfc\x47\x06\xdf\xdd\x79" "\xdf\xcd\x63\xc7\x0a\xd7\xff\x9b\x94\x7f\x7d\xa9\xfc\x3d\x17\xc6\x47\xf6" "\x9d\xfc\x6c\x4b\xe1\xfe\xdc\x95\xd6\xa7\x59\x2a\x7f\x76\xe7\x77\x3f\x5f" "\x6a\x0e\x9f\x2a\x7a\x76\xc6\x13\xd7\xfa\x1f\x16\x60\x79\xb9\xf1\x5f\xf6" "\xeb\xd8\x04\x60\x10\x08\xc3\x28\x81\x94\xc9\x0e\x8e\xeb\x08\x8e\x6b\xe1" "\x09\x87\xa5\x5a\xbe\x07\x16\x56\xd7\xfe\x5f\x6c\xac\x1a\xff\xdd\xce\x3c" "\x95\x7a\xa1\x95\x77\x6c\xbe\x2f\xde\x7f\xf3\xd0\xe2\x49\xed\x02\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x53\x0f\x00\x00\xff\xff\x33\x6f\x60\xa1", 23969); syz_mount_image(/*fs=*/0x20005d80, /*dir=*/0x20005dc0, /*flags=*/0, /*opts=*/0x20000280, /*chdir=*/0, /*size=*/0x5da1, /*img=*/0x2000bb80); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); setup_cgroups(); const char* reason; (void)reason; for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); do_sandbox_none(); } } sleep(1000000); return 0; }