// https://syzkaller.appspot.com/bug?id=9772a79a7da50d24381467dbe218417dfba04819 // 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 #include #include #ifndef __NR_fsconfig #define __NR_fsconfig 431 #endif #ifndef __NR_fspick #define __NR_fspick 433 #endif #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } 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"); } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 5; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } 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[2] = {0xffffffffffffffff, 0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x20000040, "jfs\000", 4); memcpy((void*)0x20000240, "./file7\000", 8); *(uint8_t*)0x200003c0 = 0; sprintf((char*)0x200003c1, "%023llo", (long long)-1); memcpy((void*)0x200003d8, "\x4e\xd7\x88\x46\xc7\xca\x76\x13\x57\xe3\x0e\x6d\xf2\x71\xe7\xb3" "\x67\xdd\x48\x75\x6f\x24\xa1\xd1\x18\x48\x9c\xd2\x7d\x01\x87\x15" "\x75\xbe\xc3\xc3\x31\x6a\x8b\xfa\x3f\x17\x2b\x2b\xc8\x85\xeb\x03" "\x1a\xba\x61\x14\x4e\x3b\xa9\xa0\x93\x07\xa1\x67\x47\xa8\xa2\x57" "\x79\x4e\xc5\x94\x8e\x2b\x69\xdf\x6c\xc7\x1b\x69\x34\xc0\xf3\x6d" "\x23\x8b\xcf\xb2\xaa\x38\xbc\x08\x49\x85\xd4\xc2\x66\x0f\x91\x4e" "\x27\xe6\xde\x63\x52\xfa\xb4\x20\x61\x72\x73\xcd\x84\x2e\x4a\xf0" "\x0e\x94\xec\x82\x7d\x57\xbc\xa1\x87\xc9\x55\x61\xf1\xd9\xea\x8e" "\x8d\xc0\x0d\xbe\xcd\x37\x31\xeb\xb7\x6c\x06\x19\x86\xc7\x66", 143); sprintf((char*)0x20000467, "%020llu", (long long)-1); *(uint16_t*)0x2000047b = 0; *(uint16_t*)0x2000047d = 0; *(uint32_t*)0x2000047f = -1; memcpy( (void*)0x20008080, "\x78\x9c\xec\xdd\xdb\x6f\x1c\x57\x1d\x07\xf0\xdf\x5e\xbc\xbe\x94\xa6" "\x56\x1f\xaa\x10\x71\x49\x53\x2e\x2d\xa5\x49\xe3\xa4\x4d\xcb\xad\xa9" "\x90\x78\x00\x01\x95\xaa\xbc\x27\x32\x6e\x15\x91\x02\x4a\xd2\x8a\x56" "\x16\x71\x15\x89\x77\x24\x9e\x51\xf9\x23\x78\x06\xa1\xbe\x20\x15\x89" "\x3f\x81\x7f\x20\x92\xdd\x17\x22\x10\x99\x6a\xec\x73\x9c\xf1\x78\xed" "\xb5\x1b\x7b\x67\xed\xf9\x7c\x24\x67\xf6\xb7\x67\xc6\x7b\x26\x5f\x8f" "\x67\xd7\x73\x39\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xc4\x8f\x7f\xf4\xe6\xf9\x4e\x44\x5c\x7d\x2f\x3d\x31\x1f\xf1" "\x85\xe8\x45\x74\x23\x66\xcb\xfa\x74\xfc\x23\xe2\xce\xfd\x3c\x7f\x3f" "\x22\x4e\xc6\x7a\x73\x3c\x15\x11\x27\xa6\x23\xca\xe5\xd7\xff\x79\x22" "\xe2\x62\x44\x7c\x72\x22\x62\x75\x6d\x79\xb1\x7c\x7a\x61\x8f\xfd\x78" "\xe9\x8d\x7b\xff\xfc\xe9\x9b\x3f\x5b\xf9\xc3\x57\xff\xfe\xaf\xff\x7d" "\xfc\xa7\xbf\xd6\xdb\xdf\xf8\xf8\x87\x3f\xf9\xcb\x9d\x88\xf9\x93\xbf" "\xff\xe3\xff\xef\x1c\xcc\xba\x03\x00\x00\x40\x5b\x14\x45\x51\x74\xd6" "\x3f\xe6\x47\x9c\x4a\x9f\xef\xbb\x4d\x77\x0a\x00\x18\x8b\xbc\xff\x2f" "\x92\xfc\xbc\x5a\xfd\x28\x75\x3f\xb6\x6a\xba\x3f\x6a\xb5\x5a\xad\xde" "\xae\x18\xee\x4e\xb5\x88\x88\x95\xea\x32\xe5\x7b\x06\x87\xe3\x01\xe0" "\x88\x59\x89\xfb\x4d\x77\x81\x06\xc9\xbf\xd5\xfa\x11\xf1\x58\xd3\x9d" "\x00\x26\x5a\xa7\xe9\x0e\x70\x28\x56\xd7\x96\x17\x3b\x29\xdf\x4e\x75" "\x7f\x70\x7a\xa3\x3d\x9f\x0b\xb2\x25\xff\x95\xce\xe6\xf5\x1d\x3b\x4d" "\x47\xa9\x9f\x63\x32\xae\x9f\xaf\xbb\xd1\x8b\x27\x77\xe8\xcf\xec\x98" "\xfa\x30\x49\x72\xfe\xdd\x7a\xfe\x57\x37\xda\x07\x69\xbe\xc3\xce\x7f" "\x5c\x76\xca\x7f\xb0\x71\xe9\x53\xeb\xe4\xfc\x7b\xf5\xfc\x6b\x8e\x4f" "\xfe\xdd\xa1\xf9\xb7\x55\xce\xbf\xbf\xaf\xfc\x7b\xf2\x07\x00\x00\x00" "\x00\x80\x09\x96\xff\xfe\x3f\xdf\xf0\xf1\xdf\xe9\x47\x5f\x95\x3d\xd9" "\xed\xf8\xef\xe9\x31\xf5\x01\x00\x00\x00\x00\x00\x00\x00\x0e\xda\x1e" "\xc6\xff\x2b\x1f\x5c\xce\xf3\xd7\xc7\xff\xdb\x64\xfc\x3f\x00\x00\x00" "\x98\x58\xe5\x67\xf5\xd2\x47\x27\x1e\x3e\xb7\xd3\xbd\xd8\xca\xe7\xaf" "\x74\x22\x1e\xaf\xcd\x0f\xb4\x4c\xba\x58\x66\xae\xe9\x7e\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x40\x9b\xf4\x37\xce\xe1\xbd\xd2\x89\x98" "\x8a\x88\xc7\xe7\xe6\x8a\xa2\x28\xbf\xaa\xea\xf5\x7e\x3d\xea\xf2\x47" "\x5d\xdb\xd7\x1f\xda\xac\xe9\x5f\xf2\x00\x00\xb0\xe1\x93\x13\xb5\x6b" "\xf9\x3b\x11\x33\x11\x71\x25\xdd\xeb\x6f\x6a\x6e\x6e\xae\x28\x66\x66" "\xe7\x8a\xb9\x62\x76\x3a\xbf\x9f\x1d\x4c\xcf\x14\xb3\x95\xcf\xb5\x79" "\x5a\x3e\x37\x3d\xd8\xc3\x1b\xe2\xfe\xa0\x28\xbf\xd9\x4c\x65\xb9\xaa" "\x51\x9f\x97\x47\xb5\xd7\xbf\x5f\xf9\x5a\x83\xa2\xb7\x87\x8e\x8d\x47" "\x83\x81\x03\x40\x44\x6c\xec\x8d\x56\xed\x91\x8e\x99\xa2\x78\x22\x9a" "\x7e\x97\xc3\xd1\x60\xfb\x3f\x7e\x6c\xff\xec\x45\xd3\x3f\xa7\x00\x00" "\x00\xc0\xe1\x2b\x8a\xa2\xe8\xa4\xdb\x79\x9f\x4a\xc7\xfc\xbb\x4d\x77" "\x0a\x00\x18\x8b\xbc\xff\xaf\x1f\x17\x38\xa8\xfa\xdd\xce\xc1\x7e\x3f" "\xb5\x5a\xad\x56\xab\xd5\x9f\xbf\xae\x2a\x86\xbb\x53\x2d\x22\x62\xa5" "\xba\x4c\xf9\x9e\xc1\x70\xfc\x00\x70\xc4\xac\xc4\xfd\xa6\xbb\x40\x83" "\xe4\xdf\x6a\xfd\x88\x38\xd9\x74\x27\x80\x89\xd6\x69\xba\x03\x1c\x8a" "\xd5\xb5\xe5\xc5\x4e\xca\xb7\x53\xdd\x1f\xa4\xf1\xdd\xf3\xb9\x20\x5b" "\xf2\x5f\xe9\xac\x2f\x97\x97\x1f\x36\x1d\xa5\x7e\x8e\xc9\xb8\x7e\xbe" "\xee\x46\x2f\x9e\xdc\xa1\x3f\x4f\x8d\xa9\x0f\x93\x24\xe7\xdf\xad\xe7" "\x7f\x75\xa3\x7d\x90\xe6\x3b\xec\xfc\xc7\x65\xa7\xfc\xcb\xf5\x9c\x6f" "\xa0\x3f\x4d\xcb\xf9\xf7\xea\xf9\xd7\x1c\x9f\xfc\xbb\x43\xf3\x6f\xab" "\x9c\x7f\x7f\x5f\xf9\xf7\xe4\x0f\x00\x00\x00\x00\x00\x13\x2c\xff\xfd" "\x7f\xde\xf1\xdf\xbc\xca\x00\x00\x00\x00\x00\x00\x00\x70\xe4\xac\xae" "\x2d\x2f\xe6\xeb\x5e\xf3\xf1\xff\x2f\x0d\x99\xcf\xf5\x9f\xc7\x53\xce" "\xbf\x23\xff\x56\xca\xf9\x77\xeb\xf9\xd7\x4e\xc8\xe9\x55\x1e\xdf\x7b" "\xfd\x61\xfe\x9f\xae\x2d\x2f\x7e\xf4\xc5\x4b\x5f\xc9\xd3\x89\xcf\x7f" "\xaa\x37\x28\x5f\x7b\xaa\xd3\xed\xf5\x37\xce\xf9\xf9\x4f\xbe\xb5\xe9" "\x52\xbc\xb8\x6d\xfe\x72\x9e\x62\xea\xad\xb8\x1e\x37\x62\x29\xce\x6f" "\x6b\x9f\xda\xd2\xbe\x30\xa2\xfd\xc2\xb6\xf6\x41\xd9\x3e\x9b\xdb\xcf" "\xc6\x62\xfc\x3a\x6e\xc4\x2f\x36\xdb\xa7\x47\x9c\x18\x35\x33\xa2\xbd" "\x18\xd1\x9e\xf3\xef\xd9\xfe\x5b\x29\xe7\xdf\xaf\x7c\x95\xf9\xcf\xa5" "\xf6\x4e\x6d\x5a\xba\xf7\x61\x77\xdb\x76\x5f\x9d\x0e\x7b\x9d\xcb\x3f" "\x7f\x70\x69\xfb\xd6\x35\x7e\x77\xa3\xb7\xb9\x6e\x55\xe5\xfa\x9d\x69" "\xa0\x3f\xeb\xff\x27\x8f\x0d\xe2\xdd\x5b\x4b\x37\xcf\xfe\xf6\xda\xed" "\xdb\x37\xcf\x47\x9a\x6c\x79\x76\x21\xd2\xe4\x80\xe5\xfc\xa7\xd2\x57" "\xce\xff\xd9\x67\x36\xda\xf3\xef\xfd\xea\xf6\x7a\xef\xc3\xc1\xbe\xf3" "\x9f\x14\x77\xa3\xbf\x63\xfe\xcf\x54\x1e\x97\xeb\xfb\xdc\x98\xfb\xd6" "\x84\x9c\xff\x20\x7d\xe5\xfc\xf3\x1e\x68\xf8\xf6\x7f\x94\xf3\xdf\x79" "\xfb\x7f\xbe\x81\xfe\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xc0\x6e\x8a\xa2\x58\xbf\x44\xf4\x72\x44\xbc\x9c\xae\xff\x69\xea\xda" "\x4c\x00\x60\xbc\xf2\xfe\xbf\xc8\x37\xc3\x48\xd4\x6a\xb5\x5a\xad\x56" "\x1f\xbf\xba\xaa\x18\xee\xb5\x6a\x11\x11\x7f\xab\x2e\x53\xbe\x67\xf8" "\xdd\xb0\x6f\x06\x00\x4c\xb2\x07\x11\xf1\xef\xa6\x3b\x41\x63\xe4\xdf" "\x62\xf9\x7e\x7f\xe5\xf4\x6b\x4d\x77\x06\x18\xab\x5b\xef\x7f\xf0\xcb" "\x6b\x37\x6e\x2c\xdd\xbc\xf5\x79\x96\x2e\x7a\x07\xdf\x23\x00\x00\x00" "\x00\x00\x00\x00\x60\xbf\xf2\xf8\x9f\xa7\x23\x62\xba\x7a\x1e\x50\x6d" "\xdc\xe8\x2d\xe3\xbf\xbe\x1e\xa7\x3f\x5d\x5b\x5e\x7c\x6f\xfe\xbf\x5f" "\x3e\x72\xe3\x7f\x76\x07\xbd\xf5\xb1\xce\xd3\x0a\x3d\x1d\xd5\xf1\xb9" "\xb7\x8f\x50\x7c\x26\x76\x1f\xff\xbb\x3f\xe2\xf5\xa6\x46\xb4\x0f\x46" "\xb4\x4f\x8f\x68\x9f\x19\xd1\x3e\xf4\x42\x8f\x8a\x9c\xff\xd3\x29\xe3" "\x9c\xff\xa9\xb4\x62\xbb\x8d\xff\x9a\xf3\xaf\x4f\x47\xbc\x64\xa3\x76" "\x1b\xff\xf5\xd9\x06\xfa\xd3\xb4\x9c\xff\x99\x34\xd6\x73\xce\xff\x9b" "\xb5\xf9\xaa\xf9\x17\x7f\x3e\xca\xe3\xff\x76\xb7\xe4\x7f\xee\xf6\x3b" "\xbf\x39\x77\xeb\xfd\x0f\x5e\xb8\xfe\xce\xb5\xb7\x97\xde\x5e\xfa\xd5" "\x85\x8b\x0b\xaf\x9e\x5f\xb8\x74\xf1\x95\x17\xcf\xbd\x75\xfd\xc6\x52" "\xfa\xb7\xc1\x1e\x1f\xae\x9c\x7f\x1e\xfb\xda\x79\xa0\xed\x92\xf3\xcf" "\x99\xcb\xbf\x5d\x72\xfe\x5f\x4f\xb5\xfc\xdb\x25\xe7\xff\x8d\x54\xcb" "\xbf\x5d\x72\xfe\xf9\xfd\x9e\xfc\xdb\x25\xe7\x9f\x3f\xfb\x6c\xe6\xff" "\xa0\xd9\x7e\x31\x1e\x39\xff\xe7\x52\x6d\xfb\x6f\x97\x9c\xff\xb7\x52" "\x2d\xff\x76\xc9\xf9\x3f\x9f\x6a\xf9\xb7\x4b\xce\xff\xdb\xa9\x96\x7f" "\xbb\xe4\xfc\x5f\x48\xb5\xfc\xdb\x25\xe7\x7f\x36\xd5\xf2\x6f\x97\x9c" "\xff\xb9\x54\xcb\xbf\x5d\x72\xfe\xf9\x08\x97\xfc\xdb\x25\xe7\x9f\xcf" "\x6c\x90\x7f\xbb\xe4\xfc\x17\x52\x2d\xff\x76\xc9\xf9\x5f\x48\xb5\xfc" "\xdb\x25\xe7\x7f\x31\xd5\xf2\x6f\x97\x9c\xff\x4b\xa9\x96\x7f\xbb\xe4" "\xfc\x5f\x4e\xf5\x3e\xf2\x77\xef\xaf\x63\x20\xe7\x7f\x29\xd5\xb6\xff" "\x76\xc9\xf9\xbf\x92\x6a\xf9\xb7\x4b\xce\xff\xd5\x54\xcb\xbf\x5d\x72" "\xfe\xdf\x49\xb5\xfc\xdb\x25\xe7\xff\xdd\x54\xcb\xbf\x5d\x72\xfe\xdf" "\x4b\xb5\xfc\xdb\x25\xe7\xff\xfd\x54\xcb\xbf\x5d\x72\xfe\x3f\x88\x87" "\x17\x93\xca\xbf\x3d\x72\xfe\xaf\xa5\xda\xf6\xdf\x2e\x0f\xef\xff\xef" "\x81\x07\x1e\x78\x90\x1f\x34\xfd\x9b\x09\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xa8\x1b\xc7\xe9\xc4\x4d\xaf\x23\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\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\x67\xec\xc0\x81\x00\x00" "\x00\x00\x00\x90\xff\x6b\x23\x54\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x61\x07\x0e\x04\x00\x00\x00\x00\x80\xfc\x5f" "\x1b\xa1\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\x0a\x7b\x77\x17\x23\x57\x79\xdf\x0f\xfc\xec\x9b\xbd\x6b\x88\xbd\x49" "\x0c\xe1\xc5\xc0\xda\x18\x30\xb0\x78\xd7\x2f\xf8\xe5\xff\xaf\x83\x81" "\x90\x52\x68\x1b\x42\x02\x7d\x23\x35\xae\xbd\x36\x4e\xfc\x56\xaf\x4d" "\x00\x21\xb1\x11\x34\x45\x02\xa9\x5c\x70\x41\x2b\x25\x05\x84\xaa\x5c" "\xa4\x0a\x6a\x13\x35\x48\x34\xa2\x52\xa5\x36\xbd\x69\xaf\xda\x9b\x2a" "\xad\xd4\xa8\x42\x51\xa8\x9c\xa8\x37\x8d\x0a\xae\xce\x9c\xe7\x79\x3c" "\x33\x3b\x3b\xb3\xeb\xdd\xb5\x67\xce\xf9\x7c\x10\xfe\x79\x67\xce\xcc" "\x3c\x7b\xe6\xcc\xec\x7e\xc7\xfa\xce\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xd4\x5b\x7f\xef\xd4\x1f\xf6\x65\x59\x96\xff" "\x5f\xfb\x63\x34\xcb\x2e\xcf\xff\x3e\x92\xed\xcd\xbf\x9c\xd9\x71\xa9" "\x57\x08\x00\x00\x00\x2c\xd6\x87\xb5\x3f\xbf\xbd\x26\x9d\xb0\x77\x1e" "\x17\xaa\xdb\xe6\xef\xae\xff\xc7\xef\x9e\x3b\x77\xee\x5c\x96\xfd\xc9" "\xda\x4f\xbd\x9a\xcf\x60\x2c\xcb\x56\xaf\xcc\xb2\xe2\xbc\x60\xf8\x27" "\x27\x1b\xb6\x09\x9e\xcf\x86\xfb\xfa\xeb\xbe\xee\xef\x70\xf3\x03\x1d" "\xce\x1f\xec\x70\xfe\x50\x87\xf3\x57\x74\x38\x7f\x65\x87\xf3\x87\x3b" "\x9c\x3f\x6b\x07\xcc\x32\x52\xbc\x1e\x53\xbb\xb2\x8d\xb5\xbf\x8e\x16" "\xbb\x34\x5b\x9b\x0d\xd5\xce\xdb\xd8\xe2\x52\xcf\xf7\xad\xec\xef\x8f" "\xaf\xe5\xd4\xf4\xd5\x2e\x73\x6e\xe8\x50\x76\x24\x3b\x9a\x4d\x65\x93" "\xb3\x2e\xd3\x57\xfb\x2f\xcb\xde\x5d\x9f\xdf\xd6\xfd\x59\xbc\xad\xfe" "\xba\xdb\x5a\x97\x65\xd9\xd9\x9f\x3d\x7b\x20\xae\xa1\x2f\xec\xe3\x8d" "\x59\xc3\x8d\xd5\xd4\xdf\x77\x1f\xdc\x9d\x8d\xfd\xfc\x67\xcf\x1e\x78" "\x72\xf4\x17\xd7\xb5\x9a\x1d\x77\xc3\xac\x95\x66\xd9\xa6\x0d\xf9\x3a" "\x5f\xc8\xb2\xf3\x2f\x57\x65\x7d\xd9\xca\xb4\x4f\xe2\x3a\xfb\xeb\xd6" "\xb9\xae\xc5\x3a\x07\x1a\xd6\xd9\x57\xbb\x5c\xfe\xf7\xe6\x75\x9e\x9d" "\xe7\x3a\xe3\xf7\x3d\x1c\xd6\xf9\x4f\x6d\xd6\xb9\x2e\x9c\xf6\xd4\x8d" "\x59\x96\xcd\x64\x73\x6e\xd3\xec\xf9\xac\x3f\x5b\xd5\x74\xab\x69\x7f" "\x0f\x17\x47\x44\x7e\x1d\xf9\x5d\xf9\x89\x6c\x70\x41\xc7\xc9\xfa\x79" "\x1c\x27\xf9\x65\x7e\x7c\x63\xe3\x71\xd2\x7c\x4c\xc6\xfd\xbf\x3e\xec" "\x93\xc1\x39\xd6\x50\x7f\x77\x7c\xf0\xb5\x15\xb3\xf6\xfb\x85\x1e\x27" "\xf9\x77\xdd\x0d\xc7\x6a\x7e\xdd\x0f\xe5\x37\x3a\x3c\x5c\xff\xd2\x6a" "\xc3\xb1\x9a\x6f\xf3\xec\x4d\x73\x1f\x03\x2d\xef\xbb\x16\xc7\x40\x3a" "\x96\xeb\x8e\x81\x0d\x9d\x8e\x81\xfe\x15\x03\xb5\x63\xa0\xff\xfc\x9a" "\x37\x34\x1c\x03\x5b\x66\x5d\xa6\x3f\xeb\xab\xdd\xd6\xfb\x37\xb5\x3f" "\x06\x26\x4e\x1f\x3b\x39\x31\xfd\xf4\x33\x77\x1c\x39\xb6\xff\xf0\xd4" "\xe1\xa9\xe3\xdb\xb6\x6f\xdd\xbd\x65\xeb\xce\xed\xbb\x26\x27\x0e\x1d" "\x39\x3a\x15\xfe\x5c\xd8\x2e\xed\x21\xab\xb2\xfe\x74\x0c\x6e\x08\xcf" "\x35\xf1\x18\xbc\xa5\x69\xdb\xfa\x43\xf2\xdc\x1b\xc5\xe3\xe0\xf5\xab" "\x77\x5e\xdf\x6a\x2e\x64\x0d\xc3\x4b\xf4\x38\x58\xcc\x1a\xb2\x70\xbc" "\x7c\xf1\xe6\x7c\x41\x97\xf7\x67\x73\x1c\xe3\xf9\x36\x2f\x6c\x5a\xfc" "\xe3\x20\xfd\xdc\xaf\x7b\x1c\x0c\xd6\x3d\x0e\x5a\x3e\xa7\xb6\x78\x1c" "\x0c\xce\xe3\x71\x90\x6f\x73\x76\xd3\xfc\x7e\x66\x0e\xd6\xfd\xdf\x6a" "\x0d\xad\x9e\x0b\x97\xe2\x18\x18\xad\x3b\x06\x16\xf3\xf3\xb0\x7e\x0d" "\x17\xf2\xf3\x30\xbf\xcd\xc7\x6e\x9d\xfb\xb9\x70\x5d\x58\xd7\x8b\xb7" "\x2d\xf4\xe7\xe1\xc0\xac\x63\x20\x7e\x5b\x7d\xe1\xb1\x97\x9f\x92\x7e" "\xdf\x1b\xde\x15\xf6\xcb\xec\xe3\xe2\x9a\xfc\x8c\xcb\x56\x64\x67\xa6" "\xa7\x4e\x6d\x7e\x6a\xff\xe9\xd3\xa7\xb6\x64\x61\x5c\x14\x9f\xac\xbb" "\xaf\x9a\x8f\x97\x55\x75\xdf\x53\x36\xeb\x78\xe9\x5f\xf0\xf1\xb2\xf7" "\x73\x1f\xed\xbc\xa6\xc5\xe9\xa3\x61\x5f\x0d\xdf\xde\xfe\xbe\xca\xb7" "\xd9\x3e\xde\xfe\xbe\xaa\x3d\xbb\xb7\xde\x9f\x0d\xa7\x6e\xcd\xc2\x58" "\x62\x17\x7b\x7f\xb6\xfa\x69\x96\xef\xcf\x94\x25\xda\xec\xcf\x7c\x9b" "\x17\xee\x58\xfc\xef\x82\x29\x97\xd4\x3d\xff\x0d\x75\x7a\xfe\x1b\x18" "\x1a\x2c\x9e\xff\x06\xd2\xde\x18\x6a\x78\xfe\x9b\x7d\xd7\x0c\xd4\x56" "\x96\x65\x67\xef\x98\xdf\xf3\xdf\x50\xf8\xff\x62\x3f\xff\xad\xed\x92" "\xe7\xbf\x7c\x5f\x3d\xb6\xb9\xfd\x31\x90\x6f\xf3\xe2\xc4\x42\x8f\x81" "\xc1\xb6\xcf\x7f\x37\x86\xd9\x17\xd6\x73\x6b\x48\x0c\xc3\x75\xb9\xff" "\xa3\xda\xf9\x33\xc5\x61\x5a\x77\x5f\x76\x3c\x6e\x06\x07\x87\xc2\x71" "\x33\x18\x6f\xb1\xf1\xb8\xd9\x36\xeb\x32\xf9\xb5\xe5\xb7\xbd\x69\xf2" "\xc2\x8e\x9b\x4d\x37\x36\xde\x57\x0d\xbf\xb7\x94\xf0\xb8\xc9\xf7\xd5" "\xab\x93\xed\x8f\x9b\x7c\x9b\xf7\xb6\x2c\xfe\xb9\x63\x24\xfe\xb5\xee" "\xb9\x63\x45\xa7\x63\x60\x68\x60\x45\xbe\xde\xa1\x74\x10\x14\xcf\x77" "\xe7\x46\xe2\x31\xb0\x39\x3b\x90\x9d\xc8\x8e\x66\x07\xd3\x65\xf2\x7b" "\x39\xbf\xad\xf1\xad\xf3\x3b\x06\x56\x84\xff\x2f\xf6\x73\xc7\x55\x5d" "\x72\x0c\xe4\xfb\xea\xb5\xad\xed\x8f\x81\x7c\x9b\xbf\xdd\xb6\xb4\xbf" "\x3b\x6d\x0a\xa7\xa4\x6d\xea\x7e\x77\x6a\x7e\x7d\x61\xae\xcc\x7f\xcd" "\xe0\xf9\xeb\x6b\xde\x6d\x4b\x9d\xf9\xf3\x75\x7e\x66\x7b\xfb\xd7\x86" "\xf2\x6d\x7e\xba\x7d\xa1\x39\xa3\xfd\x7e\xba\x3d\x9c\x72\x59\x8b\xfd" "\xd4\xfc\xf8\x99\xeb\x98\x3e\x98\x75\xde\x4f\x4b\x75\x4c\xe7\xeb\x3c" "\x7a\x67\xfb\xd7\xa6\xf2\x6d\xd6\xee\x98\xe7\xf1\xb4\x37\xcb\xb2\x77" "\x5e\x7a\xab\x78\xbd\xab\x78\x7d\xf7\x2f\xce\xfc\xf3\x77\x1b\x5e\xf7" "\x6d\xf5\x9a\xf2\x3b\x2f\xbd\xf5\xf9\xab\x7f\xf8\xc3\x85\xac\x1f\x00" "\x80\x0b\xf7\x51\xed\xcf\x99\x15\xc5\xef\x9a\x75\xff\x62\x3d\x9f\x7f" "\xff\x07\x00\x00\x00\x7a\x42\xcc\xfd\xfd\x61\x26\xf2\x3f\x00\x00\x00" "\x94\x46\xcc\xfd\x03\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x83" "\x61\x26\x7b\x3b\xbd\x3b\x5e\x39\x3c\xd1\xf7\xf5\x57\x3f\x7c\x2e\x4b" "\xef\x06\x78\x2e\x88\xe7\xc7\x97\x41\x1e\x5a\x59\x6c\x17\x3b\xde\x33" "\xe1\xeb\xb1\x73\xe7\xe5\xa7\xdf\xf3\xd6\xd0\x83\xdf\x7b\x6e\x7e\xb7" "\xdd\x9f\x65\xd9\xff\x3e\x70\x6d\xcb\xed\x9f\x58\x19\xd7\x55\x38\x19" "\xd7\x39\xd0\x78\xfa\x2c\x57\xdd\x30\xaf\xdb\x7f\xfc\x91\xf3\xdb\xd5" "\xbf\x7f\xc2\xd9\xfe\xe2\xfa\xe3\xf7\x33\xdf\x97\x81\x62\x57\xf9\xdd" "\x7f\xbb\xa7\x76\xbd\x63\xb7\x16\xf3\xbd\x07\xb2\xda\x7c\x78\xe6\xc5" "\xe7\x6b\xd7\xbf\xbb\xf8\x3a\x6e\xff\xfe\x7f\x14\xdb\x7d\x23\xbc\x69" "\xc9\xde\x43\x7d\x0d\x97\xdf\x14\xd6\xb3\x31\xcc\xb1\xf0\x9e\x32\x0f" "\x8d\x9c\xdf\x0f\xf9\x8c\x97\xfb\xce\xbb\x87\xff\xfe\xd3\x8f\x9e\xbf" "\xbd\x78\xb9\xbe\x0d\xab\x6b\xdf\xe6\x6b\x9b\x8b\xeb\x8d\xef\x11\xf5" "\xca\x5f\x16\xdb\xc7\xef\x7b\xae\xf5\xff\xf5\x4b\xdf\xfa\x4e\xbe\xfd" "\x53\x37\xb5\x5e\xff\x73\xfd\xad\xd7\xff\x7e\xb8\xde\x1f\x87\xf9\x3f" "\x1f\x14\xa7\xd7\xef\xf3\xef\xd5\xad\xff\x0f\xc2\xfa\xe3\xed\xc5\xcb" "\x6d\x7e\xf3\x07\x2d\xd7\xff\xf6\x5f\x15\xdb\xbf\x1d\x8e\x8b\xd7\xc3" "\x6c\x5e\xff\xdd\x7f\x74\xdd\x87\xad\xee\xaf\x78\x3b\x7b\x07\x8b\xcb" "\xc5\xdb\x9f\xfc\xb3\xfb\x6a\x97\x8b\xd7\x17\xaf\xbf\x79\xfd\xc3\x13" "\xf7\x34\xec\x8f\xe6\xeb\x7f\xef\xcd\xe2\x7a\xf6\x3c\xf9\xdf\x03\xf5" "\xdb\xc7\xd3\xe3\xed\x44\x8f\x0f\x36\x1e\xdf\x7d\xe1\xfe\x6d\xe8\x91" "\x67\x59\xf6\xad\xaf\x67\x0d\xfb\x39\x1b\x2a\x2e\xf7\x4e\xd3\xfa\xe3" "\xf5\x9d\x1c\x6c\xbd\xfe\xdb\x9b\xd6\x79\xf2\x8d\x27\x6a\x97\x6f\xfe" "\x7e\xa2\x6f\x3e\x72\x6f\xcb\xef\x37\xae\x67\xef\x9f\x8f\x36\x7c\x3f" "\xaf\xac\x0e\xfb\xaf\x7f\xe4\x1f\xf2\xeb\x7d\xff\xda\x70\x3c\x86\xf3" "\x7f\x31\x53\x5c\x5f\xf3\x7b\x99\xbe\xbd\xba\xf1\xf9\x26\x6e\xff\xfa" "\x68\xf1\xb8\x8d\xd7\x37\xd1\xb4\xfe\x57\x9a\xd6\x3f\x73\x43\xbe\xef" "\x3a\xaf\xff\xfe\x9f\x17\xeb\x7f\xfb\xae\x95\x0d\xeb\xdf\xbb\x26\x1c" "\x4f\x1f\x2f\x66\xa7\xf5\x1f\xfe\xd3\x35\x0d\x97\x7f\xe3\xb3\xc5\x7a" "\x4e\x7d\x75\xfc\xf8\x89\xe9\x33\x47\xe2\x7b\x1c\x8c\x36\x3d\x8e\x57" "\x0e\x8f\xac\xba\xec\xf2\x8f\xad\x5e\x13\x9e\x4b\x9b\xbf\xde\x77\xe2" "\xf4\x13\x53\xa7\xc6\x26\xc7\x26\xb3\x6c\xac\x07\xdf\x32\x70\xb9\xd7" "\xff\x66\x98\xff\x55\x8c\x99\xa5\xbf\x85\xc2\xbf\x0c\x16\xc7\xdd\xcb" "\x0f\x16\x3f\xb7\x6e\x19\x2a\xbe\x7e\x25\x9c\xfe\x78\xb8\x3f\xe3\xcf" "\xc7\x6f\xfe\xf1\x50\xc3\xf1\xda\x7c\xbf\xcf\x0c\x17\x73\xb1\xeb\xbf" "\x2d\xac\x63\xbe\xd6\x6d\xfc\xc9\xae\x79\x6d\xf8\x9f\xdb\xdf\x7e\xf5" "\x5f\x1f\xfe\x52\xf3\xef\x05\xf1\xfb\x39\x79\xc5\x70\xed\xfb\x7b\x6d" "\xfd\x95\xb5\xf3\xfa\xde\x2b\xce\x6f\x7e\xbe\xea\xe4\xdf\xaf\x68\x7c" "\x5c\xff\x68\x6d\x31\xbf\x1f\xf6\xeb\xb9\xf0\xce\xcc\x1b\xae\x2c\x6e" "\xaf\xf9\xfa\xe3\x7b\x93\xbc\xfc\x85\xe2\xf1\x1b\x7f\x93\x8b\x97\xcf" "\x9a\xde\x4f\x64\x74\xa0\xf1\xfb\x58\xec\xfa\x7f\x14\x7e\x8f\xf9\xc1" "\x55\x8d\xcf\x7f\xf1\xf8\xf8\xfe\x73\x4d\xef\xe6\x3c\x9a\xf5\xe5\x4b" "\x98\x09\xcf\x0f\xd9\x4c\x71\x7e\xdc\x2a\xee\xef\x97\xcf\x5e\xd9\xf2" "\xf6\xe2\xfb\xf0\x64\x33\x57\x2f\x64\x99\x73\x9a\x7e\x7a\x7a\xe2\xe8" "\x91\xe3\x67\x9e\x9a\x38\x3d\x35\x7d\x7a\x62\xfa\xe9\x67\xf6\x1d\x3b" "\x71\xe6\xf8\xe9\x7d\xb5\xf7\x2e\xdd\xf7\xe5\x4e\x97\x3f\xff\xf8\x5e" "\x55\x7b\x7c\x1f\x9c\xda\xb1\x3d\xab\x3d\xda\x4f\x14\x63\x99\x5d\xea" "\xf5\x9f\x7c\xe4\xc0\xc1\x9d\x93\x37\x1f\x9c\x3a\xb4\xff\xcc\xa1\xd3" "\x8f\x9c\x9c\x3a\x75\xf8\xc0\xf4\xf4\x81\xa9\x83\xd3\x37\xef\x3f\x74" "\x68\xea\xab\x9d\x2e\x7f\xe4\xe0\x9e\x2d\x5b\x77\x6f\xdb\xb9\x75\xfc" "\xf0\x91\x83\x7b\x76\xed\xde\xbd\x6d\xf7\xf8\x91\xe3\x27\xf2\x65\x14" "\x8b\xea\x60\xc7\xe4\x57\xc6\x8f\x9f\xda\x57\xbb\xc8\xf4\x9e\xed\xbb" "\xb7\xdc\x79\xe7\xf6\xc9\xf1\x63\x27\x0e\x4e\xed\xd9\x39\x39\x39\x7e" "\xa6\xd3\xe5\x6b\x3f\x9b\xc6\xf3\x4b\x3f\x39\x7e\x6a\xea\xe8\xfe\xd3" "\x47\x8e\x4d\x8d\x4f\x1f\x79\x66\x6a\xcf\x96\xdd\x3b\x76\x6c\xed\xf8" "\xee\x8f\xc7\x4e\x1e\x9a\x1e\x9b\x38\x75\xe6\xf8\xc4\x99\xe9\xa9\x53" "\x13\xc5\xf7\x32\x76\xba\x76\x72\xfe\xb3\xaf\xd3\xe5\xa9\x86\xe9\x35" "\xe1\xf9\xae\x49\x5f\xf8\xed\xfc\xbe\xdb\x77\xa4\xf7\xc7\xcd\xbd\xf5" "\xb5\x39\xaf\xaa\xd8\x64\xb4\xf1\xc4\x9f\x86\xf7\x82\xfa\xc6\xf0\xb6" "\x5d\xf3\xf9\x3a\xe6\xfe\xa1\x30\x13\xff\xfe\x0f\x00\x00\x00\xa5\x11" "\x73\x7f\xf8\x7c\x8a\xf3\xaf\xbb\xcb\xff\x00\x00\x00\x50\x1a\xe1\x03" "\xff\xc2\x67\x46\xfa\xf7\x7f\x00\x00\x00\x28\xa3\x98\xfb\x87\xc3\x4c" "\x2a\x92\xff\xf5\xff\xf5\xff\x2f\xa0\xff\x9f\xea\xda\xfa\xff\xfa\xff" "\x99\xfe\xbf\xfe\x7f\x07\xfa\xff\xfa\xff\xed\xe8\xff\xeb\xff\xf7\xf2" "\xfa\xf5\xff\xf5\xff\xe9\xac\xdb\xfa\xff\x31\xf7\x8f\x64\x59\x25\xf3" "\x3f\x00\x00\x00\x54\x41\xcc\xfd\xab\xc2\x4c\xe4\x7f\x00\x00\x00\x28" "\x8d\x98\xfb\x2f\x0b\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xbf\x3c" "\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\xdf\xe7\xff\x97\xaf\xff\xdf\x97\x65" "\x33\xfa\xff\xfa\xff\xdd\x42\xff\x5f\xff\xbf\x1d\xfd\x7f\xfd\xff\x5e" "\x5e\xbf\xfe\xbf\xfe\x3f\x9d\x75\x5b\xff\x3f\xe6\xfe\x8f\x85\x99\x54" "\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\xbf\x3a\xcc\x44\xfe\x07\x00\x00" "\x80\xd2\x88\xb9\x7f\x4d\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff" "\x68\x98\x49\x99\xf2\xff\x5d\x73\x9f\xa5\xff\x5f\xf5\xfe\xff\x80\xfe" "\x7f\x09\xfb\xff\x3e\xff\xbf\xa0\xff\xdf\x1d\xf4\xff\xf5\xff\xdb\xd1" "\xff\xd7\xff\xef\xe5\xf5\xeb\xff\xeb\xff\xd3\x59\xb7\xf5\xff\x63\xee" "\xff\x78\x98\x49\x99\xf2\x3f\x00\x00\x00\x54\x5c\xcc\xfd\x9f\x08\x33" "\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xff\x64\x98\x89\xfc\x0f\x00\x00" "\x00\xa5\x11\x73\xff\xda\x30\x93\x8a\xe4\x7f\xfd\xff\xaa\xf7\xff\x7d" "\xfe\x7f\xa6\xff\xbf\x8c\xfd\xff\xb8\xa5\xfe\xbf\xfe\xbf\xfe\x7f\xaf" "\xf7\xff\x47\xc2\xc9\xfa\xff\x8d\xf4\xff\xf5\xff\xf5\xff\xf5\xff\x69" "\xaf\xdb\xfa\xff\x31\xf7\x5f\x11\x66\x52\x91\xfc\x0f\x00\x00\x00\x55" "\x10\x73\xff\x95\x61\x26\xf2\x3f\x00\x00\x00\x94\xc3\xca\xf8\x97\xe1" "\xec\x53\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x57\x85\x99\x54" "\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xfb\xfc\x7f\xfd\xff\xe5\xa4" "\xff\x5f\x8e\xfe\x7f\x3c\x59\xff\xbf\x91\xfe\xbf\xfe\xbf\xfe\xbf\xfe" "\x3f\xed\x75\x5b\xff\x3f\xe6\xfe\xab\xc3\x4c\x2a\x92\xff\x01\x00\x00" "\xa0\x0a\x62\xee\xbf\x26\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff" "\xda\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x75\x61\x26\x15\xc9" "\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xcb\x49\xff\x5f" "\xff\xbf\x1d\xfd\x7f\xfd\xff\x5e\x5e\xbf\xfe\xbf\xfe\x3f\x9d\x75\x5b" "\xff\x3f\xe6\xfe\xeb\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee" "\xbf\x3e\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x86\x30\x13\xf9" "\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xb1\x30\x93\x8a\xe4\x7f\xfd\x7f\xfd" "\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xe5\xa4\xff\xaf\xff\xdf\x8e\xfe" "\xbf\xfe\x7f\x2f\xaf\x5f\xff\x5f\xff\x9f\xce\xba\xad\xff\x1f\x73\xff" "\xfa\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\x37\x84\x99\xc8" "\xff\x00\x00\x00\x50\x1a\x31\xf7\xdf\x18\x66\x22\xff\x03\x00\x00\x40" "\x69\xc4\xdc\xbf\x31\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\xbf\xac" "\xfd\xff\x01\xfd\x7f\xfd\xff\xae\xa0\xff\xaf\xff\xdf\x8e\xfe\xbf\xfe" "\x7f\x2f\xaf\x5f\xff\x5f\xff\x9f\xce\xba\xad\xff\x1f\x73\xff\x4d\x61" "\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\xdf\x1c\x66\x22\xff\x03" "\x00\x00\x40\x69\xc4\xdc\x7f\x4b\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11" "\x73\xff\xa6\x30\x93\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\xff\xb2\xf6\xff" "\x7d\xfe\xbf\xfe\x7f\x77\xd0\xff\xd7\xff\x6f\x47\xff\x5f\xff\xbf\x97" "\xd7\xaf\xff\xaf\xff\x4f\x67\xdd\xd6\xff\x8f\xb9\xff\xd6\x30\x93\x8a" "\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\x6f\x0b\x33\x91\xff\x01\x00\x00" "\xa0\x34\x62\xee\xbf\x3d\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\x7f" "\x3c\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff" "\x7f\x39\xe9\xff\xeb\xff\xb7\xa3\xff\xaf\xff\xdf\xcb\xeb\xd7\xff\xd7" "\xff\xa7\xb3\x6e\xeb\xff\xc7\xdc\x7f\x47\x98\x49\x45\xf2\x3f\x00\x00" "\x00\x54\x41\xcc\xfd\x9b\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb" "\x27\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x27\xc3\x4c\x2a\x92" "\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x2f\x7e\xff\x7f\xa4\x76\xbe\xfe" "\xbf\xfe\xff\x52\xd0\xff\xd7\xff\xcf\xf4\xff\x2f\xd8\xa5\xee\xcf\xf7" "\xfa\xfa\xf5\xff\xf5\xff\xe9\xac\xdb\xfa\xff\x31\xf7\x6f\x09\x33\xa9" "\x48\xfe\x07\x00\x00\x80\x1e\x75\xdd\x42\x36\x8e\xb9\x7f\x6b\x98\x89" "\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xb6\x30\x13\xf9\x1f\x00\x00\x00" "\x4a\x23\xe6\xfe\xed\x61\x26\x15\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa" "\xff\x3e\xff\x5f\xff\x7f\x39\xe9\xff\xeb\xff\xb7\x53\xdf\xff\xcf\x2f" "\xa9\xff\x5f\x95\xfe\xff\x5c\x3f\x69\x7a\x65\xfd\x05\xfd\x7f\xfd\x7f" "\x3a\xeb\xb6\xfe\x7f\xcc\xfd\x77\x86\x99\x54\x24\xff\x03\x00\x00\x40" "\x15\xc4\xdc\xbf\x23\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\x7f\x67" "\x98\xc9\xec\xfc\xff\x37\x17\x6f\x55\x00\x00\x00\xc0\x52\x8a\xb9\x7f" "\x57\x98\x49\xcf\xff\xfb\xff\xfc\x7a\x55\x95\xea\xff\xef\xbf\x3f\xfd" "\x55\xff\xbf\xa0\xff\xaf\xff\x9f\xe9\xff\xeb\xff\x2f\x33\xfd\x7f\xfd" "\xff\x76\x7c\xfe\x7f\x55\xfb\xff\x4b\xe3\x52\xaf\x5f\xff\x5f\xff\x9f" "\xce\xba\xad\xff\x1f\x73\xff\xee\x30\x93\x9e\xcf\xff\x00\x00\x00\x40" "\x14\x73\xff\xff\x0b\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xff\xff" "\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xbf\x14\x66\x52\x91\xfc" "\x5f\xa9\xfe\x7f\x1d\xfd\xff\x82\xfe\xbf\xfe\x7f\xa6\xff\xaf\xff\xbf" "\xcc\xf4\xff\xf5\xff\xdb\xd1\xff\xd7\xff\xef\xe5\xf5\x2f\x6b\xff\xbf" "\xaf\xf3\x7b\x79\xcd\xdd\xff\xff\xf6\xaa\x2c\xd3\xff\xa7\x3b\x74\x5b" "\xff\x3f\xe6\xfe\x3d\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7" "\x7f\x3a\xcc\x64\xee\xfc\x3f\xbc\xfc\xab\x02\x00\x00\x00\x96\x52\xcc" "\xfd\x77\x85\x99\xf8\xf7\x7f\x00\x00\x00\x28\x8d\x98\xfb\xf7\x86\x99" "\x54\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x2f\x27" "\xfd\x7f\xfd\xff\x76\x16\xd7\xff\x1f\xd3\xff\x5f\xa4\x4b\xdd\x9f\xef" "\xf5\xf5\xfb\xfc\x7f\xfd\x7f\x3a\xeb\xb6\xfe\x7f\xcc\xfd\x77\x87\x99" "\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\x7f\x4f\x98\x89\xfc\x0f\x00" "\x00\x00\xa5\x11\x73\xff\xbd\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc" "\xfd\x9f\x09\x33\xa9\x48\xfe\xbf\x68\xfd\xff\x16\x85\x62\xfd\x7f\xfd" "\xff\x4c\xff\x5f\xff\x5f\xff\x5f\xff\x7f\x91\xf4\xff\xab\xdc\xff\xf7" "\xf9\xff\x8b\x75\xa9\xfb\xf3\x4b\xb0\xfe\xfc\x2e\xd7\xff\xd7\xff\xa7" "\x8b\x75\x5b\xff\x3f\xe6\xfe\xfb\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0" "\x0a\x62\xee\xff\x6c\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x2f" "\x87\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xdf\x1f\x66\x52\x91\xfc" "\xef\xf3\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x97\x93\xfe\xbf" "\xfe\x7f\x3b\xfa\xff\xfa\xff\xbd\xbc\x7e\xfd\x7f\xfd\x7f\x3a\xeb\xb6" "\xfe\x7f\xcc\xfd\xbf\x12\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73" "\xff\x03\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x0f\x86\x99\xc8" "\xff\x00\x00\x00\x50\x1a\x31\xf7\xff\x6a\x98\x49\x45\xf2\xbf\xfe\xbf" "\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xff\x72\xd2\xff\xd7\xff\x6f\x47" "\xff\x5f\xff\xbf\x97\xd7\xaf\xff\xaf\xff\x4f\x67\xdd\xd6\xff\x8f\xb9" "\xff\xd7\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0\x14\xe6\x7e\xfd\xa0\x26" "\xe6\xfe\x5f\x0f\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xff\x5c\x98" "\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x43\x61\x26\x15\xc9\xff\xfa" "\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xcb\x49\xff\x5f\xff\xbf" "\x1d\xfd\x7f\xfd\xff\x5e\x5e\xbf\xfe\xbf\xfe\x3f\x9d\x75\x5b\xff\x3f" "\xe6\xfe\xcf\x87\x99\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\xff\x70" "\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x17\xc2\x4c\xe4\x7f\x00" "\x00\x00\xe8\x01\x67\xe7\xb5\x55\xcc\xfd\x5f\x0c\x33\xa9\x48\xfe\xd7" "\xff\xd7\xff\xd7\xff\xd7\xff\x5f\xc2\xfe\xff\x8a\x4c\xff\x3f\xd1\xff" "\x1f\xa9\xfd\xa9\xff\xaf\xff\xdf\x4e\x2f\xf5\xff\x5b\x9d\xa3\xff\xaf" "\xff\xaf\xff\xaf\xff\x4f\x7b\xdd\xd6\xff\x8f\xb9\xff\x91\x30\x93\x8a" "\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\x1f\x0d\x33\x91\xff\x01\x00\x00" "\xa0\x34\x62\xee\xff\x8d\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe" "\xdf\x0c\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xf7\xf9\xff" "\xfa\xff\xcb\x49\xff\x5f\xff\xbf\x9d\x5e\xea\xff\xb7\xa2\xff\xaf\xff" "\xaf\xff\xaf\xff\x4f\x7b\xdd\xd6\xff\x8f\xb9\xff\xb7\xc2\x4c\x2a\x92" "\xff\x01\x00\x00\xa0\x0a\x62\xee\xff\xed\x30\x13\xf9\x1f\x00\x00\x00" "\x4a\x23\xe6\xfe\xdf\x09\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\x7f" "\x2c\xcc\xa4\x22\xf9\xbf\xe8\xff\x3f\x7a\x40\xff\xbf\xa0\xff\xaf\xff" "\xaf\xff\xaf\xff\x1f\xe9\xff\x2f\x0d\xfd\x7f\xfd\xff\x76\xf4\xff\xf5" "\xff\x7b\x79\xfd\xfa\xff\xfa\xff\x74\xd6\x6d\xfd\xff\x98\xfb\xbf\x14" "\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\xef\x86\x99\xc8\xff" "\x00\x00\x00\x50\x1a\x31\xf7\xef\x0b\x33\x91\xff\x01\x00\x00\xa0\x34" "\x62\xee\x7f\x3c\xcc\xa4\x22\xf9\xdf\xe7\xff\xeb\xff\xeb\xff\xeb\xff" "\x2f\xa4\xff\x3f\xd2\xe2\x74\xfd\xff\x82\xfe\x7f\x6b\xfa\xff\xfa\xff" "\xed\xe8\xff\x97\xb9\xff\xbf\x62\x49\xd6\x78\xe9\xd6\x3f\xd7\x13\xd6" "\x60\xfa\x9b\xfe\xbf\xfe\x3f\x9d\x75\x5b\xff\x3f\xe6\xfe\xfd\x61\x26" "\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\xff\x5e\x98\x89\xfc\x0f\x00" "\x00\x00\xa5\x11\x73\xff\x81\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6" "\xfe\x83\x61\x26\x15\xc9\xff\xfa\xff\xfa\xff\x17\xa5\xff\x9f\x7f\x7f" "\xfa\xff\xa5\xe8\xff\x5f\xc2\xcf\xff\x1f\xca\x96\xa3\xff\x3f\xa3\xff" "\xbf\xdc\x4a\xd2\xff\x7f\x4f\xff\xbf\xa0\xff\xdf\x48\xff\xdf\xe7\xff" "\xeb\xff\xeb\xff\xd3\x5e\xb7\xf5\xff\x63\xee\x9f\x0a\x33\xa9\x48\xfe" "\x07\x00\x00\x80\x5e\x37\x9f\x77\x1d\x8d\xb9\xff\x50\x98\x89\xfc\x0f" "\x00\x00\x00\xa5\x11\x73\xff\xe1\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23" "\xe6\xfe\x27\xc2\x4c\x2a\x92\xff\xbb\xb1\xff\x7f\x83\xfe\x7f\xf9\xfa" "\xff\x3e\xff\x5f\xff\xdf\xe7\xff\xeb\xff\xf7\x76\xff\xdf\xe7\xff\x07" "\xfa\xff\x8d\xf4\xff\xf5\xff\xf5\xff\xf5\xff\x69\xaf\xdb\xfa\xff\x31" "\xf7\x1f\x09\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\xcb\x61" "\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x5f\x09\x33\x91\xff\x01\x00" "\x00\xa0\xe7\xac\x9c\xe3\xf4\x98\xfb\x8f\x86\x99\x54\x24\xff\x77\x63" "\xff\x3f\xd3\xff\xd7\xff\xd7\xff\x4f\xd7\xa3\xff\xaf\xff\xaf\xff\xdf" "\x9e\xfe\xbf\xfe\x7f\xa6\xff\x7f\xc1\x2e\x75\x7f\xbe\xd7\xd7\xbf\xa4" "\xfd\xff\x15\xfa\xff\x94\x53\xb7\xf5\xff\x63\xee\x3f\x16\x66\x52\x91" "\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\xf1\x30\x13\xf9\x1f\x00\x00\x00" "\x4a\x23\xe6\xfe\x13\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x27" "\xc3\x4c\x7a\x32\xff\xf7\xcd\xd9\xdb\x9d\x8b\xfe\xbf\xfe\x7f\xb7\xf5" "\xff\xeb\x9b\x97\xa5\xee\xff\xaf\xd4\xff\xd7\xff\xd7\xff\x5f\x0a\xfa" "\xff\xfa\xff\x99\xfe\xff\x05\xbb\xd4\xfd\xf9\x5e\x5f\xbf\xcf\xff\xd7" "\xff\xa7\xb3\x6e\xeb\xff\xc7\xdc\xff\xfb\x61\x26\x3d\x99\xff\x01\x00" "\x00\x80\x56\x62\xee\x3f\x15\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc" "\x3f\x1d\x66\xf2\x7f\xec\xdd\xd7\x8e\x5e\x77\xd5\xc7\xf1\xc7\x56\xe2" "\x24\xd2\xfb\x86\x73\xc4\x39\x77\x01\x88\xfb\xe0\x98\x1b\xa0\x97\xc4" "\xf4\x16\x7a\x0d\xcd\xd4\xd0\x7b\xef\x2d\x74\x08\xbd\xf7\xde\x43\x09" "\x25\x14\x29\x48\x33\x6b\xad\x78\xe2\xf1\xde\x9e\x87\x79\x3c\x7b\xff" "\xd7\xe7\x73\xb2\x18\x32\xe3\xd9\x51\x9c\x58\x3f\x8d\xbe\xda\xf6\x3f" "\x00\x00\x00\x0c\x23\x77\xff\x03\xe2\x96\xe9\xfd\x7f\x7a\xb7\x4f\x75" "\xf9\xe8\xff\xf5\xff\x4b\xeb\xff\xdb\xbe\xff\xff\x8a\xa9\xfe\xff\x56" "\xfd\xbf\xfe\x5f\xff\x7f\x11\xfa\x7f\xfd\xff\x46\xff\xbf\xb5\x93\xee" "\xe7\xd7\xfe\xfc\xfa\x7f\xfd\x3f\xf3\x96\xd6\xff\xe7\xee\x7f\x60\xdc" "\xe2\xe7\xff\x00\x00\x00\x30\x8c\xdc\xfd\x0f\x8a\x5b\xec\x7f\x00\x00" "\x00\x18\x46\xee\xfe\x07\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff" "\x43\xe2\x96\x26\xfb\xff\xf2\xf6\xff\xf7\x3d\xf0\x91\xfe\x5f\xff\xbf" "\xd9\xaa\xff\xbf\xaa\xbe\x76\xa8\xfe\xdf\xfb\xff\xef\xfc\xe7\xaa\xff" "\xd7\xff\x1f\x41\xd7\xfe\x3f\xff\x4b\xa8\xff\xdf\xa7\xff\xdf\xce\x49" "\xf7\xf3\x6b\x7f\x7e\xfd\xbf\xfe\x9f\x79\x4b\xeb\xff\x73\xf7\x3f\x34" "\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x0f\x8b\x5b\xec\x7f\x00" "\x00\x00\x18\x46\xee\xfe\x87\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77" "\xff\x23\xe2\x96\x26\xfb\xdf\xfb\xff\xf5\xff\xeb\xeb\xff\x07\x7d\xff" "\xbf\xfe\xbf\xe8\xff\xf5\xff\x47\xd1\xb5\xff\x4f\xfa\xff\x7d\xfa\xff" "\xed\x9c\x74\x3f\xbf\xf6\xe7\xd7\xff\xeb\xff\x99\xb7\xb4\xfe\x3f\x77" "\xff\x23\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\x7f\x5d\xdc\x62" "\xff\x03\x00\x00\xc0\x30\x72\xf7\x5f\x1f\xb7\xd8\xff\x00\x00\x00\x30" "\x8c\xdc\xfd\x67\xe3\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5" "\xff\xfa\xff\x5d\xd2\xff\xeb\xff\xa7\xe8\xff\x97\xdb\xff\xdf\xa1\xff" "\x9f\xfd\xfe\xfa\x7f\xfd\x3f\xf3\x96\xd6\xff\x9f\xbd\x61\xb3\xb7\xfb" "\xf7\xbf\x4d\xbf\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x74\xdc\x62\xff" "\x03\x00\x00\xc0\x30\x72\xf7\x3f\x26\x6e\xb1\xff\x01\x00\x00\x60\x18" "\xb9\xfb\x1f\x1b\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\xef\x92\xfe\x5f\xff\x3f\x45\xff\xbf\xdc\xfe\xdf\xfb\xff\xf5" "\xff\x73\x5f\xaf\xff\xe7\x52\x2c\xad\xff\xcf\xdd\xff\xb8\xb8\xa5\xc9" "\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x3e\x6e\xb1\xff\x01\x00\x00\x60" "\x18\xb9\xfb\x9f\x10\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x4f\x8c" "\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x77\x49" "\xff\xaf\xff\x9f\xb2\x92\xfe\x3f\x7e\x89\x0b\xff\xf1\xe8\xff\x87\xee" "\xff\xef\x7f\x8f\x99\xaf\xbf\x68\xff\x7f\x6a\xa3\xff\xd7\xff\x13\x96" "\xd6\xff\xe7\xee\x7f\x52\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb" "\x9f\x1c\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x4f\x89\x5b\xec\x7f" "\x00\x00\x00\x18\x46\xee\xfe\x1b\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7" "\xff\xeb\xff\xf5\xff\xfa\xff\x5d\xd2\xff\xeb\xff\xa7\xac\xa4\xff\xbf" "\x28\xfd\xff\xd0\xfd\xff\xec\xf7\xf7\xfe\x7f\xfd\x3f\xf3\x96\xd6\xff" "\xe7\xee\x7f\x6a\xdc\x72\x60\xf8\x5d\x75\xc4\xbf\x4b\x00\x00\x00\x60" "\x49\x72\xf7\x3f\x2d\x6e\x69\xf2\xf3\x7f\x00\x00\x00\xe8\x20\x77\xff" "\xd3\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x19\x71\x4b\x93\xfd" "\xaf\xff\x9f\xef\xff\xaf\xfb\xff\xf9\x5f\x4f\xff\x7f\xf8\xf3\xeb\xff" "\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\x05\xfd\xff\x4d\x87\x7c\xa2\xfe\xff" "\x92\xe8\xff\x1b\xf5\xff\xd7\x5c\xf8\xf5\xfa\x7f\xfd\x3f\xf3\x96\xd6" "\xff\xe7\xee\x7f\x66\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x9f" "\x15\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xcf\x8e\x5b\xec\x7f\x00" "\x00\x00\x18\x46\xee\xfe\xe7\xc4\x2d\xf7\xd9\x6c\x2e\x31\x63\x5f\x35" "\xfd\xbf\xf7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x2e\xe9\xff\x57\xd0" "\xff\x1f\x46\xff\x7f\x49\xf4\xff\x8d\xfa\xff\x43\xe8\xff\xf5\xff\xcc" "\x5b\x5a\xff\x9f\xbb\xff\xb9\x71\x8b\x9f\xff\x03\x00\x00\xc0\x30\x72" "\xf7\x3f\x2f\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x9f\x1f\xb7\xd8" "\xff\x00\x00\x00\x30\x8c\xdc\xfd\x2f\x88\x5b\x9a\xec\x7f\xfd\xff\x7a" "\xfa\xff\x2b\xf4\xff\x23\xf4\xff\x77\xbf\xf9\xdc\xfd\xf4\xff\xf1\xd7" "\xf5\xff\xfa\xff\xe3\xa0\xff\xd7\xff\x6f\xf4\xff\x5b\x3b\xe9\x7e\x7e" "\xed\xcf\xaf\xff\xd7\xff\x33\x6f\x69\xfd\x7f\xee\xfe\x1b\xe3\x96\x26" "\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xc2\xb8\xc5\xfe\x07\x00\x00\x80" "\x61\xe4\xee\x7f\x51\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xbf\x38" "\x6e\x69\xb2\xff\xf5\xff\xeb\xe9\xff\xbd\xff\x7f\x88\xfe\xdf\xfb\xff" "\x17\xdc\xff\x3f\x2a\x7e\x3f\x26\xfd\xff\xf1\xd0\xff\xeb\xff\xa7\x1c" "\x43\xff\x7f\xe3\xb5\xfa\xff\xad\x9d\x74\x3f\x7f\x42\xcf\x7f\xfa\xb8" "\x9e\x5f\xff\xaf\xff\x67\xde\xd2\xfa\xff\xdc\xfd\x2f\x89\x5b\x9a\xec" "\x7f\x00\x00\x00\xe8\x20\x77\xff\x4b\xe3\x16\xfb\x1f\x00\x00\x00\x86" "\x91\xbb\xff\x5c\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xbf\x2c\x6e" "\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xef\xfd\xff\xbb\xa4" "\xff\xd7\xff\x4f\xf1\xfe\x7f\xfd\xff\x9a\x9f\x5f\xff\xaf\xff\x67\xde" "\xd2\xfa\xff\xdc\xfd\x2f\x8f\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77" "\xff\x2b\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x95\x71\x8b\xfd" "\x0f\x00\x00\x00\xab\x76\x7e\x07\x96\xbb\xff\x55\x71\x4b\x93\xfd\xaf" "\xff\xd7\xff\xeb\xff\x2f\xd6\xff\x9f\xd3\xff\xdf\x85\xfe\x5f\xff\xbf" "\x0d\xfd\xbf\xfe\x7f\x8a\xfe\x5f\xff\xbf\xe6\xe7\xd7\xff\xeb\xff\x99" "\xb7\xb4\xfe\x3f\x77\xff\xab\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8" "\xdd\x7f\x53\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xbf\x26\x6e\xb1" "\xff\x01\x00\x00\x60\x18\xb9\xfb\x5f\x1b\xb7\x34\xd9\xff\xfa\x7f\xfd" "\xbf\xfe\xdf\xfb\xff\xf5\xff\xfa\xff\x5d\xd2\xff\xeb\xff\xa7\xe8\xff" "\xf5\xff\x6b\x7e\x7e\xfd\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\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa" "\xff\x5d\xd2\xff\xeb\xff\xa7\xe8\xff\xf5\xff\x6b\x7e\x7e\xfd\xbf\xfe" "\x9f\x79\x4b\xeb\xff\x73\xf7\xbf\x29\x6e\x69\xb2\xff\x01\x00\x00\xa0" "\x83\xdc\xfd\x6f\x8e\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xb7\xc4" "\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x5b\xe3\x96\x26\xfb\x5f\xff" "\xaf\xff\xd7\xff\x0f\xd4\xff\xdf\xf3\x5e\xfb\x9f\xa0\xff\xdf\xa3\xff" "\x5f\x06\xfd\xbf\xfe\x7f\x8a\xfe\x5f\xff\xbf\xe6\xe7\xd7\xff\xeb\xff" "\x99\xb7\xb4\xfe\x3f\x77\xff\xdb\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a" "\xc8\xdd\xff\xf6\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x47\xdc" "\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xbf\x33\x6e\x69\xb2\xff\xf5\xff" "\xfa\x7f\xfd\xff\x40\xfd\xbf\xf7\xff\xeb\xff\x17\x48\xff\xaf\xff\x9f" "\xb2\xbe\xfe\xff\xca\x03\x1f\xe9\xff\xf5\xff\xfa\x7f\xfd\x3f\xd3\x96" "\xd6\xff\xe7\xee\x7f\x57\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb" "\xdf\x1d\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xef\x89\x5b\xec\x7f" "\x00\x00\x00\x18\x46\xee\xfe\xf7\xc6\x2d\x4d\xf6\xbf\xfe\xbf\x73\xff" "\x7f\xea\xec\x66\xa3\xff\xdf\xe8\xff\xf5\xff\xfa\xff\x9d\xd2\xff\xeb" "\xff\xa7\xac\xaf\xff\x3f\x48\xff\xaf\xff\xd7\xff\xeb\xff\x99\xb6\xb4" "\xfe\x3f\x77\xff\xfb\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff" "\xfe\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x40\xdc\x62\xff\x03" "\x00\x00\xc0\x30\x72\xf7\x7f\x30\x6e\x69\xb2\xff\xf5\xff\x9d\xfb\x7f" "\xef\xff\xd7\xff\x1f\x7c\x4e\xfd\xbf\xfe\x7f\x17\xf4\xff\xfa\xff\x29" "\xfa\x7f\xfd\xff\x9a\x9f\x7f\xc9\xfd\xff\x69\xfd\x3f\x0b\x71\xe2\xfd" "\x7f\x7e\x62\x7c\x9c\xbb\xff\x43\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d" "\xe4\xee\xff\x70\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x7f\x24\x6e" "\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x3f\x1a\xb7\x34\xd9\xff\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\x7f\x7e\xff\x7f\xe6\xf0\xdf\xe2\x7b\xf4\xff\xfa" "\xff\x6d\xe8\xff\xf5\xff\x53\xf4\xff\xfa\xff\x35\x3f\xff\x92\xfb\x7f" "\xef\xff\x67\x29\x4e\xbc\xff\xbf\xcb\xc7\xb9\xfb\x3f\x16\xb7\x34\xd9" "\xff\x00\x00\x00\xd0\x41\xee\xfe\x8f\xc7\x2d\xf6\x3f\x00\x00\x00\x0c" "\x23\x77\xff\x27\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xe6\xb8" "\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xef\xff\xd7\xff\xef\x92" "\xfe\x5f\xff\x3f\x45\xff\xbf\xba\xfe\xff\x8a\xf3\x3f\xd0\xff\xeb\xff" "\xf5\xff\xcc\x59\x5a\xff\x9f\xbb\xff\x93\x71\x4b\x93\xfd\x0f\x00\x00" "\x00\x2b\x77\xcd\xa5\x7c\x52\xee\xfe\x4f\xc5\x2d\xf6\x3f\x00\x00\x00" "\x0c\x23\x77\xff\xa7\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x33" "\x71\x4b\x93\xfd\xbf\x4d\xff\x7f\x95\xfe\xff\x02\xfa\xff\xc3\x9f\x5f" "\xff\xaf\xff\xd7\xff\xeb\xff\x17\xd6\xff\x5f\xbd\xed\xf7\xd1\xff\xef" "\xd3\xff\x1f\xd4\xb0\xff\x3f\x60\x9b\x7e\xfe\xda\x63\x79\xf2\x93\x7b" "\xfe\xf3\xe9\xff\xf5\xff\xcc\x5b\x5a\xff\x9f\xbb\xff\xb3\x71\x4b\x93" "\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x5c\xdc\x62\xff\x03\x00\x00\xc0" "\x30\x72\xf7\x7f\x3e\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xbf\x10" "\xb7\x34\xd9\xff\xde\xff\xaf\xff\xd7\xff\x1f\xa9\xff\xbf\x5e\xff\xaf" "\xff\xd7\xff\x1f\xcd\xc2\xfa\xff\xad\xe9\xff\xf7\xed\xae\xff\xbf\xf7" "\xa6\x47\xff\x7f\x65\xfc\x8f\xbe\xfd\xff\x71\x3a\xe9\xe7\xd7\xff\xeb" "\xff\x99\xb7\xb4\xfe\x3f\x77\xff\x17\xe3\x96\x26\xfb\x1f\x00\x00\x00" "\x3a\xc8\xdd\x7f\x4b\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x7f\x29" "\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xbf\x1c\xb7\x34\xd9\xff\xfa" "\x7f\xfd\xbf\xfe\xdf\xfb\xff\xf5\xff\xfa\xff\x5d\xd2\xff\x1f\xb5\xff" "\x3f\x73\xa4\xe7\x1a\xa7\xff\xf7\xfe\xff\x8d\xfe\x7f\x75\xcf\xaf\xff" "\xd7\xff\x33\x6f\x69\xfd\x7f\xee\xfe\xaf\xc4\x2d\x4d\xf6\x3f\x00\x00" "\x00\x74\x90\xbb\xff\xab\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff" "\xb5\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x7a\xdc\xd2\x64\xff" "\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\x4b\xfa\x7f\xef\xff" "\x9f\xa2\xff\xd7\xff\xaf\xf9\xf9\xf5\xff\xfa\x7f\xe6\x2d\xad\xff\xcf" "\xdd\xff\x8d\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x7f\x33\x6e" "\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xbf\x15\xb7\xd8\xff\x00\x00\x00" "\x30\x8c\xdc\xfd\xdf\x8e\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\x2f\xa4\xff\x3f\x75\x56\xff\xbf\x05\xfd\xbf\xfe\x7f\xa3\xff" "\xdf\xda\x49\xf7\xf3\x6b\x7f\x7e\xfd\xbf\xfe\x9f\x79\x4b\xeb\xff\x73" "\xf7\x7f\x27\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xdf\x8d\x5b" "\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xef\xc5\x2d\xf6\x3f\x00\x00\x00" "\x0c\x23\x77\xff\xf7\xe3\x96\x26\xfb\x7f\xa6\xff\xaf\x06\x4e\xff\x3f" "\x4d\xff\xbf\xd9\xfb\xf7\x47\xff\x7f\xf0\xd7\xd7\xff\xeb\xff\xbd\xff" "\x5f\xff\xaf\xff\x9f\xa6\xff\xd7\xff\xaf\xf9\xf9\xf5\xff\xfa\x7f\xe6" "\x2d\xad\xff\xcf\xdd\xff\x83\xb8\xe5\xce\xe1\x77\xe6\xe8\x7f\x97\x00" "\x00\x00\xc0\x92\xe4\xee\xff\x61\xdc\xd2\xe4\xe7\xff\x00\x00\x00\xd0" "\x41\xee\xfe\x1f\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x8f\xe3" "\x96\x26\xfb\xdf\xfb\xff\xf5\xff\xde\xff\xaf\xff\xd7\xff\xeb\xff\x77" "\x49\xff\xaf\xff\x9f\xa2\xff\xd7\xff\xaf\xf9\xf9\xf5\xff\xfa\x7f\xe6" "\x2d\xad\xff\xcf\xdd\xff\x93\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72" "\xf7\xff\x34\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x7f\x16\xb7\xd8" "\xff\x00\x00\x00\x30\x8c\xdc\xfd\x3f\x8f\x5b\x9a\xec\x7f\xfd\xff\xa8" "\xfd\xff\x6d\xff\xb7\xff\x57\xf5\xff\xfa\x7f\xfd\xff\xdc\xf3\xeb\xff" "\x77\x4b\xff\xaf\xff\x9f\xa2\xff\xd7\xff\xaf\xf9\xf9\xf5\xff\xfa\x7f" "\xe6\x2d\xad\xff\xcf\xdd\xff\x8b\xb8\xa5\xc9\xfe\x07\x00\x00\x80\xf5" "\x3b\x3d\xfb\x19\xb9\xfb\x7f\x19\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc" "\xfd\xbf\x8a\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x5f\xc7\x2d\x4d" "\xf6\xbf\xfe\x7f\xd4\xfe\xdf\xfb\xff\xf5\xff\xfa\x7f\xfd\xff\x32\xe8" "\xff\xf5\xff\x53\xf4\xff\xfa\xff\x35\x3f\xbf\xfe\x5f\xff\xcf\xbc\xa5" "\xf5\xff\xb9\xfb\x7f\x13\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe" "\xdf\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xef\xe2\x16\xfb\x1f" "\x00\x00\x00\x86\x91\xbb\xff\xf7\x71\x4b\x93\xfd\xaf\xff\xdf\x45\xff" "\x7f\x8b\xfe\x5f\xff\xbf\x47\xff\xaf\xff\xd7\xff\xaf\xbf\xff\x3f\x15" "\xff\xc1\xd1\xff\xef\xd3\xff\x1f\xa4\xff\xd7\xff\xeb\xff\xf5\xff\x4c" "\x5b\x5a\xff\x9f\xbb\xff\x0f\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4" "\xee\xbf\x35\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xff\x18\xb7\xd8" "\xff\x00\x00\x00\x30\x8c\xdc\xfd\x7f\x8a\x5b\x9a\xec\xff\x71\xfa\xff" "\x78\xd2\x45\xf4\xff\xde\xff\xaf\xff\xdf\xa7\xff\xd7\xff\xeb\xff\xd7" "\xdf\xff\x27\xfd\xff\x3e\xfd\xff\x41\xfa\x7f\xfd\xff\x6a\xfb\xff\xfc" "\xc3\x4b\xff\xcf\x8e\x2d\xad\xff\xcf\xdd\xff\xe7\xb8\xa5\xc9\xfe\x07" "\x00\x00\x80\x0e\x72\xf7\xff\x25\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9" "\xfb\x6f\x8b\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xbf\xc6\x2d\x4d" "\xf6\xff\x38\xfd\x7f\xd0\xff\xeb\xff\xf5\xff\xfa\xff\xf8\xff\xf5\xff" "\xcb\xa0\xff\xd7\xff\x4f\xd1\xff\xeb\xff\xd7\xfc\xfc\xab\xee\xff\xbd" "\xff\x9f\xcb\x64\x69\xfd\x7f\xee\xfe\xbf\xc5\x2d\x4d\xf6\x3f\x00\x00" "\x00\x74\x90\xbb\xff\xef\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff" "\x8f\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xbf\x3d\x6e\xb9\x60\xff" "\x9f\xb9\x8c\x4f\x75\xf9\xe8\xff\xf5\xff\xbb\xeb\xff\xef\xb8\xdb\x66" "\xa3\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xc5\xe9\xff\xf5\xff" "\x6b\x7e\x7e\xfd\xbf\xfe\x9f\x79\x4b\xeb\xff\x6f\xdf\xfb\xb3\xf6\xea" "\xcd\x3f\xf7\xbe\xda\xcf\xff\x01\x00\x00\x60\x44\xb9\xfb\xff\x15\xb7" "\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xff\x8e\x5b\xec\x7f\x00\x00\x00" "\x18\x46\xee\xfe\xff\xc4\x2d\x4d\xf6\xbf\xfe\x5f\xff\xef\xfd\xff\xff" "\x53\xff\x7f\xed\xd4\xef\x07\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x4f" "\xd3\xff\xeb\xff\xd7\xfc\xfc\xfa\x7f\xfd\x3f\xf3\x96\xd6\xff\xe7\xee" "\xff\x6f\x00\x00\x00\xff\xff\x1f\xa5\x90\xd4", 24576); syz_mount_image( /*fs=*/0x20000040, /*dir=*/0x20000240, /*flags=MS_RDONLY|MS_NOSUID|MS_NODIRATIME|MS_NOATIME*/ 0xc03, /*opts=*/0x200003c0, /*chdir=*/2, /*size=*/0x6000, /*img=*/0x20008080); break; case 1: memcpy((void*)0x20000000, ".\000", 2); res = syscall(__NR_fspick, /*dfd=*/0xffffff9c, /*path=*/0x20000000ul, /*flags=*/0ul); if (res != -1) r[0] = res; break; case 2: memcpy((void*)0x20000040, ".\000", 2); res = syscall(__NR_open, /*file=*/0x20000040ul, /*flags=*/0ul, /*mode=*/0ul); if (res != -1) r[1] = res; break; case 3: *(uint32_t*)0x20000680 = 0; *(uint64_t*)0x20000688 = 0x200002000001; *(uint64_t*)0x20000690 = 0; *(uint64_t*)0x20000698 = 0; *(uint32_t*)0x200006a0 = 0; *(uint16_t*)0x200006a4 = 0; *(uint16_t*)0x200006a6 = 0x2401; syscall(__NR_ioctl, /*fd=*/r[1], /*cmd=*/0xc0185879, /*arg=*/0x20000680ul); break; case 4: syscall(__NR_fsconfig, /*fd=*/r[0], /*cmd=*/7ul, /*key=*/0ul, /*value=*/0ul, /*aux=*/0ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); const char* reason; (void)reason; loop(); return 0; }