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