// https://syzkaller.appspot.com/bug?id=72c3bc5f2f82c4e4178115292d79995e93d9e54c // 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_getdents64 #define __NR_getdents64 61 #endif #ifndef __NR_lseek #define __NR_lseek 62 #endif #ifndef __NR_memfd_create #define __NR_memfd_create 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif #ifndef __NR_open_tree #define __NR_open_tree 428 #endif #ifndef __NR_openat #define __NR_openat 56 #endif #ifndef __NR_symlinkat #define __NR_symlinkat 36 #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"); } 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[2] = {0xffffffffffffffff, 0xffffffffffffffff}; int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); const char* reason; (void)reason; intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x20000400, "jfs\000", 4); memcpy((void*)0x200000c0, "./file0\000", 8); memcpy( (void*)0x200085c0, "\x78\x9c\xec\xdd\x4f\x6f\x1c\x67\x1d\x07\xf0\xdf\xfe\xf1\xfa\x4f\x69\x1a" "\x55\xa8\x0a\x11\x87\x34\x85\xd2\x52\x9a\xff\x09\x94\x7f\x4d\x39\x70\x80" "\x03\x48\x28\x67\x12\xb9\x6e\x15\x48\x01\x25\x01\xd1\x2a\x22\xae\x72\x40" "\x5c\x80\x97\x00\x97\x5e\x38\xf4\x8d\xf4\x35\x20\x5e\x00\x91\x6c\x4e\x3d" "\x50\x06\x8d\xfd\x3c\xc9\x78\xbc\xce\x3a\x4d\xbc\xb3\xeb\xe7\xf3\x91\x9c" "\x99\xdf\x3c\x3b\xde\x67\xf2\xf5\x78\x76\x3d\x33\xfb\x04\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x3f\xfa\xe1\xcf\xce\xf6\x22\xe2" "\xea\xef\xd2\x82\xa3\x11\x5f\x88\x41\x44\x3f\x62\xb9\xae\x4f\x44\x3d\x73" "\x39\x3f\x7e\x18\x11\xc7\x62\xab\x39\x5e\x88\x88\xc1\x62\x44\xbd\xfe\xd6" "\x3f\xcf\x45\x5c\x88\x88\x4f\x8e\x44\x6c\x6c\xde\x59\xad\x17\x9f\xdb\x67" "\x3f\x2e\x9e\xb9\x7d\xf3\xb3\x1f\xff\xe0\x9f\x7f\xfc\xcb\xbd\x63\xbf\x78" "\xfb\xe7\x1f\xb5\xdb\x7f\xfa\xc5\xf3\x1f\xff\xe9\x6e\xc4\xd1\x9f\xbc\xf1" "\xf1\x67\x77\x9f\xce\xb6\x03\x00\x00\x40\x29\xaa\xaa\xaa\x7a\xe9\x6d\xfe" "\xf1\xf4\xfe\xbe\xdf\x75\xa7\x00\x80\xa9\xc8\xc7\xff\x2a\xc9\xcb\xd5\x6a" "\xb5\x5a\xfd\x54\xeb\x3f\xf7\x67\xab\x3f\xea\x42\xeb\xa6\x6a\xbc\xbb\xcd" "\x22\x22\xd6\x9b\xeb\xd4\xaf\x19\x9c\x8e\x07\x80\x39\xb3\x1e\x9f\x76\xdd" "\x05\x3a\x24\xff\xa2\x0d\x23\xe2\x99\xae\x3b\x01\xcc\xb4\x5e\xd7\x1d\xe0" "\x40\x6c\x6c\xde\x59\xed\xa5\x7c\x7b\xcd\xe3\xc1\x89\xed\xf6\xfc\x77\xca" "\x1d\xf9\xaf\xf7\x1e\xdc\xdf\xb1\xd7\x74\x92\xf6\x35\x26\xd3\xfa\xf9\xba" "\x17\x83\x78\x7e\x8f\xfe\x2c\x4f\xa9\x0f\xb3\x24\xe7\xdf\x6f\xe7\x7f\x75" "\xbb\x7d\x94\x1e\x77\xd0\xf9\x4f\xcb\x5e\xf9\x8f\xb6\x6f\x7d\x2a\x4e\xce" "\x7f\xd0\xce\xbf\x65\x47\xfe\x7f\x8d\x88\xb9\xcd\xbf\x3f\x36\xff\x52\xe5" "\xfc\x87\x8f\x93\xff\xfa\x60\x8e\xf7\x7f\xf9\x03\x00\x00\x00\x00\x70\xf8" "\xe5\xbf\xff\x1f\xed\xf8\xfc\xef\xe2\x93\x6f\xca\xbe\x3c\xea\xfc\xef\x89" "\x29\xf5\x01\x00\x00\x00\x00\x00\x00\x00\x9e\xb6\x27\x1d\xff\xef\x01\xe3" "\xff\x01\x00\x00\xc0\xcc\xaa\xdf\xab\xd7\xfe\x76\xe4\xe1\xb2\xbd\x3e\x8b" "\xad\x5e\x7e\xa5\x17\xf1\x6c\xeb\xf1\x40\x61\xd2\xcd\x32\x2b\x5d\xf7\x03" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4a\x32\xdc\xbe\x86\xf7\x4a\x2f" "\x62\x21\x22\x9e\x5d\x59\xa9\xaa\xaa\xfe\x6a\x6a\xd7\x8f\xeb\x49\xd7\x9f" "\x77\xa5\x6f\x3f\x94\xac\xeb\x5f\xf2\x00\x00\xb0\xed\x93\x23\xad\x7b\xf9" "\x7b\x11\x4b\x11\x71\x25\x7d\xd6\xdf\xc2\xca\xca\x4a\x55\x2d\x2d\xaf\x54" "\x2b\xd5\xf2\x62\x7e\x3d\x3b\x5a\x5c\xaa\x96\x1b\xef\x6b\xf3\xb4\x5e\xb6" "\x38\xda\xc7\x0b\xe2\xe1\xa8\xaa\xbf\xd9\x52\x63\xbd\xa6\x49\xef\x97\x27" "\xb5\xb7\xbf\x5f\xfd\x5c\xa3\x6a\xb0\x8f\x8e\x4d\x47\x87\x81\x03\x40\x44" "\x6c\x1f\x8d\x36\x1c\x91\x0e\x99\xaa\x7a\x2e\xba\x7e\x95\xc3\x7c\xb0\xff" "\x1f\x3e\xf6\x7f\xf6\xa3\xeb\x9f\x53\x00\x00\x00\xe0\xe0\x55\x55\x55\xf5" "\xd2\xc7\x79\x1f\x4f\xe7\xfc\xfb\x5d\x77\x0a\x00\x98\x86\xa5\x7c\xfc\x6f" "\x9f\x17\x50\xab\xd5\x6a\xb5\x5a\x7d\xf8\xea\xa6\x6a\xbc\xbb\xcd\x22\x22" "\xd6\x9b\xeb\xd4\xaf\x19\x0c\xc7\x0f\x00\x73\x66\x3d\x3e\xed\xba\x0b\x74" "\x48\xfe\x45\x1b\x46\xc4\xb1\xae\x3b\x01\xcc\xb4\x5e\xd7\x1d\xe0\x40\x6c" "\x6c\xde\x59\xed\xa5\x7c\x7b\xcd\xe3\x41\x1a\xdf\x3d\x5f\x0b\xb2\x23\xff" "\xf5\xde\xd6\x7a\x79\xfd\x71\xd3\x49\xda\xd7\x98\x4c\xeb\xe7\xeb\x5e\x0c" "\xe2\xf9\x3d\xfa\xf3\xc2\x94\xfa\x30\x4b\x72\xfe\xfd\x76\xfe\x57\xb7\xdb" "\x47\xe9\x71\x07\x9d\xff\xb4\xec\x95\x7f\xbd\x9d\x47\x3b\xe8\x4f\xd7\x72" "\xfe\x83\x76\xfe\x2d\x87\x27\xff\xfe\xd8\xfc\x4b\x95\xf3\x1f\x3e\x56\xfe" "\x03\xf9\x03\x00\x00\x00\x00\xc0\x0c\xcb\x7f\xff\x3f\xea\xfc\x6f\xde\x64" "\x00\x00\x00\x00\x00\x00\x00\x98\x3b\x1b\x9b\x77\x56\xf3\x7d\xaf\xf9\xfc" "\xff\x97\xc7\x3c\xae\xd7\x9c\x73\xff\xe7\xa1\x91\xf3\xef\xed\x3b\x7f\xf7" "\xff\x1e\x26\x39\xff\x7e\x3b\xff\xd6\x05\x39\x83\xc6\xfc\xfd\xb7\x1e\xe6" "\xff\x9f\xcd\x3b\xab\x1f\xdd\xfe\xf7\x97\xf2\x74\xe6\xf3\x5f\x18\x8c\xea" "\xe7\x5e\xe8\xf5\x07\xc3\x74\xcd\x4f\xb5\xf0\x4e\x5c\x8f\x1b\xb1\x16\x67" "\x76\x3d\x7e\xb8\xa3\xfd\xec\xae\xf6\x85\x1d\xed\xe7\x26\xb4\x9f\xdf\xd5" "\x3e\xaa\xdb\x97\x73\xfb\xa9\x58\x8d\x5f\xc7\x8d\x78\xfb\x41\xfb\xe2\x84" "\x0b\xa3\x96\x26\xb4\x57\x13\xda\x73\xfe\x03\xfb\x7f\x91\x72\xfe\xc3\xc6" "\x57\x9d\xff\x4a\x6a\xef\xb5\xa6\xb5\xfb\x1f\xf6\x77\xed\xf7\xcd\xe9\xb8" "\xe7\xb9\xfc\x8f\xff\xbe\xbc\x7b\xef\x9a\xbe\x7b\x31\x78\xb0\x6d\x4d\xf5" "\xf6\x9d\xec\xa0\x3f\x5b\xff\x27\xcf\x8c\xe2\xb7\xb7\xd6\x6e\x9e\xfa\xfd" "\xb5\xdb\xb7\x6f\x9e\x8d\x34\xd9\xb1\xf4\x5c\xa4\xc9\x53\x96\xf3\x5f\x48" "\x5f\x39\xff\x57\x5e\xda\x6e\xcf\xbf\xf7\x9b\xfb\xeb\xfd\x0f\x47\x8f\x9d" "\xff\xac\xb8\x17\xc3\x3d\xf3\x7f\xa9\x31\x5f\x6f\xef\xab\x53\xee\x5b\x17" "\x72\xfe\xa3\xf4\x95\xf3\xcf\x47\xa0\xf1\xfb\xff\x3c\xe7\xbf\xf7\xfe\xff" "\x5a\x07\xfd\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x47\xa9" "\xaa\x6a\xeb\x16\xd1\xcb\x11\x71\x29\xdd\xff\xd3\xd5\xbd\x99\x00\xc0\x74" "\xe5\xe3\x7f\x95\xe4\xe5\x6a\xb5\x5a\xad\x56\xab\x0f\x5f\xdd\x54\x8d\xf7" "\x66\xb3\x88\xa5\x9d\xeb\xd4\xaf\x19\xfe\x30\xee\x9b\x01\x00\xb3\xec\x7f" "\x11\xf1\xaf\xae\x3b\x41\x67\xe4\x5f\xb0\xfc\x79\x7f\xf5\xf4\x2b\x5d\x77" "\x06\x98\xaa\x5b\xef\x7f\xf0\xcb\x6b\x37\x6e\xac\xdd\xbc\xd5\x75\x4f\x00" "\x00\x00\x00\x00\x00\x00\x80\xcf\x2b\x8f\xff\x79\xa2\x31\xfe\xf3\xd6\x75" "\x40\xad\x71\xa3\x77\x8c\xff\xfa\x56\x9c\x98\xdb\xf1\x3f\xfb\xa3\xc1\xd6" "\x58\xe7\x69\x83\x5e\x8c\x47\x8f\xff\x7d\x32\x1e\x3d\xfe\xf7\x70\xc2\xf3" "\x2d\x4c\x68\x1f\x4d\x68\x5f\x9c\xd0\xbe\x34\xa1\x7d\xec\x8d\x1e\x0d\x39" "\xff\x17\x53\xc6\x39\xff\xe3\x69\xc3\x4a\x1a\xff\xf5\x95\x0e\xfa\xd3\xb5" "\x9c\xff\xc9\x34\xd6\x73\xce\xff\x6b\xad\xc7\x35\xf3\xaf\xfe\x3e\xcf\xf9" "\xf7\x77\xe4\x7f\xfa\xf6\x7b\xbf\x39\x7d\xeb\xfd\x0f\x5e\xbf\xfe\xde\xb5" "\x77\xd7\xde\x5d\xfb\xd5\xd9\x33\x97\x2e\x9c\xbf\x78\xe1\xfc\xc5\x8b\xa7" "\xdf\xb9\x7e\x63\xed\xcc\xf6\xbf\x1d\xf6\xf8\x60\xe5\xfc\xf3\xd8\xd7\xae" "\x03\x2d\x4b\xce\x3f\x67\x2e\xff\xb2\xe4\xfc\xbf\x9a\x6a\xf9\x97\x25\xe7" "\xff\x72\xaa\xe5\x5f\x96\x9c\x7f\x7e\xbd\x27\xff\xb2\xe4\xfc\xf3\x7b\x1f" "\xf9\x97\x25\xe7\xff\x6a\xaa\xe5\x5f\x96\x9c\xff\xd7\x53\x2d\xff\xb2\xe4" "\xfc\x5f\x4b\xb5\xfc\xcb\x92\xf3\xff\x46\xaa\xe5\x5f\x96\x9c\xff\xeb\xa9" "\x96\x7f\x59\x72\xfe\xa7\x52\x2d\xff\xb2\xe4\xfc\x4f\xa7\x5a\xfe\x65\xc9" "\xf9\xe7\x33\x5c\xf2\x2f\x4b\xce\x3f\x5f\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\x46\xaa\xe5\x5f\x96" "\x9c\xff\xb7\x53\x2d\xff\xb2\xe4\xfc\xbf\x93\x6a\xf9\x97\x25\xe7\xff\xdd" "\x54\xcb\xbf\x2c\x39\xff\xef\xa5\x5a\xfe\x65\xc9\xf9\x7f\x3f\xd5\xf2\x2f" "\x4b\xce\xff\xcd\x54\xcb\xbf\x2c\x0f\x3f\xff\xdf\x8c\x19\x33\x66\xf2\x4c" "\xd7\xbf\x99\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xb6\x69\x5c\x4e" "\xdc\xf5\x36\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x7f\x76\xe0\x40\x00\x00\x00\x00\x00" "\xc8\xff\xb5\x11\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xb0\x03\x07\x02" "\x00\x00\x00\x00\x40\xfe\xaf\x8d\x50\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x85\xbd\xbb\x8b\x91\xab\xbc\xcf\x00\x7e\xf6\xcb\x5e\x1b\x12\xdc\x40\x08" "\x21\x4e\xb0\x8d\x21\x06\x16\x76\xd7\x5f\xe0\x10\x83\x49\x42\x4a\x49\x9b" "\x52\x12\xd2\xa6\x25\x35\x8e\xbd\x36\x4e\xfc\x55\xef\x9a\x00\x42\x65\x29" "\xb4\x25\x0a\x52\x91\xda\x0b\x7a\xd1\x34\x89\xd2\x28\x52\x5b\x81\xa2\x48" "\x4d\x25\x1a\x21\x35\x52\x7b\x57\xae\x12\x71\x13\xb5\x12\x17\x96\x0a\x95" "\x83\x92\x4a\xa9\x02\x5b\x9d\x39\xef\xfb\x7a\x66\x76\x76\xce\xfa\x63\xec" "\x99\x73\x7e\x3f\x84\xff\xde\x99\x33\x33\xef\x9c\x39\x33\xbb\xcf\x5a\xcf" "\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xd0\x6c\xfd\xc7\x67\xfe\x7c\x28\xcb\xb2\xfc\xff\xc6\x1f\x6b\xb2\xec" "\xd2\xfc\xef\xab\xb2\x5d\xf9\x97\xf3\xdb\x2f\xf6\x0a\x01\x00\x00\x80\x73" "\xf5\x76\xe3\xcf\x7f\xb8\x2c\x9d\xb0\x6b\x19\x17\x6a\xda\xe6\xdf\x3e\xf4" "\x1f\xdf\x5f\x58\x58\x58\xc8\xbe\xf8\xd6\xc9\x77\xfe\x72\x61\x21\x9d\xb1" "\x2e\xcb\x46\x56\x66\x59\xe3\xbc\xe8\xdf\x7f\xf9\x8b\x85\xe6\x6d\x82\xa7" "\xb3\xf1\xa1\xe1\xa6\xaf\x87\x4b\x6e\x7e\xa4\xe4\xfc\xd1\x92\xf3\xc7\x4a" "\xce\x5f\x51\x72\xfe\xca\x92\xf3\xc7\x4b\xce\x5f\xb4\x03\x16\x59\x55\xfc" "\x3e\xa6\x71\x65\x1b\x1b\x7f\x5d\x53\xec\xd2\xec\x8a\x6c\xac\x71\xde\xc6" "\x0e\x97\x7a\x7a\x68\xe5\xf0\x70\xfc\x5d\x4e\xc3\x50\xe3\x32\x0b\x63\xfb" "\xb3\x83\xd9\xa1\x6c\x26\x9b\x5a\x74\x99\xa1\xc6\x7f\x59\xf6\xf2\xfa\xfc" "\xb6\xee\xc9\xe2\x6d\x0d\x37\xdd\xd6\xda\x2c\xcb\x4e\xfd\xec\x89\xbd\x71" "\x0d\x43\x61\x1f\x6f\xcc\x5a\x6e\xac\xa1\xf9\xb1\x7b\xf3\xae\x6c\xdd\x5b" "\x3f\x7b\x62\xef\x77\xe6\xde\x78\x7f\xa7\x59\xba\x1b\x16\xad\x34\xcb\x36" "\x6d\xc8\xd7\xf9\x4c\x96\x9d\xfe\x75\x55\x36\x94\xad\x4c\xfb\x24\xae\x73" "\xb8\x69\x9d\x6b\x3b\xac\x73\xa4\x65\x9d\x43\x8d\xcb\xe5\x7f\x6f\x5f\xe7" "\xa9\x65\xae\x33\xde\xef\xf1\xb0\xce\x57\xbb\xac\x73\x6d\x38\xed\xd1\x6b" "\xb3\x2c\x9b\xcf\x96\xdc\xa6\xdd\xd3\xd9\x70\xb6\xba\xed\x56\xd3\xfe\x1e" "\x2f\x8e\x88\xfc\x3a\xf2\x87\xf2\x3d\xd9\xe8\x19\x1d\x27\xeb\x97\x71\x9c" "\xe4\x97\x79\xfd\xda\xd6\xe3\xa4\xfd\x98\x8c\xfb\x7f\x7d\xd8\x27\xa3\x4b" "\xac\xa1\xf9\xe1\x78\xf3\xa9\x15\x8b\xf6\xfb\xd9\x1e\x27\xf9\xbd\xee\x87" "\x63\x35\xbf\xee\xfb\xf2\x1b\x1d\x1f\x6f\xfe\xd5\x6a\xcb\xb1\x9a\x6f\xf3" "\xc4\x75\x4b\x1f\x03\x1d\x1f\xbb\x0e\xc7\x40\x3a\x96\x9b\x8e\x81\x0d\x65" "\xc7\xc0\xf0\x8a\x91\xc6\x31\x30\x7c\x7a\xcd\x1b\x5a\x8e\x81\xe9\x45\x97" "\x19\xce\x86\x1a\xb7\x75\xf2\xba\xee\xc7\xc0\xe4\xdc\xe1\x63\x93\xb3\x8f" "\x3d\x7e\xf3\xc1\xc3\x7b\x0e\xcc\x1c\x98\x39\x32\x3d\xb5\x7d\xeb\x96\x6d" "\x5b\xb7\x6c\xdb\x36\xb9\xff\xe0\xa1\x99\xa9\xe2\xcf\x33\xdb\xa5\x03\x64" "\x75\x36\x9c\x8e\xc1\x0d\xe1\xb5\x26\x1e\x83\x1f\x6e\xdb\xb6\xf9\x90\x5c" "\xf8\xe6\xf9\x7b\x1e\x8c\xf7\xc9\xf3\x20\xbf\xef\x9f\xbd\x3e\x5f\xd0\xa5" "\xc3\xd9\x12\xc7\x78\xbe\xcd\x33\x9b\xce\xfd\x79\x90\xbe\xef\x37\x3d\x0f" "\x46\x9b\x9e\x07\x1d\x5f\x53\x3b\x3c\x0f\x46\x97\xf1\x3c\xc8\xb7\x39\xb5" "\x69\x79\xdf\x33\x47\x9b\xfe\xef\xb4\x86\x5e\xbd\x16\xae\x69\x3a\x06\x2e" "\xe6\xf7\xc3\xfc\x36\x1f\xbc\x61\xe9\xd7\xc2\xb5\x61\x5d\xcf\xde\x78\xa6" "\xdf\x0f\x47\x16\x1d\x03\xf1\x6e\x0d\x85\xe7\x5e\x7e\x4a\xfa\x79\x6f\xfc" "\xb6\xb0\x5f\x16\x1f\x17\x57\xe7\x67\x5c\xb2\x22\x3b\x31\x3b\x73\xfc\x96" "\x47\xf7\xcc\xcd\x1d\x9f\xce\xc2\xb8\x20\x2e\x6f\x7a\xac\xda\x8f\x97\xd5" "\x4d\xf7\x29\x5b\x74\xbc\x0c\x9f\xf1\xf1\xb2\xeb\xef\x7f\x75\xfd\xd5\x1d" "\x4e\x5f\x13\xf6\xd5\xf8\x4d\xdd\x1f\xab\x7c\x9b\xad\x13\xdd\x1f\xab\xc6" "\xab\x7b\xeb\xfe\x5c\x91\x15\xfb\xb3\xe5\xd4\xcd\x59\x18\xe7\xd9\x85\xde" "\x9f\x9d\xbe\x9b\xe5\xfb\x33\x65\x89\x2e\xfb\x33\xdf\xe6\x99\x9b\xcf\xfd" "\x67\xc1\x94\x4b\x9a\x5e\xff\xc6\xca\x5e\xff\x46\xc6\x46\x8b\xd7\xbf\x91" "\xb4\x37\xc6\x5a\x5e\xff\x16\x3f\x34\x23\x8d\x95\x65\xd9\xa9\x9b\x97\xf7" "\xfa\x37\x16\xfe\xbf\xd0\xaf\x7f\x57\xf4\xc9\xeb\x5f\xbe\xaf\x1e\xbc\xa5" "\xfb\x31\x90\x6f\xf3\xec\xe4\x99\x1e\x03\xa3\x5d\x5f\xff\xae\x0d\x73\x28" "\xac\xe7\x86\x90\x18\xc6\x9b\x72\xff\x3b\x8d\xf3\xe7\x8b\xc3\xb4\xe9\xb1" "\x2c\x3d\x6e\x46\x47\xc7\xc2\x71\x33\x1a\x6f\xb1\xf5\xb8\xd9\xb2\xe8\x32" "\xf9\xb5\xe5\xb7\xbd\x69\xea\xec\x8e\x9b\x4d\xd7\xb6\x3e\x56\x2d\x3f\xb7" "\x54\xf0\xb8\xc9\xf7\xd5\x5f\x4d\x75\x3f\x6e\xf2\x6d\x5e\x99\x3e\xf7\xd7" "\x8e\x55\xf1\xaf\x4d\xaf\x1d\x2b\xca\x8e\x81\xb1\x91\x15\xf9\x7a\xc7\xd2" "\x41\x50\xbc\xde\x2d\xac\x8a\xc7\xc0\x2d\xd9\xde\xec\x68\x76\x28\xdb\x97" "\x2e\x93\x3f\xca\xf9\x6d\x4d\x6c\x5e\xde\x31\xb0\x22\xfc\x7f\xa1\x5f\x3b" "\xae\xea\x93\x63\x20\xdf\x57\x2f\x6c\xee\x7e\x0c\xe4\xdb\xfc\x68\xcb\xf9" "\xfd\xd9\x69\x53\x38\x25\x6d\xd3\xf4\xb3\x53\xfb\xef\x17\x96\xca\xfc\x57" "\x8f\x9e\xbe\xbe\xf6\xdd\x76\xbe\x33\x7f\xbe\xce\x4f\xfc\xf8\xd3\xe9\xb4" "\x4e\x19\x22\xdf\xe6\x8d\xad\x67\x9a\x33\xba\xef\xa7\x9b\xc2\x29\x97\x74" "\xd8\x4f\xed\xcf\x9f\xa5\x8e\xe9\x7d\xd9\x85\xd9\x4f\x57\x85\x75\x1e\xda" "\xd6\xfd\x77\x53\xf9\x36\x57\x6c\x5f\xe6\xf1\xb4\x2b\xcb\xb2\xd7\xa6\x5f" "\x6b\xfc\xbe\x2b\xfc\x7e\xf7\x7b\x27\x7e\xfc\xfd\x96\xdf\xfb\x76\xfa\x9d" "\xf2\x6b\xd3\xaf\xdd\x3b\x79\xff\x4f\xce\x64\xfd\x00\x00\x9c\xbd\x77\x1a" "\x7f\xce\xaf\x28\x7e\xd6\x6c\xfa\x17\xeb\xe5\xfc\xfb\x3f\x00\x00\x00\x30" "\x10\x62\xee\x1f\x0e\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x1f\x09\x33" "\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x1f\x0d\x33\xa9\x49\xfe\x7f\xf8\xb6" "\x1d\x2f\xbe\xfd\x64\x96\xde\x0d\x70\x21\x88\xe7\xc7\xdd\x70\xdf\x1d\xc5" "\x76\xb1\xe3\x3d\x1f\xbe\x5e\xb7\x70\x5a\x7e\xfa\xc7\xbe\x3d\xf6\xe2\x57" "\x9f\x5c\xde\x6d\x0f\x67\x59\xf6\xab\x7b\x3f\xd0\x71\xfb\x87\xef\x88\xeb" "\x2a\x1c\x8b\xeb\xfc\x48\xeb\xe9\x8b\x5c\x75\xcd\xb2\x6e\xff\xa1\x07\x4e" "\x6f\xd7\xfc\xfe\x09\xa7\x76\x14\xd7\x1f\xef\xcf\x72\x0f\x83\xd8\x55\x7e" "\x79\x72\x73\xe3\x7a\xd7\x3d\x36\xdd\x98\xaf\xdc\x9b\x35\xe6\xfd\xf3\xcf" "\x3e\x5d\x5c\x7f\xf1\x75\xdc\xfe\xe4\x96\x62\xfb\xbf\x09\x6f\x5a\xb2\x6b" "\xff\x50\xcb\xe5\x37\x85\xf5\x6c\x0c\x73\x5d\x78\x4f\x99\xfb\x76\x9d\xde" "\x0f\xf9\x8c\x97\x7b\x71\xed\x87\xfe\xf5\xf2\xcf\x9d\xbe\xbd\x78\xb9\xa1" "\x0d\xef\x6e\xdc\xcd\x17\xfe\xb8\xb8\xde\xf8\x1e\x51\xcf\x5f\x5e\x6c\x1f" "\xef\xf7\x52\xeb\xff\x97\xaf\x7d\xf7\xc5\x7c\xfb\x47\xaf\xeb\xbc\xfe\x27" "\x87\x3b\xaf\xff\x64\xb8\xde\xd7\xc3\xfc\xe5\xce\x62\xfb\xe6\x7d\xfe\xd5" "\xa6\xf5\xff\x69\x58\x7f\xbc\xbd\x78\xb9\x5b\xbe\xf5\xc3\x8e\xeb\x7f\xe9" "\x7d\xc5\xf6\x2f\x85\xe3\xe2\x1b\x61\xb6\xaf\xff\xae\xbf\xf8\xe0\xdb\x9d" "\x1e\xaf\x78\x3b\xbb\x6e\x2f\x2e\x17\x6f\x7f\xea\x7f\xb7\x36\x2e\x17\xaf" "\x2f\x5e\x7f\xfb\xfa\xc7\x9f\x9c\x6e\xd9\x1f\xed\xd7\xff\xca\x5b\xc5\xf5" "\xec\x7c\xe4\xe7\x23\xcd\xdb\xc7\xd3\xe3\xed\x44\x0f\xdd\xde\x7a\x7c\x0f" "\x85\xc7\xb7\xa5\x47\x9e\x65\xd9\x77\xff\x2c\x6b\xd9\xcf\xd9\x47\x8b\xcb" "\xfd\x73\xdb\xfa\xe3\xf5\x1d\xbb\xbd\xf3\xfa\x6f\x6a\x5b\xe7\xb1\xa1\x6b" "\x1a\x97\x3f\x7d\x7f\xd6\xb4\xdc\xaf\xaf\xff\xdd\xe6\x8e\xf7\x37\xae\x67" "\xd7\x3f\xae\x69\xb9\x3f\xcf\xdf\x1d\xf6\xdf\x5b\x93\x3f\xca\xaf\xf7\xe4" "\xfd\xe1\x78\x0c\xe7\xff\xdf\xab\xc5\xf5\xb5\xbf\x97\xe9\x4b\x77\xb7\xbe" "\xde\xc4\xed\xbf\xb1\xa6\x78\xde\xc6\xeb\x9b\x6c\x5b\xff\xf3\x6d\xeb\x9f" "\xbf\x26\xdf\x77\xe5\xeb\xbf\xe7\xad\x62\xfd\x2f\xdd\xb9\xb2\x65\xfd\xbb" "\x3e\x19\x8e\xa7\x7b\x8a\x59\xb6\xfe\x03\x7f\x7b\x59\xcb\xe5\xbf\xf9\x9d" "\xe2\xf1\x38\xfe\x95\x89\x23\x47\x67\x4f\x1c\xdc\xd7\xb4\x57\x9b\x9f\xc7" "\x2b\xc7\x57\xad\xbe\xe4\xd2\x77\xbd\xfb\xb2\xf0\x5a\xda\xfe\xf5\xee\xa3" "\x73\x0f\xcf\x1c\x5f\x37\xb5\x6e\x2a\xcb\xd6\x0d\xe0\x5b\x06\xf6\x7a\xfd" "\xdf\x0a\xf3\x7f\x8a\x31\x7f\xfe\x6f\xa1\xf0\x93\x9f\x17\xc7\xdd\x73\x9f" "\x2a\xbe\x6f\x7d\xf8\x17\xc5\xd7\xcf\x87\xd3\x1f\x0a\x8f\x67\xfc\xfe\xf8" "\xf5\xbf\x1e\x6b\x39\x5e\xdb\x1f\xf7\xf9\x3b\x8b\x79\xae\xeb\xbf\x31\xac" "\x63\xb9\xde\xf7\xb5\xff\xba\x66\x59\x1b\x9e\xfc\xc2\xcb\x27\xfe\xe9\x4f" "\xde\x68\xff\xb9\x20\xde\x9f\x63\xef\x1d\x6f\xdc\xbf\x17\xd6\x5f\xd9\x38" "\x6f\xe8\x95\xe2\xfc\xf6\xd7\xab\x32\xff\xf9\xde\xd6\xe7\xf5\x4f\x47\xa7" "\x1a\xf3\x07\x61\xbf\x2e\x84\x77\x66\xde\x70\x65\x71\x7b\xed\xd7\x1f\xdf" "\x9b\xe4\xb9\xcf\x14\xcf\xdf\xf8\x93\x5c\xbc\x7c\xd6\xf6\x7e\x22\x6b\x46" "\x5a\xef\xc7\xb9\xae\xff\xa7\xe1\xe7\x98\x1f\x5e\xd5\xfa\xfa\x17\x8f\x8f" "\x1f\x3c\xd9\xf6\x6e\xce\x6b\xb2\xa1\x7c\x09\xf3\xe1\xf5\x21\x9b\x2f\xce" "\x8f\x5b\xc5\xfd\xfd\xdc\xa9\x2b\x3b\xde\x5e\x7c\x1f\x9e\x6c\xfe\xfd\x67" "\xb2\xcc\x25\xcd\x3e\x36\x3b\x79\xe8\xe0\x91\x13\x8f\x4e\xce\xcd\xcc\xce" "\x4d\xce\x3e\xf6\xf8\xee\xc3\x47\x4f\x1c\x99\xdb\xdd\x78\xef\xd2\xdd\x5f" "\x2a\xbb\xfc\xe9\xe7\xf7\xea\xc6\xf3\x7b\xdf\xcc\xf6\xad\x59\xe3\xd9\x7e" "\xb4\x18\x3d\x76\xb1\xd7\x7f\xec\x81\xbd\xfb\x6e\x9d\xba\x7e\xdf\xcc\xfe" "\x3d\x27\xf6\xcf\x3d\x70\x6c\xe6\xf8\x81\xbd\xb3\xb3\x7b\x67\xf6\xcd\x5e" "\xbf\x67\xff\xfe\x99\xaf\x94\x5d\xfe\xe0\xbe\x9d\xd3\x9b\x77\x6c\xb9\x75" "\xf3\xc4\x81\x83\xfb\x76\xde\xb6\x63\xc7\x96\x1d\x13\x07\x8f\x1c\xcd\x97" "\x51\x2c\xaa\xc4\xf6\xa9\x2f\x4f\x1c\x39\xbe\xbb\x71\x91\xd9\x9d\x5b\x77" "\x4c\x6f\xdb\xb6\x75\x6a\xe2\xf0\xd1\x7d\x33\x3b\x6f\x9d\x9a\x9a\x38\x51" "\x76\xf9\xc6\xf7\xa6\x89\xfc\xd2\x8f\x4c\x1c\x9f\x39\xb4\x67\xee\xe0\xe1" "\x99\x89\xd9\x83\x8f\xcf\xec\x9c\xde\xb1\x7d\xfb\xe6\xd2\x77\x7f\x3c\x7c" "\x6c\xff\xec\xba\xc9\xe3\x27\x8e\x4c\x9e\x98\x9d\x39\x3e\x59\xdc\x97\x75" "\x73\x8d\x93\xf3\xef\x7d\x65\x97\xa7\x1e\x66\x8f\x86\xd7\xbb\x36\x43\xe1" "\xa7\xf3\xcf\xdf\xb4\x3d\xbd\x3f\x6e\xee\xdb\x4f\x2d\x79\x55\xc5\x26\xad" "\x3f\x9e\x66\x6f\x86\xf7\x82\x8a\xdf\xdf\xca\xbe\x8e\xb9\x7f\x2c\xcc\xa4" "\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\xf0\xc6\xff\xa7\xcf\x90\xff\x01" "\x00\x00\xa0\x32\x62\xee\x5f\x19\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc" "\x5f\x24\xff\xf1\xf4\xf1\xef\x75\xc9\xff\xe7\xab\xff\xff\x94\xfe\x7f\x83" "\xfe\xbf\xfe\x7f\xa6\xff\x9f\xe8\xff\xeb\xff\x67\xfa\xff\xfa\xff\x25\xf4" "\xff\xf5\xff\x07\x79\xfd\xfa\xff\xfa\xff\x94\xeb\xb7\xfe\x7f\xc8\xfd\xd9" "\xaa\x2c\xf3\xef\xff\x00\x00\x00\x50\x51\x31\xf7\xaf\x0e\x33\x91\xff\x01" "\x00\x00\xa0\x32\x62\xee\xbf\x24\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9" "\xff\xd2\x30\x93\x9a\xe4\x7f\x9f\xff\xaf\xff\xaf\xff\xdf\xad\xff\x1f\xb7" "\xd5\xff\xcf\xf4\xff\xfb\xa1\xff\xbf\xf1\xbf\xf5\xff\x17\xd1\xff\xd7\xff" "\xcf\xf4\xff\xcf\xda\xc5\xee\xcf\x0f\xfa\xfa\xfb\xb0\xff\xbf\x4a\xff\x9f" "\x7e\xd3\x6f\xfd\xff\x98\xfb\xdf\x15\x66\x52\x93\xfc\x0f\x00\x00\x00\x75" "\x10\x73\xff\xbb\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x2f\x0b\x33" "\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x5f\x13\x66\x52\x93\xfc\xaf\xff\xaf" "\xff\xaf\xff\xef\xf3\xff\xf5\xff\x07\xa6\xff\xef\xf3\xff\x3b\xd0\xff\xd7" "\xff\xcf\xf4\xff\xcf\xda\xc5\xee\xcf\x0f\xfa\xfa\xfb\xb0\xff\xef\xf3\xff" "\xe9\x3b\xfd\xd6\xff\x8f\xb9\xff\xd7\xc2\x4c\x6a\x92\xff\x01\x00\x00\xa0" "\x0e\x62\xee\x7f\x4f\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xe5\x61" "\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x57\x84\x99\xd4\x24\xff\xd7\xb3" "\xff\xff\x7a\x96\x65\xfa\xff\x99\xfe\xbf\xfe\x7f\xdb\x3a\xf5\xff\xf5\xff" "\x7b\x41\xff\x5f\xff\xbf\x1b\xfd\x7f\xfd\xff\x41\x5e\xbf\xfe\xbf\xfe\x3f" "\xe5\xfa\xad\xff\x1f\x73\xff\x7b\xc3\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e" "\x62\xee\xbf\x32\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x7d\x61\x26" "\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x57\x85\x99\xd4\x24\xff\xd7\xb3\xff" "\xef\xf3\xff\xf5\xff\x0b\xfa\xff\xad\xeb\xd4\xff\xd7\xff\xef\x05\xfd\x7f" "\xfd\xff\x6e\xf4\xff\xf5\xff\x07\x79\xfd\xfa\xff\xfa\xff\x94\xeb\xb7\xfe" "\x7f\xcc\xfd\xef\x0f\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\xff\xea" "\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x0f\x84\x99\xc8\xff\x00\x00" "\x00\x50\x19\x31\xf7\xaf\x0d\x33\xa9\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7" "\xff\xd7\xff\xd7\xff\xef\xa5\xc1\xea\xff\x0f\x2f\x79\x8e\xfe\x7f\x41\xff" "\xbf\xd5\xf9\xeb\xff\xcf\x9f\x5e\x80\xfe\xff\xc0\xac\x5f\xff\x5f\xff\x9f" "\x72\xfd\xd6\xff\x8f\xb9\xff\x83\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07" "\x31\xf7\x7f\x28\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x9a\x30\x13" "\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x75\x61\x26\x35\xc9\xff\xfa\xff\xfa" "\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xbd\x34\x58\xfd\xff\xa5\xe9\xff\x17" "\xf4\xff\x5b\xf9\xfc\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xba\xeb\xb7\xfe\x7f\xcc" "\xfd\xeb\xc3\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62\xee\xdf\x10\x66\x22" "\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x6d\x98\x89\xfc\x0f\x00\x00\x00\x95" "\x11\x73\xff\xc6\x30\x93\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd" "\x7f\xfd\xff\x5e\xd2\xff\xd7\xff\xef\x46\xff\x5f\xff\x7f\x90\xd7\xaf\xff" "\xaf\xff\x4f\xb9\x7e\xeb\xff\xc7\xdc\x7f\x5d\x98\x49\x4d\xf2\x3f\x00\x00" "\x00\xd4\x41\xcc\xfd\xd7\x87\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x7f" "\x38\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x53\x98\x49\x4d\xf2\xbf" "\xfe\xbf\xfe\xbf\xfe\xff\x00\xf7\xff\x47\xf4\xff\x33\xfd\xff\xbe\xa7\xff" "\xaf\xff\xdf\x8d\xfe\xbf\xfe\xff\x20\xaf\x5f\xff\x5f\xff\x9f\x72\xfd\xd6" "\xff\x8f\xb9\xff\x86\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\x6f" "\x0c\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xbf\x29\xcc\x44\xfe\x07\x00" "\x00\x80\xca\x88\xb9\x7f\x22\xcc\xa4\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x7f" "\x80\xfb\xff\x3e\xff\xbf\x65\xfd\xfa\xff\xfd\x49\xff\x5f\xff\xbf\x1b\xfd" "\x7f\xfd\xff\x41\x5e\xbf\xfe\xbf\xfe\x3f\xe5\xfa\xad\xff\x1f\x73\xff\xcd" "\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\xdf\x12\x66\x22\xff\x03" "\x00\x00\x40\x65\xc4\xdc\x3f\x19\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc" "\x3f\x15\x66\x52\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff" "\xdf\x4b\xfa\xff\xfa\xff\xdd\xe8\xff\xeb\xff\x0f\xf2\xfa\xf5\xff\xf5\xff" "\x29\xd7\x6f\xfd\xff\x98\xfb\xa7\xc3\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e" "\x62\xee\xdf\x1c\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x25\xcc\x44" "\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x6b\x98\x49\x4d\xf2\xbf\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x2f\xe9\xff\xeb\xff\x77\xa3\xff\xaf" "\xff\x3f\xc8\xeb\xd7\xff\xd7\xff\xa7\xd5\x70\x87\xd3\xfa\xad\xff\x1f\x73" "\xff\xb6\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\xb7\x87\x99\xc8" "\xff\x00\x00\x00\x50\x19\x31\xf7\xdf\x1a\x66\x22\xff\x03\x00\x00\x40\x65" "\xc4\xdc\x7f\x5b\x98\x49\x4d\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe" "\xbf\xfe\x7f\x2f\xe9\xff\xeb\xff\x77\xa3\xff\xaf\xff\x3f\xc8\xeb\xd7\xff" "\xd7\xff\xa7\x5c\xbf\xf5\xff\x63\xee\xdf\x11\x66\x52\x93\xfc\x0f\x00\x00" "\x00\x75\x10\x73\xff\x47\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x6f" "\x0f\x33\x91\xff\x01\x00\x00\x60\xa0\x74\xfa\x1c\xc2\x28\xe6\xfe\x8f\x86" "\x99\xd4\x24\xff\xeb\xff\x57\xbd\xff\xbf\xb0\x52\xff\x5f\xff\x5f\xff\xbf" "\xfb\xfa\xf5\xff\x7b\x4b\xff\x5f\xff\xbf\x1b\xfd\x7f\xfd\xff\x41\x5e\xbf" "\xfe\xbf\xfe\x3f\xe5\xfa\xad\xff\x1f\x73\xff\xce\x30\x93\x9a\xe4\x7f\x00" "\x00\x00\xa8\x83\x98\xfb\xef\x08\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee" "\xbf\x33\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x57\x98\x49\x4d\xf2" "\xbf\xfe\x7f\xd5\xfb\xff\x3e\xff\x5f\xff\x5f\xff\xbf\x6c\xfd\xfa\xff\xbd" "\xa5\xff\xaf\xff\xdf\x8d\xfe\xff\x60\xf6\xff\xc3\x8f\x2d\xfa\xff\x7d\xd4" "\xff\xcf\x8f\x21\xfd\x7f\xfa\x51\xbf\xf5\xff\x63\xee\xbf\x2b\xcc\xa4\x26" "\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\x8f\x85\x99\xc8\xff\x00\x00\x00\x50" "\x19\x31\xf7\x7f\x3c\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x13\x61" "\x26\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xbd\xa4" "\xff\xdf\xb3\xfe\x7f\xe3\xa5\x50\xff\xbf\xa0\xff\x7f\x76\x2e\x76\x7f\x7e" "\xd0\xd7\xdf\x4f\xfd\x7f\x9f\xff\x4f\xbf\xea\xb7\xfe\x7f\xcc\xfd\x77\x87" "\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\xff\xc9\x30\x13\xf9\x1f\x00" "\x00\x00\x2a\x23\xe6\xfe\x5f\x0f\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee" "\xbf\x27\xcc\xa4\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff" "\xbf\x97\xf4\xff\x7d\xfe\x7f\x37\xfa\xff\xfa\xff\x83\xbc\x7e\xfd\x7f\xfd" "\x7f\xca\xf5\x5b\xff\x3f\xe6\xfe\xdf\x08\x33\xa9\x49\xfe\x07\x00\x00\x80" "\x3a\x88\xb9\xff\xde\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x4f\x85" "\x99\xc8\xff\x00\x00\x00\x30\x60\x56\x2c\x79\x4e\xcc\xfd\xbf\x19\x66\x52" "\x93\xfc\xaf\xff\x7f\x61\xfa\xff\xc3\xe9\xfa\xf5\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\xcf\x27\xfd\x7f\xfd\xff\x4c\xff\xff\xac\x5d\xec\xfe\xfc\xa0" "\xaf\x5f\xff\x5f\xff\x9f\x72\xfd\xd6\xff\x8f\xb9\xff\xb7\xc2\x4c\x6a\x92" "\xff\x01\x00\x00\xa0\x0e\x62\xee\xff\x74\x98\x89\xfc\x0f\x00\x00\x00\x95" "\x11\x73\xff\x6f\x87\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xdf\x17\x66" "\x52\x93\xfc\x7f\xbe\xfb\xff\xed\x97\xef\xa6\x4e\xfd\x7f\x9f\xff\xaf\xff" "\x9f\xe9\xff\xeb\xff\x37\xed\x55\xfd\xff\xf3\x47\xff\x5f\xff\x3f\xd3\xff" "\x3f\x6b\x17\xbb\x3f\x3f\xe8\xeb\xd7\xff\xd7\xff\xa7\x5c\xbf\xf5\xff\x63" "\xee\xff\x9d\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\xef\x0f\x33" "\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xff\x4c\x98\x89\xfc\x0f\x00\x00\x00" "\x95\x11\x73\xff\x67\xc3\x4c\x6a\x92\xff\x7d\xfe\xbf\xfe\xbf\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\x7f\x2f\xe9\xff\xeb\xff\x77\xa3\xff\xaf\xff\x3f\xc8\xeb" "\xd7\xff\xd7\xff\xa7\x5c\xbf\xf5\xff\x63\xee\x7f\x20\xcc\xa4\x26\xf9\x1f" "\x00\x00\x00\xea\x20\xe6\xfe\xcf\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31" "\xf7\xff\x6e\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xef\x85\x99\xd4" "\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xf7\x92\xfe\xff" "\xe2\xfe\x7f\xfe\x1a\xa6\xff\x5f\xd0\xff\xd7\xff\x1f\xe4\xf5\xeb\xff\xeb" "\xff\x53\xae\xdf\xfa\xff\x31\xf7\x7f\x3e\xcc\xa4\x26\xf9\x1f\x00\x00\x00" "\xea\x20\xe6\xfe\xdf\x0f\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xff\x83" "\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x07\xc3\x4c\x6a\x92\xff\xf5" "\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x7b\x49\xff\xdf\xe7\xff\x77" "\xa3\xff\xaf\xff\x3f\xc8\xeb\xd7\xff\xd7\xff\xa7\x5c\xbf\xf5\xff\x63\xee" "\xff\x42\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\x7f\x18\x66\x22" "\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x3b\xcc\x44\xfe\x07\x00\x00\x80\xca" "\x88\xb9\xff\xa1\x30\x93\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd" "\x7f\xfd\xff\x5e\xd2\xff\xd7\xff\xef\x46\xff\x5f\xff\x7f\x90\xd7\xaf\xff" "\xaf\xff\x4f\xb9\x7e\xeb\xff\xc7\xdc\xbf\x27\xcc\x64\x57\xeb\xcd\x00\x00" "\x00\x00\x83\x2b\xe6\xfe\x2f\x86\x99\xd4\xe4\xdf\xff\x01\x00\x00\xa0\x0e" "\x62\xee\xdf\x1b\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x2f\xcc\xa4" "\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x97\xf4\xff" "\xf5\xff\xbb\xd1\xff\xd7\xff\x1f\xe4\xf5\xeb\xff\xeb\xff\x53\xae\xdf\xfa" "\xff\x31\xf7\xcf\x84\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\xbf\x3f" "\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x40\x98\x89\xfc\x0f\x00\x00" "\x00\x95\x11\x73\xff\xc3\x61\x26\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xb5" "\xed\xff\xbf\xfa\xbd\xb6\x75\xea\xff\xeb\xff\xf7\x82\xfe\xbf\xfe\x7f\x37" "\xfa\xff\xfa\xff\x83\xbc\x7e\xfd\x7f\xfd\x7f\xca\xf5\x5b\xff\x3f\xe6\xfe" "\x83\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\x7f\x29\xcc\x44\xfe" "\x07\x00\x00\x80\xca\x88\xb9\xff\xcb\x61\x26\xf2\x3f\x00\x00\x00\x54\x46" "\xcc\xfd\x87\xc2\x4c\x6a\x92\xff\xf5\xff\xf5\xff\xf5\xff\x6b\xdb\xff\xf7" "\xf9\xff\x81\xfe\x7f\x6f\xe9\xff\xeb\xff\x77\xa3\xff\xaf\xff\x3f\xc8\xeb" "\xd7\xff\xd7\xff\xa7\x5c\xbf\xf5\xff\x63\xee\x3f\x1c\x66\x52\x93\xfc\x0f" "\x00\x00\x00\x75\x10\x73\xff\x91\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6" "\xfe\xa3\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xc7\xc2\x4c\x6a\x92" "\xff\xf5\xff\xcf\xac\xff\x3f\xb4\x44\x37\x50\xff\xbf\xf3\xfa\xf5\xff\xf5" "\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xbb\xd1\xff\xd7\xff\x1f\xe4\xf5\xeb" "\xff\xeb\xff\x53\xae\xdf\xfa\xff\x31\xf7\xff\x51\x98\x49\x4d\xf2\x3f\x00" "\x00\x00\xd4\x41\xcc\xfd\xc7\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb" "\x67\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xe7\xc2\x4c\x6a\x92\xff" "\xf5\xff\x7d\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x2f\xe9\xff\xeb\xff" "\x77\xa3\xff\xaf\xff\x3f\xc8\xeb\xd7\xff\xd7\xff\xa7\x5c\xbf\xf5\xff\x63" "\xee\x3f\x11\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73\xff\x23\x61\x26" "\xf2\x3f\x00\x00\x00\xfc\x3f\x7b\xf7\x95\x2b\xc8\x59\xf4\x71\xf8\x7c\xb6" "\x46\x1f\x12\x62\x0f\x6c\x81\x15\xb0\x04\xd6\x80\xc4\x1e\xc8\x60\x93\x4d" "\x06\x93\x73\x32\x39\x99\x0c\x26\xe7\x9c\x73\xce\xd9\x60\x72\x94\x40\x30" "\x55\x65\x61\xcd\xe9\x9e\xd4\x3e\xdd\x55\xcf\x73\x53\xf2\x19\x4b\x7e\x47" "\xe3\x9b\xbf\x46\x3f\x75\x1b\xb9\xfb\xef\x1b\xb7\xd8\xff\x00\x00\x00\xd0" "\x46\xee\xfe\xfb\xc5\x2d\x43\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff" "\xf5\xff\x5b\xd2\xff\xeb\xff\x97\xe8\xff\xf5\xff\x47\x7e\xbf\xfe\x5f\xff" "\xcf\xba\xbd\xf5\xff\xb9\xfb\xef\x1f\xb7\x0c\xd9\xff\x00\x00\x00\x30\x41" "\xee\xfe\x07\xc4\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x81\x71\x8b\xfd" "\x0f\x00\x00\x00\x6d\xe4\xee\x7f\x50\xdc\x32\x64\xff\xeb\xff\xf5\xff\xfa" "\x7f\xfd\xbf\xfe\x5f\xff\xbf\x25\xfd\xbf\xfe\x7f\x89\xfe\x5f\xff\x7f\xe4" "\xf7\xeb\xff\xf5\xff\xac\xdb\x5b\xff\x9f\xbb\xff\xc1\x71\xcb\x90\xfd\x0f" "\x00\x00\x00\x13\xe4\xee\x7f\x48\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb" "\x1f\x1a\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\xeb\xe2\x96\x21\xfb\x5f" "\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x2d\xe9\xff\xf5\xff\x4b\xf4" "\xff\xfa\xff\x23\xbf\x5f\xff\xaf\xff\x67\xdd\xde\xfa\xff\xdc\xfd\xd7\xc7" "\x2d\x43\xf6\x3f\x00\x00\x00\x4c\x90\xbb\xff\x61\x71\x8b\xfd\x0f\x00\x00" "\x00\x6d\xe4\xee\x7f\x78\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\x1f\x11" "\xb7\x0c\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x6f\x49\xff" "\xaf\xff\x5f\xa2\xff\xd7\xff\x1f\xf9\xfd\xfa\x7f\xfd\x3f\xeb\xf6\xd6\xff" "\xe7\xee\x7f\x64\xdc\x32\x64\xff\x03\x00\x00\xc0\x04\xb9\xfb\x1f\x15\xb7" "\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\x47\xc7\x2d\xf6\x3f\x00\x00\x00\xb4" "\x91\xbb\xff\x31\x71\xcb\x90\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f" "\xfd\xff\x96\xf4\xff\xfa\xff\x25\xfa\x7f\xfd\xff\x91\xdf\xaf\xff\xd7\xff" "\xb3\x6e\xf3\xfe\xff\x5e\x37\xfc\xf7\x5e\x6c\xff\x9f\xbb\xff\x86\xb8\x65" "\xc8\xfe\x07\x00\x00\x80\x09\x72\xf7\x3f\x36\x6e\xb1\xff\x01\x00\x00\xa0" "\x8d\xdc\xfd\x8f\x8b\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\xe3\xe3\x96" "\x21\xfb\x5f\xff\xaf\xff\xbf\xbd\xff\xff\xd7\xff\xe9\xff\xf5\xff\xfa\xff" "\xdb\x7f\xae\xff\xbf\x3a\xf4\xff\xfa\xff\x25\xfa\x7f\xfd\xff\x91\xdf\xaf" "\xff\xd7\xff\xb3\x6e\xf3\xfe\x7f\xa5\xf7\xbf\xe3\x3f\xe7\xee\x7f\x42\xdc" "\x32\x64\xff\x03\x00\x00\xc0\x04\xb9\xfb\x9f\x18\xb7\xd8\xff\x00\x00\x00" "\xd0\x46\xee\xfe\x27\xc5\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\xc9\x71" "\xcb\x90\xfd\xaf\xff\xd7\xff\xfb\xfe\xbf\xfe\x5f\xff\xaf\xff\xdf\x92\xfe" "\x5f\xff\xbf\x44\xff\xaf\xff\x3f\xf2\xfb\x97\xfa\xff\x7b\x5e\xc4\xfb\xf5" "\xff\x4c\xb0\xb7\xfe\x3f\x77\xff\x53\xe2\x96\x21\xfb\x1f\x00\x00\x00\x26" "\xc8\xdd\xff\xd4\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\xdf\x18\xb7\xd8" "\xff\x00\x00\x00\xd0\x46\xee\xfe\xa7\xc5\x2d\x43\xf6\xbf\xfe\x5f\xff\xaf" "\xff\xd7\xff\xff\x6f\xff\x7f\xcd\xc8\xfe\xff\x3f\x3f\xd3\xff\x6f\x43\xff" "\xaf\xff\x5f\xa2\xff\xd7\xff\x1f\xf9\xfd\xbe\xff\xaf\xff\x67\xdd\xde\xfa" "\xff\xdc\xfd\x4f\x8f\x5b\x86\xec\x7f\x00\x00\x00\x98\x20\x77\xff\x33\xe2" "\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xcc\xb8\xc5\xfe\x07\x00\x00\x80" "\x36\x72\xf7\x3f\x2b\x6e\x19\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff\x8a" "\xbe\xff\x7f\x6d\x8f\xfe\xdf\xf7\xff\xb7\xa3\xff\xd7\xff\x2f\xd1\xff\xeb" "\xff\x8f\xfc\x7e\xfd\xbf\xfe\x9f\x75\x7b\xeb\xff\x73\xf7\x3f\x3b\x6e\x19" "\xb2\xff\x01\x00\x00\x60\x82\xdc\xfd\xcf\x89\x5b\xec\x7f\x00\x00\x00\x68" "\x23\x77\xff\x73\xe3\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xbc\xb8\x65" "\xc8\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x2b\xea\xff\x9b\x7c\xff\x5f\xff" "\xbf\x1d\xfd\xbf\xfe\x7f\xc9\xc5\xf6\xff\x27\xfa\xff\xfa\xbd\xe8\xff\xf7" "\xf3\x7e\xfd\xbf\xfe\x9f\x75\x7b\xeb\xff\x73\xf7\x3f\x3f\x6e\x19\xb2\xff" "\x01\x00\x00\x60\x82\xdc\xfd\x2f\x88\x5b\xec\x7f\x00\x00\x00\x68\x23\x77" "\xff\x0b\xe3\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xa2\xb8\x65\xc8\xfe" "\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\x4b\xfa\x7f\xfd\xff\x12" "\xdf\xff\xd7\xff\x1f\xf9\xfd\xfa\x7f\xfd\x3f\xeb\xf6\xd6\xff\xe7\xee\x7f" "\x71\xdc\x32\x64\xff\x03\x00\x00\xc0\x04\xb9\xfb\x5f\x12\xb7\xd8\xff\x00" "\x00\x00\xd0\x46\xee\xfe\x97\xc6\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff" "\x65\x71\xcb\x90\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x96" "\xf4\xff\xfa\xff\x25\xfa\xff\x0b\xf7\xff\x77\x39\xe5\xbf\xa7\xff\xdf\xd7" "\xfb\xf5\xff\xfa\x7f\xd6\xed\xad\xff\xcf\xdd\x7f\x53\xdc\x32\x64\xff\x03" "\x00\x00\xc0\x04\xb9\xfb\x5f\x1e\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe" "\x57\xc4\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x95\x71\xcb\x90\xfd\x7f" "\x5a\xff\x7f\xdb\x5d\xcf\xff\xba\xfe\xff\xe2\xe8\xff\x2f\xfc\x7e\xfd\xbf" "\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x97\xe8\xff\x7d\xff\xff\xc8\xef\xd7" "\xff\xeb\xff\x59\xb7\xb7\xfe\x3f\x77\xff\xab\xe2\x96\x21\xfb\x1f\x00\x00" "\x00\x26\xc8\xdd\xff\xea\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\xbf\x26" "\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd\xaf\x8d\x5b\x86\xec\xff\xab\xff" "\xfd\xff\xbb\xeb\xff\xf5\xff\xfa\xff\xb8\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf" "\xff\x5f\xa6\xff\xd7\xff\x1f\xf9\xfd\xfa\x7f\xfd\x3f\xeb\xf6\xd6\xff\xe7" "\xee\x7f\x5d\xdc\x32\x64\xff\x03\x00\x00\xc0\x04\xb9\xfb\x5f\x1f\xb7\xd8" "\xff\x00\x00\x00\xd0\x46\xee\xfe\x37\xc4\x2d\xf6\x3f\x00\x00\x00\xb4\x91" "\xbb\xff\x8d\x71\xcb\x90\xfd\x7f\xf5\xfb\x7f\xdf\xff\xd7\xff\x5f\x62\xff" "\x7f\x8d\xfe\x3f\xe9\xff\xe3\xcf\x55\xff\xaf\xff\xbf\x04\xfa\x7f\xfd\xff" "\x89\xfe\xff\xb2\x9d\x75\x3f\x7f\xf4\xf7\xeb\xff\xf5\xff\xac\xdb\x5b\xff" "\x9f\xbb\xff\xe6\xb8\x65\xc8\xfe\x07\x00\x00\x80\x09\x72\xf7\xbf\x29\x6e" "\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd\x6f\x8e\x5b\xec\x7f\x00\x00\x00\x68" "\x23\x77\xff\x5b\xe2\x96\x21\xfb\x5f\xff\xaf\xff\x3f\xf3\xfe\xdf\xf7\xff" "\x8b\xfe\x3f\xfe\x5c\xf5\xff\xfa\xff\x4b\xa0\xff\xd7\xff\x9f\xe8\xff\x2f" "\xdb\x59\xf7\xf3\x47\x7f\xbf\xfe\x5f\xff\xcf\xba\xbd\xf5\xff\xb9\xfb\xdf" "\x1a\xb7\x0c\xd9\xff\x00\x00\x00\x30\x41\xee\xfe\xb7\xc5\x2d\xf6\x3f\x00" "\x00\x00\xb4\x91\xbb\xff\xed\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\x7f" "\x47\xdc\x32\x64\xff\xeb\xff\xf5\xff\xfa\xff\xdd\xf7\xff\x37\xdf\xf1\xff" "\x37\xfd\xbf\xfe\xff\x48\xf4\xff\xfa\xff\x25\xfa\x7f\xfd\xff\x91\xdf\xbf" "\x9f\xfe\x3f\x7e\x70\x9d\xfe\x9f\xfd\xd9\x5b\xff\x9f\xbb\xff\x9d\x71\xcb" "\x90\xfd\x0f\x00\x00\x00\x13\xe4\xee\x7f\x57\xdc\x62\xff\x03\x00\x00\x40" "\x1b\xb9\xfb\x6f\x89\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\xbb\xe3\x96" "\x21\xfb\x5f\xff\x7f\xf4\xfe\xff\xde\xb7\xc6\x0b\xf4\xff\x7d\xfb\x7f\xdf" "\xff\x8f\xab\xff\xd7\xff\x5f\x88\xfe\x5f\xff\x7f\xa2\xff\xbf\x6c\x67\xdd" "\xcf\x1f\xfd\xfd\xfb\xe9\xff\x7d\xff\x9f\xfd\xda\x5b\xff\x9f\xbb\xff\x3d" "\x71\xcb\x90\xfd\x0f\x00\x00\x00\x13\xe4\xee\x7f\x6f\xdc\x62\xff\x03\x00" "\x00\x40\x1b\xb9\xfb\xdf\x17\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\xf7" "\xc7\x2d\x43\xf6\xbf\xfe\xff\xe8\xfd\xbf\xef\xff\xeb\xff\xf5\xff\xfa\xff" "\x7d\xd3\xff\xeb\xff\x97\xe8\xff\xf5\xff\x47\x7e\xbf\xfe\x5f\xff\xcf\xba" "\xbd\xf5\xff\xb9\xfb\x3f\x10\xb7\x0c\xd9\xff\x00\x00\x00\x30\x41\xee\xfe" "\x0f\xc6\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x43\x71\x8b\xfd\x0f\x00" "\x00\x00\x6d\xe4\xee\xff\x70\xdc\x32\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd" "\xff\x15\xf7\xff\xd7\xeb\xff\x4f\xf4\xff\xa7\xd2\xff\xeb\xff\x97\xe8\xff" "\xf5\xff\x47\x7e\xbf\xfe\x5f\xff\xcf\xba\xbd\xf5\xff\xb9\xfb\x3f\x12\xb7" "\x0c\xd9\xff\x00\x00\x00\x30\x41\xee\xfe\x8f\xc6\x2d\xf6\x3f\x00\x00\x00" "\xb4\x91\xbb\xff\x63\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\xff\x78\xdc" "\x70\x8f\xbb\x9d\xdd\x93\xae\xae\x73\xa7\xfc\x3c\x7a\x73\xfd\xbf\xfe\x5f" "\xff\xaf\xff\xf7\xfd\x7f\xfd\xff\x96\xf4\xff\xfa\xff\x25\xfa\x7f\xfd\xff" "\x91\xdf\xaf\xff\xd7\xff\xb3\x6e\x6f\xfd\x7f\xee\xfe\x4f\xc4\x2d\xfe\xfe" "\x1f\x00\x00\x00\xda\xc8\xdd\xff\xc9\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72" "\xf7\x7f\x2a\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd\x9f\x8e\x5b\x86\xec" "\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xb7\xa4\xff\xd7\xff\x2f" "\xd1\xff\xeb\xff\x8f\xfc\x7e\xfd\xbf\xfe\x9f\x75\x7b\xeb\xff\x73\xf7\x7f" "\x26\x6e\x19\xb2\xff\x01\x00\x00\x60\x82\xdc\xfd\x9f\x8d\x5b\xec\x7f\x00" "\x00\x00\x68\x23\x77\xff\xe7\xe2\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff" "\xf9\xb8\x65\xc8\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\x4b" "\xfa\x7f\xfd\xff\x12\xfd\xbf\xfe\xff\xc8\xef\xd7\xff\xeb\xff\x59\xb7\xb7" "\xfe\x3f\x77\xff\x17\xe2\x96\x21\xfb\x1f\x00\x00\x00\x26\xc8\xdd\xff\xc5" "\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\x7f\x29\x6e\xb1\xff\x01\x00\x00" "\xa0\x8d\xdc\xfd\x5f\x8e\x5b\x86\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7" "\xff\xeb\xff\xb7\xa4\xff\xd7\xff\x2f\xd1\xff\xeb\xff\x8f\xfc\x7e\xfd\xbf" "\xfe\x9f\x75\x7b\xeb\xff\x73\xf7\x7f\x25\x6e\x19\xb2\xff\x01\x00\x00\x60" "\x82\xdc\xfd\x5f\x8d\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\xd7\xe2\x16" "\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xf5\xb8\x65\xc8\xfe\xef\xdc\xff\x2f" "\xfd\x6b\xfa\xff\xf3\xf4\xff\xfa\xff\x13\xfd\xbf\xfe\x7f\x63\xfa\x7f\xfd" "\xff\x12\xfd\xbf\xfe\xff\xc8\xef\xd7\xff\xeb\xff\x59\xb7\xb7\xfe\x3f\x77" "\xff\x37\xe2\x96\x21\xfb\x1f\x00\x00\x00\x26\xc8\xdd\xff\xcd\xb8\xc5\xfe" "\x07\x00\x00\x80\x36\x72\xf7\x7f\x2b\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc" "\xfd\xdf\x8e\x5b\x86\xec\xff\xce\xfd\xff\x12\xfd\xff\x79\xfa\x7f\xfd\xff" "\x89\xfe\x5f\xff\xbf\x31\xfd\xbf\xfe\x7f\x89\xfe\x5f\xff\x7f\xe4\xf7\xeb" "\xff\xf5\xff\xac\x3b\xa3\xfe\xff\xdc\xc9\x29\xfd\x7f\xee\xfe\xef\xc4\x2d" "\x43\xf6\x3f\x00\x00\x00\x4c\x90\xbb\xff\xbb\x71\x8b\xfd\x0f\x00\x00\x00" "\x6d\xe4\xee\xff\x5e\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\xbf\x1f\xb7" "\xf4\xd9\xff\xf7\xb9\x65\xe1\x17\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf" "\xff\xdf\x92\xfe\x5f\xff\xbf\x44\xff\xaf\xff\x3f\xf2\xfb\xf5\xff\xfa\x7f" "\xd6\xed\xed\xfb\xff\xb9\xfb\x7f\x10\xb7\xf4\xd9\xff\x00\x00\x00\x30\x5e" "\xee\xfe\x1f\xc6\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x47\x71\x8b\xfd" "\x0f\x00\x00\x00\x6d\xe4\xee\xff\x71\xdc\x32\x64\xff\xeb\xff\xf5\xff\xfa" "\xff\x51\xfd\xff\xb5\x27\xfa\x7f\xfd\xff\x9d\x4c\xff\xaf\xff\x5f\xa2\xff" "\xd7\xff\x1f\xf9\xfd\xfa\x7f\xfd\x3f\xeb\xf6\xd6\xff\xe7\xee\xff\x49\xdc" "\x32\x64\xff\x03\x00\x00\xc0\x04\xb9\xfb\x7f\x1a\xb7\xd8\xff\x00\x00\x00" "\xd0\x46\xee\xfe\x9f\xc5\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\xe7\x71" "\xcb\x90\xfd\xaf\xff\xd7\xff\xeb\xff\x47\xf5\xff\xbe\xff\xaf\xff\xbf\xd3" "\xe9\xff\xf5\xff\x4b\xf4\xff\xfa\xff\x23\xbf\x5f\xff\xaf\xff\x67\xdd\xde" "\xfa\xff\xdc\xfd\xbf\x88\x5b\x86\xec\x7f\x00\x00\x00\x98\x20\x77\xff\x2f" "\xe3\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xab\xb8\xc5\xfe\x07\x00\x00" "\x80\x36\x72\xf7\xff\x3a\x6e\x19\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f" "\xff\xaf\xff\xdf\x92\xfe\x5f\xff\xbf\x44\xff\xaf\xff\x3f\xf2\xfb\xf5\xff" "\xfa\x7f\xd6\xed\xad\xff\xcf\xdd\x7f\x6b\xdc\x32\x64\xff\x03\x00\x00\xc0" "\x04\xb9\xfb\x7f\x13\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\xdf\xc6\x2d" "\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\xb6\xb8\x65\xc8\xfe\xd7\xff\xeb\xff" "\x5b\xf6\xff\xff\xaf\xff\xd7\xff\xeb\xff\xf7\x42\xff\xaf\xff\x5f\xa2\xff" "\xd7\xff\x1f\xf9\xfd\xfa\x7f\xfd\x3f\xeb\xf6\xd6\xff\xe7\xee\xff\x5d\xdc" "\x32\x64\xff\x03\x00\x00\xc0\x04\xb9\xfb\x7f\x1f\xb7\xd8\xff\x00\x00\x00" "\xd0\x46\xee\xfe\x3f\xc4\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x8f\x71" "\xcb\x90\xfd\xaf\xff\xd7\xff\x5f\x7a\xff\x7f\xae\x7e\xdf\xbb\xed\xff\x7d" "\xff\x5f\xff\xaf\xff\xdf\x0d\xfd\xbf\xfe\x7f\xc9\xf4\xfe\xff\xc6\x9b\xce" "\xff\x58\xff\x7f\xcc\xf7\xeb\xff\xf5\xff\xac\xdb\x5b\xff\x9f\xbb\xff\x4f" "\x71\xcb\x90\xfd\x0f\x00\x00\x00\x13\xe4\xee\xff\x73\xdc\x62\xff\x03\x00" "\x00\x40\x1b\xb9\xfb\xff\x12\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\xbf" "\xc6\x2d\x43\xf6\xbf\xfe\x5f\xff\xdf\xf2\xfb\xff\xfa\x7f\xfd\xbf\xfe\x7f" "\x37\xf4\xff\xfa\xff\x25\xd3\xfb\x7f\xdf\xff\x3f\xf6\xfb\xf5\xff\xfa\x7f" "\xd6\xed\xad\xff\xcf\xdd\xff\xb7\xb8\x65\xc8\xfe\x07\x00\x00\x80\x09\x72" "\xf7\xff\x3d\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd\xff\x88\x5b\xec\x7f" "\x00\x00\x00\x68\x23\x77\xff\x3f\xe3\x96\x21\xfb\x5f\xff\xaf\xff\xd7\xff" "\xeb\xff\xf5\xff\xfa\xff\x2d\xe9\xff\xf5\xff\x4b\xf4\xff\xfa\xff\x23\xbf" "\x5f\xff\xaf\xff\x67\xdd\xde\xfa\xff\xdc\xfd\xff\x0e\x00\x00\xff\xff\x7d" "\x7e\x3c\x19", 24231); syz_mount_image(/*fs=*/0x20000400, /*dir=*/0x200000c0, /*flags=*/0, /*opts=*/0x20000ec0, /*chdir=*/1, /*size=*/0x5ea7, /*img=*/0x200085c0); memset((void*)0x20000640, 0, 1); res = syscall(__NR_open_tree, /*dfd=*/0xffffff9c, /*filename=*/0x20000640ul, /*flags=OPEN_TREE_CLOEXEC|AT_EMPTY_PATH*/ 0x81000ul); if (res != -1) r[0] = res; memcpy((void*)0x20000180, "./file0\000", 8); memcpy((void*)0x200007c0, "./" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 253); syscall(__NR_symlinkat, /*old=*/0x20000180ul, /*newfd=*/r[0], /*new=*/0x200007c0ul); memcpy((void*)0x20000180, "msdos\000", 6); memcpy((void*)0x20000100, ".\000", 2); *(uint16_t*)0x20002f80 = -1; sprintf((char*)0x20002f82, "%023llo", (long long)-1); memcpy((void*)0x20002f99, "\x12\xa4\x09\x5a\x2a\xac\x12\xf0\xbf\xcb\x20\x6d\x98\x2e\x44\x06\x63" "\x81\x38\x8d\x27\xf1\x40\x02\xd8\xd7\x43\x1d\x39\x47\xf6\x39\x9c\x7f" "\xf9\xf5\x19\x3f\xc0\x39\x86\x53\xe5\xa6\x7b\xbb\x31\x9f\x02\xbf\x4a" "\xc6\xf6\xcc\xd5\xac\xbf\xe1\x35\x0c\xc3\xa6\xd2\xd4\x8c\xf6\xc0\x89" "\xdd\xf6\x71\x71\xff\xb3\xb1\x59\x88\xe7\xb3\x94\xc5\xda\xf3\xe1\x2c" "\xa0\x5e\x4d\xbd\xad\x7e\xdd\x45\xf1\x0c\xbc\x29\x6a\x53\xa5\x30\xd4" "\xc2\xd2\x03\xee\x65\x0d\x5f\xff\x3a\x9b\x5a\xae\x78\x79\x4f\xe8\x43" "\x27\xe5\x08\x17\x2c\xdd\x72\xee\xff\x5a\xf4\xd6\xdb\x93\x79\xbe\xf2" "\x0d\xde\x8e\x64\xb9\x1d\x31\xa8\x4c\xe8\xa7\x59\x8b\xb7\x8c\xc8\x51" "\x08\x87\x48\x11\xfc\x65\x0f\x05\x20\xa5", 163); *(uint32_t*)0x2000303c = -1; memcpy( (void*)0x20003040, "\x7b\x8a\xe4\xd9\x50\xa5\x10\xa9\x81\xc7\x8f\x22\x46\xd4\x82\x55\x35\xc3" "\x76\x55\x32\x71\x12\xa4\x14\xee\x39\x41\x62\xb6\xe5\x58\xc3\x61\x04\xbc" "\x2a\x1b\x47\xa8\x00\xa9\x22\x37\xa6\x14\x8a\x22\x2b\xca\xce\x4f\x74\xeb" "\xf7\xb4\xd6\x3a\xd6\x63\xb6\x01\xd0\x21\x46\xf2\x1c\xaf\x49\x62\x71\xe9" "\x37\x6e\x3f\x72\x1e\x48\xca\xaa\x19\x4f\x00\xe1\x37\x09\x6f\xac\xeb\xc4" "\xe2\x57\x4e\xd5\xd0\x94\x49\x1b\x63\x7c\x93\x51\x7d\xed\x18\x1f\xdf\x49" "\xe2\xda\xce\xef\xb5\xc7\x2f\x3f\xef\x86\xdf\x38\x4f\xf0\x3c\xb9\x82\x0b" "\x35\xf2\x81\xae\x9b\x50\x64\x19\x9b\x03\xe8\xe6\x89\xb3\x5f\x17\xc7\xe2" "\x36\x47\xcc\xaa\x01\xc8\x7d\x80\xab\x00\x75\x78\x48", 157); *(uint16_t*)0x200030dd = -1; *(uint16_t*)0x200030df = -1; memcpy( (void*)0x200030e1, "\x9a\x7f\x40\xad\x4c\x71\x45\x90\x3a\x86\x8b\x90\x20\xe1\xe8\x89\x9e\xd5" "\x74\x7d\xb2\x30\x04\xfc\x9d\x24\x89\x00\xab\xca\xa6\xb0\x65\xcf\x08\x00" "\x93\x0a\x71\xdc\xd8\xb8\x95\x5d\x93\xc7\x8b\x9d\x4e\x5e\x06\xd8\xd5\xc9" "\xac\x9b\x75\xd1\x77\x75\x4d\x6e\xba\x23\xe6\xd2\xbe\x54\x6c\x0d\xfe\xcd" "\xf6\x1b\xaf\x73\x29\x50\xa5\x72\x9c\x01\xfb\xdc\x11\xe3\x6c\xb4\x11\xbe" "\x20\x0a\x91\x35\x65\x7a\xcd\x97\xd2\x1e\xe4\x6a\xac\x31\x3e\xbd\xdd\xd9" "\x26\x5a\xf1\x65\x58\xdd\x3e\x5b\xa4\x83\x66\x59\xa6\xab\xfe\x08\xaa\xd8" "\x42\x76\xac\xf9\x49\xbd\xaa\x34\xbd\xf7\xf7\xb2\xdf\xb2\xfe\x8b\x9d\x6d" "\x22\x5d\xce\xce\xbe\xb6\xe1\x5f\x64\x99\x94\x72\x88\x42\xbd\x99\xfc\x94" "\x89\x7d\x24\x31\x5a\xc2\xd1\x7b\xf6\xc2\xac\xfb\xfa\x84\x64\xd8\x0f\x36" "\x30\x4f\x88\xb9\x06\xb7\x8a\xb3\x59\xbe\x34\x79\xdb\x5b\x0e\x75\x55\xf0" "\x44\x16\x80\x7c\x22\x02\xd6\x55\x1f\x24\x25\x44\x0b\xe7\x41\xdb\xe0\x53" "\xe0\xbf\xeb\x84\x56\x23\xe7\x22\xa9\x29\x38\x43\xf1\xcf\x0a\x71\x11\x9d" "\xca\xdf\x7e\x35\x3a\xf4\xda\x52\xae\xd3\x08\x6d\x6e\x5a\x09\x57\x74\x24" "\x8b\xe9\xa1\xb1\x41\x8d\xec\x1c\x03\xa2\xcb\x0e\xce\x08\x40\xeb\xea\xaf" "\x7b\x67\x86\x7d\xa4\x59\x43\xb7\x00\xe2\xd6\xda\xd7\x75\xae\x6f\x33\xe5" "\x5a\xa8\x6c\xa8\x4c\x33\x6c\x91\xe3\xb7\xd7\x22\x4f\x7a\x9a\x10\xd5\xb4" "\x5a\x6c\xe0\x76\x9d\x87\x54\x15\xbe\xa1\x36\xb5\x50\x8e\x5e\x0a\x88\x29" "\x07\x92\xda\x3b\x11\xb2\x28\x4a\x3d\x75\x7c\x30\x1c\xec\x78\xb5\x5d\x3f" "\xcf\xa0\x73\x61\x5c\xcb\x08\x9f\x66\xc5\xb9\xa5\xc8\x4f\x6c\x1b\xb7\x8c" "\x33\x70\xc4\x68\x7e\xab\x26\x07\x11\xfa\x05\x52\x56\x87\xc7\x70\x9e\x15" "\xcd\xde\xa0\x61\xf7\x07\x98\xcb\xf9\x40\xad\x92\x9e\xb8\x0f\x33\xad\x8b" "\xb4\xfc\xd3\x22\xdd\x05\x58\xf1\x11\xd7\xd0\x13\x51\x14\x79\x76\xb4\x25" "\xa2\x7e\x57\x34\x02\x49\x00\x55\x05\x4c\xf3\xd8\x0b\xeb\xde\x6a\x89\xf3" "\x08\x61\x70\x63\x37\x40\xf0\x87\x80\xaa\xc3\xa7\x3f\x17\xea\xed\xa8\xde" "\xb6\x42\xc2\x88\x79\x62\x59\x6b\x4d\x78\xc0\xff\xff\xb2\x8d\x0e\x64\x07" "\x3b\x06\x41\xf8\x9c\xf8\x3a\x69\xaf\xaa\xea\x03\xba\x60\x70\x83\x8f\xdb" "\xda\xcc\xb8\x16\x30\xa6\xfd\xaa\x77\xfc\x10\x14\x60\x13\xb9\xfd\x79\xe9" "\x65\xa3\x20\xda\xf8\x1c\x1a\x51\xf0\x32\xa3\xf4\x62\xf2\x74\x0e\x57\x9e" "\xb1\x16\xca\xd8\x0b\x4e\x23\x33\x26\xbf\x94\xfe\xa5\x21\x84\x51\x7a\xcc" "\xf6\x08\xb1\xfb\xfb\x39\x59\x42\x86\x98\x41\xb9\xca\x0f\x31\x4b\xef\xf6" "\xb2\xdc\x0a\x74\xd7\x59\x90\x12\x27\x4b\x24\x77\x5f\x03\x82\xe7\x29\x07" "\xc1\xf0\xc5\x71\xb9\x94\xf0\x48\xc0\x26\x6f\xeb\x77\x5d\x89\x3f\xec\x84" "\xe5\x73\x3c\xd6\x6a\x96\xcd\x45\xb6\x0f\x63\x74\x3b\x17\xb0\x5d\x99\xc4" "\x27\xa2\xd0\x0a\x27\xfe\xf1\x7c\xad\xf1\x28\x05\x9a\x2e\x22\x7b\x80\x70" "\x17\x55\xb0\xbc\x70\x6f\x32\x25\x5c\x8c\xd6\x19\xfa\x99\x5c\xc7\x64\x9f" "\x28\x33\x73\x61\xa6\x2c\xff\x46\x66\x9f\xa4\xcf\x09\x5a\x2d\x14\x89\x87" "\xa9\xfa\xfa\x6e\x1f\xb9\xf5\x9b\x5a\xc5\xff\x10\xa4\xc6\x2e\x01\x87\xa3" "\xc7\x5a\x98\x3f\x7f\x52\x11\x14\x2c\x6c\x09\x17\x0a\x13\xe2\x9c\x20\x44" "\xe5\x56\x8b\xda\x80\x55\xce\xe4\x72\x2e\x44\x5e\x83\xea\x01\x30\x7c\x42" "\xcb\xe6\x3a\x5b\xc5\x29\xe1\x20\x0e\x58\x74\xf7\x50\x02\x75\xab\xac\xd6" "\xcc\x0e\x3b\xf8\xfd\x38\xab\x7b\xab\x39\xf5\x4d\x18\x0d\x60\x89\x2e\x2e" "\x3a\x71\x3a\x3e\x65\x4c\x89\xb8\xe9\xba\x44\x74\x90\x99\x91\x84\x45\x14" "\xc0\x4b\x65\x5c\x66\xcc\xd6\xf2\xa1\x7e\x29\xff\x69\xd3\x43\xeb\xac\x7a" "\xc5\xe1\x51\x0a\xd4\xff\x52\xe6\xa9\x32\xa9\x7b\xb0\xd8\x14\x25\x9d\xa6" "\x54\x50\x22\x15\x2d\xd6\x3f\x06\x21\x9a\x1d\x66\xec\x22\x78\xb6\x94\x87" "\x6e\xd6\x19\x5b\x05\x43\xb8\xc9\x28\x9b\x84\x38\xe8\xee\x57\xdd\x38\xbc" "\xdb\x04\x5a\x6f\xc4\xce\xde\x28\xef\xfa\xa0\x35\x4a\xfb\xd4\x19\x0f\xcb" "\xcc\xd9\xa0\xe9\x15\x08\xe4\x39\x9e\x0e\x30\xa0\xbf\xde\xdc\xc1\x94\x54" "\xb6\xdd\x7c\x27\x85\xa6\xe4\xfe\x74\xa0\xec\xe1\xd6\x83\xad\x07\xd7\x6e" "\xaf\xec\x02\xfb\x0d\x88\xde\xbf\xea\xcd\x35\x31\x41\x31\x85\xda\x0f\xfa" "\x4f\xb9\xb5\xe6\xd5\xa9\x16\xf7\xbb\x5d\x51\xef\xc8\xab\x61\xe4\x95\x3f" "\xc6\xb2\xd1\xe6\x70\x76\x9f\x3c\xa5\x6d\x51\xb8\x04\xce\xb1\x18\x27\x8a" "\xcc\x90\x42\x2e\x1f\x51\xe4\x48\xa2\x7d\x2f\xe4\xf9\x3c\x88\xcf\x7c\x61" "\x48\x47\x4b\xf6\x50\x90\x2d\xd6\xdd\x96\x54\x10\x44\x11\x3d\x24\x4c\xf9" "\x38\x15\x0e\xc4\x26\xe7\xed\x63\xe1\xf1\x53\xbb\xe3\x28\xf4\x23\x25\x52" "\xb1\x04\xc8\xde\xe6\x0b\x0c\x4e\x4c\x25\xf2\x60\x5e\x97\xcc\x6f\x42\x63" "\xd3\x2e\x83\x40\xbe\x2d\x16\x71\x37\x68\x23\x73\xae\x4c\xd5\x01\xfd\xc9" "\xc5\x35\x9b\x40\xf5\x28\x03\xa5\xe4\xc0\xe0\x4a\x5d\xe0\x41\x2c\x5c\xbd" "\x4d\x05\xe6\x13\x5a\x12\x09\xd4\xb2\xdf\xf5\x0d\x39\xe4\x81\xf1\xd1\xb0" "\x1e\xd7\x10\x04\xfb\x0c\x18\xe7\x36\xaf\x8a\xb1\x76\xf8\x33\xa4\x39\xa8" "\x5c\x91\x32\xe6\xd2\x29\x6f\x66\x57\x71\xc6\xa2\x84\xea\xdc\x08\xc9\x4f" "\xfa\x52\x0d\xcc\x37\xfd\x64\x26\xc1\x52\x36\x46\x99\x51\x4b\x15\xd4\xdf" "\x67\x32\xff\xf3\x98\x34\xe8\xba\x29\x68\x8b\x19\xdb\x27\xa9\x70\xd9\xd7" "\xfb\xee\x97\x3c\x76\xbe\xe0\x4f\xb6\x16\x49\x63\x96\x9e\xbd\xe0\xf7\x85" "\x60\x67\x81\xd6\x37\x26\x73\x6d\x8b\x60\xa7\x13\xd5\xf7\x22\x07\xa2\x3f" "\x6f\x00\x42\x0f\xdf\x24\xd1\x4c\x06\x9f\x36\xa7\xe2\x36\x62\x04\x81\xcc" "\x7a\x63\x85\x7c\xc1\x35\x5b\xac\x8d\x4f\x9a\x3f\x32\x78\x5a\xd4\xd9\xd8" "\x17\x19\x07\x7a\x81\x6b\x33\xb9\x80\x06\xc3\x22\xee\x47\x3a\xa9\xf8\xf8" "\x3f\xae\x86\xa4\xd4\x21\x10\x4b\x29\x8a\x9e\x42\x35\x7c\x44\xb7\x73\xe3" "\x50\x4b\x3f\x9e\xb5\xb2\x93\x30\x41\x1b\x77\x6b\x78\xfd\xb6\xdd\x97\x13" "\xdd\x1a\xee\x0c\xc9\xc7\xee\x8b\xd2\x3a\x50\xd4\xc8\xba\xba\xf6\xd7\x4b" "\xc2\x53\x77\x00\x9a\x8c\x57\xc9\x41\xf8\x0e\x58\xac\x08\xc9\x3a\x27\x56" "\x56\xcb\xad\x38\x64\xdf\x9e\x79\x13\x05\xd6\x61\x03\xab\x30\x98\x3b\x07" "\x55\x3e\xde\x5b\x5d\x5b\x0a\xab\x15\x7f\x80\x5e\xb6\xc1\x1c\x75\xdd\x7f" "\x29\x7c\x2c\xc9\x11\x05\x51\x13\x1a\x79\x71\x64\xde\xc4\x22\xb1\x37\x99" "\xf1\xc2\x61\x46\x4c\x76\x5a\x62\xc2\x01\xeb\x9c\x86\x86\xee\xe9\x46\x42" "\xd5\x9f\x42\x9c\xd1\x37\xcb\xa0\xd1\xa8\x12\x6d\xcd\xfc\x28\xea\x5c\x20" "\x15\x26\xc6\x11\x64\xa8\x6f\x48\x0d\xfd\xe0\xc6\x0f\xdf\x6a\xfd\x3c\xd6" "\x47\x19\xde\x1d\x89\xb5\xa3\x62\xe0\x58\x05\x4a\x9d\xb7\x3a\xaf\xfa\xc3" "\x24\xb0\x4e\x89\x03\x06\x0e\x1f\x14\xca\x4a\xc3\x1c\x82\x18\x30\x66\xe6" "\xd5\x81\x68\x5e\xfb\xe3\x45\x2a\x20\xa6\x65\x16\x6b\x03\x80\x82\x20\x77" "\x0d\x66\x05\x19\x71\xb6\x1d\x81\x14\x37\x6e\x22\xa4\x51\x1c\xae\x9f\xdf" "\x7b\xbe\xd6\x8b\xb9\xf4\x5b\x57\xee\xe1\xc1\x57\x75\x73\x0e\xf1\x43\x47" "\x31\xd7\xb8\x2a\x7c\xbc\xd6\x15\x53\x96\x26\x39\x84\xed\xfc\xea\x62\x19" "\x61\x89\xda\x0b\xa9\x90\x8d\x7d\x5e\xf5\x14\xd7\x5a\x3e\x1d\x4a\xe4\x26" "\x54\x36\x50\x83\x87\x3f\xc4\xce\x96\x9f\xa4\xfa\xc5\x1d\x64\x0b\xe8\xd9" "\x48\xbb\x94\x64\xd1\xa7\xe4\x94\xc8\xdf\x98\xbd\x5a\x56\x9f\xf7\xfe\x1a" "\xca\x54\x2c\x34\x61\x01\x48\xa8\xf1\xdc\x9d\x60\xff\x0f\x76\x12\x70\x57" "\x7f\x28\x6a\x36\x2f\x32\x16\x41\x84\xff\xce\x3a\xd1\x32\x63\x7e\x9f\x03" "\x81\xe9\xce\x76\xa1\x1f\x29\x6f\x9d\x1e\x83\x5c\xdc\x44\x92\x61\x04\xe1" "\xdf\x4d\x0a\x28\x2a\x84\xb9\xfb\xc2\x30\x64\xbf\xca\xb0\xd2\x21\xc6\xe3" "\x12\x4a\xe8\xba\x60\x22\xe6\x2f\x17\x0d\xcc\x2d\x65\x5f\x73\xb4\x0f\x83" "\xfd\x65\xf5\xc7\x05\xbc\x1f\x9e\x8d\xf1\x3a\xde\xad\xff\x9e\x1f\xe4\x66" "\x0a\x55\xbe\x7d\xc9\x69\xcf\xff\xae\xd6\x07\x19\x01\x62\xdc\xd0\x9d\x0c" "\xd8\x6a\x29\x7b\x22\x14\x2b\x88\xf0\xeb\x28\xdd\x1a\x45\x15\x2a\x4f\x4f" "\x2d\xca\x0d\x96\xd3\x9f\xa5\x94\x34\x90\x40\xf4\x86\xcd\x48\x6a\xf6\x19" "\xb7\x08\x32\x36\xcf\x90\x32\x4c\xdd\xc6\xf1\xed\x0f\x6a\x10\x3c\x8d\x93" "\x6d\x7f\x2f\x31\xd4\x20\xef\x50\x93\x18\x38\xe6\x67\x21\xbf\xf7\x49\x46" "\x17\xb6\xb4\xbc\x38\x5f\x3e\x51\xb3\xf8\x1c\xf5\xd6\x95\x3a\xc7\xfd\xdc" "\x0f\x34\x66\x68\x29\x11\xb3\x8b\xc7\xf0\x82\xe0\xc1\x8e\x3a\xe0\xba\xdf" "\x7f\x3f\xd3\xe1\x86\xeb\xc2\xba\xb7\x1f\xa2\x6f\x77\xbb\x14\xcd\x97\xe6" "\x76\x1c\x93\xc8\xc2\x58\x87\xc0\xef\x1f\x3d\xc1\xd8\xd8\x6c\xe0\xfb\x73" "\x19\x0f\x66\xf4\xde\xca\x77\x97\x7e\x8d\x60\x64\xbf\xee\xac\x3f\xad\x2b" "\xc5\x04\x88\xc1\x44\xe2\xa1\xa8\x2f\xcc\x1e\x1c\x12\xac\x54\xbf\x3e\x2d" "\x46\x8e\x8f\x53\x24\x1e\x4a\x6a\xd9\xe4\x66\x74\x6a\x45\xb0\x53\x45\x2d" "\xed\x5c\xaa\x20\x46\x18\x81\xd7\x8d\x82\x35\xe9\x86\xba\x8b\x77\xe8\x36" "\x01\x65\x5d\x26\x50\xbf\x1b\x64\xce\x17\xc7\x53\x14\x21\x6b\x43\xbb\xd1" "\x10\x1a\x2e\x12\xe5\x75\x25\xbb\x7d\x3b\x13\x6a\x70\x63\x5b\xda\xc8\xaf" "\x24\x36\x7a\x24\xce\x2f\xe2\xa7\x2e\xf2\xb0\xe5\x6f\xf8\xdc\x62\xa8\x29" "\x46\xf8\x6f\x9b\x6b\x14\x18\xa8\x9b\x19\x71\x37\x2d\xfe\x7d\x5c\xe2\xe6" "\x61\x1b\xef\xff\x72\x1f\x04\xa1\x9b\xce\x7f\x90\xb1\x55\x1a\x4c\xde\xad" "\x13\x66\x62\xc5\x05\x13\xfd\xde\x6f\x9d\x4a\x19\x9c\x39\x07\xed\x87\x99" "\xf2\x31\xf5\x4d\xd8\x34\x7c\x71\xd8\x29\xff\x8d\xdc\x5d\x96\xb5\xaa\xc2" "\xfe\x58\x65\x2c\x81\xff\x7f\x54\xe2\x56\x81\x19\xdf\xf2\x76\x3e\xf4\x35" "\xaa\x42\x06\x30\xda\xcc\x7e\x94\x14\x34\x0e\xe8\x68\x8f\x46\xc7\xa8\xab" "\x96\xd8\x60\x93\x76\x41\x04\x2b\x3c\xdf\x68\x57\xff\x1d\x2d\x4e\x47\xce" "\xc1\xf2\x3e\x65\xfe\x54\x1f\x38\xcb\x96\xb1\x32\x66\x6f\x99\x90\x02\xe8" "\x9c\xd1\x89\x6c\xa5\x8c\x2e\x63\xb8\x73\x82\xe1\xa6\xc1\xee\x9a\xfa\x56" "\xcf\x3b\xa9\x23\xfa\x9c\x98\x9e\x20\xbf\xf3\x13\xf3\x72\x52\x63\x2f\xdc" "\xff\x03\xfb\xdd\x2d\x33\x4e\xe9\x3b\xaf\x75\xc1\xbd\xae\x30\xfe\xaa\x81" "\xfb\x2a\xc1\xb6\x3c\x42\xdd\xa0\x6f\x20\xce\x8c\x9d\x00\x3e\xb3\xef\xed" "\x79\x31\xde\xf3\x42\xfb\x87\x4f\xce\x92\x76\x3f\x6f\x47\x7c\x7f\x58\x9b" "\x75\xd2\x12\x94\x19\xfc\x4c\xb7\xa8\x89\x3a\x1d\x3f\x94\x53\x3e\xd9\xfd" "\xf9\xf2\x1f\xc2\x54\xfd\x80\xaa\x74\x75\x08\x33\xd3\x90\x32\x7a\x21\x07" "\xe7\x61\x24\x09\x28\xd3\x5a\x36\xc5\xea\xca\x61\xfd\x84\x81\x16\xb8\xdd" "\x7e\xc8\x15\x79\x28\xbc\x2d\xd8\x7f\x77\x56\xaa\x51\x7c\xf6\xa6\x1d\x20" "\x09\xfd\x4b\xa0\x57\x9c\xa3\xb3\x12\x9c\xfd\x54\x03\x54\x6f\x5a\xb6\xd0" "\x57\x57\x99\xa0\x08\xfc\x67\xda\x96\x58\x42\x76\x36\xd8\xf8\x06\xd9\xb8" "\xca\xd6\x4a\xee\x43\x8d\x0a\x9b\x45\x95\x7f\x31\xa5\xaf\xe3\xed\x89\x4a" "\xdd\x9a\xca\xdf\xd3\x47\x24\x60\x99\xc6\xff\x0b\x4e\xc6\xf1\x9a\xc6\x15" "\x57\xda\xf8\x73\x9e\x52\x81\x85\xab\x14\x68\xca\x72\xd6\xd7\x2e\x4f\x02" "\x6e\x37\x1e\x54\x0b\x77\x4b\x65\x76\xdf\x30\x14\xdc\xc9\xe9\x1b\x2c\xd1" "\xf0\x40\x3a\x4f\xca\xa6\x62\x7b\x22\x68\x2b\xb5\x4f\x92\x15\x0c\x29\x17" "\xac\xae\xe1\x97\x2b\x2b\x03\xbc\x2b\xd3\x7f\xdb\x9e\x73\x52\xc6\x54\xd9" "\x4e\xf1\x96\xb7\x22\x9e\x4d\xa5\xee\x62\xb7\xd3\x95\xec\xdd\x51\x77\xf2" "\x56\x32\x42\xea\x49\xff\x78\x15\x1a\x4a\x81\x6a\x94\xe8\x9b\x03\xf4\x1c" "\x7e\x66\x84\xf8\xbe\x3e\x58\x02\xe9\x33\x8e\x7c\xbd\x3b\x43\xf7\x08\xc0" "\x62\xf9\x44\xa5\x9f\x31\xb0\x2c\xa9\xa1\x77\xe6\xb6\x81\xac\xce\xe8\x78" "\x5d\x24\x67\xd2\xd7\x86\x36\xbe\x43\x30\xfe\xba\xa3\xf6\x90\x7d\xb0\x79" "\x92\xa2\xde\x74\xe4\x59\xf3\xae\x8e\xe6\xad\xae\x20\xcb\xc7\x5a\xab\xd2" "\xd5\xd3\x42\x4d\xe0\xdd\xcc\x3d\xdd\x98\x1c\x3a\x49\x66\xc5\x7f\x8f\xdb" "\x1c\x42\xdb\x87\x39\x5f\x0b\xc8\x00\xff\x8d\xdb\x4c\x22\x8a\x7d\x79\x3d" "\x8a\x99\x78\x85\x49\x4a\x85\x78\xf5\x43\x3d\x3f\x82\x88\x6e\xa5\x73\x64" "\x1b\xf1\x60\x65\xef\xbc\x25\x71\x8c\x88\xf7\x27\x7c\xe0\x4c\x94\xaf\x56" "\x0d\x8d\xeb\x79\x68\x49\x6f\x84\x9d\x3f\xad\x78\x74\x12\x72\xb0\x8b\xf7" "\xae\xc3\xf3\xc7\x77\x42\x8d\x3b\x8b\x89\x73\x33\xae\x5a\xfb\x68\x23\xaf" "\x63\xcb\x73\x47\x60\x1e\xe2\xe8\xd4\xe2\x1b\x21\xa1\x2e\x6d\x42\xf6\x6a" "\x1a\xac\x26\xd2\x96\xbc\x68\xa9\x98\xd8\xba\x17\x9e\xd5\xf7\x56\xc2\xef" "\xd8\xa7\xac\xc0\xe3\xf0\x80\x93\xbb\x4a\x83\xd3\x7f\x15\xb4\xfe\x07\xc9" "\x08\x58\x05\x8a\xd1\xff\x0e\x21\xbb\x7b\xf4\x36\x30\x79\xc5\xd4\x52\xdb" "\xa5\x97\x2b\x21\xc8\xf4\x1d\xaf\x6f\x11\xa5\x1d\x32\x1d\x3c\x1d\x54\x41" "\x90\x23\x80\x36\xd9\x07\xd9\x65\xff\x46\x9c\xe4\x89\x5e\xb7\x67\x5f\x3e" "\x94\xa1\x5f\x83\xb8\x37\xb8\x92\xa4\x03\x90\xd8\x7d\x76\xe9\xb1\x5e\xda" "\x02\x36\x62\x99\xd3\xdd\x93\x94\x34\x66\xbc\xee\xb2\xf9\xe4\x65\xad\xcc" "\xc0\x8e\x1a\x02\xc3\xac\x01\x81\x59\x31\x62\x7e\xd3\x27\xe0\xff\xbe\x09" "\x56\x32\x21\xa3\x65\xb8\x8c\x4f\x24\x49\xbd\x36\x34\x92\x0d\x5b\xfb\xde" "\x7c\xdc\x92\xc4\xcb\x16\xa5\x79\xf3\x5f\x07\xda\xfc\x87\xce\x6c\xe4\xde" "\x7b\xf9\xe8\xff\x0e\x80\xb8\x1c\xda\xb8\xf2\x16\x4a\x25\xa0\xa6\x92\x96" "\x79\xce\x9a\xe0\xdc\x2a\xc7\xed\x41\xa7\x87\x44\x66\x76\xf0\x91\x59\x75" "\x51\xdc\x2e\x8c\x05\x42\x24\xba\xc6\x65\x2b\xba\x5f\xb6\x75\xc0\xb2\xc9" "\x4d\x2f\xaa\xc1\x60\xf1\x1b\x7b\x96\xfc\x96\x41\x5a\xca\x8a\x47\xfa\x03" "\x65\x8b\x8a\xfa\x24\xb6\xbd\x97\xf7\xdb\xee\xad\x9a\xe5\xf7\xec\x1c\xb0" "\xd0\x00\x05\x5f\x41\xa5\x04\x3c\x6c\x4c\x97\x21\x23\x98\xb1\x68\xb5\xcb" "\x9e\xe6\x50\x72\x6e\xab\xcc\x31\xb6\x71\x2e\x81\x5f\xda\xae\x77\x88\x53" "\x50\x88\x4f\xb3\x6d\x6d\x54\x44\xd5\xe5\x50\x0a\x7d\x63\x6d\x4e\xce\xd1" "\x4b\x9d\x41\x1c\x76\x5b\x36\xa4\xbe\x06\xca\x9b\xe2\x96\x5d\x6d\x6c\x06" "\xc3\xb6\xbc\xb3\x8b\xab\xeb\x29\x99\xee\x71\x29\x5d\x48\x92\x6b\xf6\xe3" "\x93\x63\xfa\xbf\x74\xde\x5e\x57\xaa\x0b\x59\xf9\xdd\xde\xca\x14\x2d\x0c" "\x50\xab\x7f\xf1\x98\x19\x6c\x69\xc9\x71\xe6\xab\x59\x12\x20\xf4\xe4\x2d" "\x65\x25\xe2\xdb\xd9\x9b\x6c\x57\x94\x9c\x85\x4e\x4e\xe0\xe4\x58\x1f\x9e" "\x3e\x16\x0b\x3f\x66\xb0\x1f\x23\xf4\xd0\x47\x2c\x0a\x1f\x30\x78\x37\xac" "\x8d\xac\x0a\x25\x7d\x09\xab\x82\x97\x51\x48\xdc\xd7\x64\xfe\x63\x59\xa5" "\xf2\x1b\x9c\xbe\x2a\xe7\xb9\xb2\x77\x48\x9a\x8b\x32\x85\xb8\x28\x9a\x84" "\xff\x85\x45\x08\xb4\x48\x8f\xfc\xf6\x8f\x47\xec\x7a\x5c\x18\xa8\xc3\xd0" "\x6e\x26\xb3\x2f\x75\x4a\xc7\x4e\xa8\xe9\x3a\x55\x41\x47\xfd\x3b\x3d\xaf" "\x1f\xbe\x92\x4e\x2e\x38\x9c\xac\x13\xa5\xf8\x0f\x3a\x21\xdb\xd2\x50\xd3" "\x91\x7f\x7b\x5a\xcf\xc7\x39\xa6\x3f\x2b\x3d\x6b\x3f\x09\x9e\xfb\x4b\xe7" "\xa8\x42\x21\x5c\x89\xfc\x87\xbd\x85\x50\xd1\x1b\xa2\xa4\xaf\x0f\x11\x1a" "\xb1\x24\x50\x3b\x26\xfe\xea\xe3\xbe\x3e\xe2\x41\x68\xdd\x45\x53\xa2\x26" "\xb9\x16\x8e\xdb\x11\xc3\xe6\x1b\xc8\x50\xad\xf9\x95\xb4\xd6\xf1\xaa\xce" "\x6d\xb0\xb9\x1f\x80\x5c\x3d\x17\x89\xa3\xe6\xb4\x70\xe5\x47\x09\x68\xf4" "\x29\xd5\xb0\x5c\x8f\x76\xca\x29\x81\xe3\x7f\x5b\xde\x4a\xd0\x0a\x09\x75" "\x5c\x76\x77\x4e\xad\x7d\x93\xf3\xf4\x12\x55\xb1\xd5\x61\x52\xe3\x69\x9b" "\x13\x3b\x2e\x0b\x27\x74\x27\xc9\x92\x32\x3d\x1b\x4d\x8c\x43\x84\x34\xe9" "\xe9\x01\xdd\xd4\x37\x88\xf8\x0c\xb9\xa9\x75\xe9\xdd\x16\x71\xce\x16\xbe" "\x5f\xf8\x03\x3d\x5d\xa8\x24\xf0\x0f\xd7\x8b\x54\x0e\xdb\xcd\x69\xa2\xe9" "\xaf\xf0\x3e\x31\xaf\x9a\xfe\xfb\x80\x94\x34\xf5\x2b\x4a\x12\x39\xfd\xd2" "\x41\xed\x3a\x26\x82\x58\xad\xdd\xe1\x9d\x17\x24\x15\x5a\x1a\x4c\x87\x7b" "\xd5\x9b\x06\x59\xb7\xa7\x86\x88\x6f\x6f\xfc\xb5\x99\x9d\x1f\x9c\x00\x7d" "\x61\x50\x20\x92\x6f\x71\x65\xa9\xdd\xd4\xaa\xa3\xc7\xb6\x31\xd3\x0c\xc9" "\x51\xe3\x28\x13\x1d\x99\x28\x2a\xc0\x6a\x18\xf8\x83\x73\x09\x23\x20\xea" "\x53\x08\xf0\x6c\x37\x6e\x71\x1a\xec\xda\x4c\xd1\xc2\xb6\x39\xd9\xea\x7a" "\x26\x13\xd4\xe9\xea\xa9\xa0\xef\x72\x77\x4f\xde\xc6\x22\xf7\xd1\x31\xb4" "\x51\x35\xd5\x77\x89\x7b\xf6\x86\xb4\x60\xa3\x71\x08\x30\x70\x13\x9e\xa5" "\x44\xbd\xa1\x50\x12\x25\x1d\x6c\x8e\x71\x63\xc2\x54\x12\x84\x1f\xae\xfb" "\xa7\x67\x65\x64\x8c\xa7\xcd\x1b\x42\x34\x03\xa6\x54\xb6\xb5\x75\x45\x88" "\xae\x6c\x30\x96\x21\x47\x7d\xb2\x0f\x7c\x92\x36\xaf\x1e\x42\x2e\xbd\x3f" "\xb6\xd6\xa7\x12\xe7\xa6\xd0\x0d\x58\x41\x6b\x7d\x65\xa5\x3a\x25\x14\xbf" "\x51\xbe\xdf\xe9\x20\x7f\x16\xa4\xd7\x94\x18\x60\x03\x89\xb9\x8e\xa8\xb9" "\xe0\x6b\x8d\xa7\x08\xa8\x6f\x19\x1e\x56\x79\x25\xaf\x39\xa0\x9a\xc9\xfd" "\x79\x02\xe8\xf8\xe7\x75\x67\xba\xf1\xb7\x5c\x05\xba\x1e\xb7\x08\x9b\x42" "\x48\x01\x40\x5a\xfc\x98\x2a\x8d\x79\xc8\x0f\xad\xa1\x84\xa1\xab\x3b\xab" "\x52\x6a\x3b\x0a\x5e\x20\xd2\xdc\x6b\xcd\xd2\xc5\xcb\x7c\x49\xf7\x35\xf3" "\xe8\xf4\xd3\x6a\x38\x8c\xa8\x05\x87\x6a\xe0\x8f\x0e\x3a\xcc\xa5\xdd\x86" "\x4c\x1f\xa1\x55\x20\x68\xbf\x79\x90\x95\x22\x14\x80\x37\x4f\xd2\xdc\xae" "\xdd\xb7\x4b\xe9\x34\x70\xef\xf4\xfe\x27\x8e\x19\x0f\x0a\x13\x1f\x32\x34" "\x0a\xda\x9c\xca\x51\x8a\xf7\x69\xf4\x29\x43\x87\x5f\x4c\x57\x07\xbe\xee" "\x21\x79\x77\x1d\xa2\x1c\xd6\x64\x05\xb9\x97\x36\x48\xbd\x04\x7a\x51\x6d" "\x1c\xf9\x02\xfa\x1f\x0f\xcd\xcb\xc3\xf4\xc1\xf2\x0f\xc2\x2f\x9a\x7e\x9f" "\x4c\x3a\x52\x57\x63\x99\x60\x4c\x46\xf8\x3e\xde\x44\xf5\x42\xd0\x6d\x54" "\xe6\xe8\xa1\xe6\x93\xa2\xcf\xcb\xb1\x6c\x17\x8d\x1b\xac\xe9\x76\x13\x3e" "\x72\xcc\x45\x33\xbd\x02\xb1\xc4\xec\x2c\xc2\x20\x97\x43\x5a\xff\x5a\x68" "\x2c\xa7\x22\x74\x14\x89\x54\x50\x83\x15\x60\xfa\x68\x24\x93\xf4\x81\x4c" "\xe8\xfb\xdb\x19\x0f\x8c\xe2\xb5\x33\xed\x95\x82\x63\x85\x11\xbd\xa9\x3a" "\xea\xe5\xd0\x69\x0f\x74\x5b\x78\x8d\xb6\x22\x86\x4b\xa3\xfb\x60\x95\x2f" "\x11\x94\x27\xfb\xe6\x67\x54\xc5\xc0\x38\xc5\xfb\x2c\xb8\x7c\x32\x6d\x65" "\x86\x2e\x35\x3c\x14\x95\x0b\xd1\xfa\x7c\x70\xe3\x63\x23\xe9\xcf\x90\xc8" "\x1f\x62\x75\xe5\x9c\x79\x26\xac\xac\x15\x60\xa0\xb6\xbb\xc7\xa8\x50\x81" "\x7f\x2e\xff\xa1\x9d\x48\x53\x15\xa2\x19\xd4\x9e\x29\x3f\x87\x12\x78\x29" "\x4d\x02\x76\x5c\xf7\x2c\xaa\x2f\x43\x8d\xe3\x33\x7e\xd2\x05\xbf\x68\xff" "\x6d\xda\xaa\x5e\x4b\x80\xde\x5f\xba\x02\x2d\xfc\xf9\xcf\x07\x4a\x31\x96" "\x78\xdf\x11\xeb\x77\xb3\xef\x66\xe5\x12\xb6\x7b\xa5\x18\x22\x65\xa6\x0e" "\xaf\x45\x76\x91\xe9\x73\xd2\x3c\xba\xf6\x00\x05\x37\xf8\x86\x69\x50\x74" "\xeb\xb6\x16\xf9\xcd\xad\x9d\xe7\xc6\xfe\x9e\xcf\xbd\x13\xd5\x37\xd6\x4c" "\x34\xa7\xc9\x0c\xa5\x6b\x50\xe6\x0d\x6a\x70\x67\xe3\x91\xe6\x35\x61\x79" "\x3e\xdf\x6e\xd3\xc2\xee\xb8\x55\x59\x09\xa5\x9c\xe7\x3d\xa1\xf0\x96\xd4" "\x1f\xb4\x2d\xe4\x44\x94\x12\x83\x24\xa9", 4096); *(uint8_t*)0x200040e1 = -1; *(uint16_t*)0x200040e2 = -1; syz_mount_image( /*fs=*/0x20000180, /*dir=*/0x20000100, /*flags=MS_I_VERSION|MS_PRIVATE|MS_SYNCHRONOUS|MS_STRICTATIME|MS_REMOUNT|MS_RELATIME|0x240c*/ 0x1a4243c, /*opts=*/0x20002f80, /*chdir=*/0, /*size=*/0, /*img=*/0x20000000); memcpy((void*)0x20000040, ".\000", 2); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000040ul, /*flags=*/0, /*mode=*/0); if (res != -1) r[1] = res; syscall(__NR_lseek, /*fd=*/r[1], /*offset=*/2ul, /*whence=*/0ul); syscall(__NR_getdents64, /*fd=*/r[1], /*ent=*/0ul, /*count=*/0x22ul); return 0; }