// https://syzkaller.appspot.com/bug?id=6cc491be132cfdce3fd4c75357d4606bed322b31 // 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_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void 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[1] = {0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: mount_flags = 0x1000000 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x6139 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x6139) // } // ] // returns fd_dir memcpy((void*)0x200000000000, "jfs\000", 4); memcpy((void*)0x200000000100, "./file1\000", 8); memcpy( (void*)0x200000008e00, "\x78\x9c\xec\xdd\xcb\x8e\x1c\x57\x19\x07\xf0\xaf\x2f\xd3\x73\x09\x89\xad" "\x08\x45\xc6\x62\xe1\x38\x10\x12\x42\x7c\xb7\x21\xdc\x92\xb0\x60\x01\x48" "\x20\x21\x6f\xc1\xd6\x64\x12\x19\x1c\x40\xb6\x41\x24\xb2\xf0\x44\x5e\x20" "\x16\x5c\x1e\x01\x36\x61\xc1\x22\x2f\x12\x76\xac\x11\x0f\x80\x25\x9b\x55" "\x24\x08\x85\x6a\xe6\x1c\xbb\xba\xdc\xe3\x1e\x63\x4f\x57\xf7\x9c\xdf\x4f" "\x1a\x57\x7d\x7d\xba\x66\xbe\xf2\x7f\x6a\xba\x7b\xba\x6a\x4e\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf1\xad\x6f\x7e\xff\x64\x2f" "\x22\x2e\xfc\x22\xdd\x70\x30\xe2\x13\x31\x88\xe8\x47\xac\xd6\xf5\x91\xa8" "\x57\x5e\xcb\xf7\x1f\x46\xc4\xa1\xd8\x1a\x8e\x67\x22\x62\xb0\x1c\x51\x6f" "\xbf\xf5\xcf\x81\x88\x33\x11\xf1\xe1\x53\x11\xb7\xef\x5c\x5f\xaf\x6f\x3e" "\xb5\xcb\x3e\xce\x9e\xb8\x76\xe5\xe3\x6f\x7f\xe3\xef\xbf\xfe\xfd\xcd\x43" "\x3f\x7a\xe3\x87\xef\xb7\xc7\xbf\xf7\xc9\xd3\x1f\xfc\xe6\x46\xc4\xc1\xef" "\xbe\xf2\xc1\xc7\x37\x1e\xcf\xbe\x03\x00\x00\x40\x29\xaa\xaa\xaa\x7a\xe9" "\x65\xfe\xe1\xf4\xfa\xbe\xdf\x75\x53\x00\xc0\x4c\xe4\xc7\xff\x2a\xc9\xb7" "\xab\xd5\x6a\xb5\xfa\xb1\xd6\xbf\xeb\xcf\x57\x3f\xea\x42\xeb\xa6\x6a\xb2" "\x1b\xcd\x22\x22\x36\x9b\xdb\xd4\xcf\x19\xbc\x1d\x0f\x00\x0b\x66\x33\x3e" "\xea\xba\x05\x3a\x24\xff\xa2\x0d\x23\xe2\x89\xae\x9b\x00\xe6\x5a\xaf\xeb" "\x06\xd8\x13\xb7\xef\x5c\x5f\xef\xa5\x7c\x7b\xcd\xc7\x83\x23\xdb\xe3\xf9" "\xf7\x94\x63\xf9\x6f\xf6\xee\x5e\xdf\xb1\xd3\x72\x9a\xf6\x39\x26\xb3\xfa" "\xfe\xba\x19\x83\x78\x7a\x87\x7e\x56\x67\xd4\xc3\x3c\xc9\xf9\xf7\xdb\xf9" "\x5f\xd8\x1e\x1f\xa5\xfb\xed\x75\xfe\xb3\xb2\x53\xfe\xa3\xed\x4b\x9f\x8a" "\x93\xf3\x1f\xb4\xf3\x6f\x19\xcb\xff\x0f\x11\xb1\xb0\xf9\xf7\x27\xe6\x5f" "\xaa\x9c\xff\xf0\x61\xf2\xdf\x1c\x2c\xf0\xf1\x2f\x7f\x00\x00\x00\x00\x00" "\xf6\xbf\xfc\xfb\xff\x83\x1d\xbf\xff\xbb\xfc\xe8\xbb\xb2\x2b\x0f\x7a\xff" "\xf7\xc8\x8c\x7a\x00\x00\x00\x00\x00\x00\x00\x80\xc7\xed\x51\xe7\xff\xbb" "\xcb\xfc\x7f\x00\x00\x00\x30\xb7\xea\xd7\xea\xb5\x3f\x3e\x75\xef\xb6\x5e" "\xc4\xdf\x0e\x4c\xb8\x6f\xfd\x12\xff\x7c\x2f\xe2\xc9\xd6\xfd\x81\xc2\xa4" "\x8b\x65\xd6\xba\xee\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4a\x32" "\xdc\x3e\x87\xf7\x7c\x2f\x62\x29\x22\x9e\x5c\x5b\xab\xaa\xaa\xfe\x68\x6a" "\xd7\x0f\xeb\x51\xb7\x5f\x74\xa5\xef\x3f\x94\xac\xeb\x1f\xf2\x00\x00\xb0" "\xed\xc3\xa7\x5a\xd7\xf2\xf7\x22\x56\x22\xe2\x7c\xfa\x5b\x7f\x4b\x6b\x6b" "\x6b\x55\xb5\xb2\xba\x56\xad\x55\xab\xcb\xf9\xf9\xec\x68\x79\xa5\x5a\x6d" "\xbc\xae\xcd\xcb\xfa\xb6\xe5\xd1\x2e\x9e\x10\x0f\x47\x55\xfd\xc9\x56\x1a" "\xdb\x35\x4d\x7b\xbd\x3c\x6d\xbc\xfd\xf9\xea\xaf\x35\xaa\x06\xbb\x68\x6c" "\x36\x3a\x0c\x1c\x00\x22\x62\xfb\xd1\xe8\xb6\x47\xa4\x7d\xa6\xaa\x0e\x44" "\xd7\xcf\x72\x58\x0c\x8e\xff\xfd\xc7\xf1\xcf\x6e\x74\xfd\x7d\x0a\x00\x00" "\x00\xec\xbd\xaa\xaa\xaa\x5e\xfa\x73\xde\x87\xd3\x7b\xfe\xfd\xae\x9b\x02" "\x00\x66\x61\x25\x3f\xfe\xb7\xdf\x17\x50\xab\xd5\x73\x5f\x2f\xcf\x59\x3f" "\x6a\xb5\x7a\x01\xea\xa6\x6a\xb2\x1b\xcd\x22\x22\x36\x9b\xdb\xd4\xcf\x19" "\x4c\xc7\x0f\x00\x0b\x66\x33\x3e\xea\xba\x05\x3a\x24\xff\xa2\x0d\x23\xe2" "\x50\xd7\x4d\x00\x73\xad\xd7\x75\x03\xec\x89\xdb\x77\xae\xaf\xf7\x52\xbe" "\xbd\xe6\xe3\x41\x9a\xdf\x3d\x9f\x0b\x32\x96\xff\x66\x6f\x6b\xbb\xbc\xfd" "\xa4\xe5\x34\xed\x73\x4c\x66\xf5\xfd\x75\x33\x06\xf1\xf4\x0e\xfd\x3c\x33" "\xa3\x1e\xe6\x49\xce\xbf\xdf\xce\xff\xc2\xf6\xf8\x28\xdd\x6f\xaf\xf3\x9f" "\x95\x9d\xf2\xaf\xf7\xf3\x60\x07\xfd\x74\x2d\xe7\x3f\x68\xe7\xdf\xb2\x7f" "\xf2\xef\x4f\xcc\xbf\x54\x39\xff\xe1\x43\xe5\x3f\x90\x3f\x00\x00\x00\x00" "\x00\xcc\xb1\xfc\xfb\xff\x83\xde\xff\xcd\xbb\x0c\x00\x00\x00\x00\x00\x00" "\x00\x0b\xe7\xf6\x9d\xeb\xeb\xf9\xba\xd7\xfc\xfe\xff\xa7\x27\xdc\xaf\xd7" "\x5c\x73\xfd\xe7\xbe\x91\xf3\xef\xed\x3a\x7f\xd7\xff\xee\x27\x39\xff\x7e" "\x3b\xff\xd6\x09\x39\x83\xc6\xfa\xad\xd7\xef\xe5\xff\xaf\x3b\xd7\xd7\xdf" "\xbf\xf6\xcf\x4f\xe5\xe5\xdc\xe7\xbf\x34\x18\xd5\x5f\x7b\xa9\xd7\x1f\x0c" "\xd3\x39\x3f\xd5\xd2\x9b\x71\x29\x2e\xc7\x46\x9c\xb8\xef\xfe\xc3\xb1\xf1" "\x93\xf7\x8d\x2f\x8d\x8d\x9f\x9a\x32\x7e\xfa\xbe\xf1\x51\x3d\xbe\x9a\xc7" "\x8f\xc5\x7a\xfc\x34\x2e\xc7\x1b\x77\xc7\x97\xa7\x9c\x18\xb5\x32\x65\xbc" "\x9a\x32\x9e\xf3\x1f\x38\xfe\x8b\x94\xf3\x1f\x36\x3e\x9a\x7a\xad\x65\xed" "\xd6\x7b\xfd\xfb\x8e\xfb\xe6\x72\xd2\xd7\x79\xed\x2f\xff\x79\xfe\xfe\xa3" "\x6b\xf6\x6e\xc6\x20\xd6\x26\xdc\x5e\xef\xdf\xd1\x0e\xfa\xd9\xfa\x3f\x79" "\x62\x14\x3f\xbf\xba\x71\xe5\xd8\x2f\x2f\x5e\xbb\x76\xe5\x64\xa4\xc5\xd8" "\xad\xa7\x22\x2d\x1e\xb3\x9c\xff\x52\xfa\xc8\xc7\xff\x0b\xcf\x6d\x8f\xe7" "\x9f\xfb\xcd\xe3\xf5\xd6\x7b\xa3\x87\xce\x7f\x5e\xdc\x8c\xe1\x8e\xf9\x3f" "\xd7\x58\xaf\xf7\xf7\xc5\x19\xf7\xd6\x85\x9c\xff\x28\x7d\xe4\xfc\xf3\x23" "\xd0\xe4\xe3\x7f\x91\xf3\xdf\xf9\xf8\x7f\xa9\x83\x7e\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xe0\x41\xaa\xaa\xaa\x7a\xf5\xbf\x37\xb6\xeb" "\x61\x87\xd7\x66\x02\x00\x33\xf5\xdb\xef\xa4\x95\x2a\x09\xb5\x5a\xad\x56" "\xab\xd5\x8f\xab\x1e\xce\x59\x3f\x63\xaa\xc9\x5e\x6d\x16\xb1\x32\xbe\xcd" "\xb9\x88\xf8\xd5\xa4\x4f\x06\x00\xcc\xb3\xff\x46\xc4\x3f\xba\x6e\x82\xce" "\xc8\xbf\x60\xf9\xef\xfd\xd5\xcb\xcf\x74\xdd\x0c\x30\x53\x57\xdf\x79\xf7" "\xc7\x17\x2f\x5f\xde\xb8\x72\xb5\xeb\x4e\x00\x00\x00\x00\x00\x00\x00\x80" "\xff\x57\x9e\xff\xf3\x48\x63\xfe\xe7\xad\xf3\x80\x5a\xf3\x46\x8f\xcd\xff" "\xfa\x7a\x1c\x59\xd8\xf9\x3f\xfb\xa3\xc1\xd6\x5c\xe7\x69\x87\x9e\x8d\x07" "\xcf\xff\x7d\x34\x1e\x3c\xff\x77\x7b\xbe\xe4\xb6\xa5\x29\xe3\xa3\x29\xe3" "\xcb\x53\xc6\x57\xa6\x8c\x4f\xbc\xd0\xa3\x21\xe7\xff\x6c\xca\x38\xe7\x7f" "\x38\xed\x58\x49\xf3\xbf\xbe\xb0\xf3\x66\x7f\x1e\xec\x65\x53\x1d\xca\xf9" "\x1f\x4d\x73\x3d\xe7\xfc\x3f\xd7\xba\x5f\x33\xff\xea\x4f\x8b\x9c\x7f\x7f" "\x2c\xff\xe3\xd7\xde\xfe\xd9\xf1\xab\xef\xbc\xfb\xf2\xa5\xb7\x2f\xbe\xb5" "\xf1\xd6\xc6\x4f\x4e\x9e\x38\x77\xe6\xf4\xd9\x33\xa7\xcf\x9e\x3d\xfe\xe6" "\xa5\xcb\x1b\x27\xb6\xff\xed\xb0\xe3\xbd\x95\xf3\xcf\x73\x5f\x3b\x0f\xb4" "\x2c\x39\xff\x9c\xb9\xfc\xcb\x92\xf3\xff\x6c\xaa\xe5\x5f\x96\x9c\xff\xf3" "\xa9\x96\x7f\x59\x72\xfe\xf9\xf9\x9e\xfc\xcb\x92\xf3\xcf\xaf\x7d\xe4\x5f" "\x96\x9c\xff\x8b\xa9\x96\x7f\x59\x72\xfe\x9f\x4f\xb5\xfc\xcb\x92\xf3\x7f" "\x29\xd5\xf2\x2f\x4b\xce\xff\x0b\xa9\x96\x7f\x59\x72\xfe\x2f\xa7\x5a\xfe" "\x65\xc9\xf9\x1f\x4b\xb5\xfc\xcb\x92\xf3\x3f\x9e\xea\x76\xfe\x3f\xe8\xa8" "\x2f\x66\x23\xe7\x9f\xdf\xe1\x72\xfc\x97\x25\xe7\x9f\xcf\x6c\x90\x7f\x59" "\x72\xfe\xa7\x52\x2d\xff\xb2\xe4\xfc\x4f\xa7\x5a\xfe\x65\xc9\xf9\x9f\x49" "\xb5\xfc\xcb\x92\xf3\x3f\x9b\x6a\xf9\x97\x25\xe7\x7f\x2e\xd5\xf2\x2f\x4b" "\xce\xff\x8b\xa9\x96\x7f\x59\x72\xfe\x5f\x4a\xb5\xfc\xcb\x92\xf3\x7f\x25" "\xd5\xf2\x2f\x4b\xce\xff\xcb\xa9\x96\x7f\x59\x72\xfe\x5f\x49\xb5\xfc\xcb" "\x92\xf3\xff\x6a\xaa\xe5\x5f\x96\x9c\xff\xd7\x52\x2d\xff\xb2\xe4\xfc\xbf" "\x9e\x6a\xf9\x97\x25\xe7\xff\x6a\xaa\xe5\x5f\x96\x7b\x7f\xff\xdf\xca\x8c" "\x57\xfe\xfd\xd7\x88\x39\x68\x63\x2f\x56\xaa\xaa\xaa\xe6\xa0\x0d\x2b\x8f" "\xb0\xd2\xf5\x4f\x26\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x6d\x16" "\xa7\x13\x77\xbd\x8f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x8f\x1d\x38\x10\x00\x00\x00\x00\x00\xf2\x7f\x6d\x84\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x2a\xec\xc0\x81\x00\x00\x00\x00\x00\x90" "\xff\x6b\x23\x54\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x61\xef\xee\x62\xe4" "\x3a\xeb\x33\x80\x9f\xfd\xf4\xda\x09\xc4\x25\x21\x84\x60\xc8\xda\x71\x82" "\x21\x1b\xef\xae\xbf\x12\x13\x0c\xcb\x67\xd3\xd0\xd2\x34\x10\x5a\x5a\xa8" "\x63\xec\xb5\x63\xf0\x57\xbd\x36\x24\x08\x35\x4b\x43\xdb\x20\x22\x35\x52" "\x7b\x41\x2b\x95\x2f\x51\x84\xd4\x56\x89\x10\x52\xa9\x44\x51\xa4\x22\xb5" "\x77\xe5\x0a\x94\x1b\xd4\x4a\xb9\xb0\xd4\xa4\x32\x11\x54\xa2\x22\xd9\xea" "\xcc\x79\xdf\x77\x67\x66\x67\x67\x76\xed\x5d\xfb\xcc\x39\xbf\x5f\x94\xfc" "\xe3\x9d\x33\x33\xef\x9c\x39\x33\xbb\xcf\x5a\xcf\x1c\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xa0\xd9\xd6\xf7\xcc\xfe\xf9\x40\x96\x65\xf9\xbf\x8d\xff\x6c\xce" "\xb2\x6b\xf3\xff\xdf\x98\xcd\xe4\x7f\x9c\xdf\x77\xb5\x57\x08\x00\x00\x00" "\x5c\xae\x97\x1b\xff\xfd\x87\xeb\xd2\x17\x66\x56\x70\xa5\xa6\x6d\xfe\xed" "\x4d\xff\xf1\xdd\x85\x85\x85\x85\xec\x13\x2f\x5d\x78\xe5\x2f\x17\x16\xd2" "\x05\xe3\x59\x36\xb4\x21\xcb\x1a\x97\x45\xff\xfe\xcb\x5f\x2c\x34\x6f\x13" "\x3c\x9e\x8d\x0d\x0c\x36\xfd\x79\xb0\xc7\xdd\x0f\xf5\xb8\x7c\xb8\xc7\xe5" "\x23\x3d\x2e\x1f\xed\x71\xf9\x86\x1e\x97\x8f\xf5\xb8\x7c\xc9\x0e\x58\x62" "\x63\xf1\xfb\x98\xc6\x8d\x6d\x6f\xfc\xef\xe6\x62\x97\x66\x37\x64\x23\x8d" "\xcb\xb6\x77\xb8\xd6\xe3\x03\x1b\x06\x07\xe3\xef\x72\x1a\x06\x1a\xd7\x59" "\x18\x39\x9a\x1d\xcf\x4e\x64\xb3\xd9\xd4\x92\xeb\x0c\x34\xfe\xc9\xb2\xef" "\x6f\xcd\xef\xeb\xde\x2c\xde\xd7\x60\xd3\x7d\x6d\xc9\xb2\xec\xe2\xcf\x3e" "\x77\x38\xae\x61\x20\xec\xe3\xed\x59\xcb\x9d\x35\x34\x3f\x77\x2f\xbe\x2b" "\x1b\x7f\xe9\x67\x9f\x3b\xfc\xad\x73\x2f\xbc\xbe\xd3\xec\xb9\x1b\x96\xac" "\x34\xcb\x76\x6c\xcb\xd7\xf9\x85\x2c\x5b\xfc\x75\x55\x36\x90\x6d\x48\xfb" "\x24\xae\x73\xb0\x69\x9d\x5b\x3a\xac\x73\xa8\x65\x9d\x03\x8d\xeb\xe5\xff" "\xdf\xbe\xce\x8b\x2b\x5c\x67\x7c\xdc\x63\x61\x9d\x3f\xea\xb2\xce\x2d\xe1" "\x6b\x8f\xdc\x9a\x65\xd9\x7c\xb6\xec\x36\xed\x1e\xcf\x06\xb3\x4d\x6d\xf7" "\x9a\xf6\xf7\x58\x71\x44\xe4\xb7\x91\x3f\x95\xaf\xc9\x86\x57\x75\x9c\x6c" "\x5d\xc1\x71\x92\x5f\xe7\xf9\x5b\x5b\x8f\x93\xf6\x63\x32\xee\xff\xad\x61" "\x9f\x0c\x2f\xb3\x86\xe6\xa7\xe3\xc5\xcf\x8f\x2e\xd9\xef\x97\x7a\x9c\xe4" "\x8f\xba\x0c\xc7\x6a\x7e\xdb\xf7\xe7\x77\x3a\x36\xd6\xfc\xab\xd5\x96\x63" "\x35\xdf\xe6\x73\xb7\x2d\x7f\x0c\x74\x7c\xee\x3a\x1c\x03\xe9\x58\x6e\x3a" "\x06\xb6\xf5\x3a\x06\x06\x47\x87\x1a\xc7\xc0\xe0\xe2\x9a\xb7\xb5\x1c\x03" "\xd3\x4b\xae\x33\x98\x0d\x34\xee\xeb\xc2\x6d\xdd\x8f\x81\xc9\x73\x27\xcf" "\x4c\xce\x3d\xfa\xd9\x3b\x8f\x9f\x3c\x74\x6c\xf6\xd8\xec\xa9\xe9\xa9\x7d" "\x7b\x76\xef\xdd\xb3\x7b\xef\xde\xc9\xa3\xc7\x4f\xcc\x4e\x15\xff\x5d\xdd" "\x2e\xed\x23\x9b\xb2\xc1\x74\x0c\x6e\x0b\xef\x35\xf1\x18\x7c\x73\xdb\xb6" "\xcd\x87\xe4\xc2\xd7\xd7\xee\x75\x30\x56\x92\xd7\x41\xfe\xd8\x3f\x7c\x7b" "\xbe\xa0\x6b\x07\xb3\x65\x8e\xf1\x7c\x9b\x2f\xec\xb8\xfc\xd7\x41\xfa\xbe" "\xdf\xf4\x3a\x18\x6e\x7a\x1d\x74\x7c\x4f\xed\xf0\x3a\x18\x5e\xc1\xeb\x20" "\xdf\xe6\xe2\x8e\x95\x7d\xcf\x1c\x6e\xfa\xb7\xd3\x1a\xd6\xeb\xbd\x70\x73" "\xd3\x31\x70\x35\xbf\x1f\xe6\xf7\xf9\xb1\xb7\x2c\xff\x5e\xb8\x25\xac\xeb" "\x89\xb7\xae\xf6\xfb\xe1\xd0\x92\x63\x20\x3e\xac\x81\xf0\xda\xcb\xbf\x92" "\x7e\xde\x1b\xbb\x3b\xec\x97\xa5\xc7\xc5\xcd\xf9\x05\xd7\x8c\x66\xe7\xe7" "\x66\xcf\xee\x7c\xe4\xd0\xb9\x73\x67\xa7\xb3\x30\xae\x88\xeb\x9b\x9e\xab" "\xf6\xe3\x65\x53\xd3\x63\xca\x96\x1c\x2f\x83\xab\x3e\x5e\x66\xfe\xfe\x57" "\xb7\xdf\xdc\xe1\xeb\x9b\xc3\xbe\x1a\xbb\xa3\xfb\x73\x95\x6f\xb3\x67\xa2" "\xfb\x73\xd5\x78\x77\x6f\xdd\x9f\xa3\x59\xb1\x3f\x5b\xbe\xba\x2b\x0b\x63" "\x8d\x5d\xe9\xfd\xd9\xe9\xbb\x59\xbe\x3f\x53\x96\xe8\xb2\x3f\xf3\x6d\xbe" "\x70\xe7\xe5\xff\x2c\x98\x72\x49\xd3\xfb\xdf\x48\xaf\xf7\xbf\xa1\x91\xe1" "\xe2\xfd\x6f\x28\xed\x8d\x91\x96\xf7\xbf\xa5\x4f\xcd\x50\x63\x65\x59\x76" "\xf1\xce\x95\xbd\xff\x8d\x84\x7f\xaf\xf4\xfb\xdf\x0d\x25\x79\xff\xcb\xf7" "\xd5\xc7\x76\x76\x3f\x06\xf2\x6d\x9e\x98\x5c\xed\x31\x30\xdc\xf5\xfd\xef" "\xd6\x30\x07\xc2\x7a\xde\x12\x12\xc3\x58\x53\xee\x7f\xa5\x71\xf9\x7c\x71" "\x98\x36\x3d\x97\x3d\x8f\x9b\xe1\xe1\x91\x70\xdc\x0c\xc7\x7b\x6c\x3d\x6e" "\x76\x2f\xb9\x4e\x7e\x6b\xf9\x7d\xef\x98\xba\xb4\xe3\x66\xc7\xad\xad\xcf" "\x55\xcb\xcf\x2d\x15\x3c\x6e\xf2\x7d\xf5\x57\x53\xdd\x8f\x9b\x7c\x9b\x67" "\xa7\x2f\xff\xbd\x63\x63\xfc\xdf\xa6\xf7\x8e\xd1\x5e\xc7\xc0\xc8\xd0\x68" "\xbe\xde\x91\x74\x10\x14\xef\x77\x0b\x1b\xe3\x31\xb0\x33\x3b\x9c\x9d\xce" "\x4e\x64\x47\xd2\x75\xf2\x67\x39\xbf\xaf\x89\x5d\x2b\x3b\x06\x46\xc3\xbf" "\x57\xfa\xbd\xe3\xa6\x92\x1c\x03\xf9\xbe\xfa\xf2\xae\xee\xc7\x40\xbe\xcd" "\x0f\x77\xaf\xed\xcf\x4e\x3b\xc2\x57\xd2\x36\x4d\x3f\x3b\xb5\xff\x7e\x61" "\xb9\xcc\x7f\xf3\xf0\xe2\xed\xb5\xef\xb6\x5e\xcf\x55\xaf\xdf\xe1\x35\x1b" "\x0e\xeb\x7c\xef\x8f\x3f\x98\xbe\xd6\x29\x43\xe4\xdb\xbc\xb0\x67\xb5\x39" "\xa3\xfb\x7e\xba\x23\x7c\xe5\x9a\x0e\xfb\xa9\xfd\xf5\xb3\xdc\x31\x7d\x24" "\xbb\xf4\xfd\xb4\x8a\xdd\xd4\x38\xa6\xf3\x75\x9e\xd8\xdb\xfd\x77\x53\xf9" "\x36\x37\xec\x5b\xe1\xf1\x34\x93\x65\xd9\x73\xd3\xcf\x35\x7e\xdf\x15\x7e" "\xbf\xfb\x9d\xf3\x3f\xfe\x6e\xcb\xef\x7d\x3b\xfd\x4e\xf9\xb9\xe9\xe7\xee" "\x9b\x7c\xe0\x27\xab\x59\x3f\x00\x00\x97\xee\x95\xc6\x7f\xe7\x47\x8b\x9f" "\x35\x9b\xfe\xc6\x7a\x25\x7f\xff\x0f\x00\x00\x00\xf4\x85\x98\xfb\x07\xc3" "\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x87\xc2\x4c\xe4\x7f\x00\x00\x00" "\xa8\x8c\x98\xfb\x87\xc3\x4c\x6a\x92\xff\x1f\xbe\x7b\xff\xd3\x2f\x3f\x96" "\xa5\x4f\x03\x5c\x08\xe2\xe5\x71\x37\xdc\xff\x8e\x62\xbb\xd8\xf1\x9e\x0f" "\x7f\x1e\x5f\x58\x94\x7f\xfd\xdd\xdf\x1c\x79\xfa\x8b\x8f\xad\xec\xbe\x07" "\xb3\x2c\xfb\xd5\x7d\x6f\xe8\xb8\xfd\xc3\xef\x88\xeb\x2a\x9c\x89\xeb\x7c" "\x5b\xeb\xd7\x97\xb8\xe9\x96\x15\xdd\xff\x43\x0f\x2e\x6e\xd7\xfc\xf9\x09" "\x17\xf7\x17\xb7\x1f\x1f\xcf\x4a\x0f\x83\xd8\x55\xfe\xfe\xe4\xae\xc6\xed" "\x8e\x3f\x3a\xdd\x98\xcf\xde\x97\x35\xe6\x03\xf3\x4f\x3c\x5e\xdc\x7e\xf1" "\xe7\xb8\xfd\x85\xdd\xc5\xf6\x7f\x1b\x3e\xb4\x64\xe6\xe8\x40\xcb\xf5\x77" "\x84\xf5\x6c\x0f\x73\x3c\x7c\xa6\xcc\xfd\x33\x8b\xfb\x21\x9f\xf1\x7a\x4f" "\x6f\x79\xd3\xbf\x5e\xff\x91\xc5\xfb\x8b\xd7\x1b\xd8\xf6\xea\xc6\xc3\xfc" "\xf2\x1f\x17\xb7\x1b\x7b\xe5\x4f\x5d\x5f\x6c\x1f\x1f\xf7\x72\xeb\xff\x97" "\x2f\x7d\xfb\xe9\x7c\xfb\x47\x6e\xeb\xbc\xfe\xc7\x06\x3b\xaf\xff\x42\xb8" "\xdd\xe7\xc3\xfc\xe5\x81\x62\xfb\xe6\x7d\xfe\xc5\xa6\xf5\xff\x69\x58\x7f" "\xbc\xbf\x78\xbd\x9d\xdf\xf8\x41\xc7\xf5\x3f\xf3\xba\x62\xfb\x67\xc2\x71" "\xf1\xb5\x30\xdb\xd7\xff\xae\xbf\x78\xe3\xcb\x9d\x9e\xaf\x78\x3f\x33\xf7" "\x14\xd7\x8b\xf7\x3f\xf5\xbf\x7b\x1a\xd7\x8b\xb7\x17\x6f\xbf\x7d\xfd\x63" "\x8f\x4d\xb7\xec\x8f\xf6\xdb\x7f\xf6\xa5\xe2\x76\x0e\x7c\xfa\xe7\x43\xcd" "\xdb\xc7\xaf\xc7\xfb\x89\x1e\xba\xa7\xf5\xf8\x1e\x68\x3c\xbf\x03\xd9\x40" "\xd6\xfa\x79\xa1\xdf\xfe\xb3\xac\x65\x3f\x67\x6f\x2f\xae\xf7\xcf\x6d\xeb" "\x8f\xb7\x77\xe6\x9e\xce\xeb\xbf\xa3\x6d\x9d\x67\x06\x6e\x69\x5c\x7f\xf1" "\xf1\x6c\x6e\x79\x5c\x5f\xf9\xbb\x5d\x1d\x1f\x6f\x5c\xcf\xcc\x3f\x6e\x6e" "\x79\x3c\x4f\xbd\x2f\xec\xbf\x97\x26\x7f\x98\xdf\xee\x85\x07\xc2\xf1\x18" "\x2e\xff\xbf\x1f\x15\xb7\xd7\xfe\x59\xa6\xcf\xbc\xaf\xf5\xfd\x26\x6e\xff" "\xb5\xcd\xc5\xeb\x36\xde\xde\x64\xdb\xfa\x9f\x6a\x5b\xff\xfc\x2d\x59\xcb" "\x9e\x5b\x6e\xfd\xf7\xbe\x54\xac\xff\x99\x77\x6e\x68\x59\xff\xcc\xfb\xc3" "\xf1\x74\x6f\x31\x7b\xad\xff\xd8\x57\xaf\x6b\xb9\xfe\xd7\xbf\x55\x3c\x1f" "\x67\x3f\x33\x71\xea\xf4\xdc\xf9\xe3\x47\x9a\xf6\x6a\xf3\xeb\x78\xc3\xd8" "\xc6\x4d\xd7\x5c\xfb\xaa\x57\x5f\x17\xde\x4b\xdb\xff\x7c\xf0\xf4\xb9\x87" "\x67\xcf\x8e\x4f\x8d\x4f\x65\xd9\x78\x1f\x7e\x64\xe0\x7a\xaf\xff\x1b\x61" "\xfe\x4f\x31\xe6\xd7\xfe\x1e\x0a\x3f\xf9\x79\x71\xdc\x3d\xf9\x81\xe2\xfb" "\xd6\x9b\x7f\x51\xfc\xf9\xa9\xf0\xf5\x87\xc2\xf3\x19\xbf\x3f\x7e\xe5\xaf" "\x47\x5a\x8e\xd7\xf6\xe7\x7d\xfe\x9d\xc5\xbc\xdc\xf5\xbf\x35\xac\x63\xa5" "\x5e\xf7\xa5\xff\xba\x65\x45\x1b\x5e\xf8\xf8\xf7\xcf\xff\xd3\x9f\xbc\xd0" "\xfe\x73\x41\x7c\x3c\x67\x5e\x3b\xd6\x78\x7c\x5f\xde\x7a\x63\xe3\xb2\x81" "\x67\x8b\xcb\x5b\x3e\xf7\x62\x05\xfe\xf3\xb5\xad\xaf\xeb\x9f\x0e\x4f\x35" "\xe6\xf7\xc2\x7e\x5d\x08\x9f\xcc\xbc\xed\xc6\xe2\xfe\xda\x6f\x3f\x7e\x36" "\xc9\x93\x1f\x2a\x5e\xbf\xf1\x27\xb9\x78\xfd\xac\xed\xf3\x44\x36\x0f\xb5" "\x3e\x8e\xcb\x5d\xff\x4f\xc3\xcf\x31\x3f\xb8\xa9\xf5\xfd\x2f\x1e\x1f\xdf" "\x7b\xac\xed\xd3\x9c\x37\x67\x03\xf9\x12\xe6\xc3\xfb\x43\x36\x5f\x5c\x1e" "\xb7\x5a\xd8\x50\xfc\x28\xf6\xe4\xc5\x1b\x3b\x7e\x04\x4c\xfc\x1c\x9e\x6c" "\xfe\xf5\xab\x59\xe6\xb2\xe6\x1e\x9d\x9b\x3c\x71\xfc\xd4\xf9\x47\x26\xcf" "\xcd\xce\x9d\x9b\x9c\x7b\xf4\xb3\x07\x4f\x9e\x3e\x7f\xea\xdc\xc1\xc6\x67" "\x97\x1e\xfc\x64\xaf\xeb\x2f\xbe\xbe\x37\x35\x5e\xdf\x47\x66\xf7\xed\xc9" "\x1a\xaf\xf6\xd3\xc5\x58\x67\x57\x7b\xfd\x67\x1e\x3c\x7c\xe4\xae\xa9\xdb" "\x8f\xcc\x1e\x3d\x74\xfe\xe8\xb9\x07\xcf\xcc\x9e\x3d\x76\x78\x6e\xee\xf0" "\xec\x91\xb9\xdb\x0f\x1d\x3d\x3a\xfb\x99\x5e\xd7\x3f\x7e\xe4\xc0\xf4\xae" "\xfd\xbb\xef\xda\x35\x71\xec\xf8\x91\x03\x77\xef\xdf\xbf\x7b\xff\xc4\xf1" "\x53\xa7\xf3\x65\x14\x8b\xea\x61\xdf\xd4\xa7\x26\x4e\x9d\x3d\xd8\xb8\xca" "\xdc\x81\x3d\xfb\xa7\xf7\xee\xdd\x33\x35\x71\xf2\xf4\x91\xd9\x03\x77\x4d" "\x4d\x4d\x9c\xef\x75\xfd\xc6\xf7\xa6\x89\xfc\xda\x9f\x9e\x38\x3b\x7b\xe2" "\xd0\xb9\xe3\x27\x67\x27\xe6\x8e\x7f\x76\xf6\xc0\xf4\xfe\x7d\xfb\x76\xf5" "\xfc\xf4\xc7\x93\x67\x8e\xce\x8d\x4f\x9e\x3d\x7f\x6a\xf2\xfc\xdc\xec\xd9" "\xc9\xe2\xb1\x8c\x9f\x6b\x7c\x39\xff\xde\xd7\xeb\xfa\xd4\xc3\xdc\xe9\xf0" "\x7e\xd7\x66\x20\xfc\x74\xfe\xd1\x3b\xf6\xa5\xcf\xc7\xcd\x7d\xf3\xf3\xcb" "\xde\x54\xb1\x49\xeb\x8f\xa7\xd9\x8b\xe1\xb3\xa0\xe2\xf7\xb7\x5e\x7f\x8e" "\xb9\x7f\x24\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\xf0\xc1\xff" "\x8b\x17\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x6f\x08\x33\x91\xff\x01\x00" "\x00\xa0\x32\x62\xee\x2f\x92\xff\x58\x3a\xfd\x7b\x5d\xf2\xff\x5a\xf5\xff" "\x3f\xaf\xff\xdf\xa0\xff\xaf\xff\x9f\xad\x79\xff\x7f\x69\x1f\x55\xff\xbf" "\x2e\xfd\xff\x4c\xff\x7f\x05\xf4\xff\xf5\xff\xb3\x2a\xf5\xff\x83\x27\x2f" "\xde\xd8\xf1\xfe\xf4\xff\xcb\xb5\x7e\xfd\x7f\xfd\x7f\x7a\x2b\x5b\xff\x3f" "\xe4\xfe\x6c\x63\x96\xf9\xfb\x7f\x00\x00\x00\xa8\xa8\x98\xfb\x37\x85\x99" "\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x5f\x13\x66\x22\xff\x03\x00\x00\x40" "\x65\xc4\xdc\x7f\x6d\x98\x49\x4d\xf2\xbf\xf3\xff\xeb\xff\xeb\xff\x77\xeb" "\xff\xc7\x6d\xf5\xff\x33\xfd\xff\x32\x9c\xff\x7f\xfb\x7f\xeb\xff\x2f\xa1" "\xff\xaf\xff\x9f\xe9\xff\x5f\xb2\xab\xdd\x9f\xef\xf7\xf5\x97\xb0\xff\xbf" "\x51\xff\x9f\xb2\x29\x5b\xff\x3f\xe6\xfe\x57\x85\x99\xd4\x24\xff\x03\x00" "\x00\x40\x1d\xc4\xdc\xff\xea\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe" "\xeb\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x37\x87\x99\xd4\x24\xff" "\xeb\xff\xeb\xff\xeb\xff\x3b\xff\xbf\xfe\x7f\xdf\xf4\xff\x9d\xff\xbf\x03" "\xfd\x7f\xfd\xff\x4c\xff\xff\x92\x5d\xed\xfe\x7c\xbf\xaf\xbf\x84\xfd\x7f" "\xe7\xff\xa7\x74\xca\xd6\xff\x8f\xb9\xff\xd7\xc2\x4c\x6a\x92\xff\x01\x00" "\x00\xa0\x0e\x62\xee\x7f\x4d\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff" "\xf5\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x37\x84\x99\xd4\x24\xff" "\xd7\xb3\xff\xff\x7c\x96\x65\xfa\xff\x99\xfe\xbf\xfe\x7f\xdb\x3a\xf5\xff" "\xf5\xff\xd7\x83\xfe\xbf\xfe\x7f\x37\xfa\xff\xfa\xff\xfd\xbc\x7e\xfd\x7f" "\xfd\x7f\x7a\x2b\x5b\xff\x3f\xe6\xfe\xd7\x86\x99\xd4\x24\xff\x03\x00\x00" "\x40\x1d\xc4\xdc\x7f\x63\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xeb" "\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x6f\x0a\x33\xa9\x49\xfe\xaf" "\x67\xff\xdf\xf9\xff\xf5\xff\x0b\xfa\xff\xad\xeb\xd4\xff\xd7\xff\x5f\x0f" "\xfa\xff\xfa\xff\xdd\xe8\xff\xeb\xff\xf7\xf3\xfa\xf5\xff\xf5\xff\xe9\xad" "\x6c\xfd\xff\x98\xfb\x5f\x1f\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73" "\xff\xcd\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x6f\x08\x33\x91\xff" "\x01\x00\x00\xa0\x32\x62\xee\xdf\x12\x66\x52\x93\xfc\xaf\xff\x7f\xf9\xfd" "\xff\x19\xfd\x7f\xfd\xff\xb6\x63\x42\xff\x3f\x1c\x5f\xfa\xff\xfa\xff\x7d" "\xd7\xff\x1f\x5c\xf6\x92\x7e\xef\xff\x8f\x86\xa9\xff\xdf\xfa\x38\xca\xd3" "\xff\x9f\x5f\x5c\xc0\xca\xfb\xff\xed\x6f\x9f\xab\x76\xb5\xfb\xf3\xfd\xbe" "\x7e\xfd\x7f\xfd\x7f\x7a\x2b\x5b\xff\x3f\xe6\xfe\x37\x86\x99\xd4\x24\xff" "\x03\x00\x00\x40\x1d\xc4\xdc\xff\xa6\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23" "\xe6\xfe\x5b\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xc7\xc3\x4c\x6a" "\x92\xff\xf5\xff\x9d\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x7f\x3d\xf5\x57" "\xff\x7f\x79\xfd\xde\xff\x8f\xf4\xff\x5b\x1f\x47\x79\xfa\xff\x8b\xf7\xef" "\xfc\xff\xfd\xb3\x7e\xfd\x7f\xfd\x7f\x7a\x2b\x5b\xff\x3f\xe6\xfe\xad\x61" "\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\x6f\x0b\x33\x91\xff\x01\x00" "\x00\xa0\x32\x62\xee\xbf\x35\xcc\x44\xfe\x07\x00\x00\x80\x7e\xf3\xc4\x72" "\x17\xc4\xdc\xbf\x3d\xcc\xa4\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x7f\xb9\xfe" "\xff\xa0\xfe\xbf\xfe\xbf\xfe\xff\x1a\xd0\xff\xd7\xff\xef\x46\xff\x5f\xff" "\xbf\x9f\xd7\xaf\xff\xaf\xff\x4f\x6f\x65\xeb\xff\xc7\xdc\x7f\x5b\x98\x49" "\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\xb7\x87\x99\xc8\xff\x00\x00\x00" "\x50\x19\x31\xf7\xbf\x39\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x47" "\x98\x49\x4d\xf2\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x1f\x9f\xff\x7f\x48\xff\x3f" "\xd3\xff\x2f\x3d\xfd\x7f\xfd\xff\x6e\xf4\xff\xcb\xd5\xff\x1f\xd6\xff\xd7" "\xff\xd7\xff\x67\x8d\x95\xad\xff\x1f\x73\xff\x5b\xc2\x4c\x6a\x92\xff\x01" "\x00\x00\xa0\x0e\x62\xee\x7f\x6b\x98\x41\xfb\x5f\x0f\x01\x00\x00\x00\x7d" "\x2c\xe6\xfe\x3b\xc2\x4c\xfc\xfd\x3f\x00\x00\x00\x54\x46\xcc\xfd\x13\x61" "\x26\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff\x7d\xdc\xff\x77\xfe\xff\x96\xf5" "\xaf\x41\xff\x7f\xa4\xf9\xeb\xfa\xff\x6b\x43\xff\x5f\xff\xbf\x1b\xfd\xff" "\x72\xf5\xff\x9d\xff\x5f\xff\x5f\xff\x9f\xb5\x56\xb6\xfe\x7f\xcc\xfd\x77" "\x86\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\xbf\x33\xcc\x44\xfe\x07" "\x00\x00\x80\xca\x88\xb9\x7f\x32\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9" "\x7f\x2a\xcc\xa4\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xdf\xf9" "\xff\xd7\x93\xfe\xbf\xfe\x7f\x37\xfa\xff\xfa\xff\xfd\xbc\x7e\xfd\x7f\xfd" "\x7f\x7a\x2b\x5b\xff\x3f\xe6\xfe\xe9\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8" "\x83\x98\xfb\x77\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xef\x0e\x33" "\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xdf\x13\x66\x52\x93\xfc\xdf\x27\xfd" "\xff\x9d\xa9\x00\xa5\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x57\xf4\xff" "\xf5\xff\xbb\xd1\xff\xd7\xff\xef\xe7\xf5\xeb\xff\xeb\xff\xd3\x6a\xb0\xc3" "\xd7\xca\xd6\xff\x8f\xb9\x7f\x6f\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41" "\xcc\xfd\xfb\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xef\x0a\x33\x91" "\xff\x01\x00\x00\xa0\x32\x62\xee\xbf\x3b\xcc\xa4\x26\xf9\xbf\x4f\xfa\xff" "\xce\xff\xaf\xff\xaf\xff\xdf\x44\xff\x5f\xff\xbf\x9f\xe8\xff\xeb\xff\x77" "\xa3\xff\xaf\xff\xdf\xcf\xeb\xd7\xff\xd7\xff\xa7\xb7\xb2\xf5\xff\x63\xee" "\xdf\x1f\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73\xff\xdb\xc2\x4c\xe4" "\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xef\x09\x33\x91\xff\x01\x00\x00\xa0\xaf" "\x74\x3a\x0f\x61\x14\x73\xff\xdb\xc3\x4c\x6a\x92\xff\xf5\xff\xab\xde\xff" "\x5f\xd8\xa0\xff\xaf\xff\xaf\xff\xdf\x7d\xfd\xfa\xff\xeb\x4b\xff\x5f\xff" "\xbf\x1b\xfd\x7f\xfd\xff\x7e\x5e\xbf\xfe\xbf\xfe\x3f\xbd\x95\xad\xff\x1f" "\x73\xff\x81\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\xdf\x11\x66" "\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xce\x30\x13\xf9\x1f\x00\x00\x00" "\x2a\x23\xe6\xfe\x99\x30\x93\x9a\xe4\x7f\xfd\xff\xaa\xf7\xff\x9d\xff\x5f" "\xff\x5f\xff\xbf\xd7\xfa\xf5\xff\xd7\x97\xfe\xbf\xfe\x7f\x37\xfa\xff\xfd" "\xd9\xff\x0f\x3f\xb6\xe8\xff\x97\xa8\xff\x9f\x1f\x43\xcd\xfd\xff\xaf\xea" "\xff\x53\x12\x65\xeb\xff\xc7\xdc\xff\xae\x30\x93\x9a\xe4\x7f\x00\x00\x00" "\xa8\x83\x98\xfb\xdf\x1d\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\x9e" "\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xf7\x86\x99\xd4\x24\xff\xeb" "\xff\xeb\xff\xeb\xff\x5f\xe1\xfe\x7f\x96\xcd\x0f\xe9\xff\x37\xe8\xff\xeb" "\xff\xaf\x85\x1a\xf7\xff\x1b\x6f\x85\xfa\xff\x05\xfd\xff\x4b\xb3\xd8\x9f" "\xbf\xce\xf9\xff\xfb\xbc\xff\xef\xfc\xff\x94\x55\xd9\xfa\xff\x31\xf7\xbf" "\x2f\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\xf7\x87\x99\xc8\xff" "\x00\x00\x00\x50\x19\x31\xf7\xff\x7a\x98\x89\xfc\x0f\x00\x00\x00\x95\x11" "\x73\xff\xbd\x61\x26\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xce\xff\xaf\xff" "\xaf\xff\xbf\x9e\xf4\xff\x9d\xff\xbf\x1b\xfd\xff\xb2\xf4\xff\xaf\x4e\x7f" "\xbe\xdf\xd7\xaf\xff\xaf\xff\x4f\x6f\x65\xeb\xff\xc7\xdc\xff\x1b\x61\x26" "\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\xdf\x17\x66\x22\xff\x03\x00\x00" "\x40\x65\xc4\xdc\xff\x81\x30\x13\xf9\x1f\x00\x00\x00\xfa\xcc\xe8\xb2\x97" "\xc4\xdc\xff\x9b\x61\x26\x35\xc9\xff\xfd\xd7\xff\x1f\xef\xcb\xfe\xff\x60" "\xba\x7d\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xb5\xa4\xff\xaf\xff\x9f" "\xad\x45\xff\x7f\xf0\xd2\xd6\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x77\x65" "\xeb\xff\xc7\xdc\xff\x5b\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7" "\x7f\x30\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xb7\xc3\x4c\xe4\x7f" "\x00\x00\x00\xa8\x8c\x98\xfb\xef\x0f\x33\xa9\x49\xfe\x5f\xeb\xfe\x7f\xfb" "\xf5\xbb\x71\xfe\x7f\xfd\xff\x4c\xff\x5f\xff\x5f\xff\x5f\xff\xff\x32\xf5" "\x53\xff\x7f\x44\xff\x7f\x89\xd2\xf4\xff\x9d\xff\x5f\xff\x5f\xff\x5f\xff" "\x9f\x75\x51\xb6\xfe\x7f\xcc\xfd\xbf\x13\x66\x52\x93\xfc\x0f\x00\x00\x00" "\x75\x10\x73\xff\x03\x61\x26\xf2\x3f\x00\x00\x00\x94\xd4\xc3\xab\xbe\x46" "\xcc\xfd\x1f\x0a\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xff\x70\x98\x49" "\x4d\xf2\x7f\xff\x9d\xff\xbf\xff\xfa\xff\xf9\xed\xeb\xff\xeb\xff\x67\xfa" "\xff\xfa\xff\x4d\x7b\x55\xff\x7f\xed\xf4\x53\xff\xdf\xf9\xff\x97\xd2\xff" "\xd7\xff\xef\xe7\xf5\xeb\xff\xeb\xff\xd3\x5b\xd9\xfa\xff\x31\xf7\x3f\x18" "\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73\xff\x47\xc2\x4c\xe4\x7f\x00" "\x00\x00\xa8\x8c\x98\xfb\x7f\x37\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9" "\xff\xf7\xc2\x4c\x6a\x92\xff\xf5\xff\x9d\xff\x5f\xff\x5f\xff\x5f\xff\x5f" "\xff\x7f\x3d\xe9\xff\x2f\xed\xff\xe7\xef\x61\xfa\xff\x05\xfd\x7f\xfd\xff" "\x7e\x5e\xbf\xfe\xbf\xfe\x3f\xbd\x95\xad\xff\x1f\x73\xff\x47\xc3\x4c\x6a" "\x92\xff\x01\x00\x00\xa0\x0e\x62\xee\xff\xfd\x30\x13\xf9\x1f\x00\x00\x00" "\x2a\x23\xe6\xfe\x3f\x08\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xff\x58" "\x98\x49\x4d\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xff\x7a" "\xd2\xff\x77\xfe\xff\x6e\xf4\xff\xf5\xff\xfb\x79\xfd\xfa\xff\xfa\xff\xf4" "\x56\xb6\xfe\x7f\xcc\xfd\x1f\x0f\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88" "\xb9\xff\x0f\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x0f\x86\x99\xc8" "\xff\x00\x00\x00\x50\x19\x31\xf7\x3f\x14\x66\x52\x93\xfc\xaf\xff\xdf\xcf" "\xfd\xff\xbf\x49\xf7\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x5f\x56\x25\xea\xff" "\x8f\x5d\xce\xfd\xe8\xff\x17\xf4\xff\x5b\xad\xb0\xff\xbf\xf8\x36\xa7\xff" "\xbf\xa6\xae\xf6\xfa\xf5\xff\xf5\xff\xe9\xad\x6c\xfd\xff\x98\xfb\x0f\x85" "\x99\xcc\xb4\xde\x0d\x00\x00\x00\xd0\xbf\x62\xee\xff\x44\x98\x49\x4d\xfe" "\xfe\x1f\x00\x00\x00\xea\x20\xe6\xfe\xc3\x61\x26\xf2\x3f\x00\x00\x00\x54" "\x46\xcc\xfd\x47\xc2\x4c\x6a\x92\xff\xf5\xff\xfb\xb9\xff\x5f\x5c\xc7\xf9" "\xff\xf5\xff\xf5\xff\xf5\xff\xcb\xac\x44\xfd\xff\xcb\xa2\xff\x5f\xd0\xff" "\x6f\xe5\xfc\xff\xfa\xff\xfa\xff\xfa\xff\x74\x57\xb6\xfe\x7f\xcc\xfd\xb3" "\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\x1f\x0d\x33\x91\xff\x01" "\x00\x00\xa0\x32\x62\xee\x3f\x16\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc" "\xff\x70\x98\x49\x4d\xf2\xbf\xfe\x7f\x53\x97\x5b\xff\x5f\xff\xbf\x5e\xfd" "\xff\x1f\x7d\xa7\x6d\x9d\xfa\xff\xfa\xff\xeb\x41\xff\x5f\xff\xbf\x1b\xfd" "\xff\x55\xf6\xff\xe3\x86\xfa\xff\xa5\x58\xbf\xfe\xbf\xfe\x3f\xbd\x95\xad" "\xff\x1f\x73\xff\xf1\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\x3f" "\x19\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xa9\x30\x13\xf9\x1f\x00" "\x00\x00\x2a\x23\xe6\xfe\x13\x61\x26\x35\xc9\xff\xfa\xff\xce\xff\xaf\xff" "\x5f\xdb\xfe\xff\xca\xce\xff\xbf\x71\xf1\x7e\xf5\xff\xf5\xff\x2f\x85\xfe" "\xbf\xfe\x7f\x37\xfa\xff\xce\xff\xdf\xcf\xeb\xd7\xff\xd7\xff\xa7\xb7\xb2" "\xf5\xff\x63\xee\x3f\x19\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73\xff" "\xa9\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xd3\x61\x26\xf2\x3f\x00" "\x00\x00\x54\x46\xcc\xfd\x67\xc2\x4c\x6a\x92\xff\xf5\xff\x57\xd7\xff\x1f" "\x58\xa6\x1b\xa8\xff\xdf\x79\xfd\xfa\xff\x57\xbe\xff\x3f\x9a\xad\x71\xff" "\xbf\x89\xfe\xbf\xfe\xff\xa5\xd0\xff\xd7\xff\xef\xe6\x0a\xf4\xff\x5f\x69" "\xbe\x8a\xfe\x7f\xab\xab\xdd\x9f\xef\xf7\xf5\xeb\xff\xeb\xff\xd3\x5b\x29" "\xfa\xff\x23\x8b\x7f\x8e\xb9\xff\x8f\xc2\x4c\x6a\x92\xff\x01\x00\xe0\xff" "\xd9\xbb\xaf\x25\x4b\xab\xf2\x8f\xe3\x9b\xc9\x83\x45\x79\xec\x19\x17\xe0" "\x89\x57\xa0\x87\x56\x79\xe0\x35\x68\x59\x5e\x80\x98\xe3\x60\xc6\x88\x62" "\x56\x30\x62\xc0\x88\x11\xc5\x9c\x33\xe6\x2c\xe6\x84\xa2\xa8\x18\x50\xab" "\xb0\xe8\x7e\x9e\xa7\xa7\x7b\xa6\xdf\xbd\xa7\xbb\xf7\xf4\x7a\xd7\xfa\x7c" "\x0e\x78\xfe\x83\x0c\xbc\x16\xe8\xbf\x7e\x35\x7e\x6b\x01\x8c\x20\x77\xff" "\x23\xe2\x16\xfb\x1f\x00\x00\x00\xba\x91\xbb\xff\x8a\xb8\xc5\xfe\x07\x00" "\x00\x80\x6e\xe4\xee\x7f\x64\xdc\x32\xc8\xfe\x5f\x7f\xff\x7f\x6a\xd7\xbf" "\xf6\x1c\xfb\xff\xdd\xe8\xff\xcf\xff\xfd\xfa\xff\x0e\xde\xff\x3f\x8b\xfe" "\x5f\xff\xbf\x17\xfa\x7f\xfd\xff\x14\xef\xff\xeb\xff\xe7\xfc\xfd\xfa\xff" "\x87\x5f\x71\x79\xfe\x40\xff\xcf\x2e\x9a\xe8\xff\xcf\xfa\x71\xee\xfe\x47" "\xc5\x2d\x83\xec\x7f\x00\x00\x00\xe8\xdf\xd6\xee\x7f\x74\xdc\x62\xff\x03" "\x00\x00\x40\x37\x72\xf7\x3f\x26\x6e\xb1\xff\x01\x00\x00\xa0\x1b\xb9\xfb" "\x1f\x1b\xb7\x0c\xb2\xff\xbd\xff\x3f\x50\xff\x9f\xff\xa6\xf4\xff\xfa\xff" "\xf8\xf3\xe8\xff\x37\xe9\xff\xd7\x4b\xff\xaf\xff\xdf\x4d\xfe\x77\xd1\xee" "\xfd\xff\xb6\xff\xb4\xea\xff\xf5\xff\xcd\x7d\xbf\xfe\xdf\xfb\xff\x2c\xd7" "\x5a\xff\x9f\xbb\xff\x71\x71\xcb\x20\xfb\x1f\x00\x00\x00\x46\x90\xbb\xff" "\xf1\x71\x8b\xfd\x0f\x00\x00\x00\xdd\xc8\xdd\xff\x84\xb8\xc5\xfe\x07\x00" "\x00\x80\x6e\xe4\xee\x7f\x62\xdc\x32\xc8\xfe\xd7\xff\x0f\xd4\xff\x7b\xff" "\xff\x9c\xbf\x5f\x23\xf5\xff\x47\xf5\xff\xfa\xff\x43\xa2\xff\x6f\xb3\xff" "\x7f\xd0\xb2\x3f\xd0\xfb\xff\x2b\xd1\xff\xeb\xff\xf5\xff\xfa\x7f\xa6\xb5" "\xd6\xff\xe7\xee\x7f\x52\xdc\x32\xc8\xfe\x07\x00\x00\x80\x11\xe4\xee\x7f" "\x72\xdc\x62\xff\x03\x00\x00\x40\x37\x72\xf7\x3f\x25\x6e\xb1\xff\x01\x00" "\x00\xa0\x1b\xb9\xfb\xcf\xc4\x2d\x43\xec\xff\x63\xfa\x7f\xfd\xbf\xfe\x7f" "\x8e\xfd\xff\x31\xef\xff\xeb\xff\xe7\x43\xff\xdf\x66\xff\xbf\x94\xfe\x7f" "\x25\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xb4\xd6\xfa\xff\xdc\xfd\x57\xc6\x2d" "\x43\xec\x7f\x00\x00\x00\x18\x43\xee\xfe\xa7\xc6\x2d\xf6\x3f\x00\x00\x00" "\x74\x23\x77\xff\xd3\xe2\x16\xfb\x1f\x00\x00\x00\xba\x91\xbb\xff\xe9\x71" "\xcb\x20\xfb\x5f\xff\xaf\xff\xd7\xff\xcf\xb0\xff\xdf\xc3\xfb\xff\xfa\x7f" "\xfd\xff\x61\xd1\xff\xeb\xff\xa7\xe8\xff\xf5\xff\x87\xf5\xfd\x67\xf4\xff" "\xfa\x7f\x2e\x8a\xd6\xfa\xff\xdc\xfd\xcf\x88\x5b\x06\xd9\xff\x00\x00\x00" "\x30\x82\xdc\xfd\xcf\x8c\x5b\xec\x7f\x00\x00\x00\xe8\x46\xee\xfe\x67\xc5" "\x2d\xf6\x3f\x00\x00\x00\x74\x23\x77\xff\xb3\xe3\x96\x41\xf6\xbf\xfe\x5f" "\xff\xaf\xff\xd7\xff\x77\xdc\xff\xdf\xa9\xff\x3f\x7c\xfa\x7f\xfd\xff\x14" "\xfd\xbf\xfe\x7f\xce\xdf\xaf\xff\xd7\xff\xb3\xdc\xda\xfb\xff\x07\x5f\xb5" "\x71\x57\xed\xff\x73\xf7\x5f\x15\xb7\x0c\xb2\xff\x01\x00\x00\x60\x04\xb9" "\xfb\x9f\x13\xb7\xd8\xff\x00\x00\x00\xd0\x8d\xdc\xfd\xcf\x8d\x5b\xec\x7f" "\x00\x00\x00\xe8\x46\xee\xfe\xe7\xc5\x2d\x83\xec\x7f\xfd\xbf\xfe\x7f\xab" "\xff\xbf\xfb\x12\xfd\xbf\xfe\xbf\xb3\xfe\xdf\xfb\xff\x0d\xd0\xff\xeb\xff" "\xa7\xe8\xff\xf5\xff\x73\xfe\x7e\xfd\xbf\xfe\x9f\xe5\xd6\xde\xff\x2f\xe9" "\xfd\x77\xfe\x38\x77\xff\xf3\xe3\x96\x41\xf6\x3f\x00\x00\x00\x8c\x20\x77" "\xff\x0b\xe2\x16\xfb\x1f\x00\x00\x00\xba\x91\xbb\xff\x85\x71\x8b\xfd\x0f" "\x00\x00\x00\xdd\xc8\xdd\x7f\x75\xdc\x32\xc8\xfe\xd7\xff\xeb\xff\xbd\xff" "\xaf\xff\xd7\xff\xeb\xff\xd7\x49\xff\xdf\x6c\xff\xbf\xf3\x3f\x7a\xdb\xe9" "\xff\x57\x32\x52\xff\xbf\xf3\xbf\x3b\x17\xfa\xff\xc9\xfe\xff\xfe\x2b\x7c" "\xbf\xfe\x9f\x11\xb4\xd6\xff\xe7\xee\x7f\x51\xdc\x32\xc8\xfe\x07\x00\x00" "\x80\x11\xe4\xee\x7f\x71\xdc\x62\xff\x03\x00\x00\x40\x37\x72\xf7\x5f\x13" "\xb7\xd8\xff\x00\x00\x00\xd0\x8d\xdc\xfd\x2f\x89\x5b\x06\xd9\xff\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\xbf\xbd\xff\x3f\x32\x64\xff\x7f\xcf\xef\xd3\xff\xaf" "\x87\xfe\xbf\xd9\xfe\x7f\x9a\xfe\x7f\x25\xdd\xf4\xff\xa7\xbd\xff\xef\xfd" "\x7f\xfd\x3f\xeb\xd1\x5a\xff\x9f\xbb\xff\xa5\x71\xcb\x20\xfb\x1f\x00\x00" "\x00\x46\x90\xbb\xff\x65\x71\x8b\xfd\x0f\x00\x00\x00\xdd\xc8\xdd\xff\xf2" "\xb8\xc5\xfe\x07\x00\x00\x80\x6e\xe4\xee\x7f\x45\xdc\x32\xc8\xfe\xd7\xff" "\xeb\xff\xf5\xff\xfa\xff\x7d\xbd\xff\x7f\xb4\x8f\xfe\xdf\xfb\xff\xeb\xa3" "\xff\xd7\xff\x4f\xd1\xff\x37\xd2\xff\x1f\x52\x3f\x3f\xf7\xef\xd7\xff\xeb" "\xff\x59\xae\xb5\xfe\x3f\x77\xff\x2b\xe3\x96\x41\xf6\x3f\x00\x00\x00\x74" "\xef\xc8\xa2\x76\xff\xab\xe2\x16\xfb\x1f\x00\x00\x00\xba\x91\xbb\xff\xd5" "\x71\x8b\xfd\x0f\x00\x00\x00\xdd\xc8\xdd\xff\x9a\xb8\x65\x90\xfd\xaf\xff" "\xd7\xff\xeb\xff\xf5\xff\xfb\xea\xff\x3b\x79\xff\x5f\xff\xbf\x3e\xfa\x7f" "\xfd\xff\x94\x55\xfb\xff\x45\x53\xfd\xff\x25\xf5\xf7\x49\xff\xaf\xff\xd7" "\xff\xeb\xff\x99\xd6\x5a\xff\x9f\xbb\xff\xda\xb8\x65\x90\xfd\x0f\x00\x00" "\x00\x23\xc8\xdd\x7f\x5d\xdc\x62\xff\x03\x00\x00\x40\x37\x72\xf7\xbf\x36" "\x6e\xb1\xff\x01\x00\x00\xa0\x1b\xb9\xfb\x5f\x17\xb7\x0c\xb2\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\x58\x9c\xd1\xff\xaf\x8d\xfe\x5f\xff\x3f" "\xc5\xfb\xff\xfa\xff\x39\x7f\xbf\xfe\x5f\xff\xcf\x72\xad\xf5\xff\xb9\xfb" "\x5f\x1f\xb7\x0c\xb2\xff\x01\x00\x00\x60\x04\xb9\xfb\xdf\x10\xb7\xd8\xff" "\x00\x00\x00\xd0\x8d\xdc\xfd\x6f\x8c\x5b\xec\x7f\x00\x00\x00\xe8\x46\xee" "\xfe\x37\xc5\x2d\x3b\xf7\xff\x91\x8b\xf9\x55\x17\x8f\xfe\x5f\xff\xbf\xe6" "\xfe\x7f\xe3\xf7\xeb\xff\xf5\xff\x8d\xf7\xff\xde\xff\x5f\x23\xfd\xbf\xfe" "\x7f\x8a\xfe\xff\xfc\xfd\xff\xa9\x5d\xfe\x7a\xfa\xff\xb6\xbe\x5f\xff\xaf" "\xff\x67\xb9\xd6\xfa\xff\xdc\xfd\xd7\xc7\x2d\x7e\xfd\x1f\x00\x00\x00\xba" "\x91\xbb\xff\xcd\x71\x8b\xfd\x0f\x00\x00\x00\xdd\xc8\xdd\xff\x96\xb8\xc5" "\xfe\x07\x00\x00\x80\x6e\xe4\xee\x7f\x6b\xdc\x32\xc8\xfe\xdf\xad\xff\xbf" "\xe3\x5e\x9b\xff\xba\xfe\x7f\x35\xfa\xff\xf3\x7f\xbf\xf7\xff\xf5\xff\xab" "\xf6\xff\x77\xdd\x9a\x3f\xeb\x6e\xfd\xbf\xfe\xff\x82\xec\xaf\x9f\x3f\xb1" "\xf2\x1f\xa9\xff\xdf\xa4\xff\xdf\x6e\xb7\xfe\xff\xd2\x85\xf7\xff\xf5\xff" "\xfa\xff\x65\x3f\x9f\x31\xb4\xd6\xff\xe7\xee\x7f\x5b\xdc\x32\xc8\xfe\x07" "\x00\x00\x80\x11\xe4\xee\xbf\x21\x6e\xb1\xff\x01\x00\x00\xa0\x1b\xb9\xfb" "\xdf\x1e\xb7\xd8\xff\x00\x00\x00\xd0\x8d\xdc\xfd\xef\x88\x5b\x06\xd9\xff" "\x07\xff\xfe\xff\xe5\xfa\x7f\xfd\xbf\xfe\x3f\xae\xfe\xff\x02\xde\xff\x3f" "\xba\xf5\xf3\xf4\xff\xdb\x7f\x7c\x6f\xfd\xff\x24\xef\xff\xeb\xff\x17\x0d" "\xf6\xff\xfb\x7d\xff\x5f\xff\x3f\x8f\xef\xd7\xff\xeb\xff\x59\x6e\x0f\xfd" "\xff\xf1\x5d\xfe\x54\x07\xd2\xff\xe7\xee\x7f\x67\xdc\x32\xc8\xfe\x07\x00" "\x00\x80\x11\xe4\xee\x7f\x57\xdc\x62\xff\x03\x00\x00\x40\x37\x72\xf7\xbf" "\x3b\x6e\xb1\xff\x01\x00\x00\xa0\x1b\xb9\xfb\xdf\x13\xb7\x0c\xb2\xff\x0f" "\xbe\xff\xf7\xfe\xff\x1a\xfa\xff\x5b\x16\x3d\xf7\xff\x47\xf4\xff\x69\xe8" "\xfe\xff\x2c\xfa\x7f\xef\xff\x5f\x08\xfd\xbf\xfe\x7f\xa1\xff\xdf\xb3\xc3" "\xee\xe7\xe7\xfe\xfd\xfa\x7f\xfd\x3f\xcb\xb5\xf6\xfe\x7f\xee\xfe\x1b\x37" "\xa6\xde\x78\xfb\x1f\x00\x00\x00\x46\x70\xe3\xc6\x6f\x4f\x2d\xde\x1b\xb7" "\xd8\xff\x00\x00\x00\xd0\x8d\xdc\xfd\xef\x8b\x5b\xec\x7f\x00\x00\x00\xe8" "\x46\xee\xfe\xf7\xc7\x2d\x83\xec\x7f\xfd\xff\x2c\xfa\x7f\xef\xff\xf7\xdf" "\xff\x9f\x88\x9f\xa2\xff\xd7\xff\xeb\xff\x2f\x50\x6f\xfd\xff\xa9\x0b\xfc" "\x2e\xfd\xff\x26\xfd\xff\xde\x1c\x76\x3f\x3f\xf7\xef\x9f\xec\xff\x2f\x5b" "\xe8\xff\xa1\xc1\xfe\x3f\x77\xff\x07\xe2\x96\x41\xf6\x3f\x00\x00\x00\x8c" "\x20\x77\xff\x07\xe3\x16\xfb\x1f\x00\x00\x00\xba\x11\xbb\x7f\xf3\x7f\xfc" "\x6e\xff\x03\x00\x00\x40\x97\x3e\xb4\xf1\xdb\x53\x8b\x9b\x36\xb6\xff\x78" "\xfb\x7f\xe0\xfe\xff\xf2\xfd\xf6\xff\xa7\xcf\xfa\xbf\xf5\xff\xe7\xff\x7e" "\xfd\xff\x81\xbc\xff\x7f\xe3\xce\x7f\xf6\xf4\xff\xfa\xff\x39\xd1\xff\x7b" "\xff\x7f\x8a\xfe\x5f\xff\x3f\xe7\xef\x6f\xe7\xfd\xff\xf8\x1d\x67\xf4\xff" "\xb4\xa7\xb5\xfe\xff\xa6\x8d\x9f\x75\x6a\xf1\xe1\xb8\x65\x90\xfd\x0f\x00" "\x00\x00\x23\xc8\xdd\xff\x91\xb8\xc5\xfe\x07\x00\x00\x80\x6e\xe4\xee\xbf" "\x39\x6e\xb1\xff\x01\x00\x00\xa0\x1b\xb9\xfb\x3f\x1a\xb7\x0c\xb2\xff\x07" "\xee\xff\x3b\x79\xff\xff\x21\xb7\xc7\x17\xe8\xff\xfb\xed\xff\xbd\xff\x1f" "\x77\x56\xfd\xff\x1d\xfa\xff\xa4\xff\xd7\xff\x4f\xd1\xff\xeb\xff\xe7\xfc" "\xfd\xed\xf4\xff\xde\xff\xa7\x5d\xad\xf5\xff\xb9\xfb\x3f\x16\xb7\x0c\xb2" "\xff\x01\x00\x00\x60\x04\xb9\xfb\x3f\x1e\xb7\xd8\xff\x00\x00\x00\xd0\x8d" "\xdc\xfd\x9f\x88\x5b\xec\x7f\x00\x00\x00\xe8\x46\xee\xfe\x4f\xc6\x2d\x83" "\xec\x7f\xfd\xff\xdc\xfb\x7f\xef\xff\xeb\xff\xf5\xff\x4d\xf6\xff\xde\xff" "\x2f\xfa\x7f\xfd\xff\x94\xea\xff\xaf\x8d\xd0\x7f\xc8\xfe\xff\x88\xfe\x7f" "\xa6\xdf\xaf\xff\xd7\xff\xb3\xdc\xb6\xfe\xff\x81\x37\xd4\xef\x3f\xac\xfe" "\x3f\x77\xff\xa7\xe2\x96\x41\xf6\x3f\x00\x00\x00\x8c\x20\x77\xff\xa7\xe3" "\x16\xfb\x1f\x00\x00\x00\xba\x91\xbb\xff\x33\x71\x8b\xfd\x0f\x00\x00\x00" "\xdd\xc8\xdd\xff\xd9\xb8\x65\x90\xfd\xaf\xff\x9f\x7f\xff\x7f\xdf\xdb\x8e" "\x1d\x6b\xb1\xff\xbf\xe7\x2f\xa2\xff\x1f\xa4\xff\xbf\x52\xff\xbf\xd0\xff" "\xef\x4a\xff\xaf\xff\x9f\xe2\xfd\x7f\xef\xff\xcf\xf9\xfb\xf5\xff\xfa\x7f" "\x96\xdb\xd6\xff\x9f\xe5\xb0\xfa\xff\xdc\xfd\x9f\x8b\x5b\x1e\x50\x93\x18" "\x00\x00\x00\x98\xb9\xdc\xfd\x9f\x8f\x5b\x06\xf9\xf5\x7f\x00\x00\x00\x18" "\x41\xee\xfe\x2f\xc4\x2d\xf6\x3f\x00\x00\x00\x74\x23\x77\xff\x17\xe3\x86" "\xfb\x5d\x76\x78\x9f\x74\xb0\x76\x6b\x18\xa2\x37\xd7\xff\xcf\xbf\xff\xf7" "\xfe\xbf\xfe\xff\xd0\xfb\x7f\xef\xff\x6f\xd0\xff\x9f\x9f\xfe\x5f\xff\x3f" "\x45\xff\xaf\xff\x9f\xf3\xf7\xeb\xff\xf5\xff\x2c\xd7\x5a\xff\x9f\xbb\xff" "\x4b\x71\x8b\x5f\xff\x07\x00\x00\x80\x19\xbb\x7a\xdb\x8f\x72\xf7\x7f\x39" "\x6e\xb1\xff\x01\x00\x00\xa0\x1b\xb9\xfb\xbf\x12\xb7\xd8\xff\x00\x00\x00" "\xd0\x8d\xdc\xfd\x5f\x8d\x5b\x06\xd9\xff\xfa\x7f\xfd\xbf\xfe\x7f\xb6\xfd" "\xff\x69\xfd\xff\xf6\xef\x6f\xa2\xff\xbf\x6e\xeb\xcf\xae\xff\xdf\xa4\xff" "\x9f\x4b\xff\x7f\xf7\xc9\x6d\x3f\xd4\xff\xaf\x44\xff\xaf\xff\xd7\xff\xeb" "\xff\x99\xd6\x5a\xff\x9f\xbb\xff\x6b\x71\xcb\x20\xfb\x1f\x00\x00\x00\x46" "\x90\xbb\xff\xeb\x71\xcb\xca\xfb\x7f\x6d\xbf\xd4\x00\x00\x00\x00\x1c\x90" "\xdc\xfd\xb7\xc4\x2d\x7e\xfd\x1f\x00\x00\x00\xba\x91\xbb\xff\x1b\x71\xcb" "\x20\xfb\x5f\xff\xaf\xff\xd7\xff\xcf\xb6\xff\xf7\xfe\xff\x8e\xef\x6f\xa2" "\xff\xf7\xfe\xff\x39\xf4\xff\x73\xe9\xff\x77\xd0\xff\xaf\x44\xff\xaf\xff" "\xd7\xff\xeb\xff\x99\xd6\x5a\xff\x9f\xbb\xff\x9b\x71\xcb\x20\xfb\x1f\x00" "\x00\x00\x46\x90\xbb\xff\x5b\x71\x8b\xfd\x0f\x00\x00\x00\xdd\xc8\xdd\xff" "\xed\xb8\xc5\xfe\x07\x00\x00\x80\x6e\xe4\xee\xff\x4e\xdc\x32\xc8\xfe\xd7" "\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\x9d\xf4\xff\xfa\xff\x29\xfa" "\x7f\xfd\xff\x9c\xbf\x5f\xff\xbf\xb3\xff\x3f\xa6\xff\xe7\x1c\xad\xf5\xff" "\xb9\xfb\xbf\x1b\xb7\x0c\xb2\xff\x01\x00\x00\x60\x04\xb9\xfb\xbf\x17\xb7" "\xd8\xff\x00\x00\x00\xd0\xba\x9d\xff\xf3\xce\x5d\xe5\xee\xff\x7e\xdc\x62" "\xff\x03\x00\x00\x40\xe3\x1e\xba\xf2\x1f\x99\xbb\xff\x07\x71\xcb\x20\xfb" "\xbf\xe7\xfe\x7f\xea\x0f\x3b\xac\xfe\xff\x44\xf4\xee\xfa\xff\x2d\xfa\xff" "\xad\x9f\xa7\xff\x8f\xbf\xaf\xfa\x7f\xfd\xff\x05\xd0\xff\xeb\xff\x17\xfa" "\xff\x3d\x3b\xec\x7e\x7e\xee\xdf\xaf\xff\xf7\xfe\x3f\xcb\xb5\xd6\xff\xe7" "\xee\xff\x61\xdc\x32\xc8\xfe\x07\x00\x00\x80\x11\xe4\xee\xff\x51\xdc\x62" "\xff\x03\x00\x00\x40\x37\x72\xf7\xff\x38\x6e\xb1\xff\x01\x00\x00\xa0\x1b" "\xb9\xfb\x7f\x12\xb7\x0c\xb2\xff\x7b\xee\xff\xa7\x78\xff\x7f\x93\xfe\x5f" "\xff\xbf\xd0\xff\xeb\xff\xd7\x4c\xff\xaf\xff\x9f\xa2\xff\xd7\xff\xcf\xf9" "\xfb\xf5\xff\xfa\x7f\x96\x3b\xa4\xfe\xff\xf8\x62\x97\xfe\x3f\x77\xff\x4f" "\xe3\x96\x41\xf6\x3f\x00\x00\x00\x8c\x20\x77\xff\xad\x71\x8b\xfd\x0f\x00" "\x00\x00\xdd\xc8\xdd\xff\xb3\xb8\xc5\xfe\x07\x00\x00\x80\x6e\xe4\xee\xff" "\x79\xdc\xd2\xcf\xfe\x7f\xd8\xcd\x13\xff\xa2\xfe\xff\xc0\xfb\xff\x8d\x7f" "\x88\xf4\xff\xfa\xff\x85\xfe\x5f\xff\xaf\xff\xdf\xa0\xff\xd7\xff\x4f\xd1" "\xff\xeb\xff\xe7\xfc\xfd\xfa\x7f\xfd\x3f\xcb\xb5\xf6\xfe\x7f\xee\xfe\x5f" "\xc4\x2d\xfd\xec\x7f\x00\x00\x00\x18\x5e\xee\xfe\x5f\xc6\x2d\xf6\x3f\x00" "\x00\x00\x74\x23\x77\xff\xaf\xe2\x16\xfb\x1f\x00\x00\x00\xba\x91\xbb\xff" "\xd7\x71\xcb\x20\xfb\x5f\xff\xdf\xc6\xfb\xff\xf9\x0d\xfa\x7f\xfd\xff\x9a" "\xfb\xff\xa3\x8b\x03\xec\xff\xef\x73\xe9\xf6\xef\x99\x41\xff\x7f\x5a\xff" "\x7f\xf1\xe9\xff\x77\xf4\xff\xc7\xf5\xff\x67\xd3\xff\xeb\xff\xe7\xfc\xfd" "\xfa\x7f\xfd\x3f\xcb\xb5\xd6\xff\xe7\xee\xff\x4d\xdc\x32\xc8\xfe\x07\x00" "\x00\x80\x11\xe4\xee\xff\x6d\xdc\x62\xff\x03\x00\x00\x40\x37\x72\xf7\xff" "\x2e\x6e\xb1\xff\x01\x00\x00\xa0\x1b\xb9\xfb\x7f\x1f\xb7\x0c\xb2\xff\xf5" "\xff\x6d\xf4\xff\xfb\x7b\xff\x7f\xab\x9e\xde\x73\xff\x7f\xcf\xdf\x7e\xfd" "\xff\x08\xfd\xbf\xf7\xff\xf5\xff\x17\x9d\xfe\xdf\xfb\xff\x53\xf4\xff\xfa" "\xff\x39\x7f\x7f\xf6\xff\xf9\xcf\x9d\xfe\x5f\xff\xcf\xb9\x5a\xeb\xff\x73" "\xf7\xff\x21\x6e\x19\x64\xff\x03\x00\x00\xc0\x08\x72\xf7\xdf\x16\xb7\xd8" "\xff\x00\x00\x00\xd0\x8d\xdc\xfd\x7f\x8c\x5b\xec\x7f\x00\x00\x00\xe8\x46" "\xee\xfe\x3f\xc5\x2d\x83\xec\x7f\xfd\x7f\x0f\xfd\xbf\xf7\xff\xf5\xff\xfa" "\x7f\xfd\x7f\xbb\xf4\xff\xfa\xff\x29\xfa\x7f\xfd\xff\x9c\xbf\xdf\xfb\xff" "\xfa\x7f\x96\x6b\xad\xff\xcf\xdd\x7f\x7b\xdc\x32\xc8\xfe\x07\x00\x00\x80" "\x11\xe4\xee\xff\x73\xdc\x62\xff\x03\x00\x00\x40\x37\x72\xf7\xff\x25\x6e" "\xb1\xff\x01\x00\x00\xa0\x1b\xb9\xfb\xef\x88\x5b\x06\xd9\xff\xfa\x7f\xfd" "\x7f\x97\xfd\xff\xc9\x15\xfb\xff\x53\xfa\xff\x85\xfe\x5f\xff\xbf\x66\xfa" "\x7f\xfd\xff\x14\xfd\xbf\xfe\x7f\xce\xdf\xaf\xff\xd7\xff\xb3\x5c\x6b\xfd" "\x7f\xee\xfe\xbf\xc6\x2d\x4b\x87\xdf\x89\x65\x7f\x00\x00\x00\x00\xd0\x88" "\xdc\xfd\x7f\x8b\x5b\x06\xf9\xf5\x7f\x00\x00\x00\x18\x41\xee\xfe\xbf\xc7" "\x2d\xf6\x3f\x00\x00\x00\x74\x23\x77\xff\x9d\x71\xcb\x20\xfb\xff\x60\xfb" "\xff\x93\xfa\xff\x21\xfa\xff\xe3\xf5\xef\xbb\xd9\xfe\xdf\xfb\xff\xfa\x7f" "\xfd\x7f\x33\xfa\xed\xff\x4f\xe8\xff\x47\xed\xff\xb7\xfe\xdf\xe0\xbe\xfb" "\xff\x6b\xae\xdf\xfc\xdd\xfa\xff\x79\x7e\xbf\xfe\x5f\xff\xcf\x72\xad\xf5" "\xff\xb9\xfb\xff\x11\xb7\x0c\xb2\xff\x01\x00\x00\x60\x04\xb9\xfb\xff\x19" "\xb7\xd8\xff\x00\x00\x00\xd0\x8d\xdc\xfd\xff\x8a\x5b\xec\x7f\x00\x00\x00" "\xe8\x46\xee\xfe\x7f\xc7\x2d\x83\xec\x7f\xef\xff\xeb\xff\xbb\x7c\xff\x5f" "\xff\xbf\xb6\xfe\xff\xf4\x42\xff\xaf\xff\xbf\x30\xfd\xf6\xff\xde\xff\x1f" "\xb6\xff\x3f\x8b\xf7\xff\xf5\xff\xfa\x7f\xfd\x3f\xd3\xf6\xd7\xff\x9f\xdc" "\xf6\x53\x36\x7e\xbb\xcf\xfe\x3f\x77\xff\x5d\x71\xcb\x20\xfb\x1f\x00\x00" "\x00\x46\x90\xbb\xff\x3f\x71\x8b\xfd\x0f\x00\x00\x00\xdd\xc8\xdd\xff\xdf" "\xb8\xc5\xfe\x07\x00\x00\x80\x6e\xe4\xee\xff\x5f\xdc\x32\xc8\xfe\xd7\xff" "\xeb\xff\xf5\xff\xe7\xf6\xff\xf9\x7d\xfa\x7f\xef\xff\xeb\xff\xf7\x4f\xff" "\xaf\xff\x9f\xa2\xff\xd7\xff\xcf\xf9\xfb\xf5\xff\xfa\x7f\x96\x6b\xed\xfd" "\xff\xdc\xfd\xff\x0f\x00\x00\xff\xff\xcf\x89\x22\x36", 24889); syz_mount_image(/*fs=*/0x200000000000, /*dir=*/0x200000000100, /*flags=MS_STRICTATIME*/ 0x1000000, /*opts=*/0x200000002740, /*chdir=*/1, /*size=*/0x6139, /*img=*/0x200000008e00); // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0x42 (4 bytes) // mode: open_mode = 0x0 (2 bytes) // ] // returns fd memcpy((void*)0x2000000003c0, "./file1\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x2000000003c0ul, /*flags=O_CREAT|O_RDWR*/ 0x42, /*mode=*/0); if (res != -1) r[0] = res; // write$FUSE_STATFS arguments: [ // fd: fd_fuse (resource) // arg: ptr[in, fuse_out_t[fuse_unique, fuse_statfs_out]] { // fuse_out_t[fuse_unique, fuse_statfs_out] { // len: len = 0x60 (4 bytes) // err: fuse_errors = 0x0 (4 bytes) // unique: fuse_unique (resource) // payload: fuse_statfs_out { // st: fuse_kstatfs { // blocks: int64 = 0xde5 (8 bytes) // bfree: int64 = 0x9 (8 bytes) // bavail: int64 = 0x0 (8 bytes) // files: int64 = 0x0 (8 bytes) // ffree: int64 = 0xffffffffffffffff (8 bytes) // bsize: int32 = 0x6 (4 bytes) // namelen: int32 = 0xd86 (4 bytes) // frsize: int32 = 0x6 (4 bytes) // padding: const = 0x0 (4 bytes) // spare: buffer: {00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00} (length 0x18) // } // } // } // } // len: bytesize = 0x60 (8 bytes) // ] *(uint32_t*)0x200000000140 = 0x60; *(uint32_t*)0x200000000144 = 0; *(uint64_t*)0x200000000148 = 0; *(uint64_t*)0x200000000150 = 0xde5; *(uint64_t*)0x200000000158 = 9; *(uint64_t*)0x200000000160 = 0; *(uint64_t*)0x200000000168 = 0; *(uint64_t*)0x200000000170 = -1; *(uint32_t*)0x200000000178 = 6; *(uint32_t*)0x20000000017c = 0xd86; *(uint32_t*)0x200000000180 = 6; *(uint32_t*)0x200000000184 = 0; memset((void*)0x200000000188, 0, 24); syscall(__NR_write, /*fd=*/r[0], /*arg=*/0x200000000140ul, /*len=*/0x60ul); // write$FUSE_STATFS arguments: [ // fd: fd_fuse (resource) // arg: ptr[in, fuse_out_t[fuse_unique, fuse_statfs_out]] { // fuse_out_t[fuse_unique, fuse_statfs_out] { // len: len = 0x60 (4 bytes) // err: fuse_errors = 0x0 (4 bytes) // unique: fuse_unique (resource) // payload: fuse_statfs_out { // st: fuse_kstatfs { // blocks: int64 = 0xde5 (8 bytes) // bfree: int64 = 0x9 (8 bytes) // bavail: int64 = 0x0 (8 bytes) // files: int64 = 0x0 (8 bytes) // ffree: int64 = 0xffffffffffffffff (8 bytes) // bsize: int32 = 0x6 (4 bytes) // namelen: int32 = 0xd86 (4 bytes) // frsize: int32 = 0x6 (4 bytes) // padding: const = 0x0 (4 bytes) // spare: buffer: {00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00} (length 0x18) // } // } // } // } // len: bytesize = 0x60 (8 bytes) // ] *(uint32_t*)0x200000000140 = 0x60; *(uint32_t*)0x200000000144 = 0; *(uint64_t*)0x200000000148 = 0; *(uint64_t*)0x200000000150 = 0xde5; *(uint64_t*)0x200000000158 = 9; *(uint64_t*)0x200000000160 = 0; *(uint64_t*)0x200000000168 = 0; *(uint64_t*)0x200000000170 = -1; *(uint32_t*)0x200000000178 = 6; *(uint32_t*)0x20000000017c = 0xd86; *(uint32_t*)0x200000000180 = 6; *(uint32_t*)0x200000000184 = 0; memset((void*)0x200000000188, 0, 24); syscall(__NR_write, /*fd=*/r[0], /*arg=*/0x200000000140ul, /*len=*/0x60ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; use_temporary_dir(); loop(); return 0; }