// https://syzkaller.appspot.com/bug?id=f67dc02e17c08c6182702aa9df980d049359f31b // 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_fsconfig #define __NR_fsconfig 431 #endif #ifndef __NR_fspick #define __NR_fspick 433 #endif #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[2] = {0xffffffffffffffff, 0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x20000000, "jfs\000", 4); memcpy((void*)0x20000580, "./file0\000", 8); *(uint8_t*)0x20002ac0 = 0; memcpy( (void*)0x20002b00, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xec\x9b\x5f\x42\x53\xab" "\x87\xaa\x44\x08\xb9\x69\x79\x29\xa5\x49\x9c\x94\x10\x28\xd0\xf6\x00\x07" "\x2e\x3d\xa0\x5c\x51\x22\xd7\xad\x22\x52\x40\x49\x40\x69\x65\x11\x57\x16" "\x12\x07\x4e\xfc\x05\x20\x24\x8e\x08\x71\x44\x1c\xf8\x03\x7a\xe0\xca\x8d" "\x13\x27\x22\xd9\x48\xa0\x9e\x18\x34\xf6\xf3\xc4\xe3\xcd\x6e\xd7\xc1\xf6" "\xce\xda\xf3\xf9\x48\xce\xcc\x6f\x9e\xd9\xf5\x33\xfe\xee\xec\x4b\x66\x66" "\x9f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe2\xbb\xdf" "\xf9\xde\x4a\x11\x11\x37\x7e\x9a\x16\x2c\x45\x7c\x2a\xba\x11\x9d\x88\x85" "\xaa\x5e\x8e\x88\x85\xe5\xa5\xbc\x7e\x2f\x22\x9e\x8b\x9d\xe6\x78\x36\x22" "\xfa\x73\x11\xd5\xed\x77\xfe\x79\x3a\xe2\xd5\x88\xf8\xe8\x6c\xc4\xd6\xf6" "\xfa\x6a\xb5\xf8\xf2\x01\xfb\xf1\xed\x3f\xfc\xed\xb7\xdf\x3f\xf3\xd6\x5f" "\x7f\xdf\xbf\xf8\x9f\x3f\xde\xeb\xbe\x36\x6e\xbd\xfb\xf7\x7f\xf9\xef\x3f" "\x3d\x38\xdc\x36\x03\x00\x00\x40\xdb\x94\x65\x59\x16\xe9\x63\xfe\xb9\xf4" "\xf9\xbe\xd3\x74\xa7\x00\x80\xa9\xc8\xaf\xff\x65\x92\x97\x9f\xfa\xfa\x57" "\xff\x78\xeb\xcf\xb3\xd4\x1f\xb5\x5a\xad\x56\xab\xa7\x50\xd7\x95\xa3\x3d" "\xa8\x17\x11\xb1\x51\xbf\x4d\xf5\x9e\xc1\xe1\x78\x00\x38\x61\x36\xe2\xe3" "\xa6\xbb\x40\x83\xe4\xdf\x6a\xbd\x88\x38\xd3\x74\x27\x80\x99\x56\x34\xdd" "\x01\x8e\xc5\xd6\xf6\xfa\x6a\x91\xf2\x2d\xea\xaf\x07\xcb\xbb\xed\xf9\x5c" "\x90\x7d\xf9\x6f\x14\x8f\xae\xef\x18\x37\x9d\x64\xf8\x1c\x93\x69\x3d\xbe" "\x36\xa3\x1b\xcf\x8c\xe9\xcf\xc2\x94\xfa\x30\x4b\x72\xfe\x9d\xe1\xfc\x6f" "\xec\xb6\x0f\xd2\x7a\xc7\x9d\xff\xb4\x8c\xcb\x7f\xb0\x7b\xe9\x53\xeb\xe4" "\xfc\xbb\xc3\xf9\x0f\x39\x3d\xf9\x77\x46\xe6\xdf\x56\x39\xff\xde\x13\xe5" "\xdf\x95\x3f\x00\x00\x00\x00\x00\xcc\xb0\xfc\xff\xff\x4b\x0d\x1f\xff\x9d" "\x3b\xfc\xa6\x1c\xc8\x27\x1d\xff\x5d\x9e\x52\x1f\x00\x00\x00\x00\x00\x00" "\x00\xe0\xa8\x1d\x76\xfc\xbf\x47\x8c\xff\x07\x00\x00\x00\x33\xab\xfa\xac" "\x5e\xf9\xf5\xd9\xbd\x65\xe3\xbe\x8b\xad\x5a\x7e\xbd\x88\x78\x6a\x68\x7d" "\xa0\x65\xd2\xc5\x32\x8b\x4d\xf7\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xda\xa4\xb7\x7b\x0e\xef\xf5\x22\xa2\x1f\x11\x4f\x2d\x2e\x96\x65\x59" "\xfd\xd4\x0d\xd7\x4f\xea\xb0\xb7\x3f\xe9\xda\xbe\xfd\xd0\x66\x4d\x3f\xc9" "\x03\x00\xc0\xae\x8f\xce\xe6\x6b\xf9\xfb\xbb\x0b\x8a\x88\xf9\x88\xb8\x9e" "\xbe\xeb\xaf\xbf\xb8\xb8\x58\x96\xf3\x0b\x8b\xe5\x62\xb9\x30\x97\xdf\xcf" "\x0e\xe6\xe6\xcb\x85\xda\xe7\xda\x3c\xad\x96\xcd\x0d\x0e\xf0\x86\xb8\x37" "\x28\xab\x3b\x9b\xaf\xdd\xae\x6e\xd2\xe7\xe5\x49\xed\xc3\xf7\x57\xfd\xae" "\x41\xd9\x3d\x40\xc7\x8e\x48\xfa\x63\xc6\x98\xe6\x06\x03\x07\x80\xf4\x02" "\x15\xb1\xe5\x15\xe9\x94\x29\xcb\xa7\xc7\xbd\xf9\x80\x7d\xec\xff\xa7\xd0" "\x52\x2c\x35\xfd\xb8\x62\xf6\x35\xfd\x30\x05\x00\x00\x00\x8e\x5f\x59\x96" "\x65\x91\xbe\xce\xfb\x5c\x3a\xe6\xdf\x69\xba\x53\x00\xc0\x54\xe4\xd7\xff" "\xe1\xe3\x02\x87\xaa\x3b\x63\xda\x23\x8e\xe6\xfe\xd5\x6a\xb5\xba\xa9\x7a" "\xdc\xf3\x9b\x5a\x7d\x42\xea\xba\x72\xb4\x07\xf5\x22\x22\x36\xea\xb7\xa9" "\xde\x33\x18\x8e\x1f\x00\x4e\x98\x8d\xf8\xb8\xe9\x2e\xd0\x20\xf9\xb7\x5a" "\x2f\x22\x9e\x6b\xba\x13\xc0\x4c\x2b\x9a\xee\x00\xc7\x62\x6b\x7b\x7d\xb5" "\x48\xf9\x16\xf5\xd7\x83\x34\xbe\x7b\x3e\x17\x64\x5f\xfe\x1b\xc5\xce\xed" "\xf2\xed\x47\x4d\x27\x19\x3e\xc7\x64\x5a\x8f\xaf\xcd\xe8\xc6\x33\x63\xfa" "\xf3\xec\x94\xfa\x30\x4b\x72\xfe\x9d\xe1\xfc\x6f\xec\xb6\x0f\xd2\x7a\xc7" "\x9d\xff\xb4\x8c\xcb\x7f\xb0\x73\xc9\x5c\xfb\xe4\xfc\xbb\xc3\xf9\x0f\x39" "\x3d\xf9\x77\x46\xe6\xdf\x56\x39\xff\xde\x13\xe5\xdf\x95\x3f\x00\x00\x00" "\x00\x00\xcc\xb0\xfc\xff\xff\x4b\x8e\xff\xe6\x4d\x06\x00\x00\x00\x00\x00" "\x00\x80\x13\x67\x6b\x7b\x7d\x35\x5f\xf7\x9a\x8f\xff\x7f\x66\xc4\x7a\xae" "\xff\x3c\x9d\x72\xfe\xc5\x93\xe6\xbf\x90\xe6\xe5\x7f\xa2\xe5\xfc\x3b\x43" "\xf9\x7f\x71\x68\xbd\x6e\x6d\xfe\xe1\x9b\x7b\xfb\xff\xbf\xb6\xd7\x57\x7f" "\x77\xef\x9f\x9f\xce\xd3\x83\xe6\x3f\x97\x67\x8a\xf4\xc8\x2a\xd2\x23\xa2" "\x48\xbf\xa9\xe8\xa5\xe9\x61\xb6\xee\x71\x9b\xfd\xee\xa0\xfa\x4d\xfd\xa2" "\xd3\xed\xa5\x73\x7e\xca\xfe\x3b\x71\x2b\x6e\xc7\x5a\x5c\xda\xb7\x6e\x27" "\xfd\x3d\xf6\xda\x57\xf6\xb5\x57\x3d\xed\xef\x6b\xbf\xbc\xaf\xbd\xf7\x58" "\xfb\x95\x7d\xed\xfd\xf4\xbd\x03\xe5\x42\x6e\xbf\x10\xab\xf1\xa3\xb8\x1d" "\x6f\xef\xb4\x57\x6d\x73\x13\xb6\x7f\x7e\x42\x7b\x39\xa1\x3d\xe7\xdf\xf5" "\xfc\xdf\x4a\x39\xff\x5e\xed\xa7\xca\x7f\x31\xb5\x17\x43\xd3\xca\xc3\x0f" "\x3b\x8f\xed\xf7\xf5\xe9\xa8\xdf\xf3\xc6\xad\xcf\xfe\xe2\xd2\xf1\x6f\xce" "\x44\x9b\xd1\x7d\xb4\x6d\x75\xd5\xf6\x9d\x6f\xa0\x3f\x3b\x7f\x93\x33\x83" "\xf8\xc9\xdd\xb5\x3b\x17\xee\xdf\xbc\x77\xef\xce\x4a\xa4\xc9\xbe\xa5\x97" "\x23\x4d\x8e\x58\xce\xbf\xbf\xf3\x33\xb7\xf7\xfc\xff\xc2\x6e\x7b\x7e\xde" "\xaf\xef\xaf\x0f\x3f\x1c\x3c\x71\xfe\xb3\x62\x33\x7a\x63\xf3\x7f\xa1\x36" "\x5f\x6d\xef\x4b\x53\xee\x5b\x13\x72\xfe\x83\xf4\x93\xf3\x7f\x3b\xb5\x8f" "\xde\xff\x4f\x72\xfe\xe3\xf7\xff\x97\x1b\xe8\x0f\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x7c\x92\xb2\x2c\x77\x2e\x11\x7d\x23\x22\xae\xa6" "\xeb\x7f\x9a\xba\x36\x13\x00\x98\xae\xfc\xfa\x5f\x26\x79\xb9\x5a\xad\x56" "\xab\xd5\xea\xd3\x57\xd7\x95\xa3\xbd\x5e\x2f\x22\xe2\x2f\xf5\xdb\x54\xef" "\x19\x7e\x36\xea\xce\x00\x80\x59\xf6\xdf\x88\xf8\x7b\xd3\x9d\xa0\x31\xf2" "\x6f\xb1\xfc\x7d\x7f\xd5\xf4\xc5\xa6\x3b\x03\x4c\xd5\xdd\xf7\x3f\xf8\xc1" "\xcd\xdb\xb7\xd7\xee\xdc\x6d\xba\x27\x00\x00\x00\x00\x00\x00\x00\xc0\xff" "\x2b\x8f\xff\xb9\x5c\x1b\xff\xf9\xc5\x88\x58\x1a\x5a\x6f\xdf\xf8\xaf\x6f" "\xc6\xf2\x61\xc7\xff\xec\xe5\x99\x47\x03\x8c\x1e\xf1\x40\xdf\x63\x6c\x76" "\x06\xdd\x4e\x6d\xb8\xf1\xe7\x63\x67\x7c\xee\x0b\xe3\xc6\xff\x3e\x1f\x8f" "\x8f\xff\x9d\xc7\xc4\xed\xd6\xb7\x63\x8c\xfe\x84\xf6\xc1\x84\xf6\xb9\x09" "\xed\xf3\x23\x97\xee\xa5\x35\xf2\x42\x8f\x9a\x9c\xff\xf3\xb5\xf1\xce\xab" "\xfc\xcf\x0d\x0d\xbf\xde\x86\xf1\x5f\x87\xc7\xbc\x6f\x83\x9c\xff\xf9\xda" "\xe3\xb9\xca\xff\x0b\x43\xeb\xd5\xf3\x2f\x7f\x33\x73\xf9\x6f\x1c\x74\xc5" "\xcd\xe8\xec\xcb\xff\xe2\xbd\xf7\x7e\x7c\xf1\xee\xfb\x1f\xbc\x72\xeb\xbd" "\x9b\xef\xae\xbd\xbb\xf6\xc3\x2b\x2b\x2b\x97\xae\x5c\xbd\x7a\xed\xda\xb5" "\x8b\xef\xdc\xba\xbd\x76\x69\xf7\xdf\xe3\xe9\xf5\x0c\xc8\xf9\xe7\xb1\xaf" "\x9d\x07\xda\x2e\x39\xff\x9c\xb9\xfc\xdb\x25\xe7\xff\xb9\x54\xcb\xbf\x5d" "\x72\xfe\x9f\x4f\xb5\xfc\xdb\x25\xe7\x9f\xdf\xef\xc9\xbf\x5d\x72\xfe\xf9" "\xb3\x8f\xfc\xdb\x25\xe7\xff\x52\xaa\xe5\xdf\x2e\x39\xff\x2f\xa5\x5a\xfe" "\xed\xb2\xb5\xbd\x3e\x57\xe5\xff\x72\xaa\xe5\xdf\x2e\x79\xff\xff\x72\xaa" "\xe5\xdf\x2e\x39\xff\x57\x52\x2d\xff\x76\xc9\xf9\x5f\x48\xb5\xfc\xdb\x25" "\xe7\x7f\x31\xd5\x07\xc8\xdf\xd7\xc3\x9f\x22\x39\xff\x7c\x84\xcb\xfe\xdf" "\x2e\x39\xff\x95\x54\xcb\xbf\x5d\x72\xfe\x97\x53\x2d\xff\x76\xc9\xf9\x5f" "\x49\xb5\xfc\xdb\x25\xe7\xff\x6a\xaa\xe5\xdf\x2e\x39\xff\xaf\xa4\x5a\xfe" "\xed\x92\xf3\xbf\x9a\x6a\xf9\xb7\x4b\xce\xff\xab\xa9\x96\x7f\xbb\xe4\xfc" "\xaf\xa5\x5a\xfe\xed\x92\xf3\xff\x5a\xaa\xe5\xdf\x2e\x39\xff\xaf\xa7\x5a" "\xfe\xed\x92\xf3\x7f\x2d\xd5\xf2\x6f\x97\x9c\xff\x37\x52\x2d\xff\x76\xc9" "\xf9\x7f\x33\xd5\xf2\x6f\x97\x9c\xff\xb7\x52\x2d\xff\x76\xc9\xf9\xbf\x9e" "\x6a\xf9\xb7\xcb\xde\xf7\xff\x9b\x31\x33\x0b\x33\x3f\x3f\xda\x3b\xec\xc6" "\x8c\x6c\xd7\x49\x9b\x69\xfa\x99\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x18\x36\x8d\xd3\x89\x9b\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" "\xfe\xc7\x0e\x1c\x08\x00\x00\x00\x00\x00\xf9\xbf\x36\x42\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x15\x76\xe0\x40\x00\x00\x00\x00\x00\xc8\xff\xb5\x11" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xb0\x77\x6f\x31\x72\xdd\xf5\x1d" "\xc0\xcf\xec\xcd\x6b\x87\x10\x03\x21\x38\xa9\x81\x4d\x62\x42\x70\x96\xec" "\xfa\x12\x5f\x68\x5d\x4c\xb8\x36\x40\xb9\x25\x14\x7a\xc1\x76\xbd\x6b\xb3" "\xe0\x1b\x5e\xbb\x04\x8a\x64\xd3\x40\x89\x84\x51\x51\x05\x6a\xfa\xd0\x16" "\x10\x6a\x23\x55\x15\x56\xc5\x03\xad\x28\xcd\x43\xd5\xcb\x53\x69\x1f\xe8" "\x4b\x45\x55\x09\xa9\x51\x15\xa2\x80\x8a\xd4\x56\x34\x5b\xcd\x9c\xff\xff" "\xef\x99\xd9\xd9\x99\x59\x7b\xbc\x9e\x3d\xff\xcf\x47\xb2\x7f\xbb\x33\x67" "\xe6\x9c\x39\x73\x66\x76\xbf\x6b\x7f\xf7\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xcd\xee\x7c\xe3\xfc\xe7\x6a\x45\x51\xd4\xff" "\x34\xfe\xda\x5c\x14\x2f\xa8\x7f\xbc\x71\x6a\x73\xe3\xb2\xd7\xdd\xe8\x2d" "\x04\x00\x00\x00\xae\xd5\xff\x35\xfe\x7e\xee\x96\x74\xc1\xc1\x3e\x6e\xd4" "\xb4\xcc\xdf\xbd\xe2\x1f\xbf\xb9\xb4\xb4\xb4\x54\x7c\x60\xf4\xcb\xe3\x5f" "\x5a\x5a\x4a\x57\x4c\x15\xc5\xf8\x86\xa2\x68\x5c\x17\x5d\xfe\xf7\x0f\xd6" "\x9a\x97\x09\x1e\x2b\x26\x6b\x23\x4d\x9f\x8f\xf4\x58\xfd\x68\x8f\xeb\xc7" "\x7a\x5c\x3f\xde\xe3\xfa\x89\x1e\xd7\x6f\xe8\x71\xfd\x64\x8f\xeb\x97\xed" "\x80\x65\x36\x96\x3f\x8f\x69\xdc\xd9\xb6\xc6\x87\x9b\xcb\x5d\x5a\xdc\x5a" "\x8c\x37\xae\xdb\xd6\xe1\x56\x8f\xd5\x36\x8c\x8c\xc4\x9f\xe5\x34\xd4\x1a" "\xb7\x59\x1a\x3f\x56\x2c\x14\x27\x8a\xf9\x62\xb6\x65\xf9\x72\xd9\x5a\x63" "\xf9\x6f\xdf\x59\x5f\xd7\xdb\x8a\xb8\xae\x91\xa6\x75\x6d\xad\x1f\x21\x3f" "\xfa\xd4\xd1\xb8\x0d\xb5\xb0\x8f\xb7\xb5\xac\xeb\xca\x7d\x46\x3f\x7c\x43" "\x31\xf5\xe3\x1f\x7d\xea\xe8\x1f\x9f\x7b\xe6\xf6\x4e\xb3\xe7\x6e\x68\xb9" "\xbf\x72\x3b\xef\xbd\xab\xbe\x9d\x9f\x09\x97\x94\xdb\x5a\x2b\x36\xa4\x7d" "\x12\xb7\x73\xa4\x69\x3b\xb7\x76\x78\x4e\x46\x5b\xb6\xb3\xd6\xb8\x5d\xfd" "\xe3\xf6\xed\x7c\xae\xcf\xed\x1c\xbd\xb2\x99\x6b\xaa\xfd\x39\x9f\x2c\x46" "\x1a\x1f\x7f\xb7\xb1\x9f\xc6\x9a\x7f\xac\x97\xf6\xd3\xd6\x70\xd9\x7f\xdf" "\x5d\x14\xc5\xc5\x2b\x9b\xdd\xbe\xcc\xb2\x75\x15\x23\xc5\xa6\x96\x4b\x46" "\xae\x3c\x3f\x93\xe5\x11\x59\xbf\x8f\xfa\xa1\xf4\xe2\x62\x6c\x55\xc7\xe9" "\x9d\x7d\x1c\xa7\xf5\x39\xb7\xad\xf5\x38\x6d\x7f\x4d\xc4\xe7\xff\xce\x70" "\xbb\xb1\x15\xb6\xa1\xf9\x69\xfa\xe1\xa7\x27\x96\x3d\xef\xab\x3d\x4e\xa3" "\xfa\xa3\x5e\xe9\xb5\xd2\x7e\x0c\x0e\xfa\xb5\x32\x2c\xc7\x60\x3c\x2e\xbe" "\xdb\x78\xd0\x8f\x77\x3c\x06\xb7\x85\xc7\xff\xa9\x7b\x56\x3e\x06\x3b\x1e" "\x3b\x1d\x8e\xc1\xf4\xb8\x9b\x8e\xc1\xbb\x7a\x1d\x83\x23\x13\xa3\x8d\x6d" "\x4e\x4f\x42\xad\x71\x9b\x2b\xc7\xe0\x8e\x96\xe5\x47\x1b\x6b\xaa\x35\xe6" "\xd3\xf7\x74\x3f\x06\x67\xce\x9d\x3c\x33\xb3\xf8\x89\x4f\xbe\x76\xe1\xe4" "\x91\xe3\xf3\xc7\xe7\x4f\xed\xda\xb1\x63\x76\xd7\x9e\x3d\xfb\xf6\xed\x9b" "\x39\xb6\x70\x62\x7e\xb6\xfc\xfb\x2a\xf7\xf6\xf0\xdb\x54\x8c\xa4\xd7\xc0" "\x5d\x61\xdf\xc5\xd7\xc0\xab\xdb\x96\x6d\x3e\x54\x97\xbe\x3a\xb8\xd7\xe1" "\x64\x97\xd7\xe1\xe6\xb6\x65\x07\xfd\x3a\x1c\x6b\x7f\x70\xb5\xb5\x79\x41" "\x2e\x3f\xa6\xcb\xd7\xc6\xc3\xf5\x9d\x3e\x79\x69\xa4\x58\xe1\x35\xd6\x78" "\x7e\xb6\x5f\xfb\xeb\x30\x3d\xee\xa6\xd7\xe1\x58\xd3\xeb\xb0\xe3\xd7\x94" "\x0e\xaf\xc3\xb1\x3e\x5e\x87\xf5\x65\xce\x6c\xef\xef\x7b\x96\xb1\xa6\x3f" "\x9d\xb6\xe1\x7a\x7d\x2d\xd8\xdc\x74\x0c\xb6\x7f\x3f\xd2\x7e\x0c\x0e\xfa" "\xfb\x91\x61\x39\x06\x27\xc3\x71\xf1\xaf\xdb\x57\xfe\x5a\xb0\x35\x6c\xef" "\xe3\xd3\xab\xfd\x7e\x64\x74\xd9\x31\x98\x1e\x6e\x78\xef\xa9\x5f\x92\xbe" "\xdf\x9f\xdc\xd7\x18\x9d\x8e\xcb\x3b\xea\x57\xdc\x34\x51\x9c\x5f\x9c\x3f" "\x7b\xff\xa3\x47\xce\x9d\x3b\xbb\xa3\x08\x63\x4d\xbc\xa4\xe9\x58\x69\x3f" "\x5e\x37\x35\x3d\xa6\x62\xd9\xf1\x3a\xb2\xea\xe3\xf5\xe0\xc2\x2b\x1e\xbf" "\xa3\xc3\xe5\x9b\xc3\xbe\x9a\x7c\x6d\xfd\xaf\xc9\x15\x9f\xab\xfa\x32\xbb" "\xef\xef\xfe\x5c\x35\xbe\xba\x75\xde\x9f\x2d\x97\xee\x2c\xc2\x18\xb0\xb5" "\xde\x9f\x9d\xbe\x9a\xd7\xf7\x67\xca\x92\x5d\xf6\x67\x7d\x99\xcf\xcc\x5c" "\xfb\xf7\xe2\x29\x97\x36\xbd\xff\x8e\xaf\xf0\xfe\x1b\x73\xff\xf3\xe5\xfa" "\xd2\x5d\x3d\x36\x3a\x3e\x56\xbe\x7e\x47\xd3\xde\x19\x6f\x79\x3f\x6e\x7d" "\xaa\xc6\x1a\xef\x5d\xb5\xc6\xba\x9f\x9b\xe9\xef\xfd\x78\x3c\xfc\x59\xeb" "\xf7\xe3\x5b\xbb\xbc\x1f\x6f\x69\x5b\x76\xd0\xef\xc7\xe3\xed\x0f\x2e\xbe" "\x1f\xd7\x7a\xfd\xb4\xe3\xda\xb4\x3f\x9f\x93\xe1\x38\x39\x31\xdb\xfd\xfd" "\xb8\xbe\xcc\x96\x9d\xab\x3d\x26\xc7\xba\xbe\x1f\xdf\x1d\x66\x2d\xec\xff" "\xd7\x84\xa4\x90\x72\x51\xd3\xb1\xb3\xd2\x71\x9b\xd6\x35\x36\x36\x1e\x1e" "\xd7\x58\x5c\x43\xeb\x71\xba\xab\x65\xf9\xf1\x90\xcd\xea\xeb\x7a\x72\xe7" "\xd5\x1d\xa7\xf7\xde\x5d\xde\xd7\x68\x7a\x74\x57\xac\xd5\x71\x3a\xd5\xb6" "\xec\xa0\x8f\xd3\xf4\x7e\xb5\xd2\x71\x5a\xeb\xf5\xd3\xb7\xab\xd3\xfe\x7c" "\x4e\x86\xe3\xe2\xd6\x5d\xdd\x8f\xd3\xfa\x32\x4f\xed\xbe\xf6\xf7\xce\x8d" "\xf1\xc3\xa6\xf7\xce\x89\x5e\xc7\xe0\xf8\xe8\x44\x7d\x9b\xc7\xd3\x41\x58" "\xbe\xdf\x2f\x6d\x8c\xc7\xe0\xfd\xc5\xd1\xe2\x74\x71\xa2\x98\x6b\x5c\x3b" "\xd1\x38\x9e\x6a\x8d\x75\x4d\x3f\xd0\xdf\x31\x38\x11\xfe\xac\xf5\x7b\xe5" "\x96\x2e\xc7\xe0\xbd\x6d\xcb\x0e\xfa\x18\x4c\x5f\xc7\x56\x3a\xf6\x6a\x63" "\xcb\x1f\xfc\x00\xb4\x3f\x9f\x93\xe1\xb8\x78\xe2\x81\xee\xc7\x60\x7d\x99" "\x37\xed\x1d\xec\xf7\xae\xf7\x86\x4b\xd2\x32\x4d\xdf\xbb\xb6\xff\x7c\x6d" "\xa5\x9f\x79\xdd\xd1\xb6\x9b\xae\xe7\xcf\xbc\xea\xdb\xf9\x37\x7b\xbb\xff" "\x6c\xb6\xbe\xcc\x89\x7d\xab\xcd\x99\xdd\xf7\xd3\x7d\xe1\x92\x9b\x3a\xec" "\xa7\xf6\xd7\xef\x4a\xaf\xa9\xb9\x62\x6d\xf6\xd3\x96\xb0\x9d\xcf\xec\x5b" "\x79\x3f\xd5\xb7\xa7\xbe\xcc\x97\xf6\xf7\x79\x3c\x1d\x2c\x8a\xe2\xc2\xc7" "\x1e\x6c\xfc\xbc\x37\xfc\xfb\xca\x9f\x9f\xff\xde\x37\x5b\xfe\xdd\xa5\xd3" "\xbf\xe9\x5c\xf8\xd8\x83\xcf\xde\x7c\xec\x6f\x57\xb3\xfd\x00\xac\x7f\xcf" "\x97\x63\x53\xf9\xb5\xae\xe9\x5f\xa6\xfa\xf9\xf7\x7f\x00\x00\x00\x60\x5d" "\x88\xb9\x7f\x24\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x3f\xfe\xaf\xf0" "\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x2c\xcc\x24\x93\xfc\xbf\xe5\x4d" "\xcf\x2c\x3c\x7f\xa1\x48\xcd\xfc\xa5\x20\x5e\x9f\x76\xc3\x43\xe5\x72\xb1" "\xe3\x3a\x1b\x3e\x9f\x5a\xba\xa2\x7e\xf9\x83\x5f\x9f\xff\xc9\x5f\x5e\xe8" "\x6f\xdd\x23\x45\x51\xfc\xf4\xa1\xdf\xec\xb8\xfc\x96\x87\xe2\x76\x95\xa6" "\xc2\x76\x5e\x7e\x73\xeb\xe5\xcb\x6f\x78\xa1\xaf\xf5\x1f\x7e\xe4\xca\x72" "\xcd\xfd\xf5\xaf\x84\xfb\x8f\x8f\xa7\xdf\xc3\xa0\x53\x05\x77\xb6\x28\x8a" "\x6f\xdf\xf2\x85\xc6\x7a\xa6\x3e\x78\xa9\x31\x9f\x7a\xe8\x70\x63\xbe\xf7" "\xe2\xe3\x8f\xd5\x97\x79\x6e\x7f\xf9\x79\xbc\xfd\xd3\x2f\x29\x97\xff\x83" "\x50\xfe\x3d\x78\xec\x48\xcb\xed\x9f\x0e\xfb\xe1\x07\x61\xce\xbe\xbd\xf3" "\xfe\x88\xb7\xfb\xc6\xa5\xd7\x6c\xdd\xfb\xfe\x2b\xeb\x8b\xb7\xab\xdd\xf5" "\xc2\xc6\xc3\x7e\xe2\x43\xe5\xfd\xc6\xdf\x93\xf3\xc5\xc7\xca\xe5\xe3\x7e" "\x5e\x69\xfb\xff\xea\xf3\x4f\x7e\xa3\xbe\xfc\xa3\xaf\xea\xbc\xfd\x17\x46" "\x3a\x6f\xff\x93\xe1\x7e\xbf\x1e\xe6\xff\xbc\xbc\x5c\xbe\xf9\x39\xa8\x7f" "\x1e\x6f\xf7\xd9\xb0\xfd\x71\x7d\xf1\x76\xf7\x7f\xed\x3b\x1d\xb7\xff\xf2" "\xe7\xca\xe5\xcf\xbc\xa5\x5c\xee\x70\x98\x71\xfd\xf7\x86\xcf\xb7\xbd\xe5" "\x99\x85\xe6\xfd\xf5\x68\xed\x48\xcb\xe3\x2a\xde\x5a\x2e\x17\xd7\x3f\xfb" "\xbd\xdf\x69\x5c\x1f\xef\x2f\xde\x7f\xfb\xf6\x4f\x1e\xba\xd4\xb2\x3f\xda" "\x8f\x8f\xa7\xfe\xb9\xbc\x9f\x99\xb6\xe5\xe3\xe5\x71\x3d\xd1\x5f\xb4\xad" "\xbf\x7e\x3f\xcd\xc7\x67\x5c\xff\x93\xbf\x7d\xb8\x65\x3f\xf7\x5a\xff\xe5" "\xf7\x3e\xfd\xf2\xfa\xfd\xb6\xaf\xff\xbe\xb6\xe5\x46\xdb\x6e\xdf\xfe\x1b" "\x9b\xfe\xf0\xb3\x5f\xe8\xb8\xbe\xb8\x3d\x07\xff\xec\x4c\xcb\xe3\x39\xf8" "\x9e\xf0\x3a\x0e\xeb\x7f\xe2\x43\xe1\x78\x0c\xd7\xff\xef\xe5\x2f\xb4\xac" "\x37\x3a\xfc\x9e\xd6\xf7\x9f\xb8\xfc\x57\x36\x5f\x68\x79\x3c\xd1\xdb\x7e" "\x5c\xae\xff\xf2\xeb\x8f\x37\xe6\x7f\x4c\xfd\xe4\xf7\x6f\x7a\xc1\xcd\x2f" "\xbc\xf8\xca\xfa\xbe\x2b\x8a\xef\xbe\xaf\xbc\xbf\x5e\xeb\x3f\xfe\x47\xa7" "\x5b\xb6\xff\xab\xb7\x6d\x6f\x3c\x1f\xf1\xfa\xd8\xd1\x6f\x5f\xff\x4a\xe2" "\xfa\xcf\x7e\x7c\xfa\xd4\xe9\xc5\xf3\x0b\x73\x4d\x7b\xb5\xf1\xbb\x73\xde" "\x51\x6e\xcf\x86\xc9\x8d\x9b\xea\xdb\x7b\x4b\x78\x6f\x6d\xff\xfc\xd0\xe9" "\x73\x1f\x9e\x3f\x3b\x35\x3b\x35\x5b\x14\x53\xd5\xfd\x15\x7a\x57\xed\x6b" "\x61\x3e\x5b\x8e\x8b\xab\xbd\xfd\xf6\x47\xc2\xf3\x79\xc7\xef\x7d\x7b\xd3" "\x3d\xff\xf4\xf9\x78\xf9\xbf\x3c\x5c\x5e\x7e\xe9\xed\xe5\xd7\xad\x57\x87" "\xe5\xbe\x18\x2e\xdf\x5c\x3e\x7f\x4b\xb5\x6b\x5c\xff\x13\x77\xde\xd6\x78" "\x7d\xd7\x9e\x2a\x3f\x6f\xe9\xb1\x0f\xc0\xd6\x6d\xff\xb9\xaf\xaf\x05\xc3" "\xe3\x6f\xff\xbe\x20\x1e\xef\x67\x5e\xfa\xe1\xc6\x7e\xa8\x5f\xd7\xf8\xba" "\x11\x5f\xd7\xd7\xb8\xfd\xdf\x9f\x2b\xef\xe7\x5b\x61\xbf\x2e\x85\xdf\xcc" "\x7c\xd7\x6d\x57\xd6\xd7\xbc\x7c\xfc\xdd\x08\x97\xde\x57\xbe\xde\xaf\x79" "\xff\x85\xb7\xb9\xf8\xbc\xfe\x49\x78\xbe\xdf\xf9\x83\xf2\xfe\xe3\x76\xc5" "\xc7\xfb\xfd\xf0\x7d\xcc\x77\xb6\xb4\xbe\xdf\xc5\xe3\xe3\x5b\x17\x46\xda" "\xef\xbf\xf1\x5b\x3c\x2e\x86\xf7\x93\xe2\x62\x79\x7d\x5c\x2a\xee\xef\x4b" "\xcf\xdd\xd6\x71\xf3\xe2\xef\x21\x29\x2e\xde\xde\xf8\xfc\x77\xd3\xfd\xdc" "\xbe\xaa\x87\xb9\x92\xc5\x4f\x2c\xce\x9c\x58\x38\x75\xfe\xd1\x99\x73\xf3" "\x8b\xe7\x66\x16\x3f\xf1\xc9\x43\x27\x4f\x9f\x3f\x75\xee\x50\xe3\x77\x79" "\x1e\xfa\x48\xaf\xdb\x5f\x79\x7f\xda\xd4\x78\x7f\x9a\x9b\xdf\xb3\xbb\x98" "\xdd\x58\x14\xc5\xe9\x62\x76\x0d\xde\xb0\xae\xcf\xf6\xd7\x3f\xea\x6f\xfb" "\xcf\x3c\x72\x74\x6e\xef\xec\x3d\x73\xf3\xc7\x8e\x9c\x3f\x76\xee\x91\x33" "\xf3\x67\x8f\x1f\x5d\x5c\x3c\x3a\x3f\xb7\x78\xcf\x91\x63\xc7\xe6\x3f\xde" "\xeb\xf6\x0b\x73\x07\x76\xec\xdc\xbf\x6b\xef\xce\xe9\xe3\x0b\x73\x07\xf6" "\xed\xdf\xbf\x6b\xff\xf4\xc2\xa9\xd3\xf5\xcd\x28\x37\xaa\x87\x3d\xb3\x1f" "\x9d\x3e\x75\xf6\x50\xe3\x26\x8b\x07\x76\xef\xdf\xf1\xc0\x03\xbb\x67\xa7" "\x4f\x9e\x9e\x9b\x3f\xb0\x77\x76\x76\xfa\x7c\xaf\xdb\x37\xbe\x36\x4d\xd7" "\x6f\xfd\x1b\xd3\x67\xe7\x4f\x1c\x39\xb7\x70\x72\x7e\x7a\x71\xe1\x93\xf3" "\x07\x76\xec\xdf\xb3\x67\x67\xcf\xdf\x06\x78\xf2\xcc\xb1\xc5\xa9\x99\xb3" "\xe7\x4f\xcd\x9c\x5f\x9c\x3f\x3b\x53\x3e\x96\xa9\x73\x8d\x8b\xeb\x5f\xfb" "\x7a\xdd\x9e\x6a\x5a\xfc\xb7\xf2\xfb\xd9\x76\xb5\xf2\x17\xf1\x15\xef\xba" "\x6f\x4f\xfa\xfd\xac\x75\x5f\xff\xf4\x8a\x77\x55\x2e\xd2\xf6\x0b\x44\x9f" "\x09\xbf\x8b\xe6\x1f\x5e\x74\x66\x5f\x3f\x9f\xc7\xdc\x3f\x1e\x66\x92\x49" "\xfe\x07\x00\x00\x80\x1c\xc4\xdc\x3f\x11\x66\x22\xff\x03\x00\x00\x40\x65" "\xc4\xdc\xbf\x21\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x32\xcc\x24" "\x93\xfc\xaf\xff\xaf\xff\xdf\x5f\xff\xbf\xbc\x5e\xff\x3f\xaf\xfe\xff\x99" "\x8f\x95\xbd\xd2\xf5\xde\xff\x8f\xfd\x79\xfd\xff\x3c\xdc\xe0\xfe\xff\x35" "\xaf\x5f\xff\x5f\xff\xbf\x7a\xfd\xff\xfe\xfb\xf3\xeb\x7d\xfb\xf5\xff\xf5" "\xff\x59\x6e\xd8\xfa\xff\x31\xf7\x6f\x2c\x8a\x2c\xf3\x3f\x00\x00\x00\xe4" "\x20\xe6\xfe\x4d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x37\x85\x99" "\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xbf\x20\xcc\x24\x93\xfc\x9f\x43\xff" "\xff\xdd\x1d\x16\x5b\x65\xff\x7f\x67\xaf\xc2\x55\xf5\xfb\xff\xeb\xe6\xfc" "\xff\x1b\x0b\xfd\x7f\xfd\xff\xe6\xfe\x7f\x7c\x72\xf4\xff\xb3\xb1\xea\xfe" "\xfd\xfb\x1f\x6e\xf9\x54\xff\x3f\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff" "\xe7\x9a\x8d\xaf\x78\xcd\x8d\xea\xff\xc7\xdc\x7f\x73\x98\x49\x26\xf9\x1f" "\x00\x00\x00\x72\x10\x73\xff\x0b\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98" "\xfb\x6f\x09\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xdf\x1c\x66\x92\x49" "\xfe\xcf\xa1\xff\xdf\x89\xf3\xff\x57\xb6\xff\xef\xfc\xff\xfa\xff\x83\x3d" "\xff\x7f\xd3\xc6\xe8\xff\xaf\x0f\xce\xff\xdf\x5d\xe7\xfe\xff\xc4\x4d\xcb" "\x2e\xd2\xff\x5f\x65\xff\x7f\x52\xff\x7f\x3d\xf6\xff\xc7\x07\xbb\xfd\xc3" "\xdd\xff\xef\xb9\xf9\xfa\xff\x5c\x17\xc3\x76\xfe\xff\x98\xfb\x5f\x14\x66" "\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xff\xe2\x30\x13\xf9\x1f\x00\x00" "\x00\x2a\x23\xe6\xfe\x97\x84\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xdf" "\x1a\x66\x92\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\xbc\xfe" "\xde\xe7\xff\x2f\x3f\xd2\xff\x1f\x2e\xfa\xff\xdd\x39\xff\x7f\x0f\xce\xff" "\x9f\x57\xff\x7f\xc0\xdb\x3f\xdc\xfd\xff\x41\x9f\xff\x7f\xfc\xcd\xed\xb7" "\xd7\xff\xa7\x93\x61\xeb\xff\xc7\xdc\xff\xd2\x30\x93\x4c\xf2\x3f\x00\x00" "\x00\xe4\x20\xe6\xfe\xdb\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x5f" "\x16\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x25\xcc\x24\x93\xfc\xaf" "\xff\xaf\xff\xaf\xff\x9f\xfa\xff\x13\x45\x51\xe8\xff\xeb\xff\xaf\xa2\xff" "\x5f\xd2\xff\x1f\x2e\xfa\xff\xdd\xe9\xff\xf7\xa0\xff\xaf\xff\xaf\xff\xdf" "\x5f\xff\xbf\xc3\x37\xbf\xfa\xff\x74\x32\x6c\xfd\xff\x98\xfb\x6f\x0f\x33" "\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\xbf\x23\xcc\x44\xfe\x07\x00\x00" "\x80\xca\x88\xb9\xff\x67\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xb7" "\x86\x99\x64\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf3\x3a\xff\xff\x7d\x13\xfa" "\xff\xfa\xff\xd5\xa6\xff\xdf\x9d\xfe\x7f\x0f\xfa\xff\xfa\xff\xfa\xff\x7d" "\x9e\xff\x7f\xb9\xd5\xf4\xff\x37\xf4\xba\x33\x2a\x63\xd8\xfa\xff\x31\xf7" "\xbf\x3c\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff\x15\x61\x26\xf2" "\x3f\x00\x00\x00\x54\x46\xcc\xfd\xaf\x0c\x33\x91\xff\x01\x00\x00\xa0\x32" "\x62\xee\x9f\x0a\x33\xc9\x24\xff\xeb\xff\x57\xab\xff\xff\xa7\x7f\xfd\xc4" "\x2b\x0b\xfd\x7f\xfd\xff\x1e\xeb\xaf\x68\xff\x3f\x1e\x06\xfa\xff\x99\xd3" "\xff\xef\x4e\xff\xbf\x07\xfd\x7f\xfd\x7f\xfd\xff\x35\xe9\xff\x93\x8f\x61" "\xeb\xff\xc7\xdc\x7f\x67\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff" "\x5d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x77\x87\x99\xc8\xff\x00" "\x00\x00\x50\x19\x31\xf7\x6f\x0b\x33\xc9\x24\xff\xeb\xff\x57\xab\xff\x1f" "\xe9\xff\xeb\xff\x77\x5b\x7f\x45\xfb\xff\x89\xfe\x7f\xde\xf4\xff\x3b\x68" "\x7a\x91\xea\xff\xf7\xa0\xff\xaf\xff\x9f\x7d\xff\x3f\x7e\xf7\xab\xff\xcf" "\x60\x0c\x5b\xff\x3f\xe6\xfe\x57\x85\x99\x64\x92\xff\x01\x00\x00\x20\x07" "\x31\xf7\xdf\x13\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xea\x30\x13" "\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x7b\xc3\x4c\x32\xc9\xff\xfa\xff\xfa" "\xff\xfa\xff\xfa\xff\xfa\xff\x9d\xd7\xaf\xff\xbf\x3e\xe9\xff\x77\xb7\xda" "\xfe\xff\x84\xfe\xbf\xfe\xbf\xfe\x7f\x66\xfd\x7f\xe7\xff\x67\xb0\x86\xad" "\xff\x1f\x73\xff\x6b\xc2\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\xb7" "\x87\x99\xc8\xff\x00\x00\x00\x50\x19\xf1\xff\x6f\x96\xff\xef\x55\xfe\x07" "\x00\x00\x80\x2a\x8a\xb9\x7f\x3a\xcc\x24\x93\xfc\xaf\xff\xaf\xff\x9f\x53" "\xff\xbf\xa6\xff\xaf\xff\xaf\xff\x5f\x79\xfa\xff\xdd\x39\xff\x7f\x0f\xfa" "\xff\xfa\xff\xfa\xff\xfa\xff\x0c\xd4\xb0\xf5\xff\x63\xee\x7f\x6d\x98\x49" "\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\xfd\x61\x26\xf2\x3f\x00\x00\x00" "\x54\x46\xcc\xfd\x33\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xb3\x61" "\x26\x99\xe4\x7f\xfd\xff\x0a\xf7\xff\xbf\x3f\x56\x14\xfa\xff\xce\xff\xaf" "\xff\xaf\xff\x9f\x19\xfd\xff\xee\xf4\xff\x7b\xd0\xff\xd7\xff\xaf\x5a\xff" "\xbf\x28\xf4\xff\xb9\xa1\x86\xad\xff\x1f\x73\xff\x8e\x30\x93\x4c\xf2\x3f" "\x00\x00\x00\xe4\x20\xe6\xfe\x9d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc" "\xfd\xbb\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x77\x87\x99\x64\x92" "\xff\xf5\xff\x2b\xdc\xff\x77\xfe\x7f\xfd\xff\x15\xd6\xaf\xff\xaf\xff\x5f" "\x65\xdd\xfa\xf7\x5f\xee\xe3\xf6\xfa\xff\x81\xfe\xbf\xfe\xbf\xfe\x7f\x35" "\xfa\xff\xce\xff\xcf\x0d\x36\x6c\xfd\xff\x98\xfb\x1f\x08\x33\xc9\x24\xff" "\x03\x00\x00\x40\x0e\x62\xee\xdf\x13\x66\x22\xff\x03\x00\x00\x40\x65\xc4" "\xdc\xbf\x37\xcc\x24\xe4\xff\x4e\xff\xaf\x1b\x00\x00\x00\x58\x5f\x62\xee" "\xdf\x17\x66\x92\xc9\xbf\xff\xeb\xff\x57\xa4\xff\xff\x5b\x7f\xdf\xb2\x6e" "\xfd\x7f\xfd\xff\x6e\xeb\x1f\x4c\xff\x7f\xa3\xfe\x7f\x98\xfa\xff\xc3\xa5" "\xa2\xe7\xff\x6f\x7f\x59\x5c\xb5\xf5\xd9\xff\x7f\x3e\x3d\x7e\xfd\x7f\xfd" "\xff\x61\xde\x7e\xfd\x7f\xfd\x7f\x96\x1b\xb6\xfe\x7f\xcc\xfd\xfb\xc3\x4c" "\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\x5f\x17\x66\x22\xff\x03\x00\x00" "\x40\x65\xc4\xdc\xff\xb3\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x3f" "\x17\x66\x92\x49\xfe\xd7\xff\xaf\x48\xff\xbf\x8d\xfe\xbf\xfe\x7f\xb7\xf5" "\x3b\xff\xbf\xfe\x7f\x95\x55\xb4\xff\x3f\x30\xeb\xb3\xff\xbf\xc2\xf9\xff" "\x47\xf4\xff\xf5\xff\x87\x6b\xfb\xf5\xff\xfb\xe9\xff\x6f\xe8\x75\x37\x54" "\xcc\xf5\xef\xff\xc7\x8f\xfa\xeb\xff\xc7\xdc\x7f\x20\xcc\x24\x93\xfc\x0f" "\x00\x00\x00\x39\x88\xb9\xff\xe7\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98" "\xfb\x5f\x1f\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x30\xcc\x24\x93" "\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x7f\x7d\xfa\xff\xaf\x2f\xda\x0d\x63" "\xff\xbf\x7e\xf0\xe8\xff\x57\x8b\xfe\x7f\x77\x95\xea\xff\x3b\xff\xbf\xfe" "\xff\x90\x6d\xbf\xfe\xbf\xf3\xff\xb3\xdc\xb0\x9d\xff\x3f\xe6\xfe\x37\x84" "\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7\x3f\x18\x66\x22\xff\x03\x00" "\x00\x40\x65\xc4\xdc\xff\xc6\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe" "\x37\x85\x99\x64\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x9d\xff\xbf\xf3" "\xfa\xf5\xff\xd7\x27\xfd\xff\xee\xf4\xff\x7b\xd0\xff\xd7\xff\xd7\xff\xd7" "\xff\x67\xa0\x6e\x5c\xff\x7f\x43\xc7\xeb\x63\xee\x7f\x73\x98\x49\x26\xf9" "\x1f\x00\x00\x00\x72\x10\x73\xff\x5b\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c" "\x98\xfb\xdf\x1a\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xb6\x30\x93" "\x4c\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xe7\xf5\xeb\xff\xaf" "\x4f\xfa\xff\xdd\xe9\xff\xf7\xa0\xff\xaf\xff\xaf\xff\xaf\xff\xcf\x40\x0d" "\xdb\xf9\xff\x63\xee\xff\x85\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6" "\xfe\x87\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xdf\x1e\x66\x22\xff" "\x03\x00\x00\x40\x65\xc4\xdc\xff\x8e\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe\xbf" "\xfe\xbf\xfe\xbf\xfe\x7f\xe7\xf5\xeb\xff\xaf\x4f\xfa\xff\xdd\xe9\xff\xf7" "\xd0\x77\xff\xbf\x16\x9e\x5b\xfd\xff\x66\xfa\xff\xfa\xff\xfa\xff\xb4\x1b" "\xb6\xfe\x7f\xcc\xfd\xef\x0c\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee" "\xff\xc5\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x77\x85\x99\xc8\xff" "\x00\x00\x00\x50\x19\x31\xf7\xbf\x3b\xcc\x24\x93\xfc\xaf\xff\xaf\xff\x3f" "\x5c\xfd\xff\xa5\x0b\xcd\xb7\xd3\xff\xd7\xff\x2f\x06\xd5\xff\xaf\xdf\x48" "\xff\x3f\x0b\xfa\xff\xdd\xe9\xff\xf7\xd0\xa1\xff\xbf\xc1\xf9\xff\xf5\xff" "\xf5\xff\xf5\xff\xb9\x6a\xc3\xd6\xff\x8f\xb9\xff\x3d\x61\x26\x99\xe4\x7f" "\x00\x00\x00\xc8\x41\xcc\xfd\xef\x0d\x33\x91\xff\x01\x00\x00\xa0\x32\x62" "\xee\x7f\x5f\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xc3\x61\x26\x99" "\xe4\x7f\xfd\xff\x2c\xfb\xff\xe9\x21\x0f\x5f\xff\xdf\xf9\xff\xf5\xff\x9d" "\xff\x5f\xff\xff\xda\xe8\xff\x77\xa7\xff\xdf\x43\xdf\xe7\xff\xd7\xff\xef" "\x44\xff\xff\x46\xf5\xff\xc7\xc3\xfc\xe8\x74\xfc\xda\xa4\xff\xcf\xb0\x18" "\xb6\xfe\x7f\xcc\xfd\x8f\x84\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7" "\xbf\x3f\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x97\xc2\x4c\xe4\x7f" "\x00\x00\x00\xa8\x8c\x98\xfb\x3f\x10\x66\x92\x49\xfe\xd7\xff\xcf\xb2\xff" "\x3f\xc4\xe7\xff\xaf\x5a\xff\x7f\xac\xe5\xf8\xc8\xa9\xff\x3f\xd9\xf4\x7c" "\xa6\xe3\x52\xff\x5f\xff\x7f\x0d\xe8\xff\x77\xa7\xff\xdf\x83\xfe\xbf\xfe" "\xff\x30\xf7\xff\xc3\xd1\xbc\x71\x85\xdb\x3b\xff\x3f\xc3\x68\xd8\xfa\xff" "\x31\xf7\x7f\x30\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff\x97\xc3" "\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x7f\x25\xcc\x44\xfe\x07\x00\x00" "\x80\xca\x88\xb9\xff\x57\xc3\x4c\x32\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xce" "\xff\xef\xfc\xff\x9d\xd7\xaf\xff\xbf\x3e\xe9\xff\x77\xa7\xff\xdf\x83\xfe" "\x7f\x3e\xfd\xff\xb1\xc1\x6f\xff\x8d\x3b\xff\x7f\x49\xff\x9f\x61\x34\x6c" "\xfd\xff\x98\xfb\x7f\x2d\xcc\x64\xc5\xe0\xf7\xec\x7f\xf5\xf1\x30\x01\x00" "\x00\x80\x21\x12\x73\xff\x87\xc2\x4c\x32\xf9\xf7\x7f\x00\x00\x00\xc8\x41" "\xcc\xfd\x87\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x0f\x87\x99\x64" "\x92\xff\xf5\xff\xdb\xfb\xff\xf1\x8c\xaa\xfa\xff\xfa\xff\xfa\xff\xfa\xff" "\xfa\xff\xeb\xd1\xe0\xfa\xff\x2f\xbb\xb9\x28\xf4\xff\xf5\xff\xf5\xff\x2b" "\xdb\xff\xbf\x0e\xdb\xaf\xff\xaf\xff\xcf\x72\xc3\xd6\xff\x8f\xb9\xff\x48" "\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\xaf\x87\x99\xc8\xff\x00" "\x00\x00\x50\x19\x31\xf7\x1f\x0d\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee" "\x9f\x0b\x33\xc9\x24\xff\xaf\x75\xff\xbf\xa9\xd7\x3b\x3e\x9c\xfd\x7f\xe7" "\xff\xbf\xda\xfe\xff\x4f\xf5\xff\xf5\xff\x03\xfd\xff\xce\xf4\xff\xd7\x86" "\xf3\xff\x77\xa7\xff\xdf\x83\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x03\x35\x6c" "\xfd\xff\x98\xfb\xe7\xc3\x4c\x32\xc9\xff\x00\x00\x00\x50\x61\xe9\xc7\xc1" "\x31\xf7\x1f\x0b\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x3f\x1e\x66\x22" "\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xe1\x30\x93\x4c\xf2\xbf\xf3\xff\xeb" "\xff\x3b\xff\xff\x8d\xe8\xff\x8f\xb5\x2c\xaf\xff\x5f\xd2\xff\xd7\xff\x1f" "\x04\xfd\xff\xee\xf4\xff\x7b\xd0\xff\xd7\xff\xd7\xff\xd7\xff\x67\xa0\x86" "\xad\xff\x1f\x73\xff\x42\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff" "\x47\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x3f\x1a\x66\x22\xff\x03" "\x00\x00\x40\x65\xc4\xdc\x7f\x22\xcc\x24\x93\xfc\xaf\xff\xaf\xff\x9f\x7b" "\xff\xbf\x56\x14\x17\x9d\xff\x5f\xff\xbf\xd3\xfa\xf5\xff\xd7\x27\xfd\xff" "\xee\xf4\xff\x7b\xd0\xff\xd7\xff\xd7\xff\xd7\xff\x67\xa0\x86\xad\xff\x1f" "\x73\xff\xc9\x30\xff\x9f\xbd\xfb\x78\xb2\xeb\x2c\xf3\x38\x7e\x47\x56\x5c" "\xcd\xfc\x09\xb3\x9e\xd5\x2c\xcd\xca\x5e\xf0\x07\xb0\x65\x47\x15\x6b\xb2" "\xc9\xc1\x36\x39\x83\x89\x26\x1a\x0c\x98\x9c\x73\x36\x39\xe7\x9c\x4d\xce" "\xd1\x04\x63\xa8\x6a\xca\xed\xe7\x79\xa4\xd6\xbd\x7d\x8e\xa4\x3e\xdd\xf7" "\x9c\xf7\xfd\x7c\x36\xcf\x48\x65\xd1\x57\x76\x63\xea\x37\xaa\x6f\xbd\xa5" "\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\x7f\xef\xb8\xc5\xfe\x07\x00\x00\x80" "\x66\xe4\xee\xbf\x4f\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xdf\x37\x6e" "\xe9\x64\xff\xeb\xff\xf5\xff\xbd\xf7\xff\xab\xad\xbc\xff\xbf\xf7\xaf\x6f" "\xbf\xff\xbf\xf3\x9f\x90\xfe\x5f\xff\x7f\x14\xd6\xfa\xfb\xe3\x9b\xff\xba" "\xfd\xa2\xf0\x7d\xfb\xff\xff\xbf\xfc\xaa\x7b\xe8\xff\xf5\xff\xfa\xff\x41" "\xfa\x7f\xfd\xbf\xfe\x9f\xf3\xcd\xad\xff\xcf\xdd\x7f\xbf\xb8\xa5\x93\xfd" "\x0f\x00\x00\x00\x3d\xc8\xdd\x7f\xff\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4" "\xee\x7f\x40\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x5f\x15\xb7\x74\xb2" "\xff\xf5\xff\xfa\x7f\xfd\xff\xe1\xf5\xff\xa7\xcf\xfb\xfe\x58\x44\xff\x7f" "\xb3\xf7\xff\xf5\xff\xcb\xe6\xfd\xff\x61\xcb\xe8\xff\x2f\xdf\xd9\xd9\xd1" "\xff\x6f\xa2\xff\x9f\xf7\xe7\xd7\xff\xeb\xff\x59\x37\xb7\xfe\x3f\x77\xff" "\x03\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x83\xe2\x16\xfb\x1f" "\x00\x00\x00\x9a\x91\xbb\xff\xc1\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd" "\xff\x90\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xeb\xff\x97\xf2\xfe\xff\xc9\x05" "\xbf\xff\x1f\xdf\x0f\xfa\x7f\xfd\xff\x11\xd0\xff\x0f\x5b\x46\xff\xef\xfd" "\x7f\xfd\xff\x32\x3f\xbf\xfe\x5f\xff\xcf\xba\x8b\xef\xff\xf7\xfd\xd7\xf6" "\x24\xfd\x7f\xee\xfe\x87\xc6\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe" "\x87\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xc3\xe3\x16\xfb\x1f\x00" "\x00\x00\x9a\x91\xbb\xff\x11\x71\x4b\x27\xfb\x5f\xff\xaf\xff\xd7\xff\x2f" "\xa5\xff\x3f\xa2\xf7\xff\xf5\xff\xfa\xff\x85\xbb\x71\x75\xf6\xdf\x09\xfa" "\xff\x75\xfa\xff\x11\x23\xfd\xff\x6a\xd5\x75\xff\x3f\xfa\xb7\xf3\x82\xfb" "\xf9\xcd\xbf\xbd\xc3\xfe\xfc\xfa\xff\x11\xfa\x7f\x0e\xc3\xc5\xf7\xff\xfb" "\xfe\x47\x4d\xd2\xff\xe7\xee\x7f\x64\xdc\x72\xe5\x6a\x75\xf2\x52\x7f\x93" "\x00\x00\x00\xc0\xac\xe4\xee\x7f\x54\xdc\xd2\xc9\x9f\xff\x03\x00\x00\x40" "\x0f\x72\xf7\x5f\x1d\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xd7\xc4\x2d" "\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x6f\xfe\xfa\xfa\xff\x65" "\xf2\xfe\xff\xb0\x83\xf7\xff\xff\xf7\x3f\xf7\xba\x67\xbf\xfd\xbf\xf7\xff" "\x87\x79\xff\x7f\xea\xfe\xff\x8e\xef\x8c\x26\xfb\x7f\x99\x75\x47\xe6\xd6" "\xff\xe7\xee\xbf\x36\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x3f\x3a" "\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x1f\x13\xb7\xd8\xff\x00\x00\x00" "\xd0\x8c\xdc\xfd\x8f\x8d\x5b\x3a\xd9\xff\xfa\xff\xd6\xfa\xff\xcb\xf6\xfc" "\xba\x73\xfa\xff\xdd\xda\x45\xff\xbf\xf4\xfe\xff\xae\xfa\x7f\xfd\xbf\xfe" "\x7f\x84\xfe\x7f\x98\xf7\xff\x47\xec\xfe\x6b\xee\x4c\xfd\x50\xff\xaf\xff" "\xf7\xfe\xbf\xf7\xff\x39\x98\xb9\xf5\xff\xb9\xfb\x1f\x17\xb7\x74\xb2\xff" "\x01\x00\x00\xa0\x07\xb9\xfb\x1f\x1f\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc" "\xfd\x4f\x88\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x27\xc6\x2d\x9d\xec" "\x7f\xfd\x7f\x6b\xfd\xff\xde\x5f\xe7\xfd\xff\xd6\xfa\x7f\xef\xff\xaf\xf4" "\xff\xfa\xff\x11\xfa\xff\x61\xfa\xff\x11\xad\xbc\xff\x7f\x89\xdf\x35\xdb" "\xee\xe7\x0f\x6a\xdb\x9f\x5f\xff\xaf\xff\x67\xdd\xdc\xfa\xff\xdc\xfd\x4f" "\x8a\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x4f\x8e\x5b\xec\x7f\x00" "\x00\x00\x68\x46\xee\xfe\xa7\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff" "\x53\xe3\x96\x4e\xf6\xbf\xfe\x5f\xff\xbf\x8c\xfe\x3f\xbf\x82\xfe\x5f\xff" "\x7f\xf8\xfd\x7f\xd2\xff\x2f\x93\xfe\x7f\x98\xfe\x7f\x44\x2b\xfd\xff\x25" "\xda\x76\x3f\xbf\xf4\xcf\xaf\xff\xd7\xff\xb3\x6e\x6e\xfd\x7f\xee\xfe\xa7" "\xc5\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xa7\xc7\x2d\xf6\x3f\x00" "\x00\x00\x34\x23\x77\xff\x33\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff" "\x99\x71\x4b\x27\xfb\x5f\xff\xaf\xff\x5f\x46\xff\xef\xfd\x7f\xfd\xbf\xf7" "\xff\xf5\xff\x17\x46\xff\x3f\x4c\xff\x3f\x42\xff\xaf\xff\xd7\xff\xeb\xff" "\x99\xd4\xdc\xfa\xff\xdc\xfd\xd7\xc5\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41" "\xee\xfe\x67\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xb3\xe3\x16\xfb" "\x1f\x00\x00\x00\x9a\x91\xbb\xff\x39\x71\x4b\x27\xfb\x5f\xff\xaf\xff\xd7" "\xff\xeb\xff\xf5\xff\x9b\xbf\xbe\xfe\x7f\x99\xf4\xff\xc3\xf4\xff\x23\xf4" "\xff\xfa\x7f\xfd\xbf\xfe\x9f\x49\xcd\xa8\xff\x3f\xe7\x57\x9d\x5e\x3d\x37" "\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x3f\x2f\x6e\xb1\xff\x01\x00" "\x00\xa0\x19\xb9\xfb\x9f\x1f\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xd7" "\xc7\x2d\x9d\xec\x7f\xfd\xff\x6c\xfa\xff\xdd\x9c\xaf\xad\xfe\xff\xcc\x6a" "\xb5\xd2\xff\xaf\x3a\xed\xff\xcf\x9c\xf3\xcf\xb3\xbe\x2f\xf5\xff\xfa\xff" "\x23\xa0\xff\x1f\xa6\xff\x1f\xa1\xff\xd7\xff\xeb\xff\xf5\xff\x4c\x6a\x46" "\xfd\xff\xee\x8f\x73\xf7\xbf\x20\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72" "\xf7\xbf\x30\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x5f\x14\xb7\xd8\xff" "\x00\x00\x00\xd0\x8c\xdc\xfd\x2f\x8e\x5b\x3a\xd9\xff\xfa\xff\xd9\xf4\xff" "\xbb\xda\xea\xff\xbd\xff\x7f\xfe\xf7\x47\x4f\xfd\xbf\xf7\xff\xd7\xe9\xff" "\x8f\x86\xfe\x7f\x98\xfe\x7f\x84\xfe\x5f\xff\xaf\xff\xd7\xff\x33\xa9\xb9" "\xf5\xff\xb9\xfb\x5f\x12\x37\x9d\x3c\x71\xc9\xbf\x45\x00\x00\x00\x60\x66" "\x72\xf7\xbf\x34\x6e\xe9\xe4\xcf\xff\x01\x00\x00\xa0\x07\xb9\xfb\x6f\x88" "\x5b\xec\x7f\x00\x00\x00\x58\xa8\xeb\xd6\x7e\x26\x77\xff\xcb\xe2\x96\x4e" "\xf6\xbf\xfe\x7f\xda\xfe\xff\xe4\x39\x3f\xa7\xff\xd7\xff\x9f\xff\xfd\xa1" "\xff\xd7\xff\xeb\xff\x0f\x9f\xfe\x7f\x98\xfe\x7f\x84\xfe\x5f\xff\xaf\xff" "\xd7\xff\x33\xa9\xb9\xf5\xff\xb9\xfb\x5f\x1e\xb7\x74\xb2\xff\x01\x00\x00" "\xa0\x07\xb9\xfb\x6f\x8c\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x57\xc4" "\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x2b\xe3\x96\x4e\xf6\xbf\xfe\xdf" "\xfb\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf3\xd7\xd7\xff\x2f\x93\xfe\x7f\x98\xfe" "\x7f\x84\xfe\x7f\xdf\x7e\xfe\x42\x9e\xc6\xd6\xff\x1f\xb8\xff\x3f\x75\xf6" "\xff\xd4\xff\xd3\x86\x8b\xe8\xff\x77\x76\x76\xae\x3e\xf4\xfe\x3f\x77\xff" "\xab\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x4d\x71\x8b\xfd\x0f" "\x00\x00\x00\xcd\xc8\xdd\xff\xea\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee" "\x7f\x4d\xdc\xd2\xc9\xfe\xd7\xff\x77\xda\xff\xe7\xb7\xfa\xb2\xfa\xff\x6b" "\x56\x2b\xfd\xbf\xfe\x5f\xff\xaf\xff\x1f\xa6\xff\x1f\xa6\xff\x1f\xa1\xff" "\xf7\xfe\xbf\xf7\xff\xf5\xff\x4c\x6a\x6e\xef\xff\xe7\xee\x7f\x6d\xdc\xd2" "\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x5d\xdc\x62\xff\x03\x00\x00\x40" "\x33\x72\xf7\xbf\x3e\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xdf\x10\xb7" "\x74\xb2\xff\xf5\xff\x9d\xf6\xff\xde\xff\xd7\xff\xeb\xff\x8f\xba\xff\xbf" "\x7d\xa5\xff\x3f\x12\x8b\xe8\xff\xcf\xec\xff\xf5\xe7\xde\xff\x5f\xab\xff" "\xd7\xff\x0f\xe8\xae\xff\xbf\xdb\x5d\xf6\xfc\x50\xff\xaf\xff\x67\xdd\xdc" "\xfa\xff\xdc\xfd\x6f\x8c\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x6f" "\x8a\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x37\xc7\x2d\xf6\x3f\x00\x00" "\x00\x34\x23\x77\xff\x5b\xe2\xa6\xe3\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf" "\xff\xd7\xff\x6f\xfe\xfa\x83\xfd\xff\xb1\xc9\xdf\xff\x3f\xb9\x5a\xad\xf4" "\xff\x13\x58\x44\xff\x3f\x60\xee\xfd\xff\x34\xef\xff\x9f\xff\xdf\xf2\xb3" "\xf4\xff\xfa\xff\x25\x7f\x7e\xfd\xbf\xfe\x9f\x75\x73\xeb\xff\x73\xf7\xbf" "\x35\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\xbf\x2d\x6e\xb1\xff\x01" "\x00\x00\xa0\x19\xb9\xfb\xdf\x1e\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd" "\xef\x88\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xdf\x7c\xff\x7f\xed" "\x2c\xde\xff\x1f\xeb\xff\xbd\xff\x3f\x11\xfd\xff\xb0\x79\xf4\xff\xfb\xd3" "\xff\xeb\xff\x97\xfc\xf9\xf5\xff\xfa\x7f\x2e\xdc\xb6\xfa\xff\xdc\xfd\xef" "\x8c\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xef\x8a\x5b\xec\x7f\x00" "\x00\x00\x68\x46\xee\xfe\x77\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff" "\x7b\xe2\x96\x4e\xf6\xbf\xfe\x5f\xff\x7f\x31\xfd\x7f\x7e\x4e\xfd\x7f\x5b" "\xfd\xff\xa9\xd9\xf5\xff\xa7\xf7\xfc\xe7\xcd\xf2\xfd\x7f\xfd\xff\x6c\xe9" "\xff\x87\xe9\xff\x47\xe8\xff\xf5\xff\xfa\xff\xeb\xf4\xff\x4c\x69\x6e\xef" "\xff\xe7\xee\x7f\x6f\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x5f" "\xdc\xfa\x7f\xdd\xda\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xef\x8f\x5b\xec\x7f" "\x00\x00\x00\x68\x46\xee\xfe\x0f\xc4\x2d\x9d\xec\x7f\xfd\xbf\xfe\xdf\xfb" "\xff\xfa\xff\xe6\xdf\xff\xd7\xff\x77\x45\xff\x3f\x4c\xff\x3f\x42\xff\xaf" "\xff\xd7\xff\x7b\xff\x9f\x49\xcd\xad\xff\xcf\xdd\xff\xc1\xb8\xa5\x93\xfd" "\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xa1\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4" "\xee\xff\x70\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xdf\x1c\xb7\x74\xb2" "\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x7f\xe7\x3f\x43\xfd\x7f\x1b\xf4" "\xff\xc3\x8e\xa6\xff\x3f\xa3\xff\xd7\xff\x57\x3f\xff\x5f\xf1\xdf\x02\xfd" "\xbf\xfe\x7f\xec\xd7\xd3\xa6\xb9\xf5\xff\xb9\xfb\x3f\x12\xb7\x74\xb2\xff" "\x01\x00\x00\xa0\x35\x27\x36\xfc\x5c\xee\xfe\x8f\xc6\x2d\xf6\x3f\x00\x00" "\x00\x34\x23\x77\xff\xc7\xe2\x16\xfb\x1f\x00\x00\x00\x16\xe9\xf8\x86\x9f" "\xcb\xdd\xff\xf1\xb8\x65\x91\xfb\x7f\x53\x85\x3e\x4c\xff\xbf\xf0\xfe\xff" "\x06\xfd\xbf\xfe\x5f\xff\xef\xfd\x7f\xce\xb5\x95\xfe\x3f\xbf\x29\xf4\xff" "\xde\xff\x0f\xfd\xf4\xff\xff\xbb\xe7\x47\x4b\x7b\xff\xff\xfc\xff\xfd\xba" "\x6c\xa5\xff\xd7\xff\x33\xb5\xb9\xf5\xff\xb9\xfb\x3f\x11\xb7\x2c\x72\xff" "\x03\x00\x00\x00\x9b\xe4\xee\xff\x64\xdc\x62\xff\x03\x00\x00\x40\x33\x72" "\xf7\x7f\x2a\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x3f\x1d\xb7\x74\xb2" "\xff\xf5\xff\x0b\xef\xff\xbd\xff\xaf\xff\xd7\xff\xeb\xff\xd9\xc3\xfb\xff" "\xc3\xf4\xff\x23\xf4\xff\x5b\x7d\x3f\x7f\xe9\x9f\x5f\xff\xaf\xff\x67\xdd" "\xdc\xfa\xff\xdc\xfd\x9f\x89\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd" "\x9f\x8d\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xcf\xc5\x2d\xf6\x3f\x00" "\x00\x00\x34\x63\x77\xf7\x67\x5c\xd6\xe1\xfe\xd7\xff\xeb\xff\xf5\xff\xfa" "\x7f\xfd\xff\xe6\xaf\xaf\xff\x5f\x26\xfd\xff\x30\xfd\xff\x08\xfd\xff\x51" "\xf6\xf3\xc7\x26\xf9\xd0\xdb\xfb\xfc\x6b\xf4\xff\xfa\x7f\xd6\xcd\xad\xff" "\xff\xfc\xee\xaf\x3a\xbd\xfa\x42\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4" "\xee\xff\x62\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x29\x6e\xb1\xff" "\x01\x00\x00\xa0\x19\xb9\xfb\xbf\x1c\xb7\x74\xb2\xff\xf5\xff\xfa\xff\x65" "\xf4\xff\x3b\x3b\x3b\x57\xeb\xff\xf5\xff\x7b\x7f\x3f\x67\xfb\xff\x5b\x16" "\xdc\xff\x5f\xaf\xff\x9f\x98\xfe\x7f\x98\xfe\x7f\x84\xfe\xdf\xfb\xff\xb3" "\xef\xff\xcf\xff\x5f\xc9\xb3\xf4\xff\xcc\xd1\xdc\xfa\xff\xdc\xfd\x5f\x89" "\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x5f\x8d\x5b\xec\x7f\x00\x00" "\x00\x68\x46\xee\xfe\xaf\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xd7" "\xe3\x96\x4e\xf6\xbf\xfe\x7f\x06\xfd\xff\x69\xfd\xbf\xf7\xff\xf5\xff\x2b" "\xef\xff\xeb\xff\x27\xa2\xff\x1f\xa6\xff\x1f\xd1\x62\xff\x7f\xfa\xc2\x7f" "\xfb\xdb\xee\xe7\x0f\x6a\xdb\x9f\xdf\xfb\xff\xfa\x7f\xd6\xcd\xad\xff\xcf" "\xdd\xff\x8d\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xcd\xb8\xc5" "\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x56\xdc\x62\xff\x03\x00\x00\x40\x33" "\x72\xf7\x7f\x3b\x6e\xe9\x64\xff\xeb\xff\x8f\xae\xff\xbf\xe3\xef\x5d\x2f" "\xef\xff\x9f\x59\x6d\xfe\xfc\xfa\x7f\xfd\xbf\xfe\x5f\xff\x7f\xd8\xf4\xff" "\xc3\xf4\xff\x23\x5a\xec\xff\x2f\xc2\xb6\xfb\xf9\xa5\x7f\x7e\xfd\xbf\xfe" "\x9f\x75\x73\xeb\xff\x73\xf7\x7f\x27\x6e\xd9\x3b\xfc\x4e\x5c\xdc\xef\x12" "\x00\x00\x00\x98\x93\xdc\xfd\xdf\x8d\x5b\x3a\xf9\xf3\x7f\x00\x00\x00\xe8" "\x41\xee\xfe\xef\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xf7\xe3\x96" "\x4e\xf6\xbf\xfe\x7f\x06\xef\xff\x37\xd8\xff\x7b\xff\x7f\xf3\xf7\x87\xfe" "\x7f\xd6\xfd\xff\x31\xfd\x7f\x1b\xf4\xff\xc3\xf4\xff\x23\xf4\xff\xfa\x7f" "\xfd\xff\x44\xfd\x7f\x7e\x37\xeb\xff\x7b\x37\xb7\xfe\x3f\x77\xff\x0f\xe2" "\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x0f\xe3\x96\x2b\xcf\x6c\xeb" "\x23\x01\x00\x00\x00\x13\xcb\xdd\xff\xa3\xb8\xc5\x9f\xff\x03\x00\x00\x40" "\x33\x72\xf7\xdf\x12\xb7\x9c\xb3\xff\x37\xb5\xdd\xad\xd0\xff\xeb\xff\xf5" "\xff\xfa\x7f\xfd\xff\xe6\xaf\xaf\xff\x5f\x26\xfd\xff\xb0\x0b\xed\xff\x4f" "\xad\x0e\xd6\xff\x27\xfd\xbf\xfe\x5f\xff\xdf\x6b\xff\xef\xfd\x7f\xee\x74" "\xc4\xfd\xff\x35\x63\xfd\x7f\xee\xfe\x1f\xc7\x2d\xfe\xfc\x1f\x00\x00\x00" "\x16\xe7\xc4\x3e\x3f\x9f\xbb\xff\x27\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8" "\xdd\xff\xd3\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x59\xdc\x72\xeb" "\xb1\x6d\x7d\xa4\x23\xa5\xff\xd7\xff\xeb\xff\x47\xfa\xff\xdb\xe2\x1b\x5c" "\xff\xaf\xff\xd7\xff\x2f\x82\xfe\x7f\x98\xf7\xff\x47\xe8\xff\xa7\xe8\xe7" "\xaf\xd0\xff\xb7\xd1\xff\xaf\x56\xfa\x7f\x0e\xee\x88\xfb\xff\xd1\x1f\xe7" "\xee\xff\x79\xdc\xe2\xcf\xff\x01\x00\x00\xa0\x19\xb9\xfb\x7f\x11\xb7\xd8" "\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xbf\x8c\x5b\xec\x7f\x00\x00\x00\x68\x46" "\xee\xfe\x5f\xc5\x2d\x9d\xec\x7f\xfd\xbf\xfe\xff\x80\xfd\xff\x6e\x9a\xd9" "\x74\xff\xef\xfd\x7f\xfd\x7f\xd0\xff\x2f\x83\xfe\x7f\xd8\xf6\xfb\xff\x9b" "\x06\xbf\xac\xfe\xbf\x89\xfe\xdf\xfb\xff\x8d\xf4\xff\xde\xff\x67\x0a\x73" "\xeb\xff\x73\xf7\xff\x3a\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\xff" "\x26\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x7f\x1b\xb7\xd8\xff\x00\x00" "\x00\xd0\x8c\xdc\xfd\xbf\x8b\x5b\x3a\xd9\xff\x5b\xeb\xff\xe3\x6f\xb5\xfe" "\x7f\xf1\xfd\x7f\xfb\xef\xff\x0f\xf6\xff\x3b\x2b\xfd\xbf\xfe\x5f\xff\x3f" "\x2f\xfa\xff\x61\xdb\xef\xff\x87\xe9\xff\xf5\xff\x4b\xfe\xfc\xfa\x7f\xfd" "\x3f\xeb\xe6\xd6\xff\xe7\xee\xff\x7d\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e" "\xe4\xee\xff\x43\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x31\x6e\xb1" "\xff\x01\x00\x00\xa0\x19\xb9\xfb\xff\x14\xb7\x74\xb2\xff\xbd\xff\xaf\xff" "\xd7\xff\x7b\xff\x5f\xff\xbf\xf9\xeb\xeb\xff\x97\x49\xff\x3f\x4c\xff\xbf" "\x59\xfd\x83\xd2\xff\xeb\xff\xf5\xff\xfa\x7f\x26\x35\xb7\xfe\x3f\x77\xff" "\x9f\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x5f\xe2\x16\xfb\x1f" "\x00\x00\x00\x9a\x91\xbb\xff\xd6\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee" "\xff\x6b\xdc\xd2\xc4\xfe\x3f\x3e\xfa\x57\xe8\xff\x17\xd9\xff\x57\x1e\xad" "\xff\xd7\xff\xeb\xff\xf5\xff\xec\xa5\xff\x1f\xb6\xcd\xfe\xff\xee\xff\x3d" "\xfe\x65\xbd\xff\xbf\xf5\xfe\x3f\x3f\x82\xfe\x5f\xff\xaf\xff\x67\x12\x73" "\xeb\xff\x73\xf7\xff\x2d\x6e\x69\x62\xff\x03\x00\x00\x00\x77\xc8\xdd\xff" "\xf7\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x47\xdc\x62\xff\x03\x00" "\x00\x40\x33\x72\xf7\xdf\x16\xb7\x74\xb2\xff\x47\xfa\xff\x53\xf5\x17\xea" "\xff\x07\x79\xff\x7f\xef\xe7\xd7\xff\x6f\xfe\xfe\xd0\xff\xeb\xff\xf5\xff" "\x87\x4f\xff\x3f\xcc\xfb\xff\x23\xf4\xff\xde\xff\xd7\xff\xeb\xff\x99\xd4" "\xdc\xfa\xff\xdc\xfd\xff\x8c\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd" "\xb7\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xbf\xe2\x16\xfb\x1f\x00" "\x00\x00\x9a\x91\xbb\xff\xdf\x71\x4b\x27\xfb\xdf\xfb\xff\x4b\xea\xff\xaf" "\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x08\xfd\xff\x30\xfd\xff\x08\xfd" "\xbf\xfe\x5f\xff\xaf\xff\x67\x52\x73\xeb\xff\x73\xf7\xff\x27\x00\x00\xff" "\xff\x21\xd5\x51\xd4", 25115); syz_mount_image( /*fs=*/0x20000000, /*dir=*/0x20000580, /*flags=MS_LAZYTIME|MS_POSIXACL|MS_NODIRATIME|MS_MANDLOCK|MS_DIRSYNC*/ 0x20108c0, /*opts=*/0x20002ac0, /*chdir=*/0xfe, /*size=*/0x621b, /*img=*/0x20002b00); memcpy((void*)0x20000180, "hfs\000", 4); memcpy((void*)0x20000100, "\023\023w\305\3745\324\024T\325\324\035)\255\032`)" "Y\201F\346\276\026nA\255\r\275@T\003<\2373\273\332\202$" "\242\363\327r\347cnH\263<\277p\203r\350\361\271\223>" "\305\022wC\276\"\006 \236\360-\371\313\362\366\350\200\3238/\000", 78); memcpy((void*)0x20000040, "part=0x0000000000000003,codepage=cp949,iocharset=macinuiT,\000", 59); memcpy( (void*)0x20000200, "\x78\x9c\xec\xdd\x3f\x6f\xd3\x4e\x1c\xc7\xf1\xcf\x39\x49\x9b\xfe\x51\x7f" "\xfe\xb5\x45\x48\x2c\xa0\x42\x25\x58\x2a\x0a\x0c\x88\x25\x08\x65\x65\x67" "\x42\x40\x93\x4a\x15\x51\x11\x6d\x91\x80\x85\x82\x18\x11\x0f\x80\x9d\xa7" "\xc0\x83\x60\x01\xf1\x04\x60\x62\xe2\x01\x74\x33\xba\xcb\xd9\x75\x1a\xdb" "\x69\x4b\x13\xf7\xcf\xfb\x25\x35\xb2\xcf\x77\xe7\xef\xe9\xec\xf8\xbe\x96" "\x20\x02\x70\x66\xdd\x6b\xfe\xfc\x7c\xf3\xb7\xfd\x33\x52\x45\x15\x49\x77" "\xa4\x40\x52\x5d\xaa\x4a\x3a\xa7\xf3\xf5\x17\xeb\x5b\x6b\x5b\x9d\x76\xab" "\xa8\xa3\x8a\x6b\x61\xff\x8c\xba\x2d\x4d\x5f\x9d\x95\xf5\x76\x56\x53\xdb" "\xce\xb5\xf0\x42\xbb\x57\xd5\x74\xba\x2c\xcd\xf4\xf7\x8c\x43\x8a\xa2\xe8" "\xee\xaf\xb2\x83\x40\xe9\xdc\xdd\x9f\x21\x90\xc6\xfd\x7d\xe8\x8e\xd7\x47" "\x1c\xd7\xb0\x6c\x4b\x17\xcb\x8e\x61\xd4\xd2\x13\x6c\x76\xb4\xa3\x97\x9a" "\x29\x31\x1c\x00\xc0\x31\xe0\x9f\xff\x81\x7f\x4c\x4c\xbb\x22\xa3\x20\x90" "\x16\xfd\x63\xff\x54\x3d\xff\x77\xca\x0e\xe0\x68\xdd\xea\xf4\x15\x45\x85" "\x0d\x52\xcf\x7f\xb7\xba\x8b\x8c\x9d\xdf\xff\xdc\xa1\xdd\x7c\xcf\x25\x5a" "\xf6\x78\x10\x67\x89\xfb\x09\xa6\xb6\x67\x7f\x4c\xdd\x2b\xab\x67\x81\x69" "\x06\x65\x95\x2e\x96\x60\x62\x75\xad\xaa\xa5\x95\xb7\x6a\x05\x7a\xa7\x86" "\x97\xaa\x36\xef\x3e\x5b\xdd\x4b\x37\x36\x20\xda\x85\x8c\xdc\xb4\x40\x7e" "\x6f\x35\xdd\x9f\xec\x8e\xc6\xad\x28\xf7\x8a\x43\x5a\x5d\xeb\xb4\xc7\xed" "\x46\x2a\xfe\x38\x82\xb9\x83\x9d\xf1\xdf\x99\xaf\xe6\xbb\x79\x68\x42\x7d" "\x52\x2b\x59\xff\x55\x23\x63\xa7\xc9\xcd\x54\xb8\x67\xa6\x82\x9a\x8d\xff" "\x7a\x7e\x8f\x53\xae\x95\xad\x25\x3f\xb0\x46\xa3\x11\xf4\x54\xf9\xdf\x9d" "\xe4\x82\x3f\x83\x37\x60\x94\xf5\xec\x8c\x24\xdd\x67\xfc\x82\x60\x3b\x89" "\xa0\x28\x4e\x77\xee\x59\xf5\xbe\x56\xe8\x8e\x6e\x79\x40\xab\xb9\xac\x56" "\x61\xb2\x97\xd3\x6a\xbe\xa7\x55\xc5\x5f\x09\x4b\x2b\xcf\x3a\x85\xaf\x52" "\x86\x23\x1e\xa2\xf9\x68\x1e\x98\x05\xfd\xd1\x17\x35\x53\xeb\xff\xc0\xc6" "\xb7\xa8\xd4\x9d\x59\xf4\x55\x6f\x5c\x4d\x7f\x65\x74\xc7\x33\x96\x5d\xb3" "\xea\x6a\x86\x7d\x4f\x8e\xdd\xdb\xe5\x52\x12\x81\x37\x7e\xe0\xb1\x41\xca" "\x7b\x5b\x96\xe3\x83\x9e\xe8\xb6\x66\x36\x5f\xbd\x7e\x5a\xe9\x74\xda\x1b" "\x76\xe3\x71\xc6\xc6\xf3\xe9\x0d\xe3\x4b\x6a\xef\xa5\xcc\x3a\xc3\xdf\xa8" "\xa8\xa0\x8e\xb6\x77\x4b\x22\xeb\x4d\x14\xed\xb7\xe7\x68\x98\xc1\x5f\x3b" "\xd2\x0e\xed\xf7\x47\x52\x62\x6f\x9f\xac\xca\xf6\x2e\x4b\x4a\x82\x51\x4f" "\xd3\x59\xd9\x68\x7e\x53\xd1\x05\x79\x72\x36\xa2\x48\xca\x39\x34\xb4\xef" "\x29\x1c\x23\x9b\x26\x9e\x74\xb7\x5b\xd5\x44\xd9\x11\x61\xc4\xec\xba\xcb" "\x74\xf3\x3f\xb7\x92\xf7\xab\x3a\x97\xa0\xd8\x8f\xb0\x60\x9d\x5e\x9c\x64" "\xaa\xa7\xc7\xe5\x24\x83\xeb\x5d\x0a\xce\xba\xcf\xc9\x03\x65\x70\x53\xf9" "\x19\x5c\xea\x8c\x37\x72\x72\x46\x97\x73\x5d\xbe\x2a\x5d\x49\x15\x1a\x15" "\x9e\x31\xf4\x71\x9e\x12\xa6\xa9\x1f\x7a\xc4\xfb\x7f\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x93\x66\x14\xff\xd2\xa0\xec\x31" "\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x70" "\xd2\x1d\xea\xf7\x7f\xb3\xfe\x8f\x78\xf7\xfb\xbf\xe1\x48\x7e\xff\x17\xc0" "\xd1\xf8\x1b\x00\x00\xff\xff\x00\x39\x78\xce", 731); syz_mount_image(/*fs=*/0x20000180, /*dir=*/0x20000100, /*flags=MS_LAZYTIME*/ 0x2000000, /*opts=*/0x20000040, /*chdir=*/1, /*size=*/0x2db, /*img=*/0x20000200); memcpy((void*)0x20000140, "cgroup.controllers\000", 19); syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000140ul, /*flags=*/0x275aul, /*mode=*/0ul); syscall(__NR_mount, /*src=*/0ul, /*dst=*/0ul, /*type=*/0ul, /*flags=MS_BIND*/ 0x1000ul, /*data=*/0ul); res = syscall(__NR_open, /*file=*/0ul, /*flags=*/0ul, /*mode=*/0ul); if (res != -1) r[0] = res; syscall(__NR_dup, /*oldfd=*/-1); syscall(__NR_ioctl, /*fd=*/r[0], /*cmd=*/0x4c02, /*arg=*/0ul); memcpy((void*)0x20000040, "cpuset.effective_cpus\000", 22); syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000040ul, /*flags=*/0x275aul, /*mode=*/0ul); memcpy((void*)0x20000000, ".\000", 2); res = syscall(__NR_fspick, /*dfd=*/0xffffff9c, /*path=*/0x20000000ul, /*flags=*/0ul); if (res != -1) r[1] = res; syscall(__NR_fsconfig, /*fd=*/r[1], /*cmd=*/7ul, /*key=*/0ul, /*value=*/0ul, /*aux=*/0ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); const char* reason; (void)reason; use_temporary_dir(); loop(); return 0; }