// https://syzkaller.appspot.com/bug?id=5f6cb0b5e1f2ef555dbb5d64450f78ffe7a3da0c // 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 #ifndef __NR_copy_file_range #define __NR_copy_file_range 285 #endif #ifndef __NR_dup #define __NR_dup 23 #endif #ifndef __NR_fcntl #define __NR_fcntl 25 #endif #ifndef __NR_memfd_create #define __NR_memfd_create 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif #ifndef __NR_openat #define __NR_openat 56 #endif #ifndef __NR_pwritev2 #define __NR_pwritev2 287 #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; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #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 int inject_fault(int nth) { int fd; fd = open("/proc/thread-self/fail-nth", O_RDWR); if (fd == -1) exit(1); char buf[16]; sprintf(buf, "%d", nth); if (write(fd, buf, strlen(buf)) != (ssize_t)strlen(buf)) exit(1); return fd; } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static const char* setup_fault() { int fd = open("/proc/self/make-it-fail", O_WRONLY); if (fd == -1) return "CONFIG_FAULT_INJECTION is not enabled"; close(fd); fd = open("/proc/thread-self/fail-nth", O_WRONLY); if (fd == -1) return "kernel does not have systematic fault injection support"; close(fd); static struct { const char* file; const char* val; bool fatal; } files[] = { {"/sys/kernel/debug/failslab/ignore-gfp-wait", "N", true}, {"/sys/kernel/debug/fail_futex/ignore-private", "N", false}, {"/sys/kernel/debug/fail_page_alloc/ignore-gfp-highmem", "N", false}, {"/sys/kernel/debug/fail_page_alloc/ignore-gfp-wait", "N", false}, {"/sys/kernel/debug/fail_page_alloc/min-order", "0", false}, }; unsigned i; for (i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].file, files[i].val)) { if (files[i].fatal) return "failed to write fault injection file"; } } return NULL; } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[2] = {0xffffffffffffffff, 0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x200000c0, "bcachefs\000", 9); memcpy((void*)0x20000240, "./file1\000", 8); memcpy( (void*)0x20008700, "\x78\x9c\xec\xdd\x6b\x90\x5c\x57\x7d\x20\xf0\x73\xbb\x7b\x34\xad\x19\x3d" "\x46\xb2\x89\x85\x8d\x47\x63\x63\x27\x8e\x09\x68\xe4\x57\xf1\x48\x05\x25" "\x9b\x40\xca\x26\x2e\x51\xa4\x08\xf2\x0a\xec\xb1\x35\x72\x04\x23\x59\xa5" "\x47\x6c\x0b\x27\xc8\x59\x9b\x45\x6b\x43\x41\x8a\x54\x62\x92\x0f\x0e\x65" "\xd8\x05\x14\xca\x55\xb0\xc1\x8a\x0b\xc7\xc6\x2b\x79\x79\xa9\xbc\x61\x5d" "\x5b\xe0\x5a\xd8\x35\x7c\x60\xcb\xf1\xa2\x02\xac\x75\x51\x2c\x93\xea\xee" "\x7b\x7a\xba\x6f\xf7\x9d\xdb\xd3\xd3\xa3\x07\xfe\xfd\x4a\x9a\xdb\xf7\xf4" "\xe9\xff\xf9\xdf\x7b\x4f\xdf\xee\x73\xfa\xce\x74\x00\x00\x00\xe0\x65\xe1" "\xd8\xbd\x7b\x4f\x5e\x7f\xfe\xef\x7d\xed\xcf\xa7\x5f\xfc\xc0\xef\xff\xe3" "\xce\xbb\xc3\x68\xb9\x5e\x5e\x8d\x15\xc6\xd2\xe5\x1d\xa7\x2b\x43\x4e\xa5" "\xe1\xca\xba\xfa\x32\xdb\x2f\x7e\xed\xfd\x9f\xfd\xc1\xc4\x2d\xbf\xf3\xd5" "\x87\x47\x3e\xf5\xd2\xd1\x6d\x17\x6d\xff\xce\xef\x9e\x73\xcb\xa3\xef\xbd" "\xf6\xc8\x03\x7f\xf3\xc4\x4f\x57\x7e\xf1\x17\xcf\x15\xc5\x8d\xfd\xe9\xf2" "\xb9\xf5\xe4\x85\x24\x84\xea\x97\x4f\xfc\xe5\x07\x8f\x7e\xfd\xbc\x5a\x59" "\xb2\xaa\xf6\xb3\x74\x30\x84\x35\xc9\xda\x27\xd6\x24\x99\x10\x93\x3f\x0b" "\x21\x6c\xab\xe5\x18\x42\x58\x97\xb9\xf3\x0b\x2f\x5e\xb9\xbd\xb6\xbc\xfb" "\xbe\xe1\xb6\xf2\xd5\x99\x7a\xfa\xfb\xcb\x5b\xed\x38\xd7\x3a\xd6\x81\x93" "\xb7\xbf\x26\x7c\xf7\xb7\xb7\xdc\xf3\xcd\xf5\x9f\xff\xfb\xa1\xc3\xcf\x1f" "\x9c\xab\x92\x54\x5b\xfa\x53\x08\xab\x6e\x6a\x7d\xfc\x50\x08\x61\x79\xfa" "\x3f\xa4\x7d\x31\xb4\xf4\xc7\xd8\x69\x37\x87\x10\x46\x5a\x1e\xf7\xfa\x82" "\xbc\x5e\xdd\x63\xfe\x1b\x72\xd6\x2f\x48\x97\xcb\xd2\xe5\x68\x41\x9c\x78" "\xff\xc5\x99\xf5\x52\xa6\x5e\x76\x3d\x1a\xca\x2c\x47\xda\xef\x7e\xeb\x48" "\x41\xfb\x0b\x95\x97\x47\x3f\xf5\xca\x3d\xd4\x59\x91\x59\xcf\x9e\x8c\x16" "\x2b\x2f\xcf\x58\xbe\x26\x5d\x7e\x29\x5d\x5e\xbe\xc0\xf8\xe5\x74\x1b\xca" "\x49\x28\x25\xa1\xd2\x4c\x7f\x26\x99\xeb\x23\xa1\xe5\xb8\x25\x21\xa9\x1f" "\xcb\x6a\x73\xbd\xd4\x3c\xb6\x21\xdd\xfe\xcc\x7a\x92\x59\x2f\x65\xd6\xcb" "\x43\x99\xed\xaa\xb7\x9b\x76\xb4\x72\x92\xb4\x97\xc7\x7a\x99\xf2\x78\x3a" "\xae\xa4\xe5\x17\xb5\x9e\xab\xbb\x78\x47\x4e\xf9\x2b\xd3\x65\x35\x7d\xa2" "\xbe\x14\xd7\x43\xf6\x46\xc3\x68\xc7\x8d\xe6\x76\xd5\xc5\xbc\x4e\xcc\x93" "\xcb\xa9\x50\x6a\x39\x07\x75\x2b\x6f\x1e\xf8\xf4\x60\x8c\xa6\x65\xa3\xc9" "\xda\x8e\xc7\xcc\x76\x11\xef\x3b\xba\xe5\xfe\x4b\xcb\x5b\xbf\x72\x6c\x2c" "\x27\x8f\xe4\xe1\x24\x8d\x9f\xf4\x15\xff\xc0\x37\xd6\xac\x78\xcf\xe7\x0e" "\xed\xcf\xbe\xae\x37\xe3\xdf\x54\x4a\xe3\x97\xfa\x8a\xff\xbd\xeb\x8e\xff" "\xe8\x86\x43\x9f\xfc\x44\x6e\xfc\x8f\xc6\xf8\xe5\xbe\xe2\x5f\xf1\xd8\xc8" "\x0b\xd7\x3d\x79\xef\xc5\xb9\xfb\xe7\x44\x12\x6a\x5d\x78\x34\x54\xfa\x8a" "\x3f\xf5\xdc\x53\x1f\x5e\x7f\xee\xcd\x87\x73\xf3\x7f\x30\xee\xff\x6a\x5f" "\xf1\x37\x1d\x39\x3e\xbc\xf2\xe4\x63\x8f\xe7\xe6\x3f\x19\xf7\xcf\xf2\xbe" "\xe2\x3f\xfb\xa6\xb7\x7c\xff\x33\xcf\x3c\xf2\x7c\x6e\xfc\x10\xe3\x8f\xf4" "\x15\x7f\xeb\x91\xdd\x1f\x19\x1e\x3f\x79\x59\x6e\xfc\xc7\xe3\xfe\x19\xed" "\xaf\xff\xfc\xe4\xf0\x35\xdf\x1e\x1f\xff\xe1\x44\x5e\xfc\xa7\x63\xfc\x95" "\x7d\xc5\xff\xf4\xc1\x07\xde\xf8\xd0\xea\xfb\xae\xcd\x3d\xbe\x9b\xe3\xfe" "\x19\xeb\x2b\xfe\xdb\x2e\x79\xf4\x9e\x15\x27\x1f\xb9\x30\xef\xdc\x99\x3c" "\xd8\xeb\x2b\x2c\x00\xdd\x9c\x93\xbe\xc7\xfa\x50\xba\xde\xef\x38\x73\xb1" "\x5a\xc6\x0b\x7f\x3d\x51\x69\xbc\xe7\x5b\x91\xfe\x5f\x39\xc8\x86\x32\x6f" "\x3e\x6b\xed\xac\x1a\x64\x7c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x08\x21\xbc\xe2\x35\xff\xf5\xad\xff\xfb" "\x9d\x63\x2f\x54\xd2\xf5\xe1\xf4\xc6\xb3\xa5\xc6\x32\x96\x2f\x0b\x21\x59" "\x1e\x42\xd8\xbb\x6f\x6a\xcf\xbe\x1d\xbb\x6e\x9d\x78\xef\x6d\xfb\xf7\xec" "\x9a\x9a\x99\x98\xda\x37\x31\xbd\x6b\xdf\x9e\x3b\x27\xae\xfa\x8d\x89\x3d" "\xd3\xbb\x67\xa6\xee\xac\xdd\x3b\xf9\xda\x2b\x1b\x8f\x5b\x1b\x92\xc6\x32" "\xb9\xb0\xa3\xed\xe1\xd9\xd9\xd9\xd2\x58\x7b\x59\x6c\xef\xdf\x5c\x72\xf8" "\xbb\x97\xbe\xfe\xff\xfc\x4b\x08\x93\xaf\xf8\xd6\x78\x25\x37\xff\x0d\x0f" "\xec\x7c\xe8\xdc\x2e\x3f\x33\x92\x4d\xb3\x6f\xde\xb9\xff\xfa\x6f\x5d\xfd" "\x77\xe9\x76\x8d\xa5\x79\x8d\x75\xc9\x6b\x76\x76\x76\x36\xe4\xe4\xf5\x7f" "\xdf\xf5\xf3\x87\xfe\xe2\xc4\x0f\x2e\x0b\x61\xf2\x57\xe6\xcb\xeb\xa9\x67" "\x7f\xeb\x9f\xda\x12\xaa\x17\xcc\xc5\x49\x95\x86\x43\x23\xa1\xe1\x64\xa4" "\x6b\x1e\xb3\xb3\x69\xd6\x69\x3e\x71\x7f\x55\xb6\xef\x98\x99\x9e\x9c\x7f" "\xff\xd6\x1e\x5d\xce\xd9\x8e\x7f\xfb\xfe\xe7\x7f\xb6\xfd\x8e\x8f\xfd\xbc" "\xb1\x7f\xab\xb9\xdb\xd1\xe3\xfe\x5d\xbe\x69\x76\xa6\xf4\x57\x5b\xde\xf6" "\xff\xff\xea\xae\x46\x41\x51\x5e\xa7\xeb\xb8\x17\xed\xef\xb8\x15\x31\xbf" "\xb8\xff\xaa\xdb\x77\xcc\xd4\xb2\x59\x95\x6e\xd7\xaa\x9c\xed\xaa\xe4\x6c" "\xd7\xbd\xdf\x7c\xfc\x99\x2f\x9f\x7f\x28\x7f\x47\x17\x6c\xd7\x50\xda\x01" "\x86\x92\x57\xf6\xd4\x6e\xdc\xba\x91\x64\x4d\x5b\x79\x35\xad\x1f\x13\x89" "\x8f\xdb\xb0\x6f\xe7\xee\x0d\x7b\xef\x3c\xf0\xda\x1d\x3b\xa7\x6e\x9d\xbe" "\x75\x7a\xd7\x1b\x36\x5e\xb5\xf1\x9a\xc9\xab\xaf\xb9\x7a\x43\xbd\xa7\x6d" "\x48\xfb\xdb\x22\xb7\xff\xa7\x07\xc3\x64\xe5\x27\xeb\x47\x42\x6c\xff\x57" "\x7b\xdc\xfe\x41\xf4\xa7\xe4\x44\xe3\x19\xd5\x11\xa0\xd9\xee\xea\x3f\x39" "\xf8\xa5\xf8\xb3\xb7\xfe\xd4\x9e\xd7\xb2\x05\xef\x8f\x5a\x5e\xc5\xfb\xa3" "\x35\xa3\xbc\xe7\xdf\xc8\x3b\x3e\xf8\xf1\x37\x3c\xf0\xe4\xf5\x8d\x82\xa2" "\x7e\x1e\x6b\x37\xcf\x27\xe9\x72\xa4\x76\x9c\x37\x86\x96\xfe\xd6\xb9\xaf" "\xba\x6d\x57\xd1\xf1\x09\x21\x4c\x74\xdb\x0f\x3f\xfa\xe9\xb5\xe1\xbc\xff" "\xb1\xe3\x9e\xa2\xf3\x50\xeb\x91\x69\xfd\x99\x91\x6c\x9a\xfd\xfa\xc5\x3f" "\xfe\xbb\xd7\xff\xed\xba\xdf\x6c\x14\x9c\x92\xf3\x7c\x6b\x42\x7d\x9e\xe7" "\x9b\x59\xcf\xe5\x53\xdf\x5f\xd5\xf4\x78\xcc\x9e\xa1\xfb\x77\x38\x94\xd3" "\xed\x1a\xed\x9a\xd7\xc6\xaf\x3f\x39\x74\xff\xb1\x7f\xf9\xd3\x66\x7e\xcb" "\x96\x85\x3b\xa6\xf6\xed\xdb\xb3\xb1\xf1\x73\x45\x9a\xe9\x8a\xe4\x82\xae" "\x79\x65\x4b\xe3\x76\xad\xaf\xff\x2c\x87\x74\xb7\x84\x66\x37\xed\xd2\x5f" "\x6b\x86\x42\x23\xbf\xec\xf9\x33\x56\xcf\xee\xd5\xd1\xf4\xbe\xd1\x64\x6d" "\xd7\xed\xca\x8a\xf7\x1d\xdd\x72\xff\xa5\xe5\xad\x5f\x39\xd6\xb9\xa7\x7f" "\xb1\xaa\xde\xde\xc3\x8d\x16\x97\x87\x95\x8d\x65\xf2\xaa\xce\x64\xeb\xbb" "\x74\xa6\xbd\x2c\x29\x37\x13\xee\xd6\xfe\x99\xfa\xfc\x2b\xea\x1f\xe3\x6f" "\xfd\xdb\x2f\xbe\xf3\x8b\xff\x70\x55\x47\xff\xb8\xa2\xf1\xb3\x68\xbb\x92" "\x9c\xed\xfa\xfc\x33\x9f\xfe\xf8\xa7\x3e\xf6\xef\xff\x61\x70\xdb\xf5\xd6" "\xdf\x3a\x3e\xf6\xe3\xff\xf9\xc7\x97\x36\x0a\xce\xf8\xf3\x4a\xb9\x91\x48" "\x33\xeb\x34\x9f\xa4\xf5\xbc\x72\x45\x08\x45\xcf\xbf\xf5\xa1\xfb\x76\xe4" "\x3e\xff\x4a\xdd\xb7\xa7\xe8\xf9\x97\x6d\x67\xae\x7e\xf7\x78\x13\x99\xf5" "\xd1\x50\xee\xeb\xf9\x7a\xc5\x63\x23\x2f\x5c\xf7\xe4\xbd\x17\xe7\xf5\x90" "\xe4\xc4\x7c\xcf\xd7\xd6\x8d\xbd\xab\xed\x71\xe5\x82\xe7\xeb\x99\xd2\x7f" "\xb2\xcf\xaf\xa4\xd2\x9e\xc7\xd2\x3d\xbf\xda\x3a\x4a\xb2\x69\xf6\xab\x1f" "\x3a\xe7\xe0\x13\x1f\xd8\x7c\x7e\xa3\xa0\xb5\x5f\x67\xbb\x54\x2d\xaf\x66" "\xed\x6e\xfd\xfa\xca\x1e\xc6\x1f\x39\xdb\xf5\x4f\x37\x7c\x7b\xfc\xb6\x89" "\x7f\xf7\xdf\x07\x77\xde\xf8\xec\x6f\x7c\xe1\xc6\xef\x4c\x6d\xfa\xb3\x46" "\x41\xff\xc7\x3d\xe6\x32\x98\xe3\x5e\x4d\xf7\x6a\x35\xe7\xfd\x48\x33\xeb" "\x38\xee\x6c\xdd\xbf\xaf\xbb\xe5\xb6\x99\x6d\x8d\xf2\xa2\xfd\x7c\xfa\xde" "\xff\xa6\xcb\x82\xf1\x4f\x3c\x95\xec\xbd\xf3\xc0\xfb\xa6\x66\x66\xa6\xf7" "\xec\xed\x6d\xbb\x7a\x7d\x3d\x8d\xed\x64\xf7\x72\xbf\xaf\xa7\xf1\xec\xb6" "\xb6\x60\xbb\x4a\x1d\xdb\xb5\x74\x37\x7a\xd9\x5f\xbd\x3e\xdf\x62\xfe\xdb" "\xfa\xde\x5f\xed\xcf\xb7\xd1\x90\xf4\xf5\xba\x70\xe0\x1b\x6b\x56\xbc\xe7" "\x73\x87\xf6\x8f\x75\x3c\x2a\x6d\xe8\xa6\x52\x1a\xbf\xd4\x57\xfc\xef\x5d" "\x77\xfc\x47\x37\x1c\xfa\xe4\x27\x72\xe3\x7f\x34\xc6\xaf\xf4\x15\x7f\xea" "\xb9\xa7\x3e\xbc\xfe\xdc\x9b\x0f\xe7\xc6\x7f\x30\x49\xe3\x57\xfb\x8a\xbf" "\xe9\xc8\xf1\xe1\x95\x27\x1f\x7b\x3c\x37\xfe\x64\xcc\x7f\x79\x5f\xf1\x9f" "\x7d\xd3\x5b\xbe\xff\x99\x67\x1e\x79\x3e\x37\x7e\x88\xf1\x47\x17\x10\xff" "\xe0\xdc\xfe\xff\xc9\xe1\x6b\xbe\x3d\x3e\xfe\xc3\xdc\xf8\x4f\x27\x69\x3b" "\xb5\xf7\x48\x21\x7c\xe1\xc5\x2b\xb7\x37\xd6\x93\x30\x94\x3e\xdf\x62\x1e" "\x43\x6d\x79\x85\xec\x7a\x92\x59\x2f\x65\xd6\xcb\xad\xeb\xa5\x38\x8b\x90" "\x36\x50\x4e\x92\xf6\xf2\x58\x2f\x2d\xbf\xa8\x25\x97\x6e\xfe\x28\xa7\x3c" "\xbe\x0b\xab\xae\x6b\x2c\x5f\x8a\xeb\x21\x7b\x63\xfe\xf2\x33\x4d\xa9\xe5" "\xdc\xdf\xad\xbc\xe8\x7d\x2a\x00\xc0\x2f\xbb\xf8\xf9\x7f\x7c\x0f\x1a\x3f" "\xff\x9f\x4e\xdf\x28\xe5\xcf\x34\xc0\x9c\x85\x8d\xc3\x66\x3b\xc6\x61\xeb" "\x72\xe2\xc6\x71\xd8\xdc\x7c\x4e\xfb\x67\xac\xeb\xd2\xf8\xf1\xf1\x71\x1e" "\x70\xfc\x75\x61\xb2\xb6\xbc\x7b\xa2\xf1\x46\x7f\xa1\x9f\x23\xc4\xe7\x43" "\x76\x9e\x33\xb6\x73\xd9\xab\xdb\x63\x14\xce\x73\xce\xd6\xdb\xef\x98\xe7" "\x2c\x9a\x7f\xbf\x38\xb3\x1e\xf3\x6a\xcc\x97\x57\x5a\xc6\xa1\xa9\xce\x71" "\x4d\x25\xf4\x30\xff\xde\xd9\xce\xfc\xf3\xef\x99\xcd\x9f\xff\xf3\xac\x9a" "\x89\x0f\x75\xa4\x35\xd1\x32\x6f\x95\x3d\x7e\x43\xe9\x8c\x59\xb7\xeb\x1d" "\x32\xf9\x56\x6a\x11\xf2\xfa\x47\x76\x5e\x2c\x5e\xcf\x31\xbe\x2a\x6c\xae" "\xb7\xd7\x63\xff\xc8\x5e\x47\x13\x8f\x43\xf6\x3a\x9a\xd8\xce\xf9\x99\x13" "\x67\xbf\xd7\xd1\xe4\xf5\x8f\xb1\xce\xfd\xd0\x96\x57\xec\x1f\xb1\xde\x3c" "\xfd\xa3\x9e\x72\xe1\xf1\x0b\x9d\xc7\x2f\xcc\xb3\x7f\xe7\x8e\x5f\xf7\x68" "\xd9\xe3\xb7\x80\xe3\x5d\xad\xd5\x1f\xfc\xe7\xb3\x0d\xf1\xf3\xd9\x01\xcc" "\x1b\x76\x3d\xa5\x9d\xaa\x79\xc3\xd8\x0f\x96\xea\xf3\x30\xf3\x92\x39\xf1" "\xd3\x27\xd8\x99\x3e\x6f\x18\xcb\xe3\x76\x54\x7a\x9c\x4f\x7c\x67\x4e\xf9" "\xa0\xe6\x13\xe3\xe9\x22\xe6\x75\x62\x9e\x5c\x4e\x05\xf3\x89\xc0\x2f\xab" "\x38\xfe\x8f\xaf\x11\xb5\xf1\x7f\xed\x0d\xf8\xff\xcb\xd4\x2b\x1a\xa7\x64" "\xdf\x35\xc6\x78\xb9\xd7\x09\x95\xbb\xe7\x53\x34\xee\xe8\xbc\x4e\x6f\xa4" "\xaf\xd7\xf1\xad\x47\x76\x7f\x64\x78\xfc\xe4\x65\xb9\xef\x73\x1e\xef\xe1" "\x3a\xbd\xba\xdd\x6d\x6b\x23\x05\xd7\xfd\x14\xed\xc7\x4b\x33\xeb\x85\xfb" "\x31\x67\x82\xa6\x68\xbc\x97\x6d\xa7\x68\xbf\x67\xaf\xcb\x18\x0d\x2b\xfb" "\xda\xef\x9f\x3e\xf8\xc0\x1b\x1f\x5a\x7d\xdf\xb5\xb9\xfb\x7d\x73\xe3\x85" "\xb4\x78\xbf\x7f\xbc\x6d\x6d\x65\xc1\x7e\x3f\x0b\xc6\x0b\xdd\xe3\x9f\xb2" "\xeb\x0c\x16\x7f\xfd\x5c\xb7\xae\x63\xbc\xb0\x14\xd7\x31\x2c\x7c\xfe\xec" "\xb4\x8d\x47\xd2\x0b\x9f\x96\x6a\x3c\xf2\x87\x39\xe5\x0b\x1d\x8f\x8c\x74" "\xdc\x68\x6e\x57\xdd\x99\x3b\x1e\x99\x7b\x21\x6d\x1b\x8f\x0c\x9d\xda\xbc" "\x00\x80\xb3\x47\x1c\xff\x37\x3f\x3f\x4b\xc7\xff\xff\x2b\x56\x48\xdf\x47" "\x14\x8d\x5b\x2f\xcf\xac\xc7\x78\xb9\xe3\xd6\x9c\xf7\x27\x79\xe3\xd6\x3f" "\x48\x97\x77\x64\xea\x8f\xa6\xbf\x51\xb1\xd0\xf7\xcd\x6f\xbb\xe4\xd1\x7b" "\x56\x9c\x7c\xe4\xc2\xdc\x71\xdd\x83\xbd\x8e\x43\xff\x53\xdb\xda\x58\xe1" "\x38\xb4\x36\x6e\xae\xb4\x5c\xc9\xdf\x5b\xbe\x71\xdc\x9c\x3b\x8e\xd8\x3c" "\x98\xeb\xc5\x73\xc7\x11\xcd\x71\xd6\xe2\xc6\x89\xb9\xf9\x37\xc7\x89\x8b" "\x1b\xa7\xe7\x7c\x4c\xdb\x32\x4e\x5f\xdc\x38\x3a\x77\xff\x34\xc7\xd1\xed" "\xf3\x00\x1f\x3f\xde\x5b\xfc\x38\x0f\x90\x1b\xbf\x39\x0f\x30\xc0\x71\xee" "\x2f\xe6\x2a\x9d\xba\x71\x6e\xc1\x7c\x5d\xa6\xb1\xb8\xda\xeb\x7c\xdd\x69" "\x19\x47\xaf\x6a\xdf\xce\x25\x19\x47\xa7\xbf\x3e\xbb\x54\xe3\xe8\x77\xe4" "\x94\x2f\x74\x1c\x3d\x1a\xb7\x36\xf3\xeb\xbe\x67\xfe\x38\xba\xbd\xdc\x38" "\x1a\x00\xf8\x65\x15\xc7\xff\xf1\x6d\x5c\x1c\xff\x3f\x99\xa9\xb7\xd8\xcf" "\xd9\x73\xc7\x05\x03\x7a\xdf\x9e\xfd\x7b\x20\xcd\xf8\x4f\x2f\xc9\xb8\x72" "\x2e\xfe\x80\x3e\xff\x2d\x1e\xf7\x2d\xf5\xb8\x75\xa9\xc7\xf5\x7d\xce\x4b" "\x0c\x85\x1e\xe7\x25\xce\xf6\xcf\x7f\x17\x77\x3d\x45\xf1\xbc\xd0\x58\xfd" "\x0f\x78\x2e\xd5\x3c\xd9\x69\xfb\x7c\xf9\x4c\x19\x17\xa7\x8d\xe6\x8f\x8b" "\xb3\x37\x9a\xdb\x55\x67\x5c\x0c\x00\xc0\xa9\x10\xc7\xff\xcb\xd3\xf5\xfc" "\xf1\xff\xe2\xc6\x27\x1d\xe3\xb7\xa1\xc6\x5b\xc8\xb9\xf1\xc9\xd9\x37\x3e" "\x6f\xad\xf7\xb2\x1d\x9f\xf7\x7c\xdd\xc0\xd9\x3e\x3e\x3f\xdb\xe7\xbf\x96" "\xf6\x3a\x99\x97\xfd\xf8\x3f\xae\xa7\xab\xb3\xc6\xff\x00\x00\x9c\x81\xe2" "\xf8\x3f\xfe\xda\x63\xfc\xfb\x7f\xff\x25\x5d\xcf\xfe\xdd\xfa\xb3\x71\x9c" "\x1e\x7c\x8e\x6e\x9c\x1e\x42\xf8\x54\x97\x76\xe2\x7d\x67\xce\x38\x7d\xc0" "\xf3\x6c\x31\x7e\xeb\x75\x00\xe6\x01\x4e\xed\xf5\xf1\xcb\xe7\xea\x9b\x07" "\x00\x00\xe0\x74\x18\xaa\x8f\x94\x3a\x7f\xcf\xfe\xdd\xe9\x32\xfb\x7b\xf6" "\x79\xbf\x97\x7f\x43\x4e\xfd\x5e\x55\xd2\xb7\xc7\x37\xef\xdb\x33\x3d\x7d" "\xe3\xfe\xdd\xdb\xa6\xf6\x4d\xdf\xb8\xeb\xb6\x6d\xd3\x7b\x6f\xbc\x7d\xcf" "\x8e\x7d\xfb\xa6\x77\x35\xea\x2d\x76\xdc\x98\x3b\x6e\x09\xf1\xef\x25\x57" "\xd2\xfd\xd1\xbd\x5e\x76\xdc\xb6\x3a\xfd\x7b\x08\xab\x73\xfe\x1e\x42\xb6" "\x7e\x0c\x7b\x41\xfd\x46\xe7\xdf\x43\xc8\x36\xbb\xbc\xe0\xef\x08\xcc\x1d" "\xbf\xde\xf2\xcd\x3b\x7e\xa5\x79\xea\x77\xeb\x1f\x79\xc7\x3b\x2f\xfe\x1f" "\xe5\xd4\x8f\x9a\xc7\xff\x96\x3f\xbe\xe2\xc6\xed\x7b\x6f\xdc\xb1\x6b\xc7" "\xbe\x1d\x53\x33\x3b\x0e\x4c\xb7\xd7\xab\x8d\x5a\x47\x16\xf0\xbd\x99\x49" "\xfa\x7f\x41\xdf\x97\xfa\xd4\xb3\xff\xe1\x58\x08\x8d\x5b\xf5\x6f\xcd\xcc" "\x28\x2d\xfc\xfb\x3b\xe3\xe1\x59\x60\x1e\x6d\x3f\x3a\xfe\xb8\x70\xa9\xb6" "\xbf\x93\xdc\xe3\x5f\xcb\x23\xc9\xe4\xb1\x26\xcd\x64\x4d\xde\xf7\x1f\xe4" "\xe4\xfd\xb5\xff\xf6\x17\x7f\x72\xc9\xec\xcf\x3f\x13\xc2\xe4\x2b\xca\xaf" "\x5a\x68\xde\xed\x21\x37\xcd\xfe\xe7\x77\x4d\xff\xc1\xbe\x63\xdf\xda\x5d" "\xcb\xbf\x34\x6f\xfe\xcd\x9a\x69\x5e\x45\xdf\x57\x9a\xad\x1f\xb7\xa7\x32" "\x73\xdb\xde\x7d\xaf\xd9\x7e\xdb\xfe\x5d\xd9\x6f\x94\xec\x4f\x9c\xcf\x28" "\x35\xd7\x97\x68\x3e\x23\x7d\xfa\x97\x7b\x9c\x9f\xd8\x9a\x53\xbe\xd0\xdf" "\xdf\x2f\x77\xdc\x38\x33\xf5\x3c\x3f\x01\x00\x40\x9b\xf8\xf9\x7f\x7c\x3f" "\x1b\x3f\x3f\xfc\x58\xfa\x06\x2a\x96\xf7\x3e\x4e\x6f\xbc\x71\xec\xf7\xf3" "\xe3\xdc\x71\xfa\x64\x6f\xe3\xf4\xec\xf7\x92\x15\x8d\xd3\xb3\xf5\xe3\xf6" "\xf6\x3a\x4e\xaf\x2e\x72\x9c\x9e\x6d\xbf\x68\x9c\xde\xad\x7e\xb7\x71\x7a" "\xde\xb8\x3b\x2f\xfe\x1f\xe6\xd4\x5f\xa8\xde\xfb\x49\x1f\xd7\x79\xc4\xe1" "\xe7\xe7\x0e\xed\xcf\xed\x27\x37\xf5\xd6\x4f\xb2\xdf\x67\x50\xd4\x4f\xb2" "\xf5\x17\xda\x4f\x92\x45\xf6\x93\x6c\xfb\x45\xfd\xa4\x5b\xfd\x6e\xfd\x24" "\xef\xb8\xe7\xc5\x7f\x7b\x4e\xfd\x3c\x45\xfd\xa1\xd2\xec\x0f\x99\xeb\x72" "\x5a\x06\xc5\xf3\x9d\x37\xe2\x75\x39\xb9\xfd\xe1\xa3\xbd\xf5\x87\x5f\xcf" "\xac\x17\xf5\x87\x6c\xfd\x85\xf6\x87\xd2\x22\xfb\x43\xb6\xfd\xa2\xfe\xd0" "\xad\x7e\xb7\xfe\x90\x77\x7c\xf3\xe2\x5f\x9f\x53\xbf\x57\xed\xfd\xa3\xd6" "\x31\xea\xfd\x62\xfa\xc6\xdb\x6f\xdb\xf3\xbe\x96\x7a\x4b\xfd\xfd\x17\xa1" "\xf3\x92\x8c\x5e\xf2\x5b\x36\xf7\xd8\x05\x9d\xcf\x9a\xf7\xf5\xfa\xfd\x1f" "\xfd\xea\x7d\xff\x2e\xed\x75\x5f\x8b\xcf\x3f\x84\x4d\xf5\x92\xbc\xfc\x97" "\xf6\xba\xb2\xc5\xe7\x5f\xb4\xff\x17\x70\x5d\xd9\xaa\xd0\x71\x5d\x59\x6e" "\xfe\x4f\x2f\x6e\x26\xac\xf7\xfc\x97\xf6\xfb\x5d\x32\xf2\xaa\x77\x3e\xfe" "\x54\xcd\xd7\xa6\x67\x82\xa2\xeb\xcf\x8a\xe6\x71\xb7\xe4\x94\x2f\x74\x1e" "\x77\x59\xc7\x8d\x33\x93\x79\x5c\x38\x7d\xe2\xf8\x3f\x7e\xdc\x13\xc7\xff" "\xf7\xa5\xcb\x41\x7f\x0c\x74\xf6\x7f\x4f\x9a\xef\x31\xeb\x1a\x7f\x40\xdf" "\x63\x56\xf4\x3e\xe6\x65\xf7\x7a\x9e\xfd\xc8\xdd\xeb\x39\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\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\xd9\x6f\x38" "\x84\xe1\xca\xba\xfa\xcd\x63\xf7\xee\x3d\x79\xfd\xf9\xbf\xf7\xb5\x3f\x9f" "\x7e\xf1\x03\xbf\xff\x8f\x3b\xef\xfe\xb5\xf7\x7f\xf6\x07\x13\xb7\xfc\xce" "\x57\x1f\x1e\xf9\xd4\x4b\x47\xb7\x5d\xb4\xfd\x3b\xbf\x7b\xce\x2d\x8f\xbe" "\xf7\xda\x23\x0f\xfc\xcd\x13\x3f\x5d\xf9\xc5\x5f\x3c\x57\x18\x7b\xac\xfe" "\xb3\x72\x79\xba\x5a\x0d\x21\x79\x21\x09\xa1\xfa\xe5\x13\x7f\xf9\xc1\xa3" "\x5f\x3f\xaf\x56\x96\x84\x10\xca\xc9\xd8\xc1\x10\xd6\x24\x6b\x9f\x58\x93" "\x64\x22\x4c\xfe\x2c\x84\xb0\x2d\xa6\x5a\x69\xbf\xf3\x0b\x2f\x5e\xb9\xbd" "\xb6\xbc\xfb\xbe\xe1\xb6\xf2\xd5\x99\x20\xd9\xed\x0a\xa3\xe5\x98\x4f\x6b" "\x9e\x21\xdc\x51\xb8\x45\x9c\x85\xaa\x69\x3f\x3b\x70\xf2\xf6\xd7\x84\xef" "\xfe\xf6\x96\x7b\xbe\xb9\xfe\xf3\x7f\x3f\x74\xf8\xf9\x83\x73\x55\x92\x6a" "\x4b\x7f\x0a\x61\xd5\x4d\xad\x8f\x1f\x0a\x21\x2c\x4f\xff\x87\xc6\x53\xa6" "\x6e\x5d\x7c\x70\xba\xdc\x1c\x42\x18\x69\x79\xdc\xeb\x0b\xf2\x7a\x75\x8f" "\xf9\x6f\xc8\x59\xbf\x20\x5d\x2e\x4b\x97\xa3\x05\x71\xe2\xfd\x17\x67\xd6" "\x4b\x99\x7a\xd9\xf5\x68\x28\xb3\x1c\x29\x68\x6f\xb1\xf2\xf2\xe8\xb7\x5e" "\x91\x15\x99\xf5\xec\xc9\x28\x4f\xaf\xf5\xf2\xf2\x8c\xe5\x6b\xd2\xe5\x97" "\xd2\xe5\xe5\x3d\xc6\x8d\xca\xf1\x7f\x12\x4a\x49\xa8\x34\xd3\x9a\x49\xe6" "\xfa\x48\x68\x39\x6e\x49\x48\xea\xc7\xb2\xda\x5c\x2f\x35\x8f\x6d\x48\xb7" "\x2b\xb3\x9e\x64\xd6\x4b\x99\xf5\xf2\x50\x66\xbb\xea\xed\xa6\x1d\xad\x9c" "\x24\xed\xe5\xb1\x5e\xa6\x3c\x9e\x8e\x2b\x69\xf9\x45\xad\xe7\xea\x2e\xde" "\x91\x53\xfe\xca\x74\x59\x4d\x9f\xa8\x2f\xc5\xf5\x90\xbd\xd1\x30\xda\x71" "\xa3\xb9\x5d\x75\x31\xaf\x13\xf3\xe4\x92\xfa\x8f\xc5\x55\xfa\x57\x6a\x39" "\x07\x75\x2b\x6f\x1e\xf8\xf4\x60\x8c\xa6\x65\xa3\xc9\xda\x8e\xc7\xcc\x76" "\x51\x2b\xaf\x9d\x00\x8f\x6e\xb9\xff\xd2\xf2\xd6\xaf\x1c\x1b\xcb\xc9\x23" "\x79\x38\x49\xe3\x27\x0b\x8e\x5f\x73\xe0\x1b\x6b\x56\xbc\xe7\x73\x87\xf6" "\xaf\xcb\x8b\x7f\x53\x29\x8d\x5f\xea\x2b\xfe\xf7\xae\x3b\xfe\xa3\x1b\x0e" "\x7d\xf2\x13\xb9\xf1\x3f\x1a\xe3\x97\xfb\x8a\x7f\xc5\x63\x23\x2f\x5c\xf7" "\xe4\xbd\x17\xe7\xee\x9f\x13\x71\xff\x54\xfa\x8a\x3f\xf5\xdc\x53\x1f\x5e" "\x7f\xee\xcd\x87\x73\xf3\x7f\x30\xc6\xaf\xf6\x15\x7f\xd3\x91\xe3\xc3\x2b" "\x4f\x3e\xf6\x78\x6e\xfe\x93\x71\xff\x2c\xef\x2b\xfe\xb3\x6f\x7a\xcb\xf7" "\x3f\xf3\xcc\x23\xcf\xe7\xc6\x0f\x31\xfe\x48\x5f\xf1\xb7\x1e\xd9\xfd\x91" "\xe1\xf1\x93\x97\xe5\xc6\x7f\x3c\xee\x9f\xd1\xfe\xfa\xcf\x4f\x0e\x5f\xf3" "\xed\xf1\xf1\x1f\x4e\xe4\xc5\x7f\x3a\xc6\x5f\xd9\x57\xfc\x4f\x1f\x7c\xe0" "\x8d\x0f\xad\xbe\xef\xda\xdc\xe3\xbb\x39\xee\x9f\xb1\xbe\xe2\xbf\xed\x92" "\x47\xef\x59\x71\xf2\x91\x0b\xf3\xce\x9d\xc9\x83\x83\x7a\xe5\x04\x78\x79" "\x3a\x27\x7d\x8f\xf5\xa1\x74\xbd\xdf\x71\x66\x1f\x5e\x5c\xd5\xb2\xd2\x32" "\x5e\xf8\xeb\x89\x4a\xe3\x3d\xdf\x8a\xf4\xff\xca\x45\x36\x34\x9f\x5a\x3b" "\xab\x96\x30\x3e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xbf\x9c\xfe\xf9\xae\xab\xde\xfd\xae" "\x37\xbf\x7d\x4b\x25\x09\x21\xc9\xa9\x33\xdb\x45\xbc\xaf\xbc\x6c\xd3\xa6" "\x89\x3e\xda\x9d\x7a\xee\xa9\x0f\xaf\x3f\xf7\xe6\xc3\xad\x65\xeb\xfa\x88" "\x03\x00\x00\x00\x14\x8b\xe3\xf0\x52\xb3\xa4\x1a\xd6\x85\xdb\x93\xe5\xe1" "\x82\xae\xf5\xe3\x1c\xc1\x05\x71\x2d\x69\x2f\xcf\xce\x21\xc4\x38\xd9\x39" "\x82\x7e\xe3\x94\xba\xc4\x29\xf5\x11\xa7\x3c\xa0\x7c\x2a\x03\x8a\x33\x34" "\xa0\x38\xcb\x06\x14\x67\x78\x40\x71\xaa\x05\x71\xaa\xa1\xb7\x38\xcb\xe7" "\x89\x53\xa9\xf5\x80\x1e\xf3\x19\x99\x37\x9f\xde\xe3\x8c\x0e\x28\xce\x8a" "\x01\xc5\x59\x39\xa0\x38\xab\x06\x14\x67\xf5\x80\xe2\x8c\xcd\x1b\xa7\xf7" "\x7e\xb8\x66\x40\x71\xd6\x0e\x28\xce\x39\x03\x8a\x73\xee\x80\xe2\xbc\xa2" "\x6b\x9c\xd2\x82\xe3\xfc\xca\x80\xf2\x39\x6f\x40\x71\xb2\x73\xca\x0b\xed" "\x87\x2b\xd3\x9a\xe7\xe7\xc5\xa9\xdf\x28\x17\xc6\xa9\x24\xe5\xe6\x1d\xdd" "\xe6\xd3\xcf\x4b\xdb\xb9\x70\x91\xed\x8c\xce\xdb\x4e\x75\x76\x65\xd1\xeb" "\x71\x8f\xed\x2c\x2f\xd8\x9e\xd8\xce\xab\x33\x8f\x2b\x2d\xb0\x9d\x6a\x8f" "\xed\xfc\x6a\x68\x7f\x91\x58\x68\x3b\x49\x8f\xed\xfc\xfa\x22\xb7\xa7\x54" "\xd0\x4e\xec\xb7\x77\x64\xf3\x8b\xed\xc4\xb5\x1e\xfb\xff\x9d\x03\x8a\x73" "\x60\x40\x71\xde\x3f\xa0\x38\x77\x0d\x28\xce\x9f\x0e\x28\xce\x9f\x0d\x28" "\xce\x07\xfa\x89\x93\x7d\xb3\x06\xd0\x83\x38\xfe\x9f\x3b\x85\x8c\x85\xe1" "\xca\x6f\x86\x91\xf4\x8c\x93\x9d\x05\x88\xe3\xdd\xf5\xf5\x9f\x9d\xaf\x77" "\x1d\x27\xb6\x54\x8c\xf7\xaa\x4c\xf9\xb2\xa2\x78\xd9\x81\x7a\x26\xde\xfa" "\x85\xe6\x97\x9d\x40\xc8\xc4\xbb\x38\x53\x3e\xd4\x16\xaf\xd2\x1c\x8f\xcc" "\x13\xaf\xda\x1a\xef\xd2\xd6\x7b\xca\xf3\x6f\xef\x9b\x36\x75\xcf\xad\x35" "\xde\xe5\x99\xf2\xe1\x79\xe2\xb5\x6d\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x9c\x02\xff\x7c\xd7\x55\xef\x7e\xd7\x9b\xdf\xbe\x25\x24\xa1\xf6" "\xaf\xab\xd9\x2e\xe2\x7d\xe5\x65\x9b\x36\x4d\xf4\xd1\xee\xd1\x2d\xf7\x5f" "\x5a\xde\xfa\x95\x63\xad\x65\xc3\x95\x3e\x02\x01\x00\x00\x00\x85\xe2\x38" "\x7c\xa8\x59\x52\x0d\xc3\x95\x8d\x61\x38\x59\xd6\x56\xaf\x9a\xce\x03\x54" "\xd3\xf5\xf2\x58\x63\x39\xbe\x2a\x6c\xae\x2d\x93\x89\x52\x7d\x7d\x24\x59" "\x33\xef\xe3\x2a\xe9\xe3\x36\xec\xdb\xb9\x7b\xc3\xde\x3b\x0f\xbc\x76\xc7" "\xce\xa9\x5b\xa7\x6f\x9d\xde\xf5\x86\x8d\x57\x6d\xbc\x66\xf2\xea\x6b\xae" "\xde\xb0\x7d\xc7\xcc\xf4\x64\xe3\x67\x08\xc3\x05\xf1\x42\x08\xf5\xe9\x87" "\xbd\x77\x1e\x78\xdf\xd4\xcc\xcc\xf4\x9e\xbd\x8d\xc2\x6c\xfe\xeb\xd2\xc7" "\xad\x4b\xd7\x93\xf4\x71\xe3\xaf\x0b\x93\xb5\xe5\xdd\x69\xfe\x6b\x0b\xda" "\x2b\x75\xb4\xb7\x74\x37\x8a\x8f\x1e\x00\x00\x00\x00\x00\x00\x00\xf0\xaf" "\xec\xda\x7f\x88\xa4\x75\x19\x00\xf0\xe7\x9d\x99\x9d\x19\x57\x2f\x37\xfc" "\x35\x1e\xde\x3a\x9c\xa7\x58\x59\xa9\xad\xa1\x25\xee\x0b\x41\x82\x3f\x0e" "\x17\x21\x66\xad\x4d\x8e\x3c\x49\x5a\xbd\x43\xef\xc4\x6c\xd2\x83\xd4\x94" "\x22\x50\x0e\x8e\x0b\x83\x2e\x54\xd2\xa4\x7f\xfc\x91\x12\xf9\x83\x03\xc3" "\xac\x83\xf6\x92\x50\x29\x83\xfa\xa3\xd0\x32\x54\xfc\x23\x94\x89\xdd\x99" "\x77\x76\x66\x76\xc6\x59\x07\xf3\xee\xec\xf3\xf9\xe3\x7d\xdf\x79\xbe\xcf" "\xf7\xfb\xbc\xdf\x77\x61\xe1\x79\x67\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x0f\xd6" "\x42\x7d\x6a\xae\x36\x3d\x33\x3b\x9e\x44\x24\x03\x72\x1a\x7d\x64\x63\xf9" "\x62\x9a\x56\x47\xa8\xfb\x95\xc7\xb7\xfe\xa0\x34\xf9\xd6\xa9\x9d\xb1\x52" "\x61\x84\x85\x00\x00\x00\x80\xa1\xb2\x3e\x7c\xac\x1d\x29\x47\xa9\x90\x8f" "\x7c\x1c\xbf\xf4\x69\x7d\x74\x0c\xc4\x72\xdf\x0f\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\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\xff\x59\xa8\x4f\xcd\xd5\xa6\x67\x66" "\x0f\x4f\x22\x92\x01\x39\x8d\x3e\xb2\xb1\x7c\x31\x4d\xab\x23\xd4\x7d\xf9" "\x8d\x07\x3f\xfb\xc2\xe4\xe4\xdf\x3b\x63\x95\x11\xd6\x01\x00\x00\x00\x86" "\xcb\xfa\xf0\x5c\x3b\x52\x8e\x4a\x9c\x14\x63\xc9\xf1\x8b\x9d\x7f\x3b\x9a" "\xbd\x1b\x58\xdb\x33\xbf\x99\xb7\x2c\x5b\x67\xdd\x2a\xf3\x7a\xdf\x1d\x0c" "\xca\x3b\x69\x95\x79\xa7\xac\x32\xef\x63\x43\xf2\x36\xb6\xce\x37\x04\x00" "\x00\x00\x1c\xfa\xb2\xfe\xbf\xd0\x8e\x4c\x44\xa9\xb0\x66\x45\x3f\x9c\xf5" "\xff\xc3\xfa\xfa\x2c\xef\xc4\x9e\xbc\x7c\xeb\xbc\xfa\xdf\x0a\x14\x57\x9d" "\x09\x00\x00\x00\xbc\xbb\xac\xff\x2f\xb5\x23\x95\x28\x15\x2a\xed\x7e\x7d" "\xb5\xfd\xfe\xfa\x9e\xbc\x6c\xfe\xb0\xef\xed\xb3\xf9\x27\x0f\x98\x3f\xec" "\xfb\xfc\x8b\x5b\x67\xdf\xd3\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\xc0\xa1\x63\xa1" "\x3e\x35\x57\x9b\x9e\x99\xcd\x27\x11\xc9\x80\x9c\x46\x1f\xd9\x58\xbe\x98" "\xa6\xd5\x11\xea\x9e\xf9\xc4\xf8\x3f\x2f\xdc\x7b\xeb\xfa\xce\x58\xa9\x30" "\xc2\x42\x00\x00\x00\xc0\x50\x59\x1f\xbe\xdc\x7a\x97\xa3\x54\x18\x8f\xb1" "\x38\x7c\xa9\xef\x9f\x3c\xff\xee\x87\xbf\xf4\xf0\xa3\x53\x11\xd1\x6c\xf3" "\x8b\xc5\xb8\x61\xd3\xb6\x6d\xd7\x9e\xd9\x3c\x66\x79\x67\x3c\xb7\x77\xec" "\xfb\xcf\xbc\xfa\xed\x15\x79\x67\x34\x8f\x07\x6c\x83\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xfb\x66\xa1\x3e\x35\x57\x9b\x9e" "\x99\x3d\x2c\x89\x48\x06\xe4\x34\xfa\xc8\xc6\xf2\xc5\x34\xad\x8e\x50\xf7" "\xa5\xcf\x7f\xf1\xaf\xf7\x3f\xff\xd8\x2b\x9d\xb1\xca\x08\xeb\x00\x00\x00" "\x00\xc3\x65\x7d\xf8\x72\xef\x5f\x8e\x4a\x14\xa3\x18\xc7\x2e\x7d\xea\xec" "\xf5\x17\xe5\x7a\xe6\x0f\x7a\x67\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x7c\x78\x5c\xf7\xcd\x1b\xbf\xb1\x69\x7e\x7e\xf3" "\xb5\x87\xf8\x45\x21\x22\x0e\x82\xdb\x78\xef\x17\x8d\x7c\xc4\xff\xbc\x56" "\xa1\xf5\xd7\x3e\x38\xb6\xec\xe2\x50\xb8\x38\xc0\xff\x98\x00\x00\x80\xf7" "\xdd\x89\x91\x44\xe3\x3d\x3a\xee\x92\x03\x7d\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\xc0\xc1\x60\xa1\x3e\x35\x57\x9b\x9e\x99" "\x2d\x27\x11\xc9\x80\x9c\x46\x1f\xd9\x58\xbe\x98\xa6\xd5\x11\xea\xa6\x8f" "\xef\xfb\x51\x6f\xac\x32\xc2\x3a\x00\x00\x00\xc0\x70\xe9\xe3\xfb\x4a\x6b" "\xde\x7a\xe2\xa9\xe5\xde\xbf\x1c\x95\x18\x8b\xb1\x38\x66\xe9\x53\xbf\x77" "\x02\x4b\xfd\xff\xc4\x07\x78\x93\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x41\x65\xa1\x3e\x35\x57\x9b\x9e\x99\x5d\x93\x44" "\x24\x03\x72\x1a\x7d\x64\x63\xf9\x62\x9a\x56\x47\xa8\x7b\xdf\x8e\xdd\x9f" "\xbb\xe7\xc8\xef\x5d\xd0\x19\x2b\x15\x46\x58\x08\x00\x00\x00\x18\x2a\xeb" "\xc3\x8b\xed\x48\x39\x4a\x85\x8f\x47\x29\x4e\x68\x7d\x9e\xef\x9e\x90\xe4" "\x5b\xe7\xfe\xef\x05\x96\xe7\x6d\xed\x9a\x36\xbe\xea\x79\xf5\xae\x79\xf9" "\x55\xcf\xbb\xbd\x67\x67\x85\xd6\x6e\x9a\xf3\xca\xd9\x7a\x13\xcd\x73\x7b" "\x5e\x75\x79\x5e\xae\x35\xaf\xda\x31\xaf\x12\xed\xf2\xf1\x97\x46\xa3\x39" "\x6f\xe9\x61\xed\xec\xaa\xb6\x66\xc8\x7d\xf6\x79\xf4\x00\x00\x00\xf0\x81" "\xc9\xfa\xff\x52\x3b\x32\x11\xa5\x42\xa9\xa3\xff\xff\x69\x57\xfe\x84\x3e" "\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\xe8\xe7\xde\x88\x85\xfa\xd4" "\x5c\x6d\x7a\x66\x36\x49\x22\x92\x01\x69\x8d\x3e\xb2\xb1\x7c\x31\x4d\xab" "\x23\x94\xbe\xf1\xb7\x1f\x3d\xe2\xab\x3f\xbb\x63\x7b\x67\xac\x32\xc2\x3a" "\x00\x00\x00\xc0\x70\x59\x1f\xbe\xdc\xfb\x97\xa3\x12\xeb\xe2\x23\xb1\x6e" "\xa9\xef\x8f\x89\xee\xfc\x2c\xef\x5f\xb5\xb7\xef\xb9\xeb\xdf\x7f\x3b\x35" "\xe2\xf4\x63\xf7\x4f\x16\x7a\x97\xfd\x71\x76\xf1\xeb\x97\xce\x7b\xb2\xf7" "\x10\x91\xeb\xce\xce\x45\x1c\xd9\xaa\x97\x0c\xa8\xf7\x9b\xdf\xdf\x75\xfd" "\x86\xc6\xdb\xf7\x47\x9c\x7e\x4c\xfe\x84\x15\xf5\xe2\xdd\xeb\x75\x2f\x99" "\x36\x1e\xa9\x6d\xbe\x78\xdb\x33\xfb\xb7\x0e\x79\x38\x00\x00\x00\xf0\x21" "\x91\xf5\xff\x63\xed\xc8\x44\x94\x0a\xd7\x0c\xec\xff\xb3\xce\x7b\x48\xff" "\xdf\xb6\xd4\x80\x1f\x79\xfd\x8e\x5f\x1c\xdd\x3a\xb6\x3a\xf2\x9e\x19\xb9" "\x89\x56\xbd\xdc\x80\x7a\x5f\xd8\xf0\xe0\x9f\x4f\x3e\xfb\x1f\xaf\x2e\xf6" "\xff\x2b\xeb\x7d\xb2\x7d\xf5\xe9\xdd\x57\xdf\x73\x74\x57\xc1\x66\xa4\x47" "\x92\x36\xa6\xaf\xde\xbe\x71\xff\x59\x7b\x72\xd9\xae\x9b\xf5\xf3\x3d\xf5" "\xb3\xe7\xf2\xe5\x6f\xbd\xf2\x9f\x2b\x6f\xb8\xf3\xed\x66\xfd\x72\x94\x5b" "\xf1\xb5\x3d\xb7\xd2\xac\xb6\xf2\xd8\x53\x3e\xd2\xc6\x7c\x6e\xd7\xec\x45" "\xef\xec\xaa\x77\xd7\x2f\x0c\xd8\xff\xad\xbf\x7b\xea\xf9\x5f\xad\xbd\xe3" "\xcd\xc5\xfa\x6f\x9c\x38\xde\xae\x7f\x4a\xf4\xab\xdf\xdc\x79\x61\x60\xfd" "\x38\x2c\x6d\x8c\x5f\x7a\xdb\xce\x73\x76\xef\xdd\xd8\x5d\x3f\x22\xaa\xfd" "\xea\xbf\xf6\xe6\x05\x71\xdc\x1f\xaf\xba\xa5\x77\xff\xe3\x3d\x0b\x77\x3e" "\xf9\xce\x63\xef\x03\x48\x1b\xcf\xad\x7f\x7d\xcf\xd9\x77\x57\xce\xed\xae" "\x9f\xf4\xd4\xcf\x9e\xff\xcf\x9f\xbf\x6f\xe7\xbd\x77\x7e\xf7\xd1\xac\x7e" "\xf6\x5b\x91\x53\x4f\x5a\x6d\xfd\x5c\x4f\xfd\x67\x6f\x3f\x6a\xc7\xd3\x37" "\x5f\xb2\xb6\xbb\x7e\x6e\xc0\xfe\x9f\xbc\xec\x85\xc9\x2d\xd5\xef\xfc\xa1" "\x77\xff\x57\x74\xad\x5a\x18\x78\x17\x2b\xf7\xff\xc0\x69\x0f\x5d\xfe\xe2" "\xa6\xf4\xa6\xde\x21\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x0f" "\x97\x85\xfa\xd4\x5c\x6d\x7a\x66\x36\x97\x44\x24\x03\x72\x1a\x7d\x64\x63" "\xf9\x62\x9a\x56\x47\xa8\xfb\xf2\x85\xfb\x5e\xbb\xec\x8e\x9f\xfc\xb0\x33" "\x56\x19\x61\x1d\x00\x00\x00\x60\xb8\xac\x0f\x5f\xee\xfd\xcb\x51\x89\x62" "\x14\x63\x7c\xa9\xef\x7f\xa4\xb6\xf9\xe2\x6d\xcf\xec\xdf\x1a\x13\xcd\xd1" "\xa4\x75\x2e\xcc\x6f\xb9\x6e\xdb\x27\xae\xdc\xb2\xfd\x9a\x2b\x0e\xd0\x9d" "\x03\x00\x00\x00\xab\xf5\xf2\x85\xc9\x52\xff\x5f\x68\x47\x26\xa2\x54\xd8" "\x10\x63\xad\xfe\x7f\xfa\xea\xed\x1b\xf7\x9f\xb5\x27\x97\xf5\xff\xb9\xc5" "\x73\x12\x11\x57\x5e\x35\xbf\xf9\xf4\x68\xe7\x3d\x7b\xfb\x51\x3b\x9e\xbe" "\xf9\x92\xb5\xed\xf7\x04\x11\x4b\x3f\x0b\x28\x2f\xe6\x7d\x66\x39\xef\xfc" "\xf3\xf6\x4d\xbc\xfe\xa7\xaf\x9f\xdc\x37\xef\xcc\xe5\xbc\xe7\xd6\xbf\xbe" "\xe7\xec\xbb\x2b\xe7\x66\x79\xd1\x99\x77\x46\xb4\xdf\x4f\x3c\x70\xda\x43" "\x97\xbf\xb8\x29\xbd\xa9\x7d\x7f\x9d\x79\x9f\xfa\xda\x96\xf9\xd6\xeb\x89" "\x6c\xdd\xf1\x4b\x6f\xdb\x79\xce\xee\xbd\x1b\x73\xd9\x7b\x8c\xd6\x79\xbc" "\xb5\x6e\x96\x37\x9f\xdb\x35\x7b\xd1\x3b\xbb\xea\xb9\x89\x28\x2d\x8e\xe7" "\x5b\x79\xe5\xd6\xbe\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\x80\x95\x16" "\xea\x53\x73\xb5\xe9\x99\xd9\xc8\x47\x24\x03\x72\x1a\x9d\x5a\x81\x6c\x2c" "\x5f\x4c\xd3\xea\x08\x75\x2f\xda\xf0\xcb\x5b\x8e\x78\xeb\xb1\x75\x9d\xb1" "\x52\x61\x84\x85\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x80\xff\xb2\x03\x07\x02\x00\x00\x00\x00\x40\xfe\xaf\x8d" "\x50\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x85\xfd\xfa\x09\x8d\xa3\x8a\xe3" "\x00\xfe\xde\x6e\x62\x36\xd9\xa4\x4d\x5a\xc1\xa8\x98\xa6\x55\x51\xea\xa1" "\x45\x41\x44\x2f\x2a\x2a\xd2\x8a\x14\x3c\x55\x8a\x54\x5b\x7b\x10\x05\x41" "\x44\xa9\x07\x53\x69\xc5\x52\x15\x2f\x82\xd5\x4b\x11\x15\xd4\x28\x85\x0a" "\x36\x16\x4b\xab\xa4\xe2\xbf\xe2\xc5\x83\x0a\x0a\xd5\x83\x50\x8a\x01\x4d" "\x28\x1e\xac\x64\xf7\xcd\x76\x33\xdd\x71\x9b\x4d\x15\x8a\x9f\x0f\x2c\x6f" "\xdf\x9b\x99\xef\xfc\x66\xde\xcb\x6c\x06\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xce\x2b\x3d\x5d\xc3\xb5\xf6\xc8\x8e\xc7\x66\xee\xbe" "\xe4\xf6\x2f\x9e\x79\x70\xfa\xe9\x3b\x3f\x7a\x64\xdb\x55\x4f\xbd\xf3\xcb" "\xe8\xa6\x5b\x3f\xdf\xdb\xf7\xe6\xc9\xc9\xcd\xcb\xb7\x7c\x7f\xdb\xd2\x4d" "\x07\x1e\x5a\x33\xb1\xfb\xb5\xc3\x7f\x0c\x7c\xf0\xd7\xb1\xb6\xc1\x4f\xd6" "\x9b\x95\xa9\x5b\x09\x21\x9e\x88\x21\x54\x3e\x9e\x7a\xf9\xd9\xc9\x2f\x2f" "\x9a\x1d\x8b\x21\x84\x72\x1c\x1c\x0b\x61\x28\x2e\x39\x3c\x14\x73\x09\xab" "\xff\x0c\x21\x6c\x6e\xd4\x39\x77\xe3\xbe\xe9\xeb\xb6\xcc\xb6\xdb\x76\xf5" "\xcc\x19\x5f\x9c\x0b\xc9\x5f\x57\xa8\x96\xb3\x7a\xea\x06\xe7\xd6\xdb\xec" "\x54\x3e\x8c\xf3\x4e\x25\xad\xb3\xad\x33\x4f\x5c\x13\x7e\xbc\x65\xfd\xf6" "\xaf\x97\xbd\xff\x5e\xf7\xf8\xf1\xb1\xd3\xbb\xc4\xd9\x7d\xca\x69\x3d\x85" "\xb0\x68\x63\xf3\xf1\xdd\x21\x84\xde\xf4\x99\x95\xad\xb6\xe1\xec\xe0\xd4" "\xae\x0b\x21\xf4\x35\x1d\x77\x43\x9b\xba\x2e\x3f\xcb\xfa\x57\x15\xf4\x2f" "\x4d\xed\x05\xa9\xad\xb6\xc9\xc9\xb6\xaf\xc8\xf5\x4b\xb9\xfd\xf2\xfd\x4c" "\x77\xae\xed\x6b\x73\xbe\x85\x2a\xaa\xa3\xd3\xfd\xda\xe9\xcf\xf5\xf3\x0f" "\xa3\x85\x6a\xd4\xb9\xaa\xf5\xf8\x50\x6a\x3f\x4c\xed\xca\x79\xe6\x97\xb3" "\x4f\x0c\xa5\x18\xba\x1a\xe5\x3f\x1c\x4f\xaf\x91\xd0\x34\x6f\x31\xc4\xda" "\x5c\x56\x1a\xfd\x52\x63\x6e\x43\xba\xfe\x5c\x3f\xe6\xfa\xa5\x5c\xbf\xdc" "\x9d\xbb\xae\xda\x79\xd3\x42\x2b\xc7\x38\x77\x3c\xdb\x2f\x37\x9e\x3d\x8e" "\xbb\xd2\xf8\xf2\xe6\x67\x75\x0b\xf7\x14\x8c\x5f\x9c\xda\x4a\xfa\x43\x3d" "\x99\xf5\x43\xfe\x4b\x5d\xf5\x8c\x2f\x8d\xeb\xaa\xc9\xea\x9a\xfa\x87\x5a" "\xfe\x0b\xa5\xa6\x67\x50\xab\xf1\xc6\xc4\xa7\xc9\xa8\xa6\xb1\x6a\x5c\x72" "\xc6\x31\xa7\x5a\xc8\xb6\x4d\xae\x7f\xfe\xca\xf2\x86\x4f\x8e\x0c\x16\xd4" "\x11\xf7\xc6\x94\x1f\x3b\xca\xdf\xfa\xd5\x50\xff\x7d\xef\xee\x7c\x7c\xb8" "\x28\x7f\x63\x29\xe5\x97\x3a\xca\xff\x69\xed\xd1\xdf\xee\xdd\xf9\xfa\xab" "\x85\xf9\x2f\x65\xf9\xe5\x8e\xf2\xaf\x3d\xd8\x77\x62\xed\xa7\x3b\x56\x14" "\xde\x9f\xa9\xec\xfe\x74\x9d\x55\x7e\x4c\xfd\x6c\xdb\xfd\xc7\x3e\x7b\x61" "\xd9\x85\x0f\x8c\xb7\x9a\xeb\x5a\xfe\x9e\x2c\xbf\xd2\x51\xfd\x37\x4f\x1c" "\xed\x19\x98\x39\x78\xa8\xb0\xfe\xd5\xd9\xfd\xe9\xed\x28\xff\x87\x9b\xee" "\xf8\xf9\xed\x6f\xf7\x1f\x2f\xcc\x0f\x59\x7e\x5a\xb1\x63\xf3\xcb\xdf\x30" "\xf1\xe8\x8b\x3d\x23\x33\x57\x17\xe6\x1f\xaa\x07\x57\xd3\x19\xe6\xbd\x7e" "\x7e\x1f\xbf\xfe\xbb\x91\x91\x5f\x47\x8b\xf2\xbf\xc9\xee\xff\x40\x8b\xfc" "\xd8\x36\xff\xad\xb1\xdd\x37\xbe\xb1\x78\xd7\x9a\xc2\xf5\xb9\x2e\xbb\x3f" "\x83\x29\xbf\x77\x5e\xf5\xdf\x75\xc5\x81\xed\xfd\x33\xfb\x2f\x2b\x7a\x76" "\xc6\x3d\xe7\xea\x97\x13\xe0\xff\x69\x69\xfa\x1f\xeb\xb9\xd4\x6f\xf7\x9e" "\xb9\x6f\xba\xd4\xf2\x3d\x73\xa1\x9a\xde\x17\x5e\x19\xed\xaa\xff\x02\xf5" "\xa7\xcf\xc0\xb9\x3c\x51\xce\xec\x79\x16\xfd\x8b\xf9\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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" "\xb3\x03\x07\x24\x00\x00\x00\x00\x82\xfe\xbf\x6e\x47\xa0\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3c\x15\x00\x00\xff" "\xff\x83\xf6\x21\x38", 23189); syz_mount_image(/*fs=*/0x200000c0, /*dir=*/0x20000240, /*flags=MS_RELATIME|MS_NOSUID*/ 0x200002, /*opts=*/0x200002c0, /*chdir=*/1, /*size=*/0x5a95, /*img=*/0x20008700); memcpy((void*)0x20000280, "cgroup.controllers\000", 19); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000280ul, /*flags=*/0x275a, /*mode=*/0); if (res != -1) r[0] = res; syscall(__NR_fcntl, /*fd=*/r[0], /*cmd=*/4ul, /*flags=*/0ul); res = syscall(__NR_dup, /*oldfd=*/r[0]); if (res != -1) r[1] = res; *(uint64_t*)0x20000100 = 0x20000000; memcpy((void*)0x20000000, "\xa2\xda\x55\x9b\x8c\x0e\x13\xf5\x4c\x30\x6c\xbd\xf2\x9d\x49\x56\xc0" "\x8f\x8f\x7e\xdc\x39\xef\x0e\x41\xa1\xd0\x58\x1f\xe2\x29\xe3\x0a\xc9" "\xe0\xd2\xfc\x5a\xa7\x9f\xbb\x1d\xe6\xa2\x88\x35\x27\xa0\x34\x30\x03" "\x33\xc7\x24\x32\x23\xfa\xd1\xa4\xea\xf5\xdb\x52\x34\x96\x72\x59\xa5" "\x72\x42\x2d\x1d\x24\x07\x31", 75); *(uint64_t*)0x20000108 = 0x4b; syscall(__NR_pwritev2, /*fd=*/r[1], /*vec=*/0x20000100ul, /*vlen=*/1ul, /*off_low=*/0xd0c1, /*off_high=*/0, /*flags=*/0ul); *(uint64_t*)0x20000640 = 0xd000; inject_fault(4); syscall(__NR_copy_file_range, /*fd_in=*/r[0], /*off_in=*/0ul, /*fd_out=*/r[1], /*off_out=*/0x20000640ul, /*len=*/0xd000ul, /*flags=*/0ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; if ((reason = setup_fault())) printf("the reproducer may not work as expected: fault injection setup " "failed: %s\n", reason); use_temporary_dir(); loop(); return 0; }