// https://syzkaller.appspot.com/bug?id=cd5f9935fc6dc97c061987696dd9d258110e19a4 // 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 #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; //% 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; } uint64_t r[1] = {0xffffffffffffffff}; 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; 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 = 0x1004010 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // chdir: int8 = 0xfc (1 bytes) // size: len = 0x60b1 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x60b1) // } // ] // returns fd_dir memcpy((void*)0x200000000200, "jfs\000", 4); memcpy((void*)0x200000000080, "./file1\000", 8); memcpy( (void*)0x200000000380, "\x78\x9c\xec\xdd\x4f\x6f\x1c\x67\x1d\x07\xf0\xdf\xfe\xf1\xda\x71\xdb\x34" "\xaa\x50\x15\x22\x0e\x6e\xca\x9f\x96\xd2\xfc\x4f\xa0\xfc\x6b\xca\x81\x03" "\x1c\x40\x42\x3d\x93\xc8\x75\xab\x94\x14\x50\x12\x10\xad\x22\xe2\xca\x07" "\xc4\x05\x78\x09\x70\xe9\x85\x43\xdf\x02\x2f\xa0\xaf\x01\xf1\x02\x88\x94" "\xf4\xd4\x03\x65\xd0\xd8\xcf\xe3\x8c\x37\xeb\xac\x4d\xe2\x99\x5d\x3f\x9f" "\x8f\xb4\x99\xf9\xcd\xb3\xe3\x7d\x26\xdf\x1d\xcf\xac\x67\x66\x27\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xf8\xd1\x0f\x7f\x76\xb6" "\x17\x11\x57\x7e\x9b\x26\x1c\x8b\x78\x3a\x06\x11\xfd\x88\x23\x75\xbd\x12" "\xf5\xc8\xe5\xfc\xfc\x61\x44\x1c\x8f\xcd\xe6\x78\x3e\x22\x06\x8b\x11\xf5" "\xfc\x9b\xff\x3c\x1b\x71\x21\x22\x3e\x39\x1a\x71\xef\xfe\xed\xd5\x7a\xf2" "\xb9\x3d\xf6\xe3\xe2\x99\x5b\x37\x3e\xff\xf1\x0f\xfe\xf9\x87\x3f\x6f\x1c" "\x7f\xf7\xad\x9f\x7f\x34\xde\xfe\xd3\x2f\x9c\xff\xf8\x8f\x77\x22\x8e\xfd" "\xe4\xb5\x8f\x3f\xbf\xf3\x64\x96\x1d\x00\x00\x00\x4a\x51\x55\x55\xd5\x4b" "\x1f\xf3\x4f\xa4\xcf\xf7\xfd\xae\x3b\x05\x00\xb4\x22\x6f\xff\xab\x24\x4f" "\x57\xab\xd5\x6a\xf5\x13\xad\xff\xd4\xdf\xcf\xf3\x9f\x7e\xaa\xeb\xfe\xaa" "\x0f\x69\xdd\x54\x4d\x76\xa7\x59\x44\xc4\x7a\x73\x9e\x7a\x9f\xc1\xe1\x78" "\x00\x98\x33\xeb\xf1\x59\xd7\x5d\xa0\x43\xf2\x2f\xda\x30\x22\x9e\xea\xba" "\x13\xc0\x4c\xeb\x75\xdd\x01\x0e\xc4\xbd\xfb\xb7\x57\x7b\x29\xdf\x5e\x73" "\x7b\xb0\xb2\xd5\x9e\xff\x4e\xb9\x23\xff\xf5\xde\xf6\xf5\x1d\xbb\x0d\xa7" "\x19\x3f\xc7\xa4\xad\xf7\xd7\x46\x0c\xe2\xb9\x5d\xfa\x73\xa4\xa5\x3e\xcc" "\x92\x9c\x7f\x7f\x3c\xff\x2b\x5b\xed\xa3\xf4\xbc\x83\xce\xbf\x2d\xbb\xe5" "\x3f\xda\xba\xf4\xa9\x38\x39\xff\xc1\x78\xfe\x63\x76\xe4\xff\x97\x88\x98" "\xdb\xfc\xfb\x13\xf3\x2f\x55\xce\x7f\xb8\x9f\xfc\xd7\x07\x73\xbc\xfe\xcb" "\x1f\x00\x00\x00\x00\x80\xc3\x2f\xff\xfd\xff\x58\xc7\xc7\x7f\x17\x1f\x7f" "\x51\xf6\xe4\x51\xc7\x7f\x57\x5a\xea\x03\x00\x00\x00\x00\x00\x00\x00\x3c" "\x69\x8f\x7b\xff\xbf\x6d\xee\xff\x07\x00\x00\x00\x33\xab\xfe\xac\x5e\xfb" "\xeb\xd1\x07\xd3\x76\xfb\x2e\xb6\x7a\xfa\x9b\xbd\x88\x67\xc6\x9e\x0f\x14" "\x66\xa5\xf1\xe5\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x3b\x86" "\x11\xcb\xe9\xbc\xfe\x85\x88\x78\x66\x79\xb9\xaa\xaa\xfa\xd1\x34\x5e\xef" "\xd7\xe3\xce\x3f\xef\x4a\x5f\x7e\x28\xd9\x6e\xbf\x7c\x77\x6d\x00\x00\x80" "\x03\xf1\xc9\xd1\xb1\x6b\xf9\x7b\x11\x4b\x11\xf1\x66\xfa\xae\xbf\x85\xe5" "\xe5\xe5\xaa\x5a\x88\x88\xe5\xea\xc8\x62\xde\x9f\x1d\x2d\x2e\x55\x47\x1a" "\x9f\x6b\xf3\xb0\x9e\xb6\x38\xda\xc3\x0e\xf1\x70\x54\xd5\x3f\x6c\xa9\x31" "\x5f\xd3\xb4\xcf\xcb\xd3\xda\xc7\x7f\x5e\xfd\x5a\xa3\x6a\xb0\x87\x8e\xb5" "\xa3\xc3\xc0\x01\x20\x22\xb6\xb6\x46\xf7\x6c\x91\x0e\x99\xaa\x7a\x36\xba" "\xde\xcb\x61\x3e\x58\xff\x0f\x1f\xeb\x3f\x7b\xd1\xf5\xfb\x14\x00\x00\x00" "\x38\x78\x55\x55\x55\xbd\xf4\x75\xde\x27\xd2\x31\xff\x7e\xd7\x9d\x02\x00" "\x5a\x91\xb7\xff\xe3\xc7\x05\xd4\x6a\xb5\xba\x98\xfa\xd3\xad\x89\x33\xd3" "\x1f\xb5\xfa\x00\xeb\xa6\x6a\xb2\x3b\xcd\x22\x22\xd6\x9b\xf3\xd4\xfb\x0c" "\x6e\xc7\x0f\x00\x73\x66\x3d\x3e\xeb\xba\x0b\x74\x48\xfe\x45\x1b\x46\xc4" "\xf1\xae\x3b\x01\xcc\xb4\x5e\xd7\x1d\xe0\x40\xdc\xbb\x7f\x7b\xb5\x97\xf2" "\xed\x35\xb7\x07\x2b\x5b\xed\xf9\x5c\x90\x1d\xf9\xaf\xf7\x36\xe7\xcb\xf3" "\x4f\x1a\x4e\x33\x7e\x8e\x49\x5b\xef\xaf\x8d\x18\xc4\x73\xbb\xf4\xe7\xf9" "\x96\xfa\x30\x4b\x72\xfe\xfd\xf1\xfc\xaf\x6c\xb5\xe7\x5b\xfc\x6f\xe7\xb3" "\x74\x30\xf9\xb7\x65\xb7\xfc\xeb\xe5\x3c\xd6\x41\x7f\xba\x96\xf3\x1f\x8c" "\xe7\x3f\xe6\xa0\xd7\xff\xb6\x6c\x44\x7f\x62\xfe\xa5\xca\xf9\x0f\xf7\x95" "\xff\x40\xfe\x00\x00\x00\x00\x00\x30\xc3\xf2\xdf\xff\x8f\x39\xfe\x9b\x17" "\x19\x00\x00\x00\x00\x00\x00\x00\xe6\xce\xbd\xfb\xb7\x57\xf3\x75\xaf\xf9" "\xf8\xff\x97\x26\x3c\xaf\xd7\x1c\x73\xfd\xe7\xa1\x91\xf3\xef\xed\x39\x7f" "\xd7\xff\x1e\x26\x39\xff\xfe\x78\xfe\x63\x27\xe4\x0c\x1a\xe3\x77\xdf\x78" "\x90\xff\xa7\xf7\x6f\xaf\x7e\x74\xeb\xdf\x5f\xcc\xc3\x99\xcf\x7f\x61\x30" "\xaa\x5f\x7b\xa1\xd7\x1f\x0c\xd3\x39\x3f\xd5\xc2\xdb\x71\x2d\xae\xc7\x5a" "\x9c\x79\xe8\xf9\xc3\x1d\xed\x67\x1f\x6a\x5f\xd8\xd1\x7e\x6e\x4a\xfb\xf9" "\x87\xda\x47\x75\xfb\x91\xdc\x7e\x2a\x56\xe3\x57\x71\x3d\xde\xda\x6e\x5f" "\x9c\x72\x62\xd4\xd2\x94\xf6\x6a\x4a\x7b\xce\x7f\x60\xfd\x2f\x52\xce\x7f" "\xd8\x78\xd4\xf9\x2f\xa7\xf6\xde\xd8\xb0\x76\xf7\xc3\xfe\x43\xeb\x7d\x73" "\x38\xe9\x75\x2e\xff\xfd\x3f\x5f\x7d\x78\xed\x6a\xc3\x70\x47\xb5\x11\x83" "\xed\x65\x6b\x38\x5a\xff\x73\xb2\xb5\x3e\x3d\xb0\xf9\x7f\xf2\xd4\x28\x7e" "\x73\x73\xed\xc6\xa9\xdf\x5d\xbd\x75\xeb\xc6\xd9\x48\x83\x1d\x53\xcf\x45" "\x1a\x3c\x61\x39\xff\x85\xf4\xc8\xf9\xbf\xf4\xe2\x56\x7b\xfe\xbd\xdf\x5c" "\x5f\xef\x7e\x38\xda\x77\xfe\xb3\x62\x23\x86\x93\xf2\xdf\x7c\x7f\xbf\xd8" "\x18\xaf\x97\xf7\xe5\x96\xfb\xd6\x85\x9c\xff\x28\x3d\x72\xfe\x79\x0b\x34" "\x79\xfd\x9f\xe7\xfc\x27\xae\xff\x9b\xcb\xf7\x4a\x07\xfd\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x80\x47\xa9\xaa\x6a\xf3\x12\xd1\xcb\x11" "\x71\x29\x5d\xff\xd3\xd5\xb5\x99\x00\x40\xbb\xf2\xf6\xbf\x4a\xf2\x74\xb5" "\x5a\xad\x56\xab\xd5\x87\xaf\x6e\xaa\x26\x7b\xbd\x59\x44\xc4\x3f\x9a\xf3" "\xd4\xfb\x0c\xbf\x9f\xf4\xc3\x00\x80\x59\xf6\xdf\x88\xf8\x57\xd7\x9d\xa0" "\x33\xf2\x2f\x58\xfe\xbe\xbf\x7a\xf8\xe5\xae\x3b\x03\xb4\xea\xe6\xfb\x1f" "\xfc\xe2\xea\xf5\xeb\x6b\x37\x6e\x76\xdd\x13\x00\x00\x00\x00\x00\x00\x00" "\xe0\xff\x95\xef\xff\xb9\xd2\xb8\xff\xf3\xe6\x79\x40\x63\xf7\x8d\xde\x71" "\xff\xd7\x37\x62\x65\x6e\xef\xff\xd9\x1f\x0d\x36\xef\x75\x9e\x16\xe8\x85" "\x78\xf4\xfd\xbf\x4f\xc6\xa3\xef\xff\x3d\x9c\xf2\x7a\x0b\x53\xda\x47\x53" "\xda\x17\xa7\xb4\x2f\x4d\x69\x9f\x78\xa1\x47\x43\xce\xff\x85\x94\x71\xce" "\xff\x44\x5a\xb0\x92\xee\xff\xfa\x52\x07\xfd\xe9\x5a\xce\xff\x64\xba\xd7" "\x73\xce\xff\x6b\x63\xcf\x6b\xe6\x5f\xfd\x6d\x9e\xf3\xef\xef\xc8\xff\xf4" "\xad\xf7\x7e\x7d\xfa\xe6\xfb\x1f\xbc\x7a\xed\xbd\xab\xef\xac\xbd\xb3\xf6" "\xcb\xb3\x67\x2e\x5d\x38\x7f\xf1\xc2\xf9\x8b\x17\x4f\xbf\x7d\xed\xfa\xda" "\x99\xad\x7f\x3b\xec\xf1\xc1\xca\xf9\xe7\x7b\x5f\x3b\x0f\xb4\x2c\x39\xff" "\x9c\xb9\xfc\xcb\x92\xf3\xff\x4a\xaa\xe5\x5f\x96\x94\xff\xf6\x6e\xa8\xfc" "\xcb\x92\xd7\xff\xbc\xbf\x27\xff\xb2\xe4\xfc\xf3\x67\x1f\xf9\x97\x25\xe7" "\xff\x72\xaa\xe5\x5f\x96\x9c\xff\xd7\x53\x2d\xff\xb2\xe4\xfc\x5f\x49\xb5" "\xfc\xcb\x92\xf3\xff\x46\xaa\xe5\x5f\x96\x9c\xff\xab\xa9\x96\x7f\x59\x72" "\xfe\xa7\x52\x2d\xff\xb2\xe4\xfc\x4f\xa7\x5a\xfe\x65\xc9\xf9\xe7\x23\x5c" "\xf2\x2f\x4b\xce\x3f\x9f\xd9\x20\xff\xb2\xe4\xfc\xcf\xa5\x5a\xfe\x65\xc9" "\xf9\x9f\x4f\xb5\xfc\xcb\x92\xf3\xbf\x90\x6a\xf9\x97\x25\xe7\x7f\x31\xd5" "\xf2\x2f\x4b\xce\xff\x52\xaa\xe5\x5f\x96\x9c\xff\x37\x53\x2d\xff\xb2\xe4" "\xfc\xbf\x95\x6a\xf9\x97\x25\xe7\xff\x5a\xaa\xe5\x5f\x96\x9c\xff\xb7\x53" "\x2d\xff\xb2\xe4\xfc\xbf\x93\x6a\xf9\x97\x25\xe7\xff\xdd\xc6\x35\x7e\xbb" "\xe5\xff\x6e\x8b\xfd\xa2\x1d\x39\xff\xef\xa5\xda\xfa\x5f\x96\x9c\xff\xf7" "\x53\x2d\xff\xb2\xe4\xfc\x5f\x4f\xb5\xfc\xcb\xf2\xe0\xfb\xff\x8d\xec\x7b" "\x64\x79\x36\xba\x61\xc4\xc8\x93\x1f\xe9\xfa\x37\x13\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x30\xae\x8d\xd3\x89\xbb\x5e\x46\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x7f\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\x07\x0e\x04\x00\x00\x00\x00\x80\xfc\x5f\x1b\xa1\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\x0a\x7b\xf7\x1a\x23\xd7\x59\xdf\x0f\xfc\xec\xd5\xbb\x4e" "\x70\x0c\x09\x21\x04\x43\x6c\xe7\x82\x21\x9b\xec\xae\x6f\x89\x09\x4e\x1c" "\x20\xfc\xf3\x0f\xbd\xa4\x81\xd0\xd2\x86\x3a\xc6\x5e\x3b\x06\xdf\xea\x5d" "\x43\x12\x45\xcd\x42\xd2\x36\x88\x48\x8d\xd4\xbe\x48\x5f\x94\x02\x02\x84" "\xd4\x56\x89\x2a\xa4\x52\x29\x45\x91\x8a\xd4\xbe\xa9\xca\xab\xa2\xa8\x12" "\x6a\x25\xa4\xba\x52\x52\x99\x08\x2a\x51\x91\x6c\x75\x66\x9e\xe7\xd9\x99" "\xd9\xd9\x99\x59\x7b\xd7\x3e\x73\xce\xe7\x13\xc5\x3f\xef\xce\x99\x99\x67" "\xce\x9c\x9d\xdd\xef\x5a\xdf\x39\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x34\xda\xf2\xe1" "\x99\x3f\x1a\xc8\xb2\x2c\xff\xbf\xf6\xc7\xc6\x2c\xbb\x3c\xff\xfb\x78\xb6" "\x2f\xff\x70\x7e\xf7\xa5\x5e\x21\x00\x00\x00\x70\xa1\xde\xa8\xfd\xf9\x57" "\x57\xa4\x4f\xec\xeb\xe1\x4a\x0d\xdb\xfc\xe3\x7b\xfe\xe5\xbb\x0b\x0b\x0b" "\x0b\xd9\x67\x5e\x3f\xfb\xe6\x9f\x2c\x2c\xa4\x0b\x36\x67\xd9\xd0\xba\x2c" "\xab\x5d\x16\xfd\xd3\x2f\x7e\xbe\xd0\xb8\x4d\xf0\x54\x36\x36\x30\xd8\xf0" "\xf1\x60\x97\xbb\x1f\xea\x72\xf9\x70\x97\xcb\x47\xba\x5c\x3e\xda\xe5\xf2" "\x75\x5d\x2e\x1f\xeb\x72\xf9\x92\x1d\xb0\xc4\x78\xfd\xf7\x31\xb5\x1b\xbb" "\xa1\xf6\xd7\x8d\xf5\x5d\x9a\x5d\x95\x8d\xd4\x2e\xbb\xa1\xcd\xb5\x9e\x1a" "\x58\x37\x38\x18\x7f\x97\x53\x33\x50\xbb\xce\xc2\xc8\xe1\xec\x68\x76\x2c" "\x9b\xc9\xa6\x96\x5c\x67\xa0\xf6\x5f\x96\xbd\xb4\x25\xbf\xaf\x7b\xb3\x78" "\x5f\x83\x0d\xf7\xb5\x29\xcb\xb2\x73\x3f\x7d\xe2\x60\x5c\xc3\x40\xd8\xc7" "\x37\x64\x4d\x77\x56\xd3\xf8\xdc\xbd\x76\x77\xb6\xf9\xf5\x9f\x3e\x71\xf0" "\xdb\x73\xaf\xbe\xb3\xdd\xec\xba\x1b\x96\xac\x34\xcb\xb6\x6d\xcd\xd7\xf9" "\x74\x96\x2d\xfe\xba\x2a\x1b\xc8\xd6\xa5\x7d\x12\xd7\x39\xd8\xb0\xce\x4d" "\x6d\xd6\x39\xd4\xb4\xce\x81\xda\xf5\xf2\xbf\xb7\xae\xf3\x5c\x8f\xeb\x8c" "\x8f\x7b\x2c\xac\xf3\x87\x1d\xd6\xb9\x29\x7c\xee\xd1\xeb\xb3\x2c\x9b\xcf" "\x96\xdd\xa6\xd5\x53\xd9\x60\xb6\xbe\xe5\x5e\xd3\xfe\x1e\xab\x1f\x11\xf9" "\x6d\xe4\x4f\xe5\xdb\xb2\xe1\x15\x1d\x27\x5b\x7a\x38\x4e\xf2\xeb\xfc\xe4" "\xfa\xe6\xe3\xa4\xf5\x98\x8c\xfb\x7f\x4b\xd8\x27\xc3\xcb\xac\xa1\xf1\xe9" "\x78\xed\x8b\xa3\x4b\xf6\xfb\xf9\x1e\x27\xf9\xa3\x2e\xc2\xb1\x9a\xdf\xf6" "\xfd\xf9\x9d\x8e\x8d\x35\xfe\x6a\xb5\xe9\x58\xcd\xb7\x79\xe2\xc6\xe5\x8f" "\x81\xb6\xcf\x5d\x9b\x63\x20\x1d\xcb\x0d\xc7\xc0\xd6\x6e\xc7\xc0\xe0\xe8" "\x50\xed\x18\x18\x5c\x5c\xf3\xd6\xa6\x63\x60\x7a\xc9\x75\x06\xb3\x81\xda" "\x7d\x9d\xbd\xb1\xf3\x31\x30\x39\x77\xfc\xd4\xe4\xec\x63\x8f\xdf\x72\xf4" "\xf8\x81\x23\x33\x47\x66\x4e\x4c\x4f\xed\xde\xb9\x63\xd7\xce\x1d\xbb\x76" "\x4d\x1e\x3e\x7a\x6c\x66\xaa\xfe\xe7\xca\x76\x69\x1f\x59\x9f\x0d\xa6\x63" "\x70\x6b\x78\xad\x89\xc7\xe0\x7b\x5b\xb6\x6d\x3c\x24\x17\xbe\xbe\x7a\x5f" "\x07\x63\x05\xf9\x3a\xc8\x1f\xfb\x27\x6e\xca\x17\x74\xf9\x60\xb6\xcc\x31" "\x9e\x6f\xf3\xf4\xb6\x0b\xff\x3a\x48\xdf\xf7\x1b\xbe\x0e\x86\x1b\xbe\x0e" "\xda\xbe\xa6\xb6\xf9\x3a\x18\xee\xe1\xeb\x20\xdf\xe6\xdc\xb6\xde\xbe\x67" "\x0e\x37\xfc\xdf\x6e\x0d\x6b\xf5\x5a\xb8\xb1\xe1\x18\xb8\x94\xdf\x0f\xf3" "\xfb\x7c\xe8\x7d\xcb\xbf\x16\x6e\x0a\xeb\x7a\xe6\xfd\x2b\xfd\x7e\x38\xb4" "\xe4\x18\x88\x0f\x6b\x20\x7c\xed\xe5\x9f\x49\x3f\xef\x8d\xdd\x1e\xf6\xcb" "\xd2\xe3\xe2\xda\xfc\x82\xcb\x46\xb3\x33\xb3\x33\xa7\x6f\x7d\xf4\xc0\xdc" "\xdc\xe9\xe9\x2c\x8c\x8b\xe2\xca\x86\xe7\xaa\xf5\x78\x59\xdf\xf0\x98\xb2" "\x25\xc7\xcb\xe0\x8a\x8f\x97\x7d\x7f\xf9\xcb\x9b\xae\x6d\xf3\xf9\x8d\x61" "\x5f\x8d\xdd\xbc\xf8\x5c\x8d\xb6\x79\x1e\xf2\x6d\x76\x4e\x74\x7e\xae\x6a" "\xaf\xee\xed\xf7\x67\xd3\x67\xb7\x67\x61\xac\xb2\x8b\xbd\x3f\xdb\x7d\x37" "\xcb\xf7\x67\xca\x12\x1d\x8e\xfd\x7c\x9b\xa7\x6f\xb9\xf0\x9f\x05\x53\x2e" "\x69\x78\xfd\x1b\xe9\xf6\xfa\x37\x34\x32\x5c\x7f\xfd\x1b\x4a\x7b\x63\xa4" "\xe9\xf5\x6f\xe9\x53\x33\x54\x5b\x59\x96\x9d\xbb\xa5\xb7\xd7\xbf\x91\xf0" "\xff\xc5\x7e\xfd\xbb\xaa\x20\xaf\x7f\xf9\xbe\x7a\xe8\xd6\xce\xc7\x40\xbe" "\xcd\x33\x93\x2b\x3d\x06\x86\x3b\xbe\xfe\x5d\x1f\xe6\x40\x58\xcf\xfb\x42" "\x62\x18\x6b\xc8\xfd\x6f\xd6\x2e\x9f\xaf\x1f\xa6\x0d\xcf\x65\xd7\xe3\x66" "\x78\x78\x24\x1c\x37\xc3\xf1\x1e\x9b\x8f\x9b\x1d\x4b\xae\x93\xdf\x5a\x7e" "\xdf\xdb\xa6\xce\xef\xb8\xd9\x76\x7d\xf3\x73\xd5\xf4\x73\x4b\x09\x8f\x9b" "\x7c\x5f\xfd\xe9\x54\xe7\xe3\x26\xdf\xe6\xe5\xe9\x0b\x7f\xed\x18\x8f\x7f" "\x6d\x78\xed\x18\xed\x76\x0c\x8c\x0c\x8d\xe6\xeb\x1d\x49\x07\x41\xfd\xf5" "\x6e\x61\x3c\x1e\x03\xb7\x66\x07\xb3\x93\xd9\xb1\xec\x50\xba\x4e\xfe\x2c" "\xe7\xf7\x35\xb1\xbd\xb7\x63\x60\x34\xfc\x7f\xb1\x5f\x3b\xae\x29\xc8\x31" "\x90\xef\xab\xe7\xb7\x77\x3e\x06\xf2\x6d\x7e\xb0\x63\x75\x7f\x76\xda\x16" "\x3e\x93\xb6\x69\xf8\xd9\xa9\xf5\xf7\x0b\xcb\x65\xfe\x6b\x87\x17\x6f\xaf" "\x75\xb7\xad\x76\xe6\xcf\xd7\xf9\x91\x9d\x9d\x7f\x37\x94\x6f\xf3\xea\xce" "\x95\xe6\x8c\xce\xfb\xe9\xe6\xf0\x99\xcb\xda\xec\xa7\xd6\xaf\x9f\xe5\x8e" "\xe9\x43\xd9\xc5\xd9\x4f\xd7\x84\x75\x1e\xdb\xd5\xf9\x77\x53\xf9\x36\x57" "\xed\xee\xf1\x78\xda\x97\x65\xd9\x2b\xd3\xaf\xd4\x7e\xdf\x15\x7e\xbf\xfb" "\x37\x67\xfe\xf5\xbb\x4d\xbf\xf7\x6d\xf7\x3b\xe5\x57\xa6\x5f\xb9\x6f\xf2" "\x81\x1f\xad\x64\xfd\x00\x00\x9c\xbf\x37\x6b\x7f\xce\x8f\xd6\x7f\xd6\x6c" "\xf8\x17\xeb\x5e\xfe\xfd\x1f\x00\x00\x00\xe8\x0b\x31\xf7\x0f\x86\x99\xc8" "\xff\x00\x00\x00\x50\x1a\x31\xf7\x0f\x85\x99\xc8\xff\x00\x00\x00\x50\x1a" "\x31\xf7\x0f\x87\x99\x54\x24\xff\x3f\x72\xfb\x9e\x17\xde\x78\x32\x4b\xef" "\x06\xb8\x10\xc4\xcb\xe3\x6e\xb8\xff\xce\xfa\x76\xb1\xe3\x3d\x1f\x3e\xde" "\xbc\xb0\x28\xff\xfc\x87\xbe\x39\xf2\xc2\x97\x9f\xec\xed\xbe\x07\xb3\x2c" "\xfb\xe5\x7d\xef\x6a\xbb\xfd\x23\x77\xc6\x75\xd5\x9d\x8a\xeb\xfc\x40\xf3" "\xe7\x97\xb8\xe6\xba\x9e\xee\xff\xe1\x07\x17\xb7\x6b\x7c\xff\x84\x73\x7b" "\xea\xb7\x1f\x1f\x4f\xaf\x87\x41\xec\x2a\xbf\x34\xb9\xbd\x76\xbb\x9b\x1f" "\x9b\xae\xcd\x97\xef\xcb\x6a\xf3\x81\xf9\x67\x9e\xaa\xdf\x7e\xfd\xe3\xb8" "\xfd\xd9\x1d\xf5\xed\xff\x3c\xbc\x69\xc9\xbe\xc3\x03\x4d\xd7\xdf\x16\xd6" "\x73\x43\x98\x9b\xc3\x7b\xca\xdc\xbf\x6f\x71\x3f\xe4\x33\x5e\xef\x85\x4d" "\xef\xf9\x87\x2b\x3f\xb9\x78\x7f\xf1\x7a\x03\x5b\x37\xd4\x1e\xe6\xf3\xbf" "\x5f\xbf\xdd\xf8\x1e\x51\xcf\x5d\x59\xdf\x3e\x3e\xee\xe5\xd6\xff\xf7\x5f" "\xf9\xce\x0b\xf9\xf6\x8f\xde\xd8\x7e\xfd\x4f\x0e\xb6\x5f\xff\xd9\x70\xbb" "\x3f\x09\xf3\x17\x7b\xeb\xdb\x37\xee\xf3\x2f\x37\xac\xff\x0f\xc2\xfa\xe3" "\xfd\xc5\xeb\xdd\xfa\x8d\xef\xb7\x5d\xff\x8b\xef\xa8\x6f\xff\x62\x38\x2e" "\xbe\x16\x66\xeb\xfa\xef\xfe\xe3\x77\xbf\xd1\xee\xf9\x8a\xf7\xb3\xef\x8e" "\xfa\xf5\xe2\xfd\x4f\xfd\xcf\xce\xda\xf5\xe2\xed\xc5\xdb\x6f\x5d\xff\xd8" "\x93\xd3\x4d\xfb\xa3\xf5\xf6\x5f\x7e\xbd\x7e\x3b\x7b\x3f\xff\xb3\xa1\xc6" "\xed\xe3\xe7\xe3\xfd\x44\x0f\xdf\xd1\x7c\x7c\x0f\x84\xe7\xb7\xa9\x47\x9e" "\x65\xd9\x77\xfe\x30\x6b\xda\xcf\xd9\x07\xeb\xd7\xfb\xbb\x96\xf5\xc7\xdb" "\x3b\x75\x47\xfb\xf5\xdf\xdc\xb2\xce\x53\x03\xd7\xd5\xae\xbf\xf8\x78\x36" "\x36\x3d\xae\xaf\x7e\x6b\x7b\xdb\xc7\x1b\xd7\xb3\xef\xaf\x37\x36\x3d\x9e" "\xe7\xee\x09\xfb\xef\xf5\xc9\x1f\xe4\xb7\x7b\xf6\x81\x70\x3c\x86\xcb\xff" "\xf7\x87\xf5\xdb\x6b\x7d\x2f\xd3\x17\xef\x69\x7e\xbd\x89\xdb\x7f\x6d\x63" "\xfd\xeb\x36\xde\xde\x64\xcb\xfa\x9f\x6b\x59\xff\xfc\x75\xf9\xbe\xeb\xbe" "\xfe\x7b\x5f\xaf\xaf\xff\xc5\xbb\xd6\x35\xad\x7f\xdf\x47\xc3\xf1\x74\x6f" "\x7d\x76\x5b\xff\x91\xbf\xb8\xa2\xe9\xfa\x5f\xff\x76\xfd\xf9\x38\xfd\x85" "\x89\x13\x27\x67\xcf\x1c\x3d\x14\x1e\xcc\xc6\x96\xaf\xe3\x75\x63\xe3\xeb" "\x2f\xbb\xfc\x2d\x1b\xae\x08\xaf\xa5\xad\x1f\xef\x3f\x39\xf7\xc8\xcc\xe9" "\xcd\x53\x9b\xa7\xb2\x6c\x73\x1f\xbe\x65\xe0\x5a\xaf\xff\x1b\x61\xfe\x77" "\x7d\xcc\xaf\xfe\x3d\xd4\xfd\xe8\x67\xf5\xe3\xee\xd9\x8f\xd5\xbf\x6f\xbd" "\xf7\xe7\xf5\x8f\x9f\x0b\x9f\x7f\x38\x3c\x9f\xf1\xfb\xe3\x57\xff\x6c\xa4" "\xe9\x78\x6d\x7d\xde\xe7\xef\xaa\xcf\x0b\x5d\xff\xfb\xc3\x3a\x7a\xf5\x8e" "\xaf\xfc\xc7\x75\x6d\x3e\xfd\x9f\x4b\xde\xf3\xf7\xec\xa7\x5f\x3a\xf3\xb7" "\x5f\x7a\xb5\xf5\xe7\x82\xf8\x78\x4e\xbd\x7d\xac\xf6\xf8\x9e\xdf\x72\x75" "\xed\xb2\x81\x97\xeb\x97\xb7\xbe\x5e\x75\xf3\xef\x6f\x6f\xfe\xba\xfe\xf1" "\xf0\x54\x6d\x7e\x2f\xec\xd7\x85\xf0\xce\xcc\x5b\xaf\xae\xdf\x5f\xeb\xed" "\xc7\xf7\x26\x79\xf6\xe3\xf5\xaf\xdf\xf8\x93\x5c\xbc\x7e\xd6\xf2\x7e\x22" "\x1b\x87\x9a\x1f\xc7\x85\xae\xff\xc7\xe1\xe7\x98\xef\x5f\xd3\xfc\xfa\x17" "\x8f\x8f\xef\x3d\xd9\xf2\x6e\xce\x1b\xb3\x81\x7c\x09\xf3\xe1\xf5\x21\x9b" "\xaf\x5f\x1e\xb7\x8a\xfb\xfb\xd9\x73\x57\xb7\xbd\xbf\xf8\x3e\x3c\xd9\xfc" "\x3b\x57\xb2\xcc\x65\xcd\x3e\x36\x3b\x79\xec\xe8\x89\x33\x8f\x4e\xce\xcd" "\xcc\xce\x4d\xce\x3e\xf6\xf8\xfe\xe3\x27\xcf\x9c\x98\xdb\x5f\x7b\xef\xd2" "\xfd\x9f\xed\x76\xfd\xc5\xaf\xef\xf5\xb5\xaf\xef\x43\x33\xbb\x77\x66\xb5" "\xaf\xf6\x93\xf5\xb1\xc6\x2e\xf5\xfa\x4f\x3d\x78\xf0\xd0\x6d\x53\x37\x1d" "\x9a\x39\x7c\xe0\xcc\xe1\xb9\x07\x4f\xcd\x9c\x3e\x72\x70\x76\xf6\xe0\xcc" "\xa1\xd9\x9b\x0e\x1c\x3e\x3c\xf3\x85\x6e\xd7\x3f\x7a\x68\xef\xf4\xf6\x3d" "\x3b\x6e\xdb\x3e\x71\xe4\xe8\xa1\xbd\xb7\xef\xd9\xb3\x63\xcf\xc4\xd1\x13" "\x27\xf3\x65\xd4\x17\xd5\xc5\xee\xa9\xcf\x4d\x9c\x38\xbd\xbf\x76\x95\xd9" "\xbd\x3b\xf7\x4c\xef\xda\xb5\x73\x6a\xe2\xf8\xc9\x43\x33\x7b\x6f\x9b\x9a" "\x9a\x38\xd3\xed\xfa\xb5\xef\x4d\x13\xf9\xb5\x3f\x3f\x71\x7a\xe6\xd8\x81" "\xb9\xa3\xc7\x67\x26\x66\x8f\x3e\x3e\xb3\x77\x7a\xcf\xee\xdd\xdb\xbb\xbe" "\xfb\xe3\xf1\x53\x87\x67\x37\x4f\x9e\x3e\x73\x62\xf2\xcc\xec\xcc\xe9\xc9" "\xfa\x63\xd9\x3c\x57\xfb\x74\xfe\xbd\xaf\xdb\xf5\xa9\x86\xd9\x93\xe1\xf5" "\xae\xc5\x40\xf8\xe9\xfc\x53\x37\xef\x4e\xef\x8f\x9b\xfb\xe6\x17\x97\xbd" "\xa9\xfa\x26\xcd\x3f\x9e\x66\xaf\x85\xf7\x82\x8a\xdf\xdf\xba\x7d\x1c\x73" "\xff\x48\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\xe1\x8d\xff\x17" "\x2f\x90\xff\x01\x00\x00\xa0\x34\x62\xee\x5f\x17\x66\x22\xff\x03\x00\x00" "\x40\x69\xc4\xdc\x3f\x16\x66\x52\x91\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff" "\xaf\xff\x7f\x11\xfb\xff\x99\xfe\xff\x6a\x5b\x8d\xfe\x7f\xeb\x31\xd1\x4e" "\xc9\xfb\xff\x4b\xe9\xff\xf7\x44\xff\x5f\xff\x5f\xff\x5f\xff\x9f\xce\x8a" "\xd6\xff\x8f\xb9\x7f\x3c\xcb\x2a\x99\xff\x01\x00\x00\xa0\x9f\x6d\xe8\x71" "\xbb\x98\xfb\xd7\x87\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x5f\x16\x66" "\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x7f\x79\x98\x49\x35\xf2\xff\x48\xeb" "\x5f\xf5\xff\xf5\xff\xf5\xff\x1b\xfb\xff\x71\x5b\xfd\xff\x4c\xff\x5f\xff" "\xff\x3c\xf5\x43\xff\xbf\x17\xfa\xff\x75\xfa\xff\xcd\xf4\xff\xf5\xff\x0b" "\xd6\xff\x1f\xd7\xff\xa7\x68\x8a\xd6\xff\x8f\xb9\xff\x2d\x61\x26\xd5\xc8" "\xff\x00\x00\x00\x50\x09\x31\xf7\x6f\x08\x33\x91\xff\x01\x00\x00\xa0\x34" "\x62\xee\xbf\x22\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\x7f\x63\x98\x49" "\x45\xf2\xbf\xf3\xff\xf7\x77\xff\x7f\x5c\xff\xdf\xf9\xff\xf5\xff\xf5\xff" "\x0b\x4e\xff\x5f\xff\xbf\x13\xfd\x7f\xfd\xff\x7e\x5e\x7f\x01\xfb\xff\xce" "\xff\x4f\xe1\x14\xad\xff\x1f\x73\xff\x5b\xc3\x4c\x2a\x92\xff\x01\x00\x00" "\xa0\x0a\x62\xee\x7f\x5b\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x95" "\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x57\x85\x99\x54\x24\xff\x3f" "\x72\xfb\x50\xa6\xff\xbf\xa8\xdf\xfa\xff\x99\xfe\xbf\xfe\x7f\xff\xf4\xff" "\xf3\x17\x19\xfd\x7f\xfd\xff\x55\xa7\xff\x7f\x51\xfb\xff\x6f\xcd\xf4\xff" "\x9b\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x59\xd1\xfa\xff\x31\xf7\xbf\x3d" "\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\xab\xc3\x4c\xe4\x7f\x00" "\x00\x00\x28\x8d\x98\xfb\xdf\x11\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc" "\x7f\x4d\x98\x49\x45\xf2\xbf\xf3\xff\xeb\xff\xeb\xff\xeb\xff\x3b\xff\xbf" "\xfe\xff\x5a\xd2\xff\x2f\x55\xff\xdf\xf9\xff\x5b\xe8\xff\xeb\xff\xeb\xff" "\xeb\xff\xd3\x59\xd1\xfa\xff\x31\xf7\xbf\x33\xcc\xa4\x22\xf9\x1f\x00\x00" "\x00\xaa\x20\xe6\xfe\x6b\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xdf" "\x15\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xbf\x29\xcc\xa4\x22\xf9\x5f" "\xff\x5f\xff\xbf\xf0\xfd\xff\x41\xfd\x7f\xfd\xff\x3a\xfd\x7f\xfd\xff\x76" "\x56\xb7\xff\x3f\xb8\xec\x25\xfa\xff\x75\x65\xeb\xff\x8f\x86\xcf\xeb\xff" "\xeb\xff\xeb\xff\xeb\xff\xb3\x36\x8a\xd6\xff\x8f\xb9\xff\xdd\x61\x26\x15" "\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\xbf\x27\xcc\x44\xfe\x07\x00\x00\x80" "\xd2\x88\xb9\xff\xba\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xcd\x61" "\x26\x15\xc9\xff\xfa\xff\xfa\xff\xb5\xfe\x7f\xec\xd9\x14\xb1\xff\xef\xfc" "\xff\xfa\xff\x61\x56\xae\xff\x3f\x37\xa0\xff\xdf\x03\xe7\xff\xd7\xff\xcf" "\x9c\xff\xff\xbc\x5d\xea\xfe\x7c\xbf\xaf\x5f\xff\x5f\xff\x9f\xee\x8a\xd6" "\xff\x8f\xb9\x7f\x4b\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\x5b" "\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xaf\x0f\x33\x91\xff\x01\x00" "\x00\xa0\x34\x62\xee\xbf\x21\xcc\xa4\x22\xf9\x5f\xff\xff\x3c\xfb\xff\xe3" "\xcd\x1f\xf6\x7d\xff\xbf\xc8\xe7\xff\xd7\xff\xd7\xff\x0f\xb3\x72\xfd\x7f" "\xe7\xff\xef\x89\xfe\xbf\xfe\x7f\xa6\xff\x7f\xde\x2e\x75\x7f\xbe\xdf\xd7" "\xaf\xff\xdf\x5b\xff\x7f\xb4\xdb\x0d\x51\x6a\x45\xeb\xff\xc7\xdc\x7f\x63" "\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\x37\x85\x99\xc8\xff\x00" "\x00\x00\x50\x1a\x31\xf7\xbf\x37\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9" "\x7f\x5b\x98\x49\x45\xf2\xbf\xfe\xbf\xf3\xff\xeb\xff\xeb\xff\xeb\xff\xeb" "\xff\xaf\x25\xfd\xff\x9e\xfb\xff\xe3\xe7\xb3\x2e\xfd\xff\x3a\xfd\xff\xf3" "\x73\xa9\xfb\xf3\xfd\xbe\xfe\x7e\xea\xff\x8f\xb5\xb9\xbe\xf3\xff\x73\x31" "\x14\xad\xff\x1f\x73\xff\xfb\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62" "\xee\x7f\x7f\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xcd\x61\x26\xf2" "\x3f\x00\x00\x00\x94\x46\xcc\xfd\x13\x61\x26\x15\xc9\xff\xfa\xff\xfa\xff" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x6b\xa9\xac\xfd\xff\xf4\x3a\xea\xfc\xff" "\xfa\xff\xfa\xff\xfa\xff\x6b\xdc\xff\xff\xd6\x32\xd7\xef\x97\xf3\xff\x53" "\x6d\x45\xeb\xff\xc7\xdc\x7f\x4b\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41" "\xcc\xfd\xb7\x86\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x4f\x86\x99\xc8" "\xff\x00\x00\x00\x50\x1a\x31\xf7\x4f\x85\x99\x54\x24\xff\xeb\xff\xeb\xff" "\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xaf\xa5\xb2\xf6\xff\x5b\xcf\xff\x9f\x65" "\x99\xfe\xbf\xfe\x7f\xa2\xff\xaf\xff\x5f\xb4\xf3\xff\xb7\xa3\xff\xcf\xc5" "\x50\xb4\xfe\x7f\xcc\xfd\xd3\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31" "\xf7\x6f\x0f\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xdf\x11\x66\x22\xff" "\x03\x00\x00\x40\x69\xc4\xdc\xbf\x33\xcc\xa4\x22\xf9\x5f\xff\x7f\x25\xfd" "\xff\xe5\x5b\x81\xfa\xff\xed\xd7\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x5f\x95" "\xfe\xbf\xf3\xff\xd7\x2f\xd7\xff\xaf\xd3\xff\xd7\xff\xd7\xff\xd7\xff\xaf" "\xa2\xc1\x36\x9f\x2b\x5a\xff\x3f\xe6\xfe\x5d\x61\x26\x15\xc9\xff\x00\x00" "\x00\x50\x05\x31\xf7\xef\x0e\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xbf" "\x2d\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\xf6\x30\x93\x8a\xe4\x7f" "\xfd\x7f\xe7\xff\xd7\xff\xd7\xff\x2f\x6e\xff\xbf\xf9\xfe\xd7\xae\xff\xff" "\x5f\xfa\xff\x6b\x48\xff\x5f\xff\xbf\x13\xfd\x7f\xfd\xff\x7e\x5e\xbf\xfe" "\xbf\xfe\x3f\xdd\xad\x6e\xff\xff\x8a\x0b\xee\xff\xc7\xdc\xbf\x27\xcc\xa4" "\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\x0f\x84\x99\xc8\xff\x00\x00\x00" "\x50\x1a\x31\xf7\xdf\x11\x66\x22\xff\x03\x00\x00\x40\x5f\x69\x77\x1e\xc2" "\x28\xe6\xfe\x0f\x86\x99\x54\x24\xff\xeb\xff\x97\xbd\xff\xbf\xb0\x4e\xff" "\xbf\xa7\xfe\x7f\xbc\x51\xfd\xff\x42\xf5\xff\x9b\xf7\xa7\xf3\xff\xeb\xff" "\xb7\x13\x5e\x3e\xf5\xff\x7b\x54\xad\xfe\xff\xf8\x92\xfb\xd3\xff\x6f\x76" "\xa9\xfb\xf3\xfd\xbe\x7e\xfd\x7f\xfd\x7f\xba\x5b\xdd\xfe\xff\x92\x1f\x4f" "\x57\xdc\xff\x8f\xb9\x7f\x6f\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc" "\xfd\x77\x86\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xdf\x15\x66\x22\xff" "\x03\x00\x00\x40\x69\xc4\xdc\xbf\x2f\xcc\xa4\x22\xf9\x5f\xff\xbf\xec\xfd" "\xff\xe2\x9d\xff\x7f\x20\x2b\x64\xff\xdf\xf9\xff\xf5\xff\xf5\xff\xd7\x88" "\xf3\xff\xeb\xff\x77\xe2\xfc\xff\xfd\xd9\xff\x8f\xef\xbb\xa1\xff\x5f\x9c" "\xfe\x7f\x7e\x0c\xe9\xff\x53\x44\x45\xeb\xff\xc7\xdc\x7f\x77\x98\x49\x45" "\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\x1f\x0a\x33\x91\xff\x01\x00\x00\xa0" "\x34\x62\xee\xff\x70\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x47\xc2" "\x4c\x2a\x92\xff\xf5\xff\xf5\xff\x97\xed\xff\x0f\x57\xea\xfc\xff\xe7\xd9" "\xff\x5f\xd7\xf1\x78\xd0\xff\xd7\xff\xaf\x74\xff\x3f\x7c\x4b\xd5\xff\xd7" "\xff\xef\x44\xff\xbf\x3f\xfb\xff\x91\xfe\x7f\x71\xfa\xff\xce\xff\x4f\x51" "\x15\xad\xff\x1f\x73\xff\x3d\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31" "\xf7\x7f\x34\xcc\xa4\x25\xff\x0f\x5f\xd4\x55\x01\x00\x00\x00\xab\x29\xe6" "\xfe\xff\x17\x66\xe2\xdf\xff\x01\x00\x00\xa0\x34\x62\xee\xbf\x37\xcc\xa4" "\x31\xff\x0f\xb4\xb6\x45\xcb\xa3\x30\xfd\xff\x0d\x2d\xeb\x2a\x42\xff\x7f" "\xb0\xe2\xfd\xff\x35\x3a\xff\x7f\xb9\xfa\xff\xce\xff\x9f\xe9\xff\xeb\xff" "\x77\xa1\xff\xaf\xff\xdf\x89\xfe\xbf\xfe\x7f\x3f\xaf\x5f\xff\x5f\xff\x9f" "\xee\x8a\xd6\xff\x8f\xb9\xff\xff\x87\x99\xf8\xf7\x7f\x00\x00\x00\x28\x8d" "\x98\xfb\xef\x0b\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xff\x58\x98\x89" "\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xaf\x84\x99\x54\x24\xff\x17\xa6\xff" "\xdf\xba\xae\x22\xf4\xff\x57\xf1\xfc\xff\x83\xe9\xf6\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\xf5\xff\x57\x53\x9f\xf6\xff\xc7\xf4\xff\xeb\xf4\xff\xf5\xff" "\xfb\x79\xfd\xfa\xff\xfa\xff\x74\x57\xb4\xfe\x7f\xcc\xfd\xbf\x1a\x66\x52" "\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\xaf\x85\x99\xc8\xff\x00\x00\x00" "\x50\x1a\x31\xf7\xff\x7a\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xfd" "\x61\x26\x15\xc9\xff\xfa\xff\x17\xa7\xff\xef\xfc\xff\xfa\xff\x99\xfe\xff" "\xca\xfb\xff\xc3\xcd\xfb\x53\xff\x5f\xff\xbf\x9d\x3e\xed\xff\x3b\xff\x7f" "\xa0\xff\xaf\xff\xdf\xcf\xeb\xd7\xff\xd7\xff\xa7\xbb\xa2\xf5\xff\x63\xee" "\xff\x8d\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\x1f\x08\x33\x91" "\xff\x01\x00\x00\xa0\x34\x62\xee\xff\x78\x98\x89\xfc\x0f\x00\x00\x00\xa5" "\x11\x73\xff\x27\xc2\x4c\x2a\x92\xff\x57\xab\xff\x1f\x3b\x8b\xfa\xff\xfa" "\xff\xfa\xff\xfa\xff\x91\xf3\xff\x57\xa5\xff\xff\x6f\x1d\x2f\xd5\xff\xd7" "\xff\xef\x44\xff\x5f\xff\xbf\x9f\xd7\xaf\xff\xaf\xff\x4f\x77\x45\xeb\xff" "\xc7\xdc\xff\x60\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\x9f\x0c" "\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xff\xcd\x30\x13\xf9\x1f\x00\x00" "\x00\x4a\x23\xe6\xfe\xdf\x0a\x33\xe9\xcf\xfc\x3f\xb8\xd2\x2b\x38\xff\xbf" "\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xff\x5a\xd2\xff\x5f\xda\xff\xcf\x5f" "\xc3\x2e\x65\xff\x7f\xb4\x97\x0d\xf5\xff\x7b\xa2\xff\xaf\xff\xaf\xff\xaf" "\xff\x4f\x67\x45\xeb\xff\xc7\xdc\xff\xa9\x30\x93\xfe\xcc\xff\x00\x00\x00" "\x40\x1b\x31\xf7\xff\x76\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xef" "\x84\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x3f\x14\x66\x52\x91\xfc\xaf" "\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xbf\x66\xfd\xff\x2f\x8d\x67\xfa\xff" "\xfa\xff\xce\xff\xdf\x89\xfe\xbf\xfe\x7f\x3f\xaf\x5f\xff\x5f\xff\x9f\xee" "\x8a\xd6\xff\x8f\xb9\xff\xd3\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31" "\xf7\xff\x6e\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xfe\x30\x13\xf9" "\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x87\xc3\x4c\x2a\x92\xff\xf5\xff\xf5\xff" "\xf5\xff\xf5\xff\x57\xa7\xff\xbf\xa0\xff\xef\xfc\xff\x6d\xe9\xff\xeb\xff" "\x77\xa2\xff\xaf\xff\xdf\xcf\xeb\xd7\xff\xd7\xff\xa7\xbb\xa2\xf5\xff\x63" "\xee\x3f\x10\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\x67\xc2\x4c" "\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x0f\x86\x99\xc8\xff\x00\x00\x00\x50" "\x1a\x31\xf7\x1f\x0a\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x77" "\xfe\x7f\xfd\xff\xb5\xa4\xff\xaf\xff\xdf\x89\xfe\xbf\xfe\x7f\x3f\xaf\x5f" "\xff\x5f\xff\x9f\xee\x8a\xd6\xff\x8f\xb9\x7f\x26\xcc\xa4\xd7\xe0\x37\xdc" "\xe3\x76\x00\x00\x00\xc0\x25\x13\x73\xff\xe1\x30\x93\x8a\xfc\xfb\x3f\x00" "\x00\x00\x54\x41\xcc\xfd\x47\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb" "\x1f\x09\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff" "\x5f\x4b\xfa\xff\xfa\xff\x9d\xe8\xff\xeb\xff\xf7\xf3\xfa\x4b\xda\xff\xdf" "\x90\xe9\xff\xb3\x8a\x56\xaf\xff\xff\xcf\xab\xd2\xff\x8f\xb9\xff\x68\x98" "\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\x9f\x0d\x33\x91\xff\x01\x00" "\x00\xa0\x34\x62\xee\xff\x5c\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff" "\xb1\x30\x93\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\xff\x12\xf6\xff\x87\xf5\xff" "\x33\xfd\xff\xc2\xd0\xff\xd7\xff\xef\x44\xff\x5f\xff\xbf\x9f\xd7\x5f\xd2" "\xfe\xbf\xf3\xff\xb3\xaa\x56\xaf\xff\x9f\xad\x4a\xff\x3f\xe6\xfe\xe3\x61" "\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\x9f\x08\x33\x91\xff\x01\x00" "\x00\xa0\x34\x62\xee\x3f\x19\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x7f" "\x2a\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\xbf\x84\xfd\x7f\xe7\xff\xaf" "\xd1\xff\x2f\x06\xfd\x7f\xfd\xff\x4e\xf4\xff\xf5\xff\xfb\x79\xfd\xfa\xff" "\xfa\xff\x74\x57\xb4\xfe\x7f\xcc\xfd\xbf\x17\x66\x52\x91\xfc\x0f\x00\x00" "\x00\x55\x10\x73\xff\xe9\x30\x13\xf9\xff\xff\xd8\xbb\x8f\x25\xbd\xce\x6a" "\x8f\xc3\x9f\x8e\x25\xd9\x3a\xae\x53\x67\xc4\x9c\x5b\x60\xc6\x0c\xdf\x81" "\xaf\x81\x09\x53\x8a\x22\xe7\x1c\x0c\x98\x9c\x73\xce\x39\x47\x23\x72\xce" "\x19\x93\x73\xb2\x31\x19\x0c\x55\xa6\xec\x5e\x6b\xc9\xb2\xba\xbf\xdd\x12" "\x1d\xde\xfd\xae\xe7\x19\xb0\x68\xb9\x2d\x6d\xab\xab\xa4\xfa\x57\xd7\xaf" "\x36\x00\x00\x00\x4c\x23\x77\xff\xbd\xe3\x16\xfb\x1f\x00\x00\x00\xa6\x91" "\xbb\xff\x3e\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd" "\xff\x61\xd2\xff\xeb\xff\x6f\x75\x76\x8f\x5f\x46\xff\xbf\x9e\xfe\xff\xd4" "\x2e\xff\xbe\xfe\x5f\xff\xaf\xff\x67\xc9\x68\xfd\x7f\xee\xfe\xfb\xc6\x2d" "\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x7e\x71\x8b\xfd\x0f\x00\x00\x00" "\xd3\xc8\xdd\x7f\xff\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x40\xdc" "\xd2\x64\xff\xeb\xff\xf5\xff\xfa\xff\x61\xfa\xff\x9d\xce\x4f\xff\xaf\xff" "\xd7\xff\x5f\x94\x15\xf7\xff\x37\xfe\xef\x01\x3c\xff\x5a\xfa\xff\xbd\x4c" "\xd1\xff\x9f\x89\x0f\x26\xef\xff\x77\xa3\xff\xd7\xff\xeb\xff\x59\x32\x5a" "\xff\x9f\xbb\xff\x81\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x50" "\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x3f\x38\x6e\xb1\xff\x01\x00\x00" "\x60\x1a\xb9\xfb\x1f\x12\xb7\x34\xd9\xff\xfa\x7f\xfd\xff\xbc\xfd\xff\xe5" "\x6b\xeb\xff\xbd\xff\x3f\xbf\xae\x33\xf6\xff\x27\xce\xfd\xb2\xfa\xff\x83" "\xb5\xe2\xfe\xbf\xd5\xfb\xff\xf7\x32\x45\xff\xdf\xe4\xfd\xff\xbb\xd1\xff" "\xeb\xff\xf5\xff\x2c\x19\xad\xff\xcf\xdd\xff\xd0\xb8\xa5\xc9\xfe\x07\x00" "\x00\x80\x0e\x72\xf7\x3f\x2c\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x1f" "\x1e\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x8f\x88\x5b\x9a\xec\x7f\xfd" "\xbf\xfe\x7f\xde\xfe\x7f\x75\xef\xff\xd7\xff\xe7\xd7\x75\x8a\xfe\xff\x4c" "\xfd\x3c\xde\xff\xaf\xff\xd7\xff\xef\x4d\xff\xaf\xff\x5f\xf3\xf3\xeb\xff" "\xf5\xff\x2c\x1b\xad\xff\xcf\xdd\xff\xc8\xb8\xa5\xc9\xfe\x07\x00\x00\x80" "\x0e\x72\xf7\x3f\x2a\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x1f\x1d\xb7" "\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x8f\x89\x5b\x9a\xec\x7f\xfd\xbf\xfe" "\x5f\xff\xaf\xff\xd7\xff\x1f\xc1\xfb\xff\xf5\xff\xfa\x7f\xfd\xff\xae\xf4" "\xff\xfa\xff\x35\x3f\xbf\xfe\x5f\xff\xcf\xb2\xd1\xfa\xff\xdc\xfd\x8f\x8d" "\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xe3\xe2\x16\xfb\x1f\x00\x00" "\x00\xa6\x91\xbb\xff\xf1\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\x84" "\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff\x30\xe9" "\xff\xf5\xff\xdb\xe8\xff\xf5\xff\x6b\x7e\x7e\xfd\xbf\xfe\x9f\x65\x87\xde" "\xff\x5f\x7d\xcd\x6d\x77\xbf\xfd\x7f\xee\xfe\x6b\xe2\x96\x26\xfb\x1f\x00" "\x00\x00\x3a\xc8\xdd\xff\xc4\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f" "\x52\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x3f\x39\x6e\x69\xb2\xff\x77" "\xe9\xff\x2f\xdb\xe8\xff\x9b\xf6\xff\xb7\x9c\xd0\xff\xeb\xff\xc7\xec\xff" "\x6f\x8e\x3f\x65\xf4\xff\xfa\xff\x0b\xad\xbb\xff\xbf\x42\xff\xaf\xff\xbf" "\xed\x87\xc7\xeb\xff\xf7\xf7\x3b\xa1\xff\xd7\xff\xeb\xff\x59\x72\xe8\xfd" "\xff\x42\xef\x7f\xc7\x8f\x73\xf7\x5f\x1b\xb7\x34\xd9\xff\x00\x00\x00\xd0" "\x41\xee\xfe\xa7\xc4\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x53\xe3\x16" "\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x69\x71\x4b\x93\xfd\xef\xfd\xff\xfa" "\xff\x83\x7c\xff\x7f\xfe\xbc\xfa\xff\x1d\xfa\x7f\xef\xff\xd7\xff\xeb\xff" "\xbd\xff\x7f\xbb\x43\xec\xff\xef\x91\xbf\x99\xfa\xff\xbd\x1d\x77\x3f\xbf" "\xf6\xe7\xdf\xd6\xff\xdf\x6d\x1f\xcf\xaf\xff\xa7\x83\xd1\xfa\xff\xdc\xfd" "\x4f\x8f\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x33\xe2\x16\xfb\x1f" "\x00\x00\x00\xa6\x91\xbb\xff\x99\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd" "\xff\xac\xb8\xa5\xc1\xfe\x3f\xa9\xff\xaf\xe7\x48\xfa\x7f\xef\xff\xdf\x57" "\xff\x7f\x66\xe7\xdf\xd7\xff\x9f\xff\x3c\xfa\x7f\xfd\xff\x6e\xf4\xff\xfa" "\xff\x73\x4e\x5d\xf0\x23\xde\xff\xaf\xff\x5f\xf3\xf3\x7b\xff\xff\x72\xff" "\x7f\xe5\xd2\x4f\xc2\xf4\x46\xeb\xff\x73\xf7\x3f\x3b\x6e\x69\xb0\xff\x01" "\x00\x00\xa0\x8b\xdc\xfd\xcf\x89\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe" "\xe7\xc6\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\xf3\xe2\x96\x26\xfb\x7f" "\xb5\xfd\xff\xe9\x3d\x7e\x52\xfd\xbf\xfe\xdf\xfb\xff\x8f\xb6\xff\xbf\x4c" "\xff\xaf\xff\xdf\x4e\xff\xaf\xff\xdf\x46\xff\xaf\xff\x5f\xf3\xf3\xeb\xff" "\xbd\xff\x9f\x65\xa3\xf5\xff\xb9\xfb\x9f\x1f\xb7\xd4\xf0\x3b\x79\x09\xff" "\x95\x00\x00\x00\xc0\x48\x72\xf7\xbf\x20\x6e\x69\xf2\xfd\x7f\x00\x00\x00" "\xe8\x20\x77\xff\x0b\xe3\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x45\x71" "\x4b\x93\xfd\xbf\xda\xfe\x7f\x2f\xfa\x7f\xfd\xbf\xfe\xdf\xfb\xff\xe3\xc7" "\xf5\xff\x63\xd0\xff\x4f\xd7\xff\x9f\xd0\xff\x9f\xa3\xff\xd7\xff\xeb\xff" "\xf5\xff\x6c\x37\x5a\xff\x9f\xbb\xff\xc5\x71\x4b\x93\xfd\x0f\x00\x00\x00" "\x1d\xe4\xee\x7f\x49\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xbf\x34\x6e" "\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x5f\x16\xb7\x34\xd9\xff\x63\xf7\xff" "\xe7\xbe\x1e\xfa\x7f\xfd\xff\x6e\xcf\xaf\xff\xd7\xff\x6f\xf4\xff\xc3\xd3" "\xff\x4f\xd7\xff\x7b\xff\xff\xed\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\xdb\x8d" "\xd6\xff\xe7\xee\x7f\x79\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x5f" "\x11\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\xaf\x8c\x5b\xec\x7f\x00\x00" "\x00\x98\x46\xee\xfe\x57\xc5\x2d\x4d\xf6\xff\xd8\xfd\xff\xb9\x8f\xf5\xff" "\xfa\xff\xdd\x9e\x5f\xff\xaf\xff\xdf\xe8\xff\x87\x37\x7e\xff\x7f\x6a\x5f" "\x9f\xa5\xff\xdf\xa1\xff\x3f\xdf\x61\xf5\xff\x57\xec\xf1\xeb\xe9\xff\xc7" "\x7a\xfe\x83\xe9\xff\xf3\xab\xaf\xff\x67\x4e\x03\xf4\xff\x57\xdd\xfe\xe3" "\xdc\xfd\xaf\x8e\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x6b\xe2\x16" "\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\xb5\x71\x8b\xfd\x0f\x00\x00\x00\xd3" "\xc8\xdd\xff\xba\xb8\xa5\xc9\xfe\xdf\xab\xff\xbf\xe9\xca\x9d\x7f\xbe\xd0" "\xff\xe7\x6f\x98\xfe\x3f\xae\xfe\x5f\xff\xbf\xd1\xff\x17\xfd\xbf\xfe\x7f" "\xb3\x8a\xfe\x7f\x7f\xf4\xff\x3b\xf4\xff\xe7\xf3\xfe\x7f\xfd\xbf\xf7\xff" "\xeb\xff\xd9\x6e\x80\xfe\xff\xbc\x8f\x73\xf7\xbf\x3e\x6e\x69\xb2\xff\x01" "\x00\x00\xa0\x83\xdc\xfd\x6f\x88\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe" "\x37\xc6\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x9b\xe2\x96\x26\xfb\xdf" "\xfb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff\x88\xfb\xff\xb3\xfa\xff\x83\xa4" "\xff\xd7\xff\x6f\x8e\xa6\xff\xbf\x7c\xb7\x1f\xd4\xff\xeb\xff\xf5\xff\xfa" "\x7f\xb6\x1b\xad\xff\xcf\xdd\xff\xe6\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e" "\x72\xf7\xbf\x25\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\xdf\x1a\xb7\xd8" "\xff\x00\x00\x00\x30\x8d\xdc\xfd\x6f\x8b\x5b\x9a\xec\x7f\xfd\xbf\xfe\xff" "\xd8\xfb\xff\xff\xd1\xff\x27\xfd\x7f\x7c\x5d\x67\xef\xff\xbd\xff\xff\x40" "\xe9\xff\x67\xea\xff\x4f\x8e\xdc\xff\xef\x4a\xff\xaf\xff\xd7\xff\xeb\xff" "\xd9\x6e\xb4\xfe\x3f\x77\xff\xdb\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8" "\xdd\xff\x8e\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x67\xdc\x62\xff" "\x03\x00\x00\xc0\x34\x72\xf7\xbf\x2b\x6e\x69\xb2\xff\xf5\xff\xfa\xff\x63" "\xef\xff\xbd\xff\xbf\xe8\xff\xe3\xeb\xaa\xff\xd7\xff\x5f\x84\xec\xe7\x77" "\xfe\x16\xd3\xff\x2f\x19\xbb\xff\x1f\xfa\xfd\xff\xbb\xd2\xff\xeb\xff\xf5" "\xff\xfa\x7f\xb6\x1b\xad\xff\xcf\xdd\xff\xee\xb8\xa5\xc9\xfe\x07\x00\x00" "\x80\x0e\x72\xf7\xbf\x27\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\xdf\x1b" "\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\xef\x8b\x5b\x9a\xec\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x0f\x93\xf7\xff\xeb\xff\xb7\x39\xda" "\xfe\xff\xda\x9b\xf4\xff\xe7\x3b\xee\x7e\x7e\xed\xcf\xaf\xff\xd7\xff\xb3" "\x6c\xb4\xfe\x3f\x77\xff\xfb\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd" "\xff\x81\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x60\xdc\x62\xff\x03" "\x00\x00\xc0\x34\x72\xf7\x7f\x28\x6e\x69\xb2\xff\xf5\xff\x6b\xef\xff\xef" "\x7e\x43\x3c\xc1\x68\xfd\x7f\x7e\x8a\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff" "\xf5\xff\x7b\x1a\xf7\xfd\xff\x77\xfc\x93\x62\x77\xfa\x7f\xfd\xbf\xfe\x5f" "\xff\xcf\x76\x47\xd6\xff\xdf\xf3\xea\x7b\xdd\xf5\xd6\xff\xb3\xd0\xff\xe7" "\xee\xff\x70\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xaf\x8b\x5b\xec" "\x7f\x00\x00\x00\x98\x46\xee\xfe\x8f\xc4\x2d\xf6\x3f\x00\x00\x00\x4c\x23" "\x77\xff\xd9\xb8\xa5\xc9\xfe\xef\xd1\xff\x9f\xba\xe0\xd3\xe6\xe9\xff\xbd" "\xff\x5f\xff\x3f\x74\xff\x9f\x7f\xa8\xce\xd4\xff\x5f\xa6\xff\xbf\x38\xfa" "\x7f\xfd\xff\x36\xe3\xf6\xff\xfb\xa3\xff\xd7\xff\xeb\xff\xf5\xff\x6c\x37" "\xda\xfb\xff\x73\xf7\x7f\x34\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd" "\x1f\x8b\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x8f\xc7\x2d\xf6\x3f\x00" "\x00\x00\x4c\x23\x77\xff\x27\xe2\x96\x26\xfb\xbf\x47\xff\x7f\x21\xfd\xff" "\x8e\x03\xef\xff\x6f\xf9\x7f\xfd\xbf\xfe\xbf\x78\xff\xbf\xfe\x7f\xa3\xff" "\xd7\xff\x2f\xd0\xff\xeb\xff\xd7\xfc\xfc\x53\xf7\xff\x27\x36\xfa\x7f\x0e" "\xc4\x68\xfd\x7f\xee\xfe\x4f\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb" "\xff\x53\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xe9\xb8\xc5\xfe\x07" "\x00\x00\x80\x69\xe4\xee\xff\x4c\xdc\x70\x97\xff\x3b\xbe\x47\x3a\x52\xfa" "\x7f\xfd\xbf\xf7\xff\xeb\xff\x27\xeb\xff\xcf\xea\xff\xc7\xa2\xff\xbf\x84" "\xfe\xff\xc4\xc9\x7d\x3f\x97\xfe\x7f\x87\xfe\xff\xd2\x1c\x77\x3f\xbf\xf6" "\xe7\x9f\xba\xff\xf7\xfe\x7f\x0e\xc8\x68\xfd\x7f\xee\xfe\xcf\xc6\x2d\xbe" "\xff\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xb9\xb8\xc5\xfe\x07\x00\x00\x80\x69" "\xe4\xee\xff\x7c\xdc\x62\xff\x03\x00\x00\xc0\x04\x76\x7a\xf7\xdc\xfd\x5f" "\x88\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x9f\xac\xff\xf7\xfe\xff" "\xc1\xe8\xff\xbd\xff\x7f\x1b\xfd\xbf\xfe\x7f\xcd\xcf\xaf\xff\xd7\xff\xb3" "\x6c\xb4\xfe\x3f\x77\xff\x17\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd" "\xff\xa5\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x72\xdc\x62\xff\x03" "\x00\x00\xc0\x34\x72\xf7\x7f\x25\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\x3f\x4c\xfa\x7f\xfd\xff\x36\xfa\x7f\xfd\xff\x9a\x9f" "\x5f\xff\xaf\xff\x67\xd9\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\xeb" "\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff\xd8\xfb\xff\x53\x1b\xfd\xff\x25\xd3" "\xff\xeb\xff\x37\xfa\xff\x4b\x76\xdc\xfd\xfc\xda\x9f\x5f\xff\xaf\xff\x67" "\xd9\x68\xfd\x7f\xee\xfe\x6f\xc6\x2d\x57\x6d\xce\x5c\xea\x7f\x23\x00\x00" "\x00\x30\x96\xdc\xfd\xdf\x8a\x5b\x9a\x7c\xff\x1f\x00\x00\x00\x3a\xc8\xdd" "\xff\xed\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x4e\xdc\xd2\x64\xff" "\xcf\xdc\xff\x6f\xfb\x34\xfd\xff\x0e\xfd\xbf\xfe\x7f\xa3\xff\x1f\xa1\xff" "\xf7\xfe\xff\xff\x82\xfe\x5f\xff\xbf\xd1\xff\x5f\xb2\xe3\xee\xe7\xd7\xfe" "\xfc\xfa\x7f\xfd\x3f\xcb\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" "\xeb\x37\x9b\xeb\xec\x7f\x00\x00\x00\x98\xd3\xf5\xb7\xfd\xef\x15\x9b\xef" "\xc7\x2d\x4d\xf6\xff\xcc\xfd\xff\x36\xfa\xff\x1d\xfa\x7f\xfd\xff\x46\xff" "\xaf\xff\x3f\x64\xfa\x7f\xfd\xff\x36\xfa\x7f\xfd\xff\x9a\x9f\x5f\xff\xaf" "\xff\x67\xd9\x68\xfd\x7f\xee\xfe\x1f\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74" "\x90\xbb\xff\x87\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xa3\xb8\xc5" "\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x71\xdc\xd2\x64\xff\xeb\xff\x0f\xb0" "\xff\x3f\xbd\xd9\x6c\xf4\xff\xfa\x7f\xfd\x7f\xd1\xff\xeb\xff\x37\xfa\x7f" "\xfd\xff\x02\xfd\xbf\xfe\x7f\xcd\xcf\xaf\xff\xd7\xff\xb3\x6c\xb4\xfe\x3f" "\x77\xff\x4f\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xd3\xb8\xc5" "\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x59\xdc\x62\xff\x03\x00\x00\xc0\x34" "\x72\xf7\xff\x3c\x6e\x69\xb2\xff\xf5\xff\xde\xff\xaf\xff\xd7\xff\xeb\xff" "\xf5\xff\x87\x49\xff\xaf\xff\xdf\x46\xff\xaf\xff\x5f\xf3\xf3\xeb\xff\xf5" "\xff\x2c\x1b\xad\xff\xcf\xdd\xff\x8b\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e" "\x72\xf7\xff\x32\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x7f\x15\xb7\xd8" "\xff\x00\x00\x00\x30\x8d\xdc\xfd\xbf\x8e\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f" "\xff\xaf\xff\xd7\xff\xeb\xff\x0f\x53\xdb\xfe\xff\xd6\xbf\x56\xf5\xff\x8b" "\xf4\xff\xfa\xff\x35\x3f\xbf\xfe\x5f\xff\xcf\xb2\xd1\xfa\xff\xdc\xfd\xbf" "\x89\x5b\x9a\xec\x7f\x00\x00\x00\x58\xa9\x53\x17\xf3\xc9\xb9\xfb\x7f\x1b" "\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\xbf\x8b\x5b\xec\x7f\x00\x00\x00" "\x98\x46\xee\xfe\xdf\xc7\x2d\x4d\xf6\xbf\xfe\x5f\xff\x7f\xa0\xfd\xff\x49" "\xfd\xff\x46\xff\x5f\x0e\xb6\xff\x3f\xad\xff\xd7\xff\xef\x6a\xd8\xfe\xdf" "\xfb\xff\xf7\x45\xff\xaf\xff\x5f\xf3\xf3\xeb\xff\xf5\xff\x2c\x1b\xad\xff" "\xcf\xdd\x7f\x43\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x6f\x8c\x5b" "\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x3f\xc4\x2d\xf6\x3f\x00\x00\x00\x4c" "\x23\x77\xff\x4d\x71\x4b\x93\xfd\xaf\xff\xd7\xff\x4f\xf9\xfe\xff\xcb\xf5" "\xff\xf3\xf5\xff\xde\xff\xbf\xca\xfe\xff\xce\xfa\x7f\xfd\xff\x76\xfa\x7f" "\xfd\xff\x9a\x9f\x5f\xff\xaf\xff\x67\xd9\x68\xfd\x7f\xee\xfe\x3f\xc6\x2d" "\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x4f\x71\x8b\xfd\x0f\x00\x00\x00" "\xd3\xc8\xdd\xff\xe7\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x4b\xdc" "\xd2\x64\xff\xeb\xff\xf5\xff\x53\xf6\xff\xde\xff\xaf\xff\xd7\xff\x0f\x43" "\xff\xaf\xff\xdf\x46\xff\xaf\xff\x5f\xf3\xf3\xeb\xff\xf5\xff\x2c\x1b\xad" "\xff\xcf\xdd\xff\xd7\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xff\x2d" "\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\xff\x1e\xb7\xd8\xff\x00\x00\x00" "\x30\x8d\xdc\xfd\xff\x88\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7" "\xff\xeb\xff\x0f\x93\xfe\x7f\xbd\xfd\xff\xe9\x8d\xfe\x7f\x89\xfe\x5f\xff" "\xaf\xff\xd7\xff\xb3\xdd\x68\xfd\x7f\xee\xfe\x7f\xc6\x2d\x4d\xf6\x3f\x00" "\x00\x00\x74\x90\xbb\xff\xe6\xb8\x65\xd7\xfd\x7f\xa7\x23\x7a\x2a\x00\x00" "\x00\xe0\x20\xe5\xee\xff\x57\xdc\xe2\xfb\xff\x00\x00\x00\x30\x8d\xdc\xfd" "\xff\x8e\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x0f" "\x93\xfe\x7f\xbd\xfd\xbf\xf7\xff\x2f\xd3\xff\xeb\xff\xf5\xff\x17\xd5\xff" "\xdf\xf1\xaf\x60\x1a\x18\xad\xff\xcf\xdd\xff\x9f\x00\x00\x00\xff\xff\xd8" "\x3d\x08\x54", 24753); syz_mount_image(/*fs=*/0x200000000200, /*dir=*/0x200000000080, /*flags=MS_REC|MS_SYNCHRONOUS|MS_STRICTATIME*/ 0x1004010, /*opts=*/0x200000000180, /*chdir=*/0xfc, /*size=*/0x60b1, /*img=*/0x200000000380); // openat$dir arguments: [ // fd: const = 0xffffffffffffff9c (8 bytes) // file: ptr[in, buffer] { // buffer: {2e 00} (length 0x2) // } // flags: open_flags = 0x0 (4 bytes) // mode: open_mode = 0x82 (2 bytes) // ] // returns fd_dir memcpy((void*)0x200000000000, ".\000", 2); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x200000000000ul, /*flags=*/0, /*mode=S_IWOTH|S_IWUSR*/ 0x82); if (res != -1) r[0] = res; // ioctl$FITRIM arguments: [ // fd: fd (resource) // cmd: const = 0xc0185879 (4 bytes) // arg: ptr[in, fstrim_range] { // fstrim_range { // start: int64 = 0x8 (8 bytes) // len: int64 = 0x40000cca8 (8 bytes) // minlen: int64 = 0x4010 (8 bytes) // } // } // ] *(uint64_t*)0x200000000040 = 8; *(uint64_t*)0x200000000048 = 0x40000cca8; *(uint64_t*)0x200000000050 = 0x4010; syscall(__NR_ioctl, /*fd=*/r[0], /*cmd=*/0xc0185879, /*arg=*/0x200000000040ul); return 0; }