// 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"); } 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)) { } memcpy((void*)0x200000000400, "jfs\000", 4); memcpy((void*)0x200000000140, "./bus\000", 6); memcpy( (void*)0x2000000088c0, "\x78\x9c\xec\xdd\x5d\x6f\x1c\x57\x19\x07\xf0\x67\x76\xd7\xeb\x97\xd2\x34" "\xaa\x50\x15\x22\x2e\xd2\x14\x4a\x4b\x69\xde\x13\x28\x6f\x4d\xb9\xe0\x02" "\x90\x40\x42\xb9\x26\x91\xeb\x56\x81\x14\x50\x12\x10\xad\x22\xe2\x2a\x17" "\x88\x0b\x5e\x3e\x02\xdc\xf4\x86\x8b\x7e\x91\xf2\x15\x10\x1f\x80\x48\x09" "\x57\x95\xa0\x0c\x1a\xfb\x9c\x64\x3c\x59\x67\x9d\x26\xde\x59\xfb\xfc\x7e" "\x92\x33\xf3\xec\x99\xf1\x9e\xc9\xdf\xe3\xd9\xf5\xcc\xec\x09\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x20\xbe\xf7\xdd\x1f\x9f\xac\x22" "\xe2\xe2\xaf\xd3\x03\x07\x23\x3e\x13\xc3\x88\x41\xc4\x72\x53\x1f\x89\x66" "\xe6\x7c\x5e\x7e\x14\x11\x87\x62\xa3\x39\x9e\x8b\x88\xe1\x62\x44\xb3\xfe" "\xc6\x3f\xcf\x44\x9c\x89\x88\x8f\x0e\x44\xdc\xb9\x7b\x63\xb5\x79\xf8\xd4" "\x0e\xfb\x71\xf6\xc4\xf5\xab\x9f\x7c\xff\x3b\xff\xf8\xdd\x9f\x6e\x1d\xfa" "\xe9\x9b\x3f\xf9\xa0\xdb\xfe\xa3\xcf\x9e\xfe\xf0\xf7\x37\x23\x0e\xfe\xf0" "\xb5\x0f\x3f\xb9\xf9\x64\xb6\x1d\x00\x00\x00\x4a\x51\xd7\x75\x5d\xa5\xb7" "\xf9\x87\xd3\xfb\xfb\x41\xdf\x9d\x02\x00\x66\x22\x1f\xff\xeb\x24\x3f\xae" "\x56\xab\xd5\xea\x27\x5a\xff\x71\x30\x5f\xfd\xd9\x79\xbd\x14\xf3\xd5\x1f" "\xf5\x63\xd5\x6d\xf5\x64\x37\xdb\x45\x44\xac\xb7\xd7\x69\x5e\x33\x38\x1d" "\x0f\x00\x7b\xcc\x7a\x7c\xdc\x77\x17\xe8\x91\xfc\x8b\x36\x8a\x88\xa7\xfa" "\xee\x04\x30\xd7\xaa\xbe\x3b\xc0\xae\xb8\x73\xf7\xc6\x6a\x95\xf2\xad\xda" "\xc7\x83\x23\x9b\xed\xf9\xef\x94\x5b\xf2\x5f\xaf\xee\xdd\xdf\xb1\xdd\x74" "\x9a\xee\x35\x26\xb3\xfa\xf9\xba\x15\xc3\x78\x76\x9b\xfe\x2c\xcf\xa8\x0f" "\xf3\x24\xe7\x3f\xe8\xe6\x7f\x71\xb3\x7d\x9c\x96\xdb\xed\xfc\x67\x65\xbb" "\xfc\xc7\x9b\xb7\x3e\x15\x27\xe7\x3f\xec\xe6\xdf\xb1\x25\xff\x3f\x47\xc4" "\x9e\xcd\x7f\x30\x31\xff\x52\xe5\xfc\x47\x8f\x92\xff\xfa\x70\x0f\xef\xff" "\xf2\x07\x00\x00\x00\x00\x60\xff\xcb\x7f\xff\x3f\xd8\xf3\xf9\xdf\xc5\xc7" "\xdf\x94\x1d\x79\xd8\xf9\xdf\x23\x33\xea\x03\x00\x00\x00\x00\x00\x00\x00" "\x3c\x69\x8f\x3b\xfe\xdf\x3d\xc6\xff\x03\x00\x00\x80\xb9\xd5\xbc\x57\x6f" "\xfc\xe5\xc0\xfd\xc7\xda\xd7\xfa\x77\xe7\x2f\x54\x11\x4f\x77\x96\x07\x0a" "\x93\x6e\x96\x59\xe9\xbb\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x50" "\x92\xd1\xe6\x35\xbc\x17\xaa\x88\x85\x88\x78\x7a\x65\xa5\xae\xeb\xe6\xab" "\xad\x5b\x3f\xaa\xc7\x5d\x7f\xaf\x2b\x7d\xfb\xa1\x64\x7d\xff\x92\x07\x00" "\x80\x4d\x1f\x1d\xe8\xdc\xcb\x5f\x45\x2c\x45\xc4\x85\xf4\x59\x7f\x0b\x2b" "\x2b\x2b\x75\xbd\xb4\xbc\x52\xaf\xd4\xcb\x8b\xf9\xf5\xec\x78\x71\xa9\x5e" "\x6e\xbd\xaf\xcd\xd3\xe6\xb1\xc5\xf1\x0e\x5e\x10\x8f\xc6\x75\xf3\xcd\x96" "\x5a\xeb\xb5\x4d\x7b\xbf\x3c\xad\xbd\xfb\xfd\x9a\xe7\x1a\xd7\xc3\x1d\x74" "\x6c\x36\x7a\x0c\x1c\x00\x22\x62\xf3\x68\x74\xc7\x11\x69\x9f\xa9\xeb\x67" "\xa2\xef\x57\x39\xec\x0d\xf6\xff\xfd\xc7\xfe\xcf\x4e\xf4\xfd\x73\x0a\x00" "\x00\x00\xec\xbe\xba\xae\xeb\x2a\x7d\x9c\xf7\xe1\x74\xce\x7f\xd0\x77\xa7" "\x00\x80\x59\x58\xca\xc7\xff\xee\x79\x01\xb5\x5a\xad\x56\xab\xd5\xfb\xaf" "\x6e\xab\x27\xbb\xd9\x2e\x22\x62\xbd\xbd\x4e\xf3\x9a\xc1\x70\xfc\x00\xb0" "\xc7\xac\xc7\xc7\x7d\x77\x81\x1e\xc9\xbf\x68\xa3\x88\x38\xd4\x77\x27\x80" "\xb9\x56\xf5\xdd\x01\x76\xc5\x9d\xbb\x37\x56\xab\x94\x6f\xd5\x3e\x1e\xa4" "\xf1\xdd\xf3\xb5\x20\x5b\xf2\x5f\xaf\x36\xd6\xcb\xeb\x4f\x9a\x4e\xd3\xbd" "\xc6\x64\x56\x3f\x5f\xb7\x62\x18\xcf\x6e\xd3\x9f\xe7\x66\xd4\x87\x79\x92" "\xf3\x1f\x74\xf3\xbf\xb8\xd9\x3e\x4e\xcb\xed\x76\xfe\xb3\xb2\x5d\xfe\xcd" "\x76\x1e\xec\xa1\x3f\x7d\xcb\xf9\x0f\xbb\xf9\x77\xec\x9f\xfc\x07\x13\xf3" "\x2f\x55\xce\x7f\xf4\x48\xf9\x0f\xe5\x0f\x00\x00\x00\x00\x00\x73\x2c\xff" "\xfd\xff\xa0\xf3\xbf\x79\x93\x01\x00\x00\x00\x00\x00\x00\x60\xcf\xb9\x73" "\xf7\xc6\x6a\xbe\xef\x35\x9f\xff\xff\xfc\x84\xe5\xaa\xf6\x9c\xfb\x3f\xf7" "\x8d\x9c\x7f\xb5\xe3\xfc\xdd\xff\xbb\x9f\xe4\xfc\x07\xdd\xfc\x3b\x17\xe4" "\x0c\x5b\xf3\xb7\xdf\xb8\x9f\xff\xbf\xef\xde\x58\xfd\xe0\xfa\xbf\x3e\x97" "\xa7\x73\x9f\xff\xc2\x70\xdc\x3c\xf7\x42\x35\x18\x8e\xd2\x35\x3f\xf5\xc2" "\x5b\x71\x39\xae\xc4\x5a\x9c\x78\x60\xf9\xd1\x96\xf6\x93\x0f\xb4\x2f\x6c" "\x69\x3f\x35\xa5\xfd\xf4\x03\xed\xe3\xa6\x7d\x39\xb7\x1f\x8b\xd5\xf8\x45" "\x5c\x89\x37\xef\xb5\x2f\x4e\xb9\x30\x6a\x69\x4a\x7b\x3d\xa5\x3d\xe7\x3f" "\xb4\xff\x17\x29\xe7\x3f\x6a\x7d\x35\xf9\xaf\xa4\xf6\xaa\x33\x6d\xdc\x7e" "\x7f\xf0\xc0\x7e\xdf\x9e\x4e\x7a\x9e\xf3\x7f\xfb\xef\x8b\x0f\xee\x5d\xb3" "\x77\x2b\x86\xf7\xb6\xad\xad\xd9\xbe\xa3\x3d\xf4\x67\xe3\xff\xe4\xa9\x71" "\xfc\xea\xda\xda\xd5\x63\xbf\xb9\x74\xfd\xfa\xd5\x93\x91\x26\x5b\x1e\x3d" "\x15\x69\xf2\x84\xe5\xfc\x17\xd2\x57\xce\xff\xa5\x17\x36\xdb\xf3\xef\xfd" "\xf6\xfe\x7a\xfb\xfd\xf1\x23\xe7\x3f\x2f\x6e\xc5\x68\xdb\xfc\x5f\x68\xcd" "\x37\xdb\xfb\xf2\x8c\xfb\xd6\x87\x9c\xff\x38\x7d\xe5\xfc\xf3\x11\x68\xf2" "\xfe\xbf\x97\xf3\xdf\x7e\xff\x7f\xa5\x87\xfe\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xc0\xc3\xd4\x75\xbd\x71\x8b\xe8\xf9\x88\x38\x97\xee" "\xff\xe9\xeb\xde\x4c\x00\x60\xa6\xfe\xf0\x83\x34\x53\x27\xa1\xde\xac\xab" "\x98\xaf\xfe\xa8\xd5\x6a\xb5\x5a\xfd\x04\xea\xb6\x7a\xb2\xd7\xdb\x45\x2c" "\x6d\x5d\xe7\x5c\x44\xfc\x76\xd2\x37\x03\x00\xe6\xd9\xff\x22\xe2\x9f\x7d" "\x77\x82\xde\xc8\xbf\x60\xf9\xf3\xfe\x9a\xe9\x17\xfa\xee\x0c\x30\x53\xd7" "\xde\x7d\xef\x67\x97\xae\x5c\x59\xbb\x7a\xad\xef\x9e\x00\x00\x00\x00\x00" "\x00\x00\x00\x9f\x56\x1e\xff\xf3\x48\x6b\xfc\xe7\x8d\xeb\x80\x3a\xe3\x46" "\x6f\x19\xff\xf5\x8d\x38\xb2\x67\xc7\xff\x1c\x8c\x87\x1b\x63\x9d\xa7\x0d" "\x7a\x3e\x1e\x3e\xfe\xf7\xd1\x78\xf8\xf8\xdf\xa3\x29\xcf\xb7\x30\xa5\x7d" "\x3c\xa5\x7d\x71\x4a\xfb\xd2\x94\xf6\x89\x37\x7a\xb4\xe4\xfc\x9f\x4f\x19" "\xe7\xfc\x0f\xa7\x0d\xcb\xb9\x97\x30\xfe\xeb\x4b\x3d\xf4\xa7\x6f\x39\xff" "\xa3\x69\xac\xe7\x9c\xff\x97\x3a\xcb\xb5\xf3\xaf\xff\xba\x97\xf3\x1f\x6c" "\xc9\xff\xf8\xf5\x77\x7e\x79\xfc\xda\xbb\xef\xbd\x7a\xf9\x9d\x4b\x6f\xaf" "\xbd\xbd\xf6\xf3\x93\x27\xce\x9d\x39\x7d\xf6\xcc\xe9\xb3\x67\x8f\xbf\x75" "\xf9\xca\xda\x89\xcd\x7f\x7b\xec\xf1\xee\xca\xf9\xe7\xb1\xaf\x5d\x07\x5a" "\x96\x9c\x7f\xce\x5c\xfe\x65\xc9\xf9\x7f\x31\xd5\xf2\x2f\x4b\xce\xff\xc5" "\x54\xcb\xbf\x2c\x39\xff\xfc\x7a\x4f\xfe\x65\xc9\xf9\xe7\xf7\x3e\xf2\x2f" "\x4b\xce\xff\xe5\x54\xcb\xbf\x2c\x39\xff\x2f\xa7\x5a\xfe\x65\xc9\xf9\xbf" "\x92\x6a\xf9\x97\x25\xe7\xff\x95\x54\xcb\xbf\x2c\x39\xff\x57\x53\x2d\xff" "\xb2\xe4\xfc\x8f\xa5\x5a\xfe\x65\xc9\xf9\x1f\x4f\xb5\xfc\xcb\x92\xf3\xcf" "\x67\xb8\xe4\x5f\x96\x9c\x7f\xbe\xb2\x41\xfe\x65\xc9\xf9\x9f\x4a\xb5\xfc" "\xcb\x92\xf3\x3f\x9d\x6a\xf9\x97\x25\xe7\x7f\x26\xd5\xf2\x2f\x4b\xce\xff" "\x6c\xaa\xe5\x5f\x96\x9c\xff\xb9\x54\xcb\xbf\x2c\x39\xff\xaf\xa6\x5a\xfe" "\x65\xc9\xf9\x7f\x2d\xd5\xf2\x2f\x4b\xce\xff\xb5\x54\xcb\xbf\x2c\x39\xff" "\xaf\xa7\x5a\xfe\x65\xc9\xf9\x7f\x23\xd5\xf2\x2f\x4b\xce\xff\x9b\xa9\x96" "\x7f\x59\x72\xfe\xdf\x4a\xb5\xfc\xcb\x92\xf3\xff\x76\xaa\xe5\x5f\x96\x9c" "\xff\xeb\xa9\x96\x7f\x59\xee\x7f\xfe\xbf\x99\x19\xcf\xfc\xe7\xef\x11\x73" "\xd0\x0d\x33\x45\xce\x54\x51\xc5\x43\x97\xe9\xfb\x37\x13\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xd0\x35\x8b\x4b\x8e\xfb\xde\x46\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf8\x3f\x3b\x70\x20" "\x00\x00\x00\x00\x00\xe4\xff\xda\x08\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\xd8\x81\x03\x01\x00\x00\x00\x00\x20\xff\xd7\x46\xa8\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xc2\xde\xdd\xc5\xc8\x75\xd6\x67\x00\x7f\xf7\xd3\xeb" "\x24\x10\x97\x84\x10\x42\x20\x8e\xe3\x04\x43\x9c\xec\xae\xbf\x12\x13\x0c" "\xe6\xb3\x69\x68\x69\x1a\x08\x2d\x2d\x34\x09\xf6\x3a\x31\xf8\xab\xde\x35" "\x24\x08\x35\x9b\x86\xb6\x20\x90\x1a\xb5\xbd\xa0\x17\xa5\x80\x28\x42\x6a" "\xab\x44\x08\xa9\x20\xa5\x28\x52\x91\xda\xbb\x72\x05\xca\x0d\x6a\x25\xa4" "\x46\x6a\xa8\x42\x04\x95\x68\x21\x5b\x9d\x39\xef\xfb\xee\xcc\xec\xec\xcc" "\xae\xed\xb5\xcf\x9c\xf3\xfb\x45\xc9\x3f\xde\x39\x33\xf3\xce\x99\xb3\xb3" "\xf3\xac\xf5\xcc\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x76\xd7\xbf\x63\xee\x4f\x47" "\x42\x08\xc5\xbf\xad\xff\x6c\x09\xe1\xb2\xe2\xff\x37\x87\x83\xc5\x1f\x17" "\xf7\x5d\xec\x15\x02\x00\x00\x00\xe7\xea\x97\xad\xff\xfe\xfd\xe5\xf9\x0b" "\x07\xd7\x70\xa5\xb6\x6d\xfe\xe5\x75\xff\xf6\xcd\xa5\xa5\xa5\xa5\xf0\x91" "\x17\x9f\x7b\xe9\x2f\x96\x96\xf2\x05\x5b\x43\x18\xdb\x14\x42\xeb\xb2\xe4" "\x5f\x7f\xfe\xb3\xa5\xf6\x6d\xa2\xc7\xc3\xd4\xc8\x68\xdb\x9f\x47\x07\xdc" "\xfd\xd8\x80\xcb\xc7\x07\x5c\x3e\x31\xe0\xf2\xc9\x01\x97\x6f\x1a\x70\xf9" "\xd4\x80\xcb\x57\xec\x80\x15\x36\x97\xbf\x8f\x69\xdd\xd8\xf6\xd6\xff\x6e" "\x29\x77\x69\xb8\x32\x4c\xb4\x2e\xdb\xde\xe3\x5a\x8f\x8f\x6c\x1a\x1d\x4d" "\xbf\xcb\x69\x19\x69\x5d\x67\x69\xe2\x48\x38\x1a\x8e\x85\xb9\x30\xb3\xe2" "\x3a\x23\xad\x7f\x42\x78\xfa\xfa\xe2\xbe\xee\x0c\xe9\xbe\x46\xdb\xee\xeb" "\xda\x10\xc2\x0b\x3f\xf9\xd4\xa1\xb4\x86\x91\xb8\x8f\xb7\x87\x8e\x3b\x6b" "\x69\x7f\xee\x7e\xfc\xb6\xb0\xf5\xc5\x9f\x7c\xea\xd0\xd7\x16\x9e\x7f\x75" "\xaf\x39\x70\x37\xac\x58\x69\x08\x3b\xb6\x15\xeb\xfc\x74\x08\xcb\xbf\xae" "\x0a\x23\x61\x53\xde\x27\x69\x9d\xa3\x6d\xeb\xbc\xb6\xc7\x3a\xc7\x3a\xd6" "\x39\xd2\xba\x5e\xf1\xff\xdd\xeb\x7c\x61\x8d\xeb\x4c\x8f\x7b\x2a\xae\xf3" "\x7b\x7d\xd6\x79\x6d\xfc\xda\xc3\x37\x84\x10\x16\xc3\xaa\xdb\x74\x7b\x3c" "\x8c\x86\x4b\xba\xee\x35\xef\xef\xa9\xf2\x88\x28\x6e\xa3\x78\x2a\x5f\x11" "\xc6\xd7\x75\x9c\x5c\xbf\x86\xe3\xa4\xb8\xce\x8f\x6e\xe8\x3c\x4e\xba\x8f" "\xc9\xb4\xff\xaf\x8f\xfb\x64\x7c\x95\x35\xb4\x3f\x1d\x3f\x7e\x6c\x72\xc5" "\x7e\x3f\xdb\xe3\xa4\x78\xd4\x55\x38\x56\x8b\xdb\xbe\xbb\xb8\xd3\xa9\xa9" "\xf6\x5f\xad\x76\x1c\xab\xc5\x36\x9f\xba\x71\xf5\x63\xa0\xe7\x73\xd7\xe3" "\x18\xc8\xc7\x72\xdb\x31\xb0\x6d\xd0\x31\x30\x3a\x39\xd6\x3a\x06\x46\x97" "\xd7\xbc\xad\xe3\x18\x98\x5d\x71\x9d\xd1\x30\xd2\xba\xaf\xe7\x6e\xec\x7f" "\x0c\x4c\x2f\x1c\x3f\x35\x3d\xff\xc8\x27\x6f\x39\x7a\xfc\x81\x07\xe7\x1e" "\x9c\x3b\x31\x3b\xb3\x6f\xcf\xee\xbd\x7b\x76\xef\xdd\x3b\x7d\xe4\xe8\xb1" "\xb9\x99\xf2\xbf\xeb\xdb\xa5\x43\xe4\x92\x30\x9a\x8f\xc1\x6d\xf1\xb5\x26" "\x1d\x83\xaf\xef\xda\xb6\xfd\x90\x5c\xfa\xf2\xf9\xfb\x3e\x98\xaa\xc8\xf7" "\x41\xf1\xd8\xdf\x7f\x53\xb1\xa0\xcb\x46\xc3\x2a\xc7\x78\xb1\xcd\xa7\x77" "\x9c\xfb\xf7\x41\xfe\xb9\xdf\xf6\x7d\x30\xde\xf6\x7d\xd0\xf3\x35\xb5\xc7" "\xf7\xc1\xf8\x1a\xbe\x0f\x8a\x6d\x5e\xd8\xb1\xb6\x9f\x99\xe3\x6d\xff\xf6" "\x5a\xc3\x46\xbd\x16\x6e\x69\x3b\x06\x2e\xe6\xcf\xc3\xe2\x3e\x3f\xf4\x86" "\xd5\x5f\x0b\xaf\x8d\xeb\xfa\xcc\x1b\xd7\xfb\xf3\x70\x6c\xc5\x31\x90\x1e" "\xd6\x48\xfc\xde\x2b\xbe\x92\xdf\xef\x4d\xdd\x1e\xf7\xcb\xca\xe3\xe2\x9a" "\xe2\x82\x4b\x27\x5b\xef\xed\x6e\x7d\xf8\x81\x85\x85\xd3\xb3\x21\x8e\x0b" "\xe2\x8a\xb6\xe7\xaa\xfb\x78\xb9\xa4\xed\x31\x85\x15\xc7\xcb\xe8\xba\x8f" "\x97\x83\x7f\xf7\x8b\x9b\xae\xe9\xf1\xf5\x2d\x71\x5f\x4d\xdd\xdc\xff\xb9" "\x2a\xb6\xd9\xb3\xb3\xff\x73\xd5\x7a\x75\xbf\x74\x32\x9c\x99\x9f\x3b\x1d" "\xf7\xe7\x64\x28\xf7\x67\xc7\x57\x77\x85\x38\xce\xb3\x0b\xbd\x3f\x7b\xfd" "\x34\x2b\xf6\x67\xce\x12\x7d\xf6\x67\xb1\xcd\xa7\x6f\x39\xf7\xf7\x82\x39" "\x97\xb4\xbd\xfe\x4d\x0c\x7a\xfd\x1b\x9b\x18\x2f\x5f\xff\xc6\xf2\xde\x98" "\xe8\x78\xfd\x5b\xf9\xd4\x8c\xb5\x56\x16\xc2\x0b\xb7\xac\xed\xf5\x6f\x22" "\xfe\x7b\xa1\x5f\xff\xae\xac\xc8\xeb\x5f\xb1\xaf\x3e\x74\x6b\xff\x63\xa0" "\xd8\xe6\x33\xd3\xeb\x3d\x06\xc6\xfb\xbe\xfe\xdd\x10\xe7\x48\x5c\xcf\x1b" "\x62\x62\x98\x6a\xcb\xfd\x2f\xb5\x2e\x5f\x2c\x0f\xd3\xb6\xe7\x72\xe0\x71" "\x33\x3e\x3e\x11\x8f\x9b\xf1\x74\x8f\x9d\xc7\xcd\xee\x15\xd7\x29\x6e\xad" "\xb8\xef\x1d\x33\x67\x77\xdc\xec\xb8\xa1\xf3\xb9\xea\x78\xdf\xb2\xf6\xe3" "\x66\xd0\xaf\x0f\x2a\x73\xdc\x14\xfb\xea\x2f\x67\xfa\x1f\x37\xc5\x36\xcf" "\xcc\x9e\xfb\x6b\xc7\xe6\xf4\xbf\x6d\xaf\x1d\x93\x83\x8e\x81\x89\xb1\xc9" "\x62\xbd\x13\xf9\x20\x28\x5f\xef\x96\x36\xa7\x63\xe0\xd6\x70\x28\x9c\x0c" "\xc7\xc2\xe1\x7c\x9d\xe2\x59\x2e\xee\x6b\xe7\xae\xb5\x1d\x03\x93\xf1\xdf" "\x0b\xfd\xda\x71\x75\x45\x8e\x81\x62\x5f\x7d\x61\x57\xff\x63\xa0\xd8\xe6" "\xbb\xbb\xcf\xef\x7b\xa7\x1d\xf1\x2b\x79\x9b\xb6\xf7\x4e\xdd\xbf\x5f\x58" "\x2d\xf3\x5f\x33\xbe\x7c\x7b\xdd\xbb\xed\x7c\x67\xfe\x62\x9d\xef\xfc\xfe" "\x7b\xf3\xd7\x7a\x65\x88\x62\x9b\xe7\xf7\xac\x37\x67\xf4\xdf\x4f\x37\xc7" "\xaf\x5c\xda\x63\x3f\x75\x7f\xff\xac\x76\x4c\x1f\x0e\x17\x66\x3f\x5d\x1d" "\xd7\x79\x6c\x6f\xff\xdf\x4d\x15\xdb\x5c\xb9\x6f\x8d\xc7\xd3\xc1\x10\xc2" "\xb3\xb3\xcf\xb6\x7e\xdf\x15\x7f\xbf\xfb\x8d\x33\xdf\xff\x66\xc7\xef\x7d" "\x7b\xfd\x4e\xf9\xd9\xd9\x67\xef\x9a\xbe\xe7\x07\xeb\x59\x3f\x00\x00\x67" "\xef\xa5\xd6\x7f\x17\x27\xcb\xf7\x9a\x6d\x7f\x63\xbd\x96\xbf\xff\x07\x00" "\x00\x00\x86\x42\xca\xfd\xa3\x71\x66\xf2\x3f\x00\x00\x00\xd4\x46\xca\xfd" "\x63\x71\x66\xf2\x3f\x00\x00\x00\xd4\x46\xca\xfd\xe3\x71\x66\x0d\xc9\xff" "\x0f\xdd\xbe\xff\xc9\x5f\x3e\x1a\xf2\xa7\x01\x2e\x45\xe9\xf2\xb4\x1b\xee" "\x7e\x4b\xb9\x5d\xea\x78\x2f\xc6\x3f\x6f\x5d\x5a\x56\x7c\xfd\xed\x5f\x9d" "\x78\xf2\xb3\x8f\xae\xed\xbe\x47\x43\x08\xbf\xb8\xeb\x35\x3d\xb7\x7f\xe8" "\x2d\x69\x5d\xa5\x53\x69\x9d\x6f\xea\xfc\xfa\x0a\x57\x5f\xb7\xa6\xfb\xbf" "\xff\xde\xe5\xed\xda\x3f\x3f\xe1\x85\xfd\xe5\xed\xa7\xc7\xb3\xd6\xc3\x20" "\x75\x95\x9f\x9e\xde\xd5\xba\xdd\xad\x8f\xcc\xb6\xe6\x33\x77\x85\xd6\xbc" "\x67\xf1\x33\x8f\x97\xb7\x5f\xfe\x39\x6d\xff\xdc\xee\x72\xfb\xbf\x8e\x1f" "\x5a\x72\xf0\xc8\x48\xc7\xf5\x77\xc4\xf5\x6c\x8f\x73\x6b\xfc\x4c\x99\xbb" "\x0f\x2e\xef\x87\x62\xa6\xeb\x3d\x79\xed\xeb\xfe\xf9\x8a\x0f\x2c\xdf\x5f" "\xba\xde\xc8\xb6\x97\xb7\x1e\xe6\x17\xfe\xb0\xbc\xdd\xf4\x19\x51\x4f\x5c" "\x51\x6e\x9f\x1e\xf7\x6a\xeb\xff\xa7\xcf\x7d\xfd\xc9\x62\xfb\x87\x6f\xec" "\xbd\xfe\x47\x47\x7b\xaf\xff\xb9\x78\xbb\x3f\x8a\xf3\xe7\x07\xca\xed\xdb" "\xf7\xf9\x67\xdb\xd6\xff\xc7\x71\xfd\xe9\xfe\xd2\xf5\x6e\xfd\xca\x77\x7a" "\xae\xff\xa9\x57\x95\xdb\x3f\x15\x8f\x8b\x2f\xc5\xd9\xbd\xfe\xb7\xfd\xd9" "\x6b\x7f\xd9\xeb\xf9\x4a\xf7\x73\xf0\x8e\xf2\x7a\xe9\xfe\x67\xfe\x67\x4f" "\xeb\x7a\xe9\xf6\xd2\xed\x77\xaf\x7f\xea\xd1\xd9\x8e\xfd\xd1\x7d\xfb\xcf" "\xbc\x58\xde\xce\x81\x8f\xff\x74\xac\x7d\xfb\xf4\xf5\x74\x3f\xc9\xfd\x77" "\x74\x1e\xdf\x23\xf1\xf9\xed\xe8\x91\x87\x10\xbe\xfe\x27\xa1\x63\x3f\x87" "\x37\x97\xd7\xfb\x76\xd7\xfa\xd3\xed\x9d\xba\xa3\xf7\xfa\x6f\xee\x5a\xe7" "\xa9\x91\xeb\x5a\xd7\x5f\x7e\x3c\x5b\x3a\x1e\xd7\x17\xff\x76\x57\xcf\xc7" "\x9b\xd6\x73\xf0\x1f\xb6\x74\x3c\x9e\x27\xde\x15\xf7\xdf\x8b\xd3\xdf\x2d" "\x6e\xf7\xb9\x7b\xe2\xf1\x18\x2f\xff\xdf\xef\x95\xb7\xd7\xfd\x61\x24\x4f" "\xbd\xab\xf3\xf5\x26\x6d\xff\xa5\x2d\xe5\xf7\x6d\xba\xbd\xe9\xae\xf5\x3f" "\xd1\xb5\xfe\xc5\xeb\x8a\x7d\x37\x78\xfd\x77\xbe\x58\xae\xff\xa9\xb7\x6e" "\xea\x58\xff\xc1\x77\xc7\xe3\xe9\xce\x72\x0e\x5a\xff\x83\x7f\x73\x79\xc7" "\xf5\xbf\xfc\xb5\xf2\xf9\x38\xfd\x89\x9d\x27\x4e\xce\x9f\x39\x7a\xb8\x6d" "\xaf\xb6\x7f\x1f\x6f\x9a\xda\x7c\xc9\xa5\x97\xbd\xec\xe5\x97\xc7\xd7\xd2" "\xee\x3f\xdf\x77\x72\xe1\xa1\xb9\xd3\x5b\x67\xb6\xce\x84\xb0\x75\x08\x3f" "\x32\x70\xa3\xd7\xff\x95\x38\xff\xbb\x1c\x8b\xe7\xff\x1e\x4a\x3f\xf8\x69" "\x79\xdc\x7d\xfe\x3d\xe5\xcf\xad\xd7\xff\xac\xfc\xf3\x13\xf1\xeb\xf7\xc7" "\xe7\x33\xfd\x7c\xfc\xe2\x5f\x4d\x74\x1c\xaf\xdd\xcf\xfb\xe2\x5b\xcb\x79" "\xae\xeb\x7f\x63\x5c\xc7\x5a\xbd\xea\x73\xff\x71\xdd\x9a\x36\x7c\xee\xc3" "\x4f\x9f\xf9\xc7\x3f\x7a\xbe\xfb\x7d\x41\x7a\x3c\xa7\x5e\x39\xd5\x7a\x7c" "\x5f\xb8\xfe\xaa\xd6\x65\x23\xcf\x94\x97\x77\xbf\x5e\x0d\xf2\xef\xaf\xec" "\xfc\xbe\xfe\xe1\xf8\x4c\x6b\x7e\x2b\xee\xd7\xa5\xf8\xc9\xcc\xdb\xae\x2a" "\xef\xaf\xfb\xf6\xd3\x67\x93\x7c\xfe\x7d\xe5\xf7\x6f\x7a\x27\x97\xae\x1f" "\xba\x3e\x4f\x64\xcb\x58\xe7\xe3\x38\xd7\xf5\xff\x30\xbe\x8f\xf9\xce\xd5" "\x9d\xaf\x7f\xe9\xf8\xf8\xd6\xa3\x5d\x9f\xe6\xbc\x25\x8c\x14\x4b\x58\x8c" "\xaf\x0f\x61\xb1\xbc\x3c\x6d\x95\xf6\xf7\xe7\x5f\xb8\xaa\xe7\xfd\xa5\xcf" "\xe1\x09\x8b\xaf\x5e\xcf\x32\x57\x35\xff\xc8\xfc\xf4\xb1\xa3\x27\xce\x3c" "\x3c\xbd\x30\x37\xbf\x30\x3d\xff\xc8\x27\xef\x3b\x7e\xf2\xcc\x89\x85\xfb" "\x5a\x9f\x5d\x7a\xdf\x47\x07\x5d\x7f\xf9\xfb\xfb\x92\xd6\xf7\xf7\xe1\xb9" "\x7d\x7b\x42\xeb\xbb\xfd\x64\x39\x36\xd8\xc5\x5e\xff\xa9\x7b\x0f\x1d\xbe" "\x6d\xe6\xa6\xc3\x73\x47\x1e\x38\x73\x64\xe1\xde\x53\x73\xa7\x1f\x3c\x34" "\x3f\x7f\x68\xee\xf0\xfc\x4d\x0f\x1c\x39\x32\xf7\x89\x41\xd7\x3f\x7a\xf8" "\xc0\xec\xae\xfd\xbb\x6f\xdb\xb5\xf3\xc1\xa3\x87\x0f\xdc\xbe\x7f\xff\xee" "\xfd\x3b\x8f\x9e\x38\x59\x2c\xa3\x5c\xd4\x00\xfb\x66\x3e\xb6\xf3\xc4\xe9" "\xfb\x5a\x57\x99\x3f\xb0\x67\xff\xec\xde\xbd\x7b\x66\x76\x1e\x3f\x79\x78" "\xee\xc0\x6d\x33\x33\x3b\xcf\x0c\xba\x7e\xeb\x67\xd3\xce\xe2\xda\x1f\xdf" "\x79\x7a\xee\xd8\x03\x0b\x47\x8f\xcf\xed\x9c\x3f\xfa\xc9\xb9\x03\xb3\xfb" "\xf7\xed\xdb\x35\xf0\xd3\x1f\x8f\x9f\x3a\x32\xbf\x75\xfa\xf4\x99\x13\xd3" "\x67\xe6\xe7\x4e\x4f\x97\x8f\x65\xeb\x42\xeb\xcb\xc5\xcf\xbe\x41\xd7\xa7" "\x19\xe6\x4f\xc6\xd7\xbb\x2e\x23\xf1\xdd\xf9\x07\x6f\xde\x97\x3f\x1f\xb7" "\xf0\xd5\xc7\x56\xbd\xa9\x72\x93\xce\xb7\xa7\xe1\xc7\xf1\xb3\xa0\xd2\xcf" "\xb7\x41\x7f\x4e\xb9\x7f\x22\xce\xac\x21\xf9\x1f\x00\x00\x00\x9a\x20\xe5" "\xfe\xf8\xc1\xff\xcb\x17\xc8\xff\x00\x00\x00\x50\x1b\x29\xf7\x6f\x8a\x33" "\x93\xff\x01\x00\x00\xa0\x36\x52\xee\x2f\x93\xff\x54\x3e\xfd\x7b\x53\xf2" "\xff\xf9\xea\xff\x3f\xa6\xff\xdf\xa2\xff\xaf\xff\x1f\xf4\xff\x33\xfd\x7f" "\xfd\xff\xa0\xff\xaf\xff\x3f\x80\xfe\x7f\x25\xfa\xff\x0f\xe9\xff\xeb\xff" "\xeb\xff\xb3\x51\xaa\xd6\xff\x8f\xb9\x3f\x6c\x0e\xc1\xdf\xff\x03\x00\x00" "\x40\x4d\xa5\xdc\x7f\x49\x9c\x99\xfc\x0f\x00\x00\x00\xb5\x91\x72\xff\xa5" "\x71\x66\xf2\x3f\x00\x00\x00\xd4\x46\xca\xfd\x97\xc5\x99\x35\x24\xff\x3b" "\xff\xbf\xfe\xbf\xfe\x7f\xbf\xfe\x7f\xda\x56\xff\x3f\xe8\xff\x57\xa1\xff" "\xbf\xfd\xbf\xf4\xff\x57\xd0\xff\xd7\xff\x0f\xfa\xff\x67\xed\x62\xf7\xe7" "\x87\x7d\xfd\x15\xec\xff\x6f\xd6\xff\xa7\x6a\xaa\xd6\xff\x4f\xb9\xff\x65" "\x71\x66\x0d\xc9\xff\x00\x00\x00\xd0\x04\x29\xf7\xbf\x3c\xce\x4c\xfe\x07" "\x00\x00\x80\x4a\xdb\xb4\x8e\x6d\x53\xee\xbf\x3c\xce\x4c\xfe\x07\x00\x00" "\x80\xda\x48\xb9\x7f\x4b\x9c\x59\x43\xf2\xff\xc5\xeb\xff\x4f\xea\xff\xeb" "\xff\xb7\x54\xbb\xff\xef\xfc\xff\xed\xf4\xff\x2f\x7a\xff\xdf\xf9\xff\x7b" "\xd0\xff\xd7\xff\x0f\x8d\xe9\xff\x97\x6f\x16\xf4\xff\xab\xb3\xfe\x8d\xef" "\xff\xff\x79\xdf\xeb\x3b\xff\x3f\xc3\xa0\x6a\xfd\xff\x94\xfb\x7f\x25\xce" "\xac\x21\xf9\x1f\x00\x00\x00\x9a\x20\xe5\xfe\x57\xc4\x99\xc9\xff\x00\x00" "\x00\x50\x1b\x29\xf7\x5f\x11\x67\x26\xff\x03\x00\x00\x40\x6d\xa4\xdc\x7f" "\x65\x9c\x59\x43\xf2\x7f\x33\xcf\xff\xff\xa3\x10\x82\xfe\x7f\xd0\xff\xd7" "\xff\xef\x5a\xa7\xfe\xbf\xfe\xff\x46\xd0\xff\xd7\xff\xef\xe7\xe2\xf6\xff" "\x8b\xf7\x3e\xc3\xd4\xff\x77\xfe\xff\xaa\xad\xbf\x82\xe7\xff\xd7\xff\xa7" "\x72\xaa\xd6\xff\x4f\xb9\xff\x95\x71\x66\x0d\xc9\xff\x00\x00\x00\xd0\x04" "\x29\xf7\x5f\x15\x67\x26\xff\x03\x00\x00\x40\x6d\xa4\xdc\xff\xaa\x38\x33" "\xf9\x1f\x00\x00\x00\x6a\x23\xe5\xfe\xab\xe3\xcc\x1a\x92\xff\x9b\xd9\xff" "\x77\xfe\x7f\xfd\xff\xd2\x06\xf4\xff\x47\xc6\xf5\xff\x33\xfd\x7f\xfd\xff" "\xa0\xff\xaf\xff\x3f\x80\xf3\xff\xeb\xff\x0f\xf3\xfa\xf5\xff\xf5\xff\x19" "\xac\x6a\xfd\xff\x94\xfb\x5f\x1d\x67\xd6\x90\xfc\x0f\x00\x00\x00\x4d\x90" "\x72\xff\x35\x71\x66\xf2\x3f\x00\x00\x00\xd4\x46\xca\xfd\xaf\x89\x33\x93" "\xff\x01\x00\x00\xa0\x36\x52\xee\xbf\x36\xce\xac\x21\xf9\x5f\xff\x5f\xff" "\x5f\xff\xdf\xf9\xff\xf5\xff\xf5\xff\x37\xd2\x70\xf5\xff\x47\x57\xbd\x44" "\xff\xbf\xa4\xff\xdf\xe9\xfc\xf5\xff\x17\x97\x17\xa0\xff\x3f\x34\xeb\xd7" "\xff\xd7\xff\x67\xb0\xaa\xf5\xff\x53\xee\x7f\x6d\x9c\x59\x43\xf2\x3f\x00" "\x00\x00\x34\x41\xca\xfd\xaf\x8b\x33\x93\xff\x01\x00\x00\xa0\x36\x52\xee" "\xbf\x2e\xce\x4c\xfe\x07\x00\x00\x80\xda\x48\xb9\x7f\x6b\x9c\x59\x43\xf2" "\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xff\x46\x1a\xae\xfe\xff" "\xea\xf4\xff\x4b\xfa\xff\x9d\x9c\xff\x5f\xff\x5f\xff\x5f\xff\x9f\xfe\xaa" "\xd6\xff\x4f\xb9\xff\xfa\x38\xb3\x86\xe4\x7f\x00\x00\x00\x68\x82\x94\xfb" "\xb7\xc5\x99\xc9\xff\x00\x00\x00\x50\x1b\x29\xf7\xdf\x10\x67\x26\xff\x03" "\x00\x00\x40\x6d\xa4\xdc\xbf\x3d\xce\xac\x21\xf9\x5f\xff\x5f\xff\x5f\xff" "\x5f\xff\x5f\xff\x5f\xff\x7f\x23\xe9\xff\xeb\xff\xf7\xa3\xff\xaf\xff\x3f" "\xcc\xeb\xd7\xff\xd7\xff\x67\xb0\xaa\xf5\xff\x53\xee\xbf\x31\xce\xac\x21" "\xf9\x1f\x00\x00\x00\x9a\x20\xe5\xfe\x9b\xe2\xcc\xe4\x7f\x00\x00\x00\xa8" "\x8d\x94\xfb\x5f\x1f\x67\x26\xff\x03\x00\x00\x40\x6d\xa4\xdc\xbf\x23\xce" "\xac\x21\xf9\x5f\xff\x5f\xff\x5f\xff\x7f\x88\xfb\xff\x63\xfa\xff\x41\xff" "\xbf\xf2\x06\xac\xff\xff\xba\x7e\xec\xac\x9b\xfe\xbf\xfe\x7f\xd0\xff\x3f" "\x6b\x17\xbb\x3f\x3f\xec\xeb\xd7\xff\xd7\xff\x67\xb0\xaa\xf5\xff\x53\xee" "\x7f\x43\x9c\x59\x43\xf2\x3f\x00\x00\x00\x34\x41\xca\xfd\x6f\x8c\x33\x93" "\xff\x01\x00\x00\xa0\x36\x52\xee\xbf\x39\xce\x4c\xfe\x07\x00\x00\x80\xda" "\x48\xb9\x7f\x67\x9c\x59\x43\xf2\x7f\xcd\xfb\xff\xcf\xff\xe7\x2a\x9b\xe9" "\xff\x97\xf4\xff\x87\xbc\xff\xef\xfc\xff\x1d\xeb\xd7\xff\xaf\x26\xe7\xff" "\xd7\xff\xef\x47\xff\x5f\xff\x7f\x98\xd7\xaf\xff\xaf\xff\xcf\x60\x55\xeb" "\xff\xa7\xdc\x7f\x4b\x9c\x59\x43\xf2\x3f\x00\x00\x00\x34\x41\xca\xfd\xb7" "\xc6\x99\xc9\xff\x00\x00\x00\x50\x1b\x29\xf7\x4f\xc7\x99\xc9\xff\x00\x00" "\x00\x50\x1b\x29\xf7\xcf\xc4\x99\x35\x24\xff\xd7\xbc\xff\xbf\x2a\xfd\xff" "\x92\xfe\xbf\xfe\x7f\xd0\xff\xd7\xff\xdf\x60\xfa\xff\xfa\xff\xfd\xe8\xff" "\xeb\xff\x0f\xf3\xfa\xf5\xff\xf5\xff\x19\xac\x6a\xfd\xff\x94\xfb\x67\xe3" "\xcc\x1a\x92\xff\x01\x00\x00\xa0\x09\x52\xee\xdf\x15\x67\x26\xff\x03\x00" "\x00\x40\x6d\xa4\xdc\xbf\x3b\xce\x4c\xfe\x07\x00\x00\x80\xda\x48\xb9\x7f" "\x4f\x9c\x59\x43\xf2\xff\x90\xf4\xff\x6f\xcd\x05\x28\xfd\x7f\xfd\x7f\xfd" "\x7f\xfd\x7f\xfd\xff\xa1\xa2\xff\x5f\xd3\xfe\x7f\xf1\x42\xa2\xff\xaf\xff" "\x7f\x72\x21\xef\x60\xfd\x7f\xfd\x7f\xfd\x7f\x46\x7b\x7c\xad\x6a\xfd\xff" "\x94\xfb\xf7\xc6\x99\x35\x24\xff\x03\x00\x00\x40\x13\xa4\xdc\xbf\x2f\xce" "\x4c\xfe\x07\x00\x00\x80\xda\x48\xb9\xff\xb6\x38\x33\xf9\x1f\x00\x00\x00" "\x6a\x23\xe5\xfe\xdb\xe3\xcc\x1a\x92\xff\x87\xa4\xff\xef\xfc\xff\xfa\xff" "\xfa\xff\x6d\xf4\xff\xf5\xff\x87\x89\xfe\x7f\x4d\xfb\xff\xce\xff\xdf\xa2" "\xff\xef\xfc\xff\xfa\xff\xfa\xff\xf4\x57\xb5\xfe\x7f\xca\xfd\xfb\xe3\xcc" "\x1a\x92\xff\x01\x00\x00\xa0\x09\x52\xee\x7f\x53\x9c\x99\xfc\x0f\x00\x00" "\x00\xb5\x91\x72\xff\x1d\x71\x66\xf2\x3f\x00\x00\x00\x0c\x95\x5e\xe7\x21" "\x4c\x52\xee\x7f\x73\x9c\x59\x43\xf2\xbf\xfe\x7f\xdd\xfb\xff\x4b\x9b\xf4" "\xff\xf5\xff\xf5\xff\xfb\xaf\x5f\xff\x7f\x63\xe9\xff\xeb\xff\xf7\xa3\xff" "\xaf\xff\x3f\xcc\xeb\xd7\xff\xd7\xff\x67\xb0\xaa\xf5\xff\x53\xee\x3f\x10" "\x67\xd6\x90\xfc\x0f\x00\x00\x00\x4d\x90\x72\xff\x5b\xe2\xcc\xe4\x7f\x00" "\x00\x00\xa8\x8d\x94\xfb\xdf\x1a\x67\x26\xff\x03\x00\x00\x40\x6d\xa4\xdc" "\x7f\x30\xce\xac\x21\xf9\x5f\xff\xbf\xee\xfd\x7f\xe7\xff\xd7\xff\xd7\xff" "\x1f\xb4\x7e\xfd\xff\x8d\xa5\xff\xaf\xff\xdf\x4f\x2d\xfb\xff\x9b\xea\xdf" "\xff\x8f\x6f\x5b\xf4\xff\x2b\xd4\xff\x2f\x8e\x21\xfd\x7f\xaa\xa8\x6a\xfd" "\xff\x94\xfb\xdf\x16\x67\xd6\x90\xfc\x0f\x00\x00\x00\x4d\x90\x72\xff\xdb" "\xe3\xcc\xe4\x7f\x00\x00\x00\xa8\x8d\x94\xfb\xdf\x11\x67\x26\xff\x03\x00" "\x00\x40\x6d\xa4\xdc\xff\xce\x38\xb3\x86\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\xff\x8d\xa4\xff\xbf\x61\xfd\xff\xd6\x4b\xa1\xfe\x7f" "\xa9\x52\xfd\x7f\xe7\xff\xd7\xff\x77\xfe\x7f\xfd\x7f\xb2\xaa\xf5\xff\x53" "\xee\x7f\x57\x9c\x59\x43\xf2\x3f\x00\x00\x00\x34\x41\xca\xfd\xef\x8e\x33" "\x93\xff\x01\x00\x00\xa0\x36\x52\xee\xff\xd5\x38\x33\xf9\x1f\x00\x00\x00" "\x6a\x23\xe5\xfe\x3b\xe3\xcc\x1a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff" "\xab\xd7\xff\x9f\x0c\xfa\xff\xfa\xff\x6b\xd5\xe0\xfe\x7f\x8b\xfe\x7f\x49" "\xff\xff\xec\x5c\xec\xfe\xfc\xb0\xaf\x5f\xff\x5f\xff\x9f\xc1\xaa\xd6\xff" "\x4f\xb9\xff\xd7\xe2\xcc\x1a\x92\xff\x01\x00\x00\xa0\x09\x52\xee\xbf\x2b" "\xce\x4c\xfe\x07\x00\x00\x80\xda\x48\xb9\xff\x3d\x71\x66\xf2\x3f\x00\x00" "\x00\x0c\x99\xc9\x55\x2f\x49\xb9\xff\xd7\xe3\xcc\x1a\x92\xff\x87\xaf\xff" "\xbf\x75\x28\xfb\xff\xa3\xf9\xf6\xf5\xff\xf5\xff\xf5\xff\x9d\xff\x5f\xff" "\xff\x7c\xd2\xff\xd7\xff\x0f\xfa\xff\x67\xed\x62\xf7\xe7\x87\x7d\xfd\xfa" "\xff\xfa\xff\x0c\x56\xb5\xfe\x7f\xca\xfd\xbf\x11\x67\xd6\x90\xfc\x0f\x00" "\x00\x00\x4d\x90\x72\xff\x7b\xe3\xcc\xe4\x7f\x00\x00\x00\xa8\x8d\x94\xfb" "\x7f\x33\xce\x4c\xfe\x07\x00\x00\x80\xda\x48\xb9\xff\xee\x38\xb3\x86\xe4" "\xff\xf3\xdd\xff\xef\xbe\x7e\x2f\xa3\x6d\xd3\xf9\xff\xf5\xff\xf5\xff\x97" "\xaf\xa7\xff\x1f\x9f\x57\xfd\x7f\xfd\xff\x75\xd0\xff\xd7\xff\x0f\xfa\xff" "\x67\xed\x62\xf7\xe7\x87\x7d\xfd\xfa\xff\xfa\xff\x0c\x56\xb5\xfe\x7f\xca" "\xfd\xbf\x15\x67\xd6\x90\xfc\x0f\x00\x00\x00\x4d\x90\x72\xff\x3d\x71\x66" "\xf2\x3f\x00\x00\x00\x54\xd4\x43\xeb\xbe\x46\xca\xfd\xef\x8b\x33\x93\xff" "\x01\x00\x00\xa0\x36\x52\xee\x7f\x7f\x9c\x59\x43\xf2\xff\xf0\x9d\xff\x5f" "\xff\x5f\xff\x5f\xff\xbf\x6a\xfd\xff\x44\xff\x5f\xff\xbf\x17\xfd\x7f\xfd" "\xff\x7e\xf4\xff\xf5\xff\x87\x79\xfd\xfa\xff\xfa\xff\x0c\x56\xb5\xfe\x7f" "\xca\xfd\xf7\xc6\x99\x35\x24\xff\x03\x00\x00\x40\x13\xa4\xdc\xff\x81\x38" "\x33\xf9\x1f\x00\x00\x00\x6a\x23\xe5\xfe\xdf\x8e\x33\x93\xff\x01\x00\x00" "\xa0\x36\x52\xee\xff\x9d\x38\xb3\x86\xe4\x7f\xfd\x7f\xfd\xff\x3a\xf5\xff" "\x83\xfe\xbf\xf3\xff\x7f\x20\x3c\xa6\xff\x5f\x2d\xfa\xff\x2b\xfb\xff\xc5" "\x6b\x98\xfe\x7f\x49\xff\x5f\xff\x7f\x98\xd7\xaf\xff\xaf\xff\xcf\x60\x55" "\xeb\xff\xa7\xdc\xff\xc1\x38\xb3\x86\xe4\x7f\x00\x00\x00\x68\x82\x94\xfb" "\x7f\x37\xce\x4c\xfe\x07\x00\x00\x80\xda\x48\xb9\xff\xf7\xe2\xcc\xe4\x7f" "\x00\x00\x00\xa8\x8d\x94\xfb\x3f\x14\x67\xd6\x90\xfc\xaf\xff\xaf\xff\x5f" "\xa7\xfe\xbf\xf3\xff\xeb\xff\x3b\xff\x7f\xf5\xe8\xff\x3b\xff\x7f\x3f\xfa" "\xff\xfa\xff\xc3\xbc\x7e\xfd\x7f\xfd\x7f\xba\x75\xbf\xab\xab\x5e\xff\x3f" "\xe5\xfe\x0f\xc7\x99\x35\x24\xff\x03\x00\x00\x40\x13\xa4\xdc\xff\xfb\x71" "\x66\xf2\x3f\x00\x00\x00\xd4\x46\xca\xfd\xf7\xc5\x99\xc9\xff\x00\x00\x00" "\x50\x1b\x29\xf7\xdf\x1f\x67\xd6\x90\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff" "\xaf\xff\xaf\xff\xbf\x91\xf4\xff\xf5\xff\xfb\xd1\xff\xd7\xff\x1f\xe6\xf5" "\xeb\xff\xeb\xff\x33\x58\xd5\xfa\xff\x29\xf7\x3f\x10\x67\x76\xb0\xf3\x6e" "\x00\x00\x00\x80\xe1\x95\x72\xff\x47\xe2\xcc\x1a\xf2\xf7\xff\x00\x00\x00" "\xd0\x04\x29\xf7\x1f\x8a\x33\x93\xff\x01\x00\x00\xa0\x36\x52\xee\x3f\x1c" "\x67\xd6\x90\xfc\xaf\xff\xaf\xff\x7f\xbe\xfb\xff\x93\xf1\x32\xfd\x7f\xfd" "\x7f\xfd\x7f\xfd\xff\xa0\xff\x7f\xc1\xfb\xff\x4f\x0f\xd8\x5e\xff\xbf\xf3" "\x71\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xb3\xb1\xaa\xd6\xff\x4f\xb9\x7f\x2e" "\xce\xac\x21\xf9\x1f\x00\x00\x00\x9a\x20\xe5\xfe\x23\x71\x66\xf2\x3f\x00" "\x00\x00\xd4\x46\xca\xfd\x0f\xc6\x99\xc9\xff\x00\x00\x00\x50\x1b\x29\xf7" "\x3f\x14\x67\xd6\x90\xfc\xaf\xff\xaf\xff\xef\xfc\xff\x8d\xed\xff\x7f\xef" "\x1b\x5d\xeb\xd4\xff\xd7\xff\xdf\x08\xfa\xff\xab\xf5\xff\x2f\x73\xfe\x7f" "\xfd\x7f\xfd\xff\x21\x5f\xbf\xfe\xbf\xfe\x3f\x83\x55\xad\xff\x9f\x72\xff" "\xd1\x38\xb3\x86\xe4\x7f\x00\x00\x00\x68\x82\x94\xfb\x3f\x1a\x67\x26\xff" "\x03\x00\x00\x40\x6d\xa4\xdc\xff\xb1\x38\x33\xf9\x1f\x00\x00\x00\x6a\x23" "\xe5\xfe\x63\x71\x66\x0d\xc9\xff\xe7\xd4\xff\x1f\x69\xbb\x82\xfe\x7f\x8b" "\xfe\xbf\xfe\x7f\x18\x9e\xfe\xff\xda\xce\xff\xbf\x79\xf9\x7e\xf5\xff\xf5" "\xff\xcf\x86\xfe\xff\x85\x3d\xff\xff\x20\xfa\xff\x9d\x8f\x43\xff\x5f\xff" "\x5f\xff\x5f\xff\x9f\x8d\x55\xb5\xfe\x7f\xca\xfd\xc7\xe3\xcc\x1a\x92\xff" "\x01\x00\x00\xa0\x09\x52\xee\x3f\x11\x67\x26\xff\x03\x00\x00\x40\x6d\xa4" "\xdc\x7f\x32\xce\x4c\xfe\x07\x00\x00\x80\xda\x48\xb9\xff\x54\x9c\x59\x67" "\xfe\xef\xae\x8b\xd6\x86\xf3\xff\xaf\xaf\xff\x3f\xb2\x4a\x37\x50\xff\xbf" "\xf7\xfa\xf5\xff\x6b\xd0\xff\x6f\xa3\xff\xaf\xff\x7f\x36\xf4\xff\xf5\xff" "\xfb\xd1\xff\xd7\xff\x1f\xe6\xf5\xeb\xff\xeb\xff\x33\x58\xd5\xfa\xff\x29" "\xf7\xff\x41\x9c\x59\x7b\xf0\xdb\xfe\xed\xf5\x3e\x4c\x00\x00\x00\xa0\x42" "\x52\xee\x3f\x1d\x67\xf6\xff\xec\xdd\xe7\x92\x66\x65\xd5\xc7\xe1\x87\xc1" "\x19\x87\xb2\x3c\x07\x4e\xc1\xef\x56\x79\x08\x1e\x83\x55\x9e\x81\x39\x83" "\x11\x14\x23\xe6\x9c\x30\xa7\x31\x2b\xe6\x9c\x33\xe6\x9c\x13\x8a\x39\x56" "\x69\xd1\xbd\xd6\x1a\xa6\x67\x7a\xef\x9e\x99\xe7\x99\xde\xfb\x5e\xd7\xf5" "\x81\xf5\xd2\xf0\x16\x1b\xc1\xb2\xfe\x05\xbf\xba\xfd\xfb\xff\x00\x00\x00" "\x30\x8c\xdc\xfd\x0f\x88\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x07\xc6" "\x2d\x4d\xf6\xbf\xfe\xdf\xfb\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\x4b\xfa" "\x7f\xfd\xff\x14\xfd\xbf\xfe\x7f\xcd\xdf\xaf\xff\xd7\xff\x33\x6f\x69\xfd" "\x7f\xee\xfe\x07\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xc1\x71" "\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x90\xb8\xc5\xfe\x07\x00\x00\x80" "\x61\xe4\xee\x7f\x68\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\xbf\x4b\xfa\xff\x95\xf6\xff\x9b\x8d\xfe\xff\x08\xf4\xff\xfa\x7f" "\xfd\xbf\xfe\x9f\x69\x4b\xeb\xff\x73\xf7\x3f\x2c\x6e\x69\xb2\xff\x01\x00" "\x00\xa0\x83\xdc\xfd\x0f\x8f\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x47" "\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x23\xe3\x96\x26\xfb\x5f\xff" "\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x5d\xd2\xff\xaf\xb4\xff\xf7\xfe" "\xff\x91\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\xd3\x96\xd6\xff\xe7\xee\x7f\x54" "\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x1f\x1d\xb7\xd8\xff\x00\x00" "\x00\x30\x8c\xdc\xfd\x8f\x89\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xeb" "\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xaf\xb0\xff\xbf\x9b\xfe\x5f\xff" "\xbf\x1e\xfa\x7f\xfd\xff\x14\xfd\xbf\xfe\x7f\xcd\xdf\xaf\xff\xd7\xff\x33" "\x6f\x69\xfd\x7f\xee\xfe\xeb\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd" "\xff\xd8\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x5c\xdc\x62\xff\x03" "\x00\x00\xc0\x30\x72\xf7\x3f\x3e\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xff" "\x0a\xfb\x7f\xef\xff\xeb\xff\x57\x44\xff\xaf\xff\x9f\xa2\xff\xd7\xff\xaf" "\xf9\xfb\xf5\xff\xfa\x7f\xe6\x2d\xad\xff\xcf\xdd\xff\x84\xb8\xa5\xc9\xfe" "\x07\x00\x00\x80\x0e\x72\xf7\x3f\x31\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9" "\xfb\x9f\x14\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x37\xc4\x2d\x43\xee" "\xff\x7b\x9f\xd7\xe1\xe8\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\x4b" "\xfa\x7f\xfd\xff\x14\xfd\xbf\xfe\x7f\xcd\xdf\xaf\xff\xd7\xff\x33\x6f\xe7" "\xfd\xff\x7d\x6f\xdc\xbb\x47\xed\xff\x73\xf7\xdf\x18\xb7\x0c\xb9\xff\x01" "\x00\x00\xa0\xa7\xdc\xfd\x4f\x8e\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe" "\xa7\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x4d\x71\x4b\x93\xfd\xaf" "\xff\xd7\xff\x9f\xed\xff\xff\x77\x95\xfe\x5f\xff\xaf\xff\x3f\xfb\x73\xfd" "\xff\x76\xe8\xff\xf5\xff\x53\xf4\xff\xfa\xff\x35\x7f\xbf\xfe\x5f\xff\xcf" "\xbc\x9d\xf7\xff\x33\xbd\xff\xc1\x5f\xcf\xdd\xff\xd4\xb8\xa5\xc9\xfe\x07" "\x00\x00\x80\x0e\x72\xf7\x3f\x2d\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb" "\x9f\x1e\xb7\xd8\xff\x00\x00\x00\xb0\x78\xa7\x8f\xf8\xfb\xe5\xee\x7f\xc6" "\xc1\xff\xaf\x26\xfb\x5f\xff\xaf\xff\xf7\xfe\xbf\xfe\x5f\xff\xaf\xff\xdf" "\x25\xfd\xff\x62\xfb\xff\x83\xff\xd5\x3b\xd7\xee\xfa\xff\x53\x77\xfd\x15" "\xfd\xbf\xfe\x7f\xcd\xdf\x3f\xd5\xff\xdf\xe7\x08\xdf\xaf\xff\xa7\x83\xa5" "\xf5\xff\xb9\xfb\x9f\x19\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x67" "\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xcd\x71\x8b\xfd\x0f\x00\x00" "\x00\xc3\xc8\xdd\xff\xec\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\xff" "\x73\xfb\xff\x13\x2d\xfb\xff\x3b\x7f\xa6\xff\xdf\x0d\xfd\xff\x62\xfb\xff" "\x69\xde\xff\x3f\x12\xfd\xbf\xfe\xdf\xfb\xff\xfa\x7f\xa6\x2d\xad\xff\xcf" "\xdd\xff\x9c\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x37\x6e\xb1" "\xff\x01\x00\x00\x60\x18\xb9\xfb\x9f\x17\xb7\xd8\xff\x00\x00\x00\x30\x8c" "\xdc\xfd\xcf\x8f\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xbf\xac\xf7" "\xff\xaf\x1e\xa3\xff\xf7\xfe\xff\xee\xe8\xff\xf5\xff\x53\xf4\xff\xfa\xff" "\x35\x7f\xbf\xfe\x5f\xff\xcf\xbc\xa5\xf5\xff\xb9\xfb\x5f\x10\xb7\x34\xd9" "\xff\x00\x00\x00\x30\xbc\x13\x9b\xda\xfd\x2f\x8c\x5b\xec\x7f\x00\x00\x00" "\x18\x46\xee\xfe\x17\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x8b\xe3" "\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x2f\xab\xff\x1f\xe4\xfd\x7f" "\xfd\xff\xee\xe8\xff\xf5\xff\x53\x8e\xda\xff\x6f\xf4\xff\xf5\xe7\x72\xbc" "\xfd\xff\xc9\x73\x7e\x4d\xff\xaf\xff\xd7\xff\x33\x67\x69\xfd\x7f\xee\xfe" "\x97\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x8c\xe7\x86\xf3\x7e\x92\xbb\xff\xa5" "\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xb2\xb8\xc5\xfe\x07\x00\x00" "\x80\x61\xe4\xee\x7f\x79\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf" "\xfe\x5f\xff\xbf\x4b\xfa\x7f\xfd\xff\x14\xef\xff\xaf\xad\xff\x3f\x97\xfe" "\x5f\xff\xaf\xff\x67\xce\xd2\xfa\xff\xdc\xfd\xaf\x88\x5b\x9a\xec\x7f\x00" "\x00\x00\xe8\x20\x77\xff\x2b\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff" "\x55\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xea\xb8\xe5\xe0\xfe\x3f" "\x71\x25\xbf\xea\xca\x39\xd6\xfe\x3f\xdb\x0d\xfd\xbf\xfe\x5f\xff\xbf\x47" "\xff\x1f\x7f\x5d\xf5\xff\xfa\xff\x8b\xa0\xff\xd7\xff\x6f\x06\xec\xff\x4f" "\x1f\xf2\xc7\xd3\xff\x2f\xeb\xfb\xf5\xff\xfa\x7f\xe6\x2d\xad\xff\xcf\xdd" "\x7f\x4b\xdc\xe2\x9f\xff\x03\x00\x00\xc0\x30\x72\xf7\xbf\x26\x6e\xb1\xff" "\x01\x00\x00\x60\x18\xb9\xfb\x5f\x1b\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc" "\xfd\xaf\x8b\x5b\x9a\xec\xff\xc3\xfa\xff\x3b\xee\xb1\xff\xdb\xbd\xff\x7f" "\x34\xfa\xff\x0b\x7f\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xb7\xd7\xff" "\x5f\xe8\x7f\xde\xf4\xff\xfb\x6e\x3a\xbd\x19\xaa\xff\xf7\xfe\xff\x3a\xbe" "\x5f\xff\xaf\xff\x67\xde\xd2\xfa\xff\xdc\xfd\xaf\x8f\x5b\x9a\xec\x7f\x00" "\x00\x00\xe8\x20\x77\xff\x1b\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff" "\x8d\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xa6\xb8\xa5\xc9\xfe\xdf" "\xfe\xfb\xff\xd7\x1e\x47\xff\x7f\x36\xae\xd3\xff\xeb\xff\xf5\xff\xfa\xff" "\xf8\xf9\x61\xfd\xff\x41\xfa\xff\xdd\xd2\xff\x7b\xff\x7f\x8a\xf7\xff\xf5" "\xff\x6b\xfe\x7e\xfd\xbf\xfe\x9f\x79\x4b\xeb\xff\x73\xf7\xbf\x39\x6e\x69" "\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x6f\x89\x5b\xec\x7f\x00\x00\x00\x18" "\x46\xee\xfe\xb7\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xdb\xe2\x96" "\x26\xfb\x7f\xfb\xfd\xbf\xf7\xff\xf5\xff\x17\xd9\xff\x9f\xd0\xff\x27\xfd" "\x7f\xfc\x75\xf5\xfe\xbf\xfe\xff\x22\xe8\xff\xf5\xff\x1b\xfd\xff\x25\x3b" "\xee\x7e\x7e\xed\xdf\xaf\xff\xd7\xff\x33\x6f\x69\xfd\x7f\xee\xfe\x33\x7b" "\x53\xaf\xdf\xfe\x07\x00\x00\x80\x0e\xce\xec\xfd\xf2\xf4\xe6\xed\x71\x8b" "\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x8e\xb8\xc5\xfe\x07\x00\x00\x80\x61" "\xe4\xee\x7f\x67\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xc7\xde\xff\x7b\xff\xbf" "\xe8\xff\xe3\xaf\xab\xfe\x5f\xff\x7f\x11\xf4\xff\xfa\xff\x8d\xfe\xff\x92" "\x1d\x77\x3f\xbf\xf6\xef\xd7\xff\xeb\xff\x99\xb7\xb4\xfe\x3f\x77\xff\xbb" "\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xee\xb8\xc5\xfe\x07\x00" "\x00\x80\x61\xc4\xee\xdf\xff\x97\xdf\xed\x7f\x00\x00\x00\x18\xd2\x7b\xf6" "\x7e\x79\x7a\xf3\xde\xb8\xa5\xc9\xfe\x6f\xdc\xff\x5f\x7b\xb9\xfd\xff\x35" "\x77\xf9\xbf\xf5\xff\x17\xfe\x7e\xfd\xff\x56\xfa\xff\x33\x07\xff\xde\xd3" "\xff\xeb\xff\xd7\x44\xff\xaf\xff\x9f\xa2\xff\xd7\xff\xaf\xf9\xfb\x97\xd3" "\xff\xc7\x0f\xae\xd3\xff\xb3\x3c\x4b\xeb\xff\x73\xf7\xbf\x2f\x6e\x69\xb2" "\xff\x01\x00\x00\xa0\x83\xdc\xfd\xef\x8f\x5b\xec\x7f\x00\x00\x00\x18\x46" "\xee\xfe\x5b\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x03\x71\x4b\x93" "\xfd\xdf\xb8\xff\x1f\xe4\xfd\xff\xfb\xdd\x1e\x5f\xa0\xff\x1f\xb7\xff\xf7" "\xfe\x7f\x5c\xfd\xbf\xfe\xff\x42\xf4\xff\xfa\xff\x8d\xfe\xff\x92\x1d\x77" "\x3f\xbf\xf6\xef\x5f\x4e\xff\xef\xfd\x7f\x96\x6b\x69\xfd\x7f\xee\xfe\x0f" "\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x43\x71\x8b\xfd\x0f\x00" "\x00\x00\xc3\xc8\xdd\xff\xe1\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff" "\x48\xdc\xd2\x64\xff\xeb\xff\xd7\xde\xff\x7b\xff\x5f\xff\xaf\xff\xd7\xff" "\x2f\x9b\xfe\x5f\xff\x3f\x45\xff\xaf\xff\x5f\xf3\xf7\xeb\xff\xf5\xff\xcc" "\x5b\x5a\xff\x9f\xbb\xff\xa3\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee" "\xff\x58\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x7f\x3c\x6e\xb1\xff\x01" "\x00\x00\x60\x18\xb9\xfb\x3f\x11\xb7\x34\xd9\xff\xfa\x7f\xfd\xff\xae\xfa" "\xff\x3b\xff\x20\xfa\xff\x26\xfd\xff\xf5\xfa\xff\x8d\xfe\xff\x50\xfa\x7f" "\xfd\xff\x14\xfd\x7f\xc7\xfe\xff\xb6\xd9\xae\x7d\xd9\xdf\x7f\x96\xfe\x5f" "\xff\xcf\xbc\xa5\xf5\xff\xb9\xfb\x3f\x19\xb7\x34\xd9\xff\x00\x00\x00\xd0" "\x41\xee\xfe\x4f\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xa7\xe3\x16" "\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x33\x71\xc3\xbd\xee\x79\x7c\x9f\xb4" "\x5d\x27\x0f\xf9\x79\xf4\xe6\xfa\x7f\xfd\xbf\xf7\xff\xf5\xff\xde\xff\xd7" "\xff\xef\x92\xfe\x5f\xff\x3f\x45\xff\xdf\xb1\xff\xdf\x9e\xe3\xfe\x7e\xfd" "\xbf\xfe\x9f\x79\x4b\xeb\xff\x73\xf7\x7f\x36\x6e\xf1\xcf\xff\x01\x00\x00" "\x60\x18\xb9\xfb\x3f\x17\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x9f\x8f" "\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x2f\xc4\x2d\x4d\xf6\xbf\xfe\x5f" "\xff\xbf\x83\xfe\xff\xa4\xfe\x7f\xdf\x8e\xfb\xff\x6b\xf4\xff\xe7\x7e\xbf" "\xfe\x7f\x99\xf4\xff\xfa\xff\x29\xfa\x7f\xfd\xff\x9a\xbf\x5f\xff\xaf\xff" "\x67\xde\xd2\xfa\xff\xdc\xfd\x5f\x8c\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20" "\x77\xff\x97\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xcb\x71\x8b\xfd" "\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x95\xb8\xa5\xc9\xfe\xbf\xa4\xfe\xff\x2a" "\xfd\xff\x41\xfa\xff\x0b\x7f\xbf\xfe\xdf\xfb\xff\xfa\x7f\xfd\xbf\xfe\x5f" "\xff\x3f\x45\xff\xaf\xff\x5f\xf3\xf7\xeb\xff\xf5\xff\xcc\x5b\x5a\xff\x9f" "\xbb\xff\xab\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x5a\xdc\x62" "\xff\x03\x00\x00\xc0\x30\x72\xf7\x7f\x3d\x6e\xb1\xff\x01\x00\x00\x60\x18" "\xb9\xfb\xbf\x11\xb7\x34\xd9\xff\xde\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f" "\xfd\xff\x2e\x5d\xf1\xfe\xff\xc4\xf6\xff\x18\x1b\xfd\xbf\xfe\xff\x10\xfa" "\x7f\xfd\xbf\xfe\x5f\xff\xcf\xb4\xa5\xf5\xff\xb9\xfb\x6f\x8b\x5b\x9a\xec" "\x7f\x00\x00\x00\xe8\x20\x77\xff\x37\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91" "\xbb\xff\x5b\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xed\xb8\xa5\xc9" "\xfe\x1f\xb9\xff\x9f\xfa\xdd\xf4\xff\xfb\xf4\xff\xfa\xff\x8d\xfe\xff\x60" "\xff\x7f\x2a\x7f\xae\xff\xdf\x0e\xef\xff\xeb\xff\xa7\xe8\xff\x07\xee\xff" "\x4f\x6d\xe5\x13\x8f\xef\xfb\xf5\xff\xfa\x7f\xb6\x62\x69\xfd\x7f\xee\xfe" "\xef\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xbb\x71\x8b\xfd\x0f" "\x00\x00\x00\xc3\xc8\xdd\xff\xbd\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee" "\xff\x7e\xdc\xd2\x64\xff\x8f\xdc\xff\x4f\xd1\xff\xef\xd3\xff\xeb\xff\x37" "\xfa\x7f\xef\xff\xef\x98\xfe\x5f\xff\x3f\x45\xff\x3f\x70\xff\xef\xfd\x7f" "\xfd\x3f\x1c\x5f\xff\x7f\x72\x73\x48\xff\x9f\xbb\xff\x07\x71\x4b\x93\xfd" "\x0f\x00\x00\x00\x1d\xe4\xee\xff\x61\xdc\x62\xff\x03\x00\x00\xc0\x30\x72" "\xf7\xff\x28\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x7f\x1c\xb7\x8c\xb3" "\xff\xef\x7f\xeb\xc4\x6f\xd4\xff\x6f\xbd\xff\xdf\xfb\x9b\x48\xff\xaf\xff" "\xdf\xe8\xff\xf5\xff\xfa\xff\x3d\xfa\x7f\xfd\xff\x14\xfd\xbf\xfe\x7f\xcd" "\xdf\xaf\xff\xd7\xff\x33\x6f\x69\xef\xff\xe7\xee\xff\x49\xdc\x32\xce\xfe" "\x07\x00\x00\x80\xf6\x72\xf7\xff\x34\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9" "\xfb\x7f\x16\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x3f\x8f\x5b\x9a\xec" "\x7f\xfd\xbf\xf7\xff\xf5\xff\xad\xfa\xff\xab\x37\x47\xea\xff\xf3\x3f\x61" "\xfd\xbf\xfe\xff\xf2\xe9\xff\xf5\xff\x53\xf4\xff\xfa\xff\x35\x7f\xbf\xfe" "\x5f\xff\xcf\xbc\xa5\xf5\xff\xb9\xfb\x7f\x11\xb7\x34\xd9\xff\x00\x00\x00" "\xd0\x41\xee\xfe\x5f\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xaf\xe2" "\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xd7\x71\x4b\x93\xfd\xaf\xff\xd7" "\xff\xeb\xff\x5b\xf5\xff\xde\xff\xd7\xff\x5f\x71\xfa\x7f\xfd\xff\x14\xfd" "\xbf\xfe\x7f\xcd\xdf\x9f\xfd\x7f\xfe\x7d\xa7\xff\xd7\xff\x73\xbe\xa5\xf5" "\xff\xb9\xfb\x7f\x13\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xdf\xc6" "\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xef\xe2\x16\xfb\x1f\x00\x00\x00" "\x86\x91\xbb\xff\xf7\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa" "\x7f\xfd\xff\x2e\xe9\xff\xf5\xff\x53\xf4\xff\xfa\xff\x35\x7f\xbf\xf7\xff" "\xf5\xff\xcc\x5b\x5a\xff\x9f\xbb\xff\xf6\xb8\xa5\xc9\xfe\x07\x00\x00\x80" "\x0e\x72\xf7\xff\x21\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xff\x18\xb7" "\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x77\xc4\x2d\x4d\xf6\xbf\xfe\x5f\xff" "\x3f\x64\xff\x7f\x77\xfd\xbf\xfe\x5f\xff\xbf\x14\xfa\x7f\xfd\xff\x14\xfd" "\xbf\xfe\x7f\xcd\xdf\xaf\xff\x3f\xbf\xff\x3f\x19\xbf\x4d\xff\x4f\x5a\x5a" "\xff\x9f\xbb\xff\x4f\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x73" "\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x25\x6e\xb1\xff\x01\x00\x00" "\x60\x18\xb9\xfb\xff\x1a\xb7\x34\xd9\xff\xfa\x7f\xfd\xff\xc5\xf7\xff\x27" "\xeb\xcf\x7b\xb1\xfd\xbf\xf7\xff\xf5\xff\xfa\xff\xc5\x18\xb7\xff\x3f\xa5" "\xff\xd7\xff\x5f\x76\xff\x7f\xf3\x2d\xfb\x3f\xd6\xff\xaf\xf3\xfb\xf5\xff" "\xde\xff\x67\xde\xd2\xfa\xff\xdc\xfd\x7f\x8b\x5b\x9a\xec\x7f\x00\x00\x00" "\xe8\x20\x77\xff\xdf\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x1f\x71" "\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xcf\xb8\xa5\xc9\xfe\xd7\xff\xeb" "\xff\x87\x7c\xff\x5f\xff\xaf\xff\xd7\xff\x2f\xc6\xb8\xfd\xbf\xf7\xff\xf5" "\xff\xde\xff\xd7\xff\xeb\xff\xf5\xff\xcc\x59\x5a\xff\x9f\xbb\xff\x5f\x71" "\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x77\xdc\x62\xff\x03\x00\x00" "\xc0\x30\x72\xf7\xff\x27\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xff\x1b" "\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xef\x92\xfe" "\x5f\xff\x3f\x45\xff\xaf\xff\x5f\xf3\xf7\xeb\xff\xf5\xff\xcc\x5b\x5a\xff" "\x9f\xbb\xff\xff\x01\x00\x00\xff\xff\xb0\xce\x27\xba", 24619); syz_mount_image( /*fs=*/0x200000000400, /*dir=*/0x200000000140, /*flags=MS_LAZYTIME|MS_POSIXACL|MS_REC|MS_STRICTATIME|MS_SILENT|MS_NOSUID|0x800*/ 0x301c802, /*opts=*/0x200000000f80, /*chdir=*/0x11, /*size=*/0x602b, /*img=*/0x2000000088c0); memcpy((void*)0x200000000140, "blkio.throttle.io_service_bytes\000", 32); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000140ul, /*flags=*/0x275a, /*mode=*/0); if (res != -1) r[0] = res; memcpy((void*)0x200000000000, "blkio.bfq.io_queued_recursive\000", 30); syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000000ul, /*flags=*/0x275a, /*mode=*/0); memcpy((void*)0x200000000fc0, " 00000000000000000119 00000000000000000005 00000000000000000052 " "00000000002000000142 000000000000000001%6 00000000000000000064 " "00000000000000000161 \000", 149); syscall(__NR_write, /*fd=*/r[0], /*buf=*/0x200000000fc0ul, /*count=*/0x95ul); memcpy((void*)0x200000000000, "udf\000", 4); memcpy((void*)0x200000000080, "./bus\000", 6); *(uint64_t*)0x2000000004c0 = 0; *(uint64_t*)0x2000000004c8 = 0; memcpy( (void*)0x2000000004d0, "\xc7\x71\xcd\x8e\xa0\xca\x47\xa8\x51\x14\xb1\xdd\x7d\xb1\xf8\x0b\x3e\x16" "\x18\x1c\xca\x21\x3a\x89\xa7\x3d\x1a\x40\x86\x9f\x8e\xd2\xdb\xa7\xd3\x8c" "\xe3\x02\x8c\x18\x9f\x74\x4c\xc4\x5f\xe5\x96\xdb\xd8\x1c\xd4\x43\x07\xc1" "\xad\xba\xd6\x99\x08\x00\xef\xb5\x29\xdc\xb6\x22\xc3\x52\xd2\x6f\x3b\x60" "\x51\x25\xcb\x1f\x3d\x9d\x54\x7d\x21\x18\x78\xaf\x84\x67\x2b\xff\x2a\xcc" "\xc1\x0c\x9a\x90\x41\xcb\x07\x5a\x1e\x59\x3f\x33\x40\xe0\xb0\x97\xb6\x1f" "\xcb\xba\x1e\x52\x79\x9c\xfe\xbd\x00\x08\xca\x12\x92\xed\xbd\x0d\xf1\x34" "\x52\x1a\xdd\xa1\xad\x40\x9c\x6d\xa5\xc6\xba\x0a\x08\x4b\x03\xf2\x9e", 143); sprintf((char*)0x20000000055f, "%020llu", (long long)-1); memcpy( (void*)0x2000000005c0, "\x78\x9c\xec\xdd\xc1\x6f\x1c\x57\x19\x00\xf0\xef\x4d\xbc\xce\x3a\x4d\xda" "\x6d\x12\x12\x42\x0a\xb2\x04\x12\x51\x11\x91\xe3\xa4\x0e\xe0\x88\x12\xea" "\x5a\x42\x8a\xa8\xd5\xc4\x39\x70\xc2\xc4\x4e\x6a\x75\x63\x47\x76\x8a\x92" "\xaa\x82\x1c\x10\x5c\xf8\x1f\x38\xf5\x02\x12\xaa\x04\x5c\x90\x38\xc0\x95" "\x03\xdc\x10\xaa\xc4\x09\x71\xc5\xa0\x4a\x15\x20\x12\x34\x93\xd9\x9d\xdd" "\x8d\xc1\x0e\xeb\x8d\xbd\xcd\xef\x27\x25\x3b\x3b\xf3\xcd\x9b\x37\x23\xdb" "\xd2\xf7\xde\x9b\xf7\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x88\xf8\xea\xab\x17\x27\xce\xa4\xdd\xae\x05\x00\x00\x00\x30\x48\x5f" "\xbf\xfc\xfa\xc4\x64\x4f\xfe\x3f\xb6\x5b\x95\x01\x00\x00\x00\x06\xe2\x8a" "\xfe\x7f\x00\x00\x00\x00\x00\x00\x00\x18\x76\x29\xb2\xf8\x7e\xa4\xb8\x73" "\x68\x23\x1d\x2c\xbe\x3f\x54\xbf\xb4\xbc\xf2\xd6\x9d\xf9\x99\xd9\xcd\x4f" "\x1b\x4b\xc5\x99\xfb\x8a\xf8\xfc\x5f\xfd\xcc\xe4\xd9\x73\x2f\x4d\x9d\xff" "\x42\xeb\xf3\x7f\x9f\xbf\xd3\x4e\xc4\x6b\x97\xaf\x5c\x1c\x7f\x65\xf5\xe6" "\xad\xb5\xa5\xf5\xf5\xa5\xc5\xf1\xf9\x95\xe5\x6b\xab\x8b\x4b\xdb\x2e\xa1" "\xdf\xf3\x7b\xbd\x58\x3c\x80\xf1\x9b\x6f\xbe\xb5\x78\xfd\xfa\xfa\xf8\xe4" "\xe9\xb3\x5d\x87\xef\x34\xfe\xb2\xff\x99\x63\x8d\xe9\x2f\xbe\x7a\xf4\x52" "\x2b\x76\x7e\x66\x76\xf6\x72\x47\xcc\x48\xed\xff\xbe\xfa\x23\x8c\xf0\x00" "\x00\x00\x78\xba\x8d\x46\x16\xe7\x22\xc5\x95\x93\x3f\x4d\x87\x22\x22\x8b" "\xfe\x73\xe1\x2d\xda\x0e\x06\x6d\x2c\x1a\x79\xfe\x5d\xdc\xc4\xfc\xcc\x6c" "\x71\x23\xcd\xe5\x85\x95\xdb\xf9\xc1\xb9\x56\x22\xdc\xe8\xce\x89\x47\x5b" "\x39\xf2\x13\xc8\xc5\xfb\xd2\x88\x38\x9c\xd7\x75\x54\x46\x0f\x00\x00\xc0" "\xf6\xd5\x22\x8b\x4f\x45\x8a\x13\xf7\x37\xd2\xb3\x11\xb1\xaf\x95\x07\x7f" "\xae\x98\x18\x70\xeb\x02\x1a\x4f\xa0\x92\x9b\x18\x89\x88\x23\x11\x71\x2a" "\x86\x20\x67\x07\x00\x00\x80\x5d\xb6\x3f\xb2\x78\x3d\x52\xfc\xaa\xd9\x88" "\xe7\xca\xbc\xba\xc8\xff\xbf\x12\x31\xbd\xdb\x95\x03\x00\x00\x00\x76\xc4" "\x48\x64\x71\x3e\x52\x7c\x30\xbd\x91\x1a\xc5\x78\x80\x88\x78\x71\x7e\x66" "\x76\xfc\xd2\xd5\xf1\xaf\xad\x5c\x5f\xed\x88\x9d\x4b\x65\x8f\xfa\xb0\xbf" "\x1f\xf0\x24\x19\x9b\x00\x00\x00\xc0\x1e\x50\x8f\x2c\x0e\x15\x3d\xfe\x1b" "\xe9\xf9\xc7\x3e\xfb\x1f\x0f\x1e\x3c\x18\x48\xb5\x00\x00\x00\x80\x1d\x34" "\x16\x59\xfc\x33\x52\x7c\xf6\xe5\x6f\x17\xf3\xca\x45\x31\x2f\xfd\x73\xd3" "\x5f\x3a\x78\x61\xb6\x73\x86\xb9\xe3\x5b\x94\x93\xc7\x9e\x8e\x88\x93\xdb" "\x7c\x27\xbf\x56\xce\x35\x38\x97\xe6\x52\xca\x1e\x29\xed\xde\x8e\xdc\x1c" "\x00\x00\x00\x50\xa8\xa7\x2c\xfe\x1c\x29\x3e\xfc\x63\xbd\xf8\x7e\xaa\xcc" "\xcd\xd3\xc8\x6e\xd7\x0c\x00\x00\x00\xd8\x31\x29\x8b\xef\x45\x8a\x2f\xcf" "\x6d\xa4\xd4\xb3\x2e\xfd\xbe\x8e\xf5\xfd\xdb\x86\xfd\xdd\xff\xc1\xd6\x7f" "\xac\xfe\xca\xea\xad\xbb\x6b\xcb\x37\xde\xb8\xbd\xe9\xf1\x03\xf5\x8b\xdf" "\x5a\xbf\xbd\xb6\x70\x6d\xf3\xc3\x0f\xd7\x2e\xec\x1a\x0e\xb1\xd5\x3a\x86" "\x00\x00\x00\xb0\x0d\xb5\x94\xc5\xdf\x23\xc5\x6f\x9b\xef\xb5\xf3\xce\x72" "\x0d\x80\x72\x04\x40\x95\x68\xbe\x7b\xa1\xca\x4d\xeb\xa9\xe7\x68\xd1\x6e" "\xf0\x6c\xd1\x6e\xd0\x7e\x87\xe0\x99\xc9\xc9\xce\xed\x4d\x53\xd6\xc7\x98" "\x1f\xaf\x51\x5e\x77\x5f\xff\xb7\x0d\x00\x00\x00\x4f\x95\x94\xb2\x18\x8d" "\x14\x9f\xf9\xcd\xc7\xcb\xb5\xff\x0f\xc4\x23\x7d\xd0\x65\xdc\xef\x22\xc5" "\x85\xd5\x17\xca\xb8\x6c\x34\x1a\xd5\x5c\xfa\x8d\xe2\xff\xfa\xf5\xe5\xe6" "\xd2\x44\x1e\x3b\x13\x29\x7e\xde\x6c\xc5\x46\x1e\x1b\xfb\xcb\xd8\x23\x55" "\xec\x99\x3c\xf6\xd7\x79\xb9\x0b\xdd\xb1\xf5\x32\xf6\x68\x11\x1a\x79\xec" "\x64\x1e\x7b\x3f\x52\xbc\xb1\xb6\x79\xec\xc7\xaa\x72\xcf\xe6\xb1\x6b\x91" "\xe2\x27\x3f\x1a\x6f\xc5\x1e\xc8\x63\x0f\x96\xb1\xc7\xaa\xd8\xd3\xd7\x56" "\x9b\x8b\x03\x7b\xc0\x00\x00\x00\xb0\x07\xd4\x52\x16\xbf\x88\x14\x3f\xfc" "\xd7\x78\xfb\x95\xff\xee\xfe\xff\xaa\xb7\xfd\xdd\x77\xaa\xfe\xfe\x47\x26" "\xe8\xfb\x2f\x7d\xfe\xfd\xf6\xff\x37\x3a\xf6\xdd\x2b\xdb\x21\xf6\x97\xed" "\x15\x23\x5b\xb4\x57\xbc\x16\x29\x4e\x3c\xff\x42\xeb\x7e\x8a\xb6\x82\xd6" "\xb0\x82\x87\x6b\x1d\x54\xed\x15\x7f\x8b\x14\x6b\xdf\xe8\x8e\x1d\x2d\x63" "\x0f\x57\xb1\x67\xb6\xfd\x60\x01\x00\x00\x60\x0f\x69\x8d\xff\xff\xfd\xd5" "\x5f\xb6\x87\xdc\x97\x39\x70\xf9\x75\xf3\xfc\xff\x13\xbd\xf3\x03\x0e\x28" "\xff\xef\x5c\x93\x30\xbf\xe6\xfa\xdd\xb7\xdf\x5c\x68\x36\x97\xd6\x86\x69" "\xe3\xbb\x11\xd1\xb5\x27\xed\x91\x8a\xd9\x78\xac\x8d\xfc\x87\x70\x0f\x54" "\x63\x67\x36\xca\x5f\xaa\x7b\x7b\xa5\x3e\xfd\x6e\xf4\xf5\x67\x10\x00\x00" "\x9e\x0a\x79\xfe\x7f\x35\x52\xdc\xf9\xe0\xfd\x76\x7f\x77\x99\xff\x97\x43" "\xe5\xab\xfc\xff\xc3\xef\x54\xf9\xff\x74\x6f\x41\x03\xca\xff\x0f\x77\xec" "\x9b\x2e\xe7\x1b\xa8\x8d\x44\xd4\x6f\xdf\xbc\x55\x3b\x1e\x51\x5f\xbf\xfb" "\xf6\xe7\x97\x6f\x2e\xdc\x58\xba\xb1\xb4\x72\x76\xea\xa5\xa9\x89\xa9\xa9" "\xf3\xe7\x26\x6b\xa3\xad\xce\xfd\x6a\xab\xef\x67\x05\x00\x00\x00\xc3\x2a" "\xcf\xff\x27\x22\xc5\x5f\x7f\xf0\xe3\xf6\xfb\xf9\xdb\xe9\xff\x3f\xd0\x5b" "\xd0\x80\xf2\xff\x23\x1d\xfb\xf2\x6b\x56\x9d\x7e\xf9\x9e\x3f\xf5\x7b\xfb" "\x00\x00\x00\xf0\x54\xc8\xf3\xff\x9f\x45\x8a\x3f\x9c\x7c\xaf\x3d\x8f\x5e" "\x77\xfe\xdf\x31\xff\xff\x3b\xd5\x7b\xf6\xa7\x3e\xfd\x70\xb4\x40\xbb\x75" "\x60\x40\xf9\xff\xd1\x8e\x7d\x8d\xe2\xba\x51\x4d\x3a\x08\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1f\x11\xb5\x94\xc5\xbf\x23" "\xc5\xfb\xf5\x91\x54\x4e\xf8\xbf\xad\xf9\xff\x16\x7b\x0b\x1a\xd0\xfb\xff" "\xc7\x3a\xf6\x2d\xc6\x93\x59\xff\xaf\xef\x87\x0a\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x43\x2a\x8b\x2c\x96\x23" "\xc5\x27\x8f\x6f\xa4\x97\xf3\x1d\xdf\x8c\x38\xd8\xf9\x09\x00\x00\x00\x0c" "\xbd\xff\x04\x00\x00\xff\xff\x54\xf7\x1d\x56", 1433); syz_mount_image(/*fs=*/0x200000000000, /*dir=*/0x200000000080, /*flags=MS_SILENT|MS_MANDLOCK*/ 0x8040, /*opts=*/0x2000000004c0, /*chdir=*/0xd3, /*size=*/0x599, /*img=*/0x2000000005c0); } 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; }