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