// https://syzkaller.appspot.com/bug?id=781a4c1f2279253fbed103d86f99047ae1ae76ad // 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_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 use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } 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) { errno = EMSGSIZE; return -1; } 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, 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 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, loopfd = -1, 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) { memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; 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) { if (strstr(opts, "errors=panic") || strstr(opts, "errors=remount-ro") == 0) 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) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; retry: while (umount2(dir, MNT_DETACH | UMOUNT_NOFOLLOW) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, MNT_DETACH | UMOUNT_NOFOLLOW) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, MNT_DETACH | UMOUNT_NOFOLLOW)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, MNT_DETACH | UMOUNT_NOFOLLOW)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } 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"); if (symlink("/dev/binderfs", "./binderfs")) { } } 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) { int i, call, thread; for (call = 0; call < 4; 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); if (call == 1) break; event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0) + (call == 1 ? 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++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[1] = {0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x20000140, "jfs\000", 4); memcpy((void*)0x20000000, "./file0\000", 8); memcpy((void*)0x20000180, "nodiscard", 9); *(uint8_t*)0x20000189 = 0x2c; memcpy((void*)0x2000018a, "nointegrity", 11); *(uint8_t*)0x20000195 = 0x2c; memcpy((void*)0x20000196, "usrquota", 8); *(uint8_t*)0x2000019e = 0x2c; memcpy((void*)0x2000019f, "integrity", 9); *(uint8_t*)0x200001a8 = 0x2c; memcpy((void*)0x200001a9, "iocharset", 9); *(uint8_t*)0x200001b2 = 0x3d; memcpy((void*)0x200001b3, "iso8859-6", 9); *(uint8_t*)0x200001bc = 0x2c; memcpy((void*)0x200001bd, "iocharset", 9); *(uint8_t*)0x200001c6 = 0x3d; memcpy((void*)0x200001c7, "iso8859-7", 9); *(uint8_t*)0x200001d0 = 0x2c; memcpy((void*)0x200001d1, "iocharset", 9); *(uint8_t*)0x200001da = 0x3d; memcpy((void*)0x200001db, "cp866", 5); *(uint8_t*)0x200001e0 = 0x2c; *(uint8_t*)0x200001e1 = 0; memcpy( (void*)0x2000bd80, "\x78\x9c\xec\xdd\xcb\x6f\x1d\x57\x1d\x07\xf0\xdf\x7d\xfa\x51\x9a\x46" "\x5d\x54\x25\x42\xc8\x6d\xc3\xa3\x94\xe6\x59\x42\xa0\x40\xdb\x05\x2c" "\xd8\xb0\x40\xd9\xa2\x44\xae\x5b\x45\xa4\x80\x92\x80\xd2\x2a\x22\xae" "\xbc\x61\xc1\x1f\x01\x42\x62\x89\x10\x4b\x56\xfc\x01\x5d\xb0\x65\xc7" "\x1f\x40\xa4\x18\x09\xd4\x15\x83\xc6\x3e\xc7\x19\x4f\xee\xcd\x75\xea" "\xf8\x8e\xed\xf3\xf9\x48\xce\xcc\x6f\xce\x8c\xef\x99\x7c\xef\xd3\x33" "\x73\x4f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xf1\xc3\x1f\xfc\xf8\x7c\x2f\x22\xae\xfe\x2a\x2d\x38\x19\xf1\xb9\x18" "\x44\xf4\x23\x96\xea\x7a\x25\x22\x96\x56\x4e\xe6\xf5\x87\x11\xf1\x62" "\x6c\x35\xc7\x0b\x11\x31\x5a\x88\xa8\xb7\xdf\xfa\xe7\xb9\x88\x37\x22" "\xe2\x93\x13\x11\x0f\x36\xef\xae\xd6\x8b\x2f\xec\xb1\x1f\xdf\xff\xf3" "\x3f\xfe\xf0\x93\x67\x7e\xf4\xf7\x3f\x8d\xce\xfe\xf7\x2f\xb7\x07\x6f" "\x4e\x5b\xef\xce\x9d\xdf\xfe\xe7\xaf\xf7\xf6\xb7\xcf\x00\x00\x00\x50" "\x9a\xaa\xaa\xaa\x5e\xfa\x98\x7f\x2a\x7d\xbe\xef\x77\xdd\x29\x00\x60" "\x2e\xf2\xeb\x7f\x95\xe4\xe5\x6a\xb5\x5a\xad\x56\xab\x8f\x5f\xdd\x54" "\x4d\x76\xaf\x59\x44\xc4\x7a\x73\x9b\xfa\x3d\x83\xc3\xf1\x00\x70\xc4" "\xac\xc7\xa7\x5d\x77\x81\x0e\xc9\xbf\x68\xc3\x88\x78\xa6\xeb\x4e\x00" "\x87\x5a\xaf\xeb\x0e\x70\x20\x1e\x6c\xde\x5d\xed\xa5\x7c\x7b\xcd\xd7" "\x83\x95\xed\xf6\x7c\x2e\xc8\xae\xfc\xd7\x7b\x3b\xd7\x77\x4c\x9b\xce" "\xd2\x3e\xc7\x64\x5e\xf7\xaf\x8d\x18\xc4\xf3\x53\xfa\xb3\x34\xa7\x3e" "\x1c\x26\x39\xff\x7e\x3b\xff\xab\xdb\xed\xe3\xb4\xde\x41\xe7\x3f\x2f" "\xd3\xf2\x1f\x6f\x5f\xfa\x54\x9c\x9c\xff\xa0\x9d\x7f\xcb\xf1\xc9\xbf" "\x3f\x31\xff\x52\xe5\xfc\x87\x4f\x94\xff\x40\xfe\x00\x00\x00\x00\x00" "\x70\x88\xe5\xbf\xff\x9f\xec\xf8\xf8\xef\xc2\xfe\x77\x65\x4f\x1e\x77" "\xfc\x77\x65\x4e\x7d\x00\x00\x00\x00\x00\x00\x00\x80\xa7\x6d\xbf\xe3" "\xff\xed\x30\xfe\x1f\x00\x00\x00\x1c\x5a\xf5\x67\xf5\xda\xef\x4e\x3c" "\x5c\x36\xed\xbb\xd8\xea\xe5\x57\x7a\x11\xcf\xb6\xd6\x07\x0a\x93\x2e" "\x96\x59\xee\xba\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x50\x92" "\xe1\xf6\x39\xbc\x57\x7a\x11\xa3\x88\x78\x76\x79\xb9\xaa\xaa\xfa\xa7" "\xa9\x5d\x3f\xa9\xfd\x6e\x7f\xd4\x95\xbe\xff\x50\xb2\xae\x9f\xe4\x01" "\x00\x60\xdb\x27\x27\x5a\xd7\xf2\xf7\x22\x16\x23\xe2\x4a\xfa\xae\xbf" "\xd1\xf2\xf2\x72\x55\x2d\x2e\x2d\x57\xcb\xd5\xd2\x42\x7e\x3f\x3b\x5e" "\x58\xac\x96\x1a\x9f\x6b\xf3\xb4\x5e\xb6\x30\xde\xc3\x1b\xe2\xe1\xb8" "\xaa\x7f\xd9\x62\x63\xbb\xa6\x59\x9f\x97\x67\xb5\xb7\x7f\x5f\x7d\x5b" "\xe3\x6a\xb0\x87\x8e\xcd\x47\x87\x81\x03\x40\x44\x6c\xbf\x1a\x3d\xf0" "\x8a\x74\xcc\x54\xd5\x73\xd1\xf5\xbb\x1c\x8e\x06\x8f\xff\xe3\xc7\xe3" "\x9f\xbd\xe8\xfa\x7e\x0a\x00\x00\x00\x1c\xbc\xaa\xaa\xaa\x5e\xfa\x3a" "\xef\x53\xe9\x98\x7f\xbf\xeb\x4e\x01\x00\x73\x91\x5f\xff\xdb\xc7\x05" "\xd4\x6a\xb5\x5a\xad\x56\x1f\xbf\xba\xa9\x9a\xec\x5e\xb3\x88\x88\xf5" "\xe6\x36\xf5\x7b\x06\xc3\xf1\x03\xc0\x11\xb3\x1e\x9f\x76\xdd\x05\x3a" "\x24\xff\xa2\x0d\x23\xe2\xc5\xae\x3b\x01\x1c\x6a\xbd\xae\x3b\xc0\x81" "\x78\xb0\x79\x77\xb5\x97\xf2\xed\x35\x5f\x0f\xd2\xf8\xee\xf9\x5c\x90" "\x5d\xf9\xaf\xf7\xb6\xb6\xcb\xdb\x4f\x9a\xce\xd2\x3e\xc7\x64\x5e\xf7" "\xaf\x8d\x18\xc4\xf3\x53\xfa\xf3\xc2\x9c\xfa\x70\x98\xe4\xfc\xfb\xed" "\xfc\xaf\x6e\xb7\x8f\xd3\x7a\x07\x9d\xff\xbc\x4c\xcb\xbf\xde\xcf\x93" "\x1d\xf4\xa7\x6b\x39\xff\x41\x3b\xff\x96\xe3\x93\x7f\x7f\x62\xfe\xa5" "\xca\xf9\x0f\x9f\x28\xff\x81\xfc\x01\x00\x00\x00\x00\xe0\x10\xcb\x7f" "\xff\x3f\x79\xa8\x8e\xff\x8e\x3f\xeb\xee\xcc\xf4\xb8\xe3\xbf\x2b\x07" "\x76\xab\x00\x00\x00\x00\x00\x00\x00\x70\xb0\x1e\x6c\xde\x5d\xcd\xd7" "\xbd\xe6\xe3\xff\x5f\x98\xb0\x9e\xeb\x3f\x8f\xa7\x9c\x7f\x4f\xfe\x45" "\xca\xf9\xf7\x5b\xf9\x7f\xb5\xb5\xde\xa0\x31\x7f\xff\x9d\x87\xf9\xff" "\x7b\xf3\xee\xea\x1f\x6f\xff\xeb\xf3\x79\xba\xd7\xfc\x17\xf2\x4c\x2f" "\xdd\xb3\x7a\xe9\x1e\xd1\x4b\xb7\xd4\x1b\xa6\xe9\x7e\xf6\xee\x51\x1b" "\xa3\xc1\xb8\xbe\xa5\x51\xaf\x3f\x18\xa6\x73\x7e\xaa\xd1\x7b\x71\x3d" "\x6e\xc4\x5a\x9c\xdb\xb5\x6e\x3f\xfd\x7f\x3c\x6c\x3f\xbf\xab\xbd\xee" "\xe9\x68\x57\xfb\x85\x5d\xed\xc3\x47\xda\x2f\xee\x6a\x1f\xa5\x33\x9d" "\xaa\xa5\xdc\x7e\x26\x56\xe3\xe7\x71\x23\xde\xdd\x6a\xaf\xdb\x16\x66" "\xec\xff\xe2\x8c\xf6\x6a\x46\x7b\xce\x7f\xe0\xf1\x5f\xa4\x9c\xff\xb0" "\xf1\x53\xe7\xbf\x9c\xda\x7b\xad\x69\xed\xfe\xc7\xfd\x47\x1e\xf7\xcd" "\xe9\xa4\xdb\x79\xfb\xfa\x17\x7f\x73\xee\xe0\x77\x67\xa6\x8d\x18\xec" "\xec\x5b\x53\xbd\x7f\x2f\x77\xd0\x9f\xad\xff\x93\x67\xc6\xf1\xcb\x5b" "\x6b\x37\xcf\xdc\xb9\x76\xfb\xf6\xcd\xf3\x91\x26\xbb\x96\x5e\x88\x34" "\x79\xca\x72\xfe\xa3\xf4\xb3\xf3\xfc\xff\xca\x76\x7b\x7e\xde\x6f\x3e" "\x5e\xef\x7f\x3c\x7e\xe2\xfc\x0f\x8b\x8d\x18\x4e\xcd\xff\x95\xc6\x7c" "\xbd\xbf\xaf\xce\xb9\x6f\x5d\xc8\xf9\x8f\xd3\x4f\xce\xff\xdd\xd4\x3e" "\xf9\xf1\x7f\x94\xf3\x9f\xfe\xf8\x7f\xad\x83\xfe\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xc0\xe3\x54\x55\xb5\x75\x89\xe8\xdb\x11" "\x71\x29\x5d\xff\xd3\xd5\xb5\x99\x00\xc0\x7c\xe5\xd7\xff\x2a\xc9\xcb" "\xe7\x55\x0f\xe6\x7c\x7b\x6a\xb5\x5a\xad\x56\x97\x5c\x37\x55\x93\xbd" "\xd5\x2c\x22\xe2\x6f\xcd\x6d\xea\xf7\x0c\xbf\x9e\xf4\xcb\x00\x80\xc3" "\xec\x7f\x11\xf1\xcf\xae\x3b\x41\x67\xe4\x5f\xb0\xfc\x7d\x7f\xf5\xf4" "\x74\xd7\x9d\x01\xe6\xea\xd6\x87\x1f\xfd\xf4\xda\x8d\x1b\x6b\x37\x6f" "\x75\xdd\x13\x00\x00\x00\x00\x00\x00\x00\xe0\xb3\xca\xe3\x7f\xae\x34" "\xc6\x7f\x3e\x5d\x55\xd5\xbd\xd6\x7a\xbb\xc6\x7f\x7d\x27\x56\xf6\x3b" "\xfe\xe7\x30\xcf\xec\x0c\x30\xfa\x94\x07\xfa\x9e\x62\xa3\x3f\x1e\xf4" "\x1b\xc3\x8d\xbf\x14\xd3\xc6\xff\x1e\xed\xcc\x3d\x6e\xfc\xef\xe1\x8c" "\xdb\x1b\xcd\x68\x1f\xcf\x68\x5f\x98\xd1\xbe\x38\xa3\x7d\xe2\x85\x1e" "\x0d\x39\xff\x97\x1a\xe3\x9d\x9f\x8e\x88\x53\xad\xe1\xd7\x4b\x18\xff" "\xb5\x3d\xe6\x7d\x09\x72\xfe\x2f\x37\xee\xcf\x75\xfe\x5f\x69\xad\xd7" "\xcc\xbf\xfa\xfd\x51\xce\xbf\xbf\x2b\xff\xb3\xb7\x3f\xf8\xc5\xd9\x5b" "\x1f\x7e\xf4\xfa\xf5\x0f\xae\xbd\xbf\xf6\xfe\xda\xcf\x2e\x9e\x3f\x7f" "\xee\xe2\xa5\x4b\x97\x2f\x5f\x3e\xfb\xde\xf5\x1b\x6b\xe7\xb6\xff\xed" "\xb0\xc7\x07\x2b\xe7\x9f\xc7\xbe\x76\x1e\x68\x59\x72\xfe\x39\x73\xf9" "\x97\x25\xe7\xff\xa5\x54\xcb\xbf\x2c\x39\xff\x2f\xa7\x5a\xfe\x65\xc9" "\xf9\xe7\xf7\x7b\xf2\x2f\x4b\xce\x3f\x7f\xf6\x91\x7f\x59\x72\xfe\xaf" "\xa6\x5a\xfe\x65\xc9\xf9\x7f\x2d\xd5\xf2\x2f\x4b\xce\xff\xb5\x54\xcb" "\xbf\x2c\x39\xff\xaf\xa7\x5a\xfe\x65\xc9\xf9\xbf\x9e\x6a\xf9\x97\x25" "\xe7\x7f\x26\xd5\xf2\x2f\x4b\xce\xff\x6c\xaa\xe5\x5f\x96\x9c\x7f\x3e" "\xc2\x25\xff\xb2\xe4\xfc\xf3\x99\x0d\xf2\x2f\x4b\xce\xff\x42\xaa\xe5" "\x5f\x96\x9c\xff\xc5\x54\xcb\xbf\x2c\x39\xff\x37\x52\x2d\xff\xb2\xe4" "\xfc\xbf\x91\x6a\xf9\x97\x25\xe7\x7f\x29\xd5\xf2\x2f\x4b\xce\xff\x9b" "\xa9\x96\x7f\x59\x72\xfe\x97\x53\x2d\xff\xb2\xe4\xfc\xbf\x95\x6a\xf9" "\x97\x25\xe7\xff\xed\x54\xcb\xbf\x2c\x39\xff\x37\x53\x2d\xff\xb2\xe4" "\xfc\xbf\x93\x6a\xf9\x97\x25\xe7\xff\xdd\x54\xcb\xbf\x2c\x39\xff\xef" "\xa5\x5a\xfe\x65\xc9\xf9\xbf\x95\x6a\xf9\x97\xe5\xe1\xf7\xff\x9b\x31" "\x63\xc6\x4c\x9e\xe9\xfa\x99\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x68\x9b\xc7\xe9\xc4\x5d\xef\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\x00\x00\xc0\xff\xd9\x81\x03\x01\x00" "\x00\x00\x00\x20\xff\xd7\x46\xa8\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xc2\x0e\x1c\x08\x00\x00\x00\x00\x00\xf9\xbf" "\x36\x42\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x15\xf6\xee\x2d\x46\xae\xfa\xbe\x03\xf8\xd9\xf5\xae\xbd\x36\x37\x27" "\x10\x6a\xa8\x21\x6b\xe3\x18\x63\x16\x76\x7d\xc1\x97\xb4\x2e\x0e\x10" "\x42\x21\x97\x72\x6d\xe8\x05\xdb\xf5\xae\xcd\x26\xbe\xe1\xb5\x1b\xa0" "\x48\x36\x22\x69\x90\xe2\xa8\x51\x95\xb6\xe4\xa1\x6d\x12\xa1\x96\x97" "\x2a\x56\xc5\x43\x5a\x91\x88\x87\xa8\x55\xa5\x4a\xa1\x7d\x48\x5f\xa2" "\x54\x95\xf2\x80\x2a\x12\x91\x48\x95\xda\x2a\x65\xab\x39\xf3\xff\xff" "\x77\x66\xf6\xec\xcc\xda\x1e\x96\x99\x73\x3e\x1f\x09\x7e\xde\x99\x33" "\xf3\x3f\x73\xe6\xcc\xec\x7e\xd7\x7c\x07\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x80\x46\xeb\xee\x9e\xfa\xe2\x40\x96\x65\xb5\x7f\xf2" "\x7f\xad\xce\xb2\xcb\x6b\x7f\x5e\x39\xba\x3a\xbf\xec\xc3\xef\xf5\x1e" "\x02\x00\x00\x00\x97\xea\xff\xf2\x7f\xbf\x7d\x55\xba\x60\xef\x22\x6e" "\xd4\xb0\xcd\x3f\xde\xf8\xfd\x57\x67\x67\x67\x67\xb3\x4f\x2f\xfb\x93" "\xe1\xaf\xce\xce\xa6\x2b\x46\xb3\x6c\x78\x45\x96\xe5\xd7\x45\xe7\xff" "\xe3\xf1\x81\xc6\x6d\x82\x17\xb2\x91\x81\xc1\x86\xaf\x07\x3b\x2c\xbf" "\xac\xc3\xf5\x43\x1d\xae\x1f\xee\x70\xfd\xf2\x0e\xd7\xaf\xe8\x70\xfd" "\x48\x87\xeb\xe7\x1d\x80\x79\x56\xd6\x7f\x1f\x93\xdf\xd9\x86\xfc\x8f" "\xab\xeb\x87\x34\xbb\x26\x1b\xce\xaf\xdb\x50\x70\xab\x17\x06\x56\x0c" "\x0e\xc6\xdf\xe5\xe4\x06\xf2\xdb\xcc\x0e\x1f\xca\xa6\xb3\x23\xd9\x54" "\x36\xd1\xb4\x7d\x7d\xdb\x81\x7c\xfb\xd7\xd6\xd5\xd6\xba\x2f\x8b\x6b" "\x0d\x36\xac\xb5\xb6\x76\x86\xfc\xec\xb9\x83\x71\x1f\x06\xc2\x31\xde" "\xd0\xb4\xd6\xdc\x7d\x46\x3f\xf9\x48\x36\xfa\xf3\x9f\x3d\x77\xf0\xaf" "\x4e\xbd\x75\x5d\xd1\xec\x78\x18\x9a\xee\xaf\xbe\x9f\x9b\xd6\xd7\xf6" "\xf3\xf3\xe1\x92\xfa\xbe\x0e\x64\x2b\xd2\x31\x89\xfb\x39\xd8\xb0\x9f" "\x6b\x0b\x9e\x93\x65\x4d\xfb\x39\x90\xdf\xae\xf6\xe7\xd6\xfd\x7c\x7b" "\x91\xfb\xb9\x6c\x6e\x37\x97\x54\xeb\x73\x3e\x92\x0d\xe6\x7f\x7e\x23" "\x3f\x4e\x43\x8d\xbf\xd6\x4b\xc7\x69\x6d\xb8\xec\xbf\x6f\xca\xb2\xec" "\xec\xdc\x6e\xb7\x6e\x33\x6f\xad\x6c\x30\x5b\xd5\x74\xc9\xe0\xdc\xf3" "\x33\x52\x3f\x23\x6b\xf7\x51\x3b\x95\xde\x9f\x0d\x5d\xd0\x79\xba\x6e" "\x11\xe7\x69\x6d\x4e\x6e\x68\x3e\x4f\x5b\x5f\x13\xf1\xf9\x5f\x17\x6e" "\x37\xb4\xc0\x3e\x34\x3e\x4d\x3f\x79\x7e\x79\xc3\xf3\xfe\x8b\xd9\x8b" "\x39\x4f\xa3\xda\xa3\x5e\xe8\xb5\xd2\x7a\x0e\x76\xfb\xb5\xd2\x2b\xe7" "\x60\x3c\x2f\xde\xc8\x1f\xf4\x8b\x85\xe7\xe0\x86\xf0\xf8\x9f\xdb\xb8" "\xf0\x39\x58\x78\xee\x14\x9c\x83\xe9\x71\x37\x9c\x83\xeb\x3b\x9d\x83" "\x83\xcb\x97\xe5\xfb\x9c\x9e\x84\x81\xfc\x36\x73\xe7\xe0\x96\xa6\xed" "\x97\xe5\x2b\x0d\xe4\xf3\xcd\x8d\xed\xcf\xc1\xf1\x53\x47\x4f\x8c\xcf" "\x3c\xf3\xec\x6d\xd3\x47\x0f\x1c\x9e\x3a\x3c\x75\x6c\xdb\x96\x2d\x13" "\xdb\x76\xec\xd8\xb5\x6b\xd7\xf8\xa1\xe9\x23\x53\x13\xf5\x7f\x5f\xe4" "\xd1\xee\x7d\xab\xb2\xc1\xf4\x1a\x58\x1f\x8e\x5d\x7c\x0d\xdc\xdc\xb2" "\x6d\xe3\xa9\x3a\xfb\x8d\xe5\xf3\xde\x7f\x2f\xf6\x75\x38\xd2\xe6\x75" "\xb8\xba\x65\xdb\x6e\xbf\x0e\x87\x5a\x1f\xdc\xc0\xd2\xbc\x20\xe7\x9f" "\xd3\xf5\xd7\xc6\x23\xb5\x83\x3e\x72\x6e\x30\x5b\xe0\x35\x96\x3f\x3f" "\x9b\x2f\xfd\x75\x98\x1e\x77\xc3\xeb\x70\xa8\xe1\x75\x58\xf8\x3d\xa5" "\xe0\x75\x38\xb4\x88\xd7\x61\x6d\x9b\x13\x9b\x17\xf7\x33\xcb\x50\xc3" "\x3f\x45\xfb\xb0\xf0\xf7\x82\x4b\x3b\x07\x57\x37\x9c\x83\xad\x3f\x8f" "\xb4\x9e\x83\xdd\xfe\x79\xa4\x57\xce\xc1\x91\x70\x5e\xfc\x70\xf3\xc2" "\xdf\x0b\xd6\x86\xfd\x7d\x71\xec\x42\x7f\x1e\x59\x36\xef\x1c\x4c\x0f" "\x37\xbc\xf7\xd4\x2e\x49\x3f\xef\x8f\xec\xca\x47\xd1\x79\x79\x7d\xed" "\x8a\xcb\x96\x67\xa7\x67\xa6\x4e\xde\xfe\xf4\x81\x53\xa7\x4e\x6e\xc9" "\xc2\x58\x12\x57\x37\x9c\x2b\xad\xe7\xeb\xaa\x86\xc7\x94\xcd\x3b\x5f" "\x07\x2f\xf8\x7c\xdd\x3b\x7d\xe3\x8b\xd7\x17\x5c\xbe\x3a\x1c\xab\x91" "\xdb\x6a\xff\x1a\x59\xf0\xb9\xaa\x6d\xb3\xfd\xf6\xf6\xcf\x55\xfe\xdd" "\xad\xf8\x78\x36\x5d\xba\x35\x0b\xa3\xcb\x96\xfa\x78\x16\x7d\x37\xaf" "\x1d\xcf\xe5\x59\xf6\xb5\xef\x3d\xff\xd0\x77\x9e\xfb\xda\xdd\x0b\x1e" "\xcf\x5a\xde\xfc\xfc\xf8\xa5\xff\x2c\x9e\x72\x69\xc3\xfb\xef\xf0\x02" "\xef\xbf\x31\xf7\xbf\x53\x5f\x2f\xdd\xd5\x0b\xcb\x86\x87\xea\xaf\xdf" "\x65\xe9\xe8\x0c\x37\xbd\x1f\x37\x3f\x55\x43\xf9\x7b\xd7\x40\xbe\xf6" "\xdb\xe3\x8b\x7b\x3f\x1e\x0e\xff\x2c\xf5\xfb\xf1\x35\x6d\xde\x8f\xd7" "\xb4\x6c\xdb\xed\xf7\xe3\xe1\xd6\x07\x17\xdf\x8f\x07\x3a\xfd\xb6\xe3" "\xd2\xb4\x3e\x9f\x23\xe1\x3c\x39\x32\xd1\xfe\xfd\xb8\xb6\xcd\x9a\xad" "\x17\x7a\x4e\x0e\xb5\x7d\x3f\xbe\x29\xcc\x81\x70\xfc\x6f\x09\x49\x21" "\xe5\xa2\x86\x73\x67\xa1\xf3\x36\xad\x35\x34\x34\x1c\x1e\xd7\x50\x5c" "\xa1\xf9\x3c\xdd\xd6\xb4\xfd\x70\xc8\x66\xb5\xb5\x5e\xd9\x7a\x71\xe7" "\xe9\xa6\x9b\xea\xf7\xb5\x2c\x3d\xba\x39\x4b\x75\x9e\x8e\xb6\x6c\xdb" "\xed\xf3\x34\xfd\xee\x6b\xa1\xf3\x74\xa0\xd3\x6f\xdf\x2e\x4e\xeb\xf3" "\x39\x12\xce\x8b\x6b\xb6\xb5\x3f\x4f\x6b\xdb\xbc\xbe\xfd\xd2\xdf\x3b" "\x57\xc6\x3f\x36\xbc\x77\x2e\xef\x74\x0e\x0e\x2f\x5b\x5e\xdb\xe7\xe1" "\x74\x12\xe6\xef\xf7\xd9\xec\xca\x78\x0e\xde\x9e\x1d\xcc\x8e\x67\x47" "\xb2\xc9\xfc\xda\xe5\xf9\xf9\x34\x90\xaf\x35\x76\xc7\xe2\xce\xc1\xe5" "\xe1\x9f\xa5\x7e\xaf\x5c\xd3\xe6\x1c\xdc\xd4\xb2\x6d\xb7\xcf\xc1\xf4" "\x7d\x6c\xa1\x73\x6f\x60\x68\xfe\x83\xef\x82\xd6\xe7\x73\x24\x9c\x17" "\x2f\xdd\xd1\xfe\x1c\xac\x6d\x73\xcf\xce\xee\xfe\xec\xba\x29\x5c\x92" "\xb6\x69\xf8\xd9\xb5\xf5\xf7\x6b\x0b\xfd\xce\xeb\xfa\x96\xc3\xf4\x6e" "\x9d\x2b\x43\x61\x3f\xbf\xb7\xb3\xfd\xef\x66\x6b\xdb\x1c\xd9\x75\xa1" "\x39\xb3\xfd\x71\xba\x35\x5c\x72\x59\xc1\x71\x6a\x7d\xfd\x2e\xf4\x9a" "\x9a\xcc\x96\xe6\x38\xad\x09\xfb\xf9\xd6\xae\x85\x8f\x53\x6d\x7f\x6a" "\xdb\x7c\x75\xf7\x22\xcf\xa7\xbd\x59\x96\x9d\x79\xea\xae\xfc\xf7\xbd" "\xe1\xef\x57\xfe\xf6\xf4\x0f\x5e\x6d\xfa\x7b\x97\xa2\xbf\xd3\x39\xf3" "\xd4\x5d\x3f\xbd\xe2\xd0\x3f\x5c\xc8\xfe\x03\xd0\xff\xde\xa9\x8f\x55" "\xf5\xef\x75\x0d\x7f\x33\xb5\x98\xbf\xff\x07\x00\x00\x00\xfa\x42\xcc" "\xfd\x83\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xf1\xbf\x0a\x4f" "\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x87\xc2\x4c\x2a\x92\xff\xd7\xdc" "\xf3\xd6\xf4\x3b\x67\xb2\xd4\xcc\x9f\x0d\xe2\xf5\xe9\x30\xdc\x5f\xdf" "\x2e\x76\x5c\x27\xc2\xd7\xa3\xb3\x73\x6a\x97\xdf\xf5\xf2\xd4\x7f\xfd" "\xfd\x99\xc5\xad\x3d\x98\x65\xd9\x2f\xee\xff\x83\xc2\xed\xd7\xdc\x1f" "\xf7\xab\x6e\x34\xec\xe7\xf9\x8f\x36\x5f\x3e\xcf\xab\xb7\x2d\x6a\xed" "\xfd\x8f\x9e\x49\xeb\x36\xf6\xd7\xbf\x1e\xee\x3f\x3e\x9e\xc5\x9e\x06" "\x45\x15\xdc\x89\x2c\xcb\x5e\xbb\xea\xcb\xf9\x3a\xa3\x8f\x9f\xcb\xe7" "\xeb\xf7\xef\xcf\xe7\x43\x67\x5f\x7c\xa1\xb6\xcd\xdb\xbb\xeb\x5f\xc7" "\xdb\xbf\x79\x75\x7d\xfb\x3f\x0f\xe5\xdf\xbd\x87\x0e\x34\xdd\xfe\xcd" "\x70\x1c\x7e\x1c\xe6\xc4\x03\xc5\xc7\x23\xde\xee\x5b\xe7\x6e\x59\xbb" "\xf3\xb1\xb9\xf5\xe2\xed\x06\xd6\x5f\x99\x3f\xec\x97\x9e\xa8\xdf\x6f" "\xfc\x9c\x9c\xaf\xbc\x50\xdf\x3e\x1e\xe7\x85\xf6\xff\x3b\x5f\x7a\xe5" "\x5b\xb5\xed\x9f\xfe\x50\xf1\xfe\x9f\x19\x2c\xde\xff\x57\xc2\xfd\xbe" "\x1c\xe6\xff\xdc\x50\xdf\xbe\xf1\x39\xa8\x7d\x1d\x6f\xf7\x85\xb0\xff" "\x71\xbd\x78\xbb\xdb\xbf\xf9\xdd\xc2\xfd\x3f\xff\xc5\xfa\xf6\x27\xee" "\xad\x6f\xb7\x3f\xcc\xb8\xfe\xa6\xf0\xf5\x86\x7b\xdf\x9a\x6e\x3c\x5e" "\x4f\x0f\x1c\x68\x7a\x5c\xd9\xc7\xea\xdb\xc5\xf5\x27\x7e\xf0\x47\xf9" "\xf5\xf1\xfe\xe2\xfd\xb7\xee\xff\xc8\xbe\x73\x4d\xc7\xa3\xf5\xfc\x78" "\xfd\x5f\xeb\xf7\x33\xde\xb2\x7d\xbc\x3c\xae\x13\xfd\x5d\xcb\xfa\xb5" "\xfb\x69\x3c\x3f\xe3\xfa\xaf\xfc\xe1\xfe\xa6\xe3\xdc\x69\xfd\xf3\x0f" "\xbd\x79\x43\xed\x7e\x5b\xd7\xbf\xb5\x65\xbb\x13\x4f\x6d\xce\xd7\x9f" "\xbb\xbf\xe6\x4f\x6c\xfa\x8b\x2f\x7c\xb9\x70\xbd\xb8\x3f\x7b\xff\xe6" "\x44\xd3\xe3\xd9\xfb\x60\x78\x1d\x87\xf5\x5f\x7a\x22\x9c\x8f\xe1\xfa" "\xff\x3d\x5f\xbf\xbf\xd6\x4f\x57\xd8\xff\x60\xf3\xfb\x4f\xdc\xfe\xeb" "\xab\xcf\x34\x3d\x9e\xe8\xbe\x9f\xd7\xd7\x3f\x7f\xe7\xe1\x7c\xae\x18" "\x59\xb9\xea\xb2\xcb\xaf\xb8\xf2\xec\x07\x6b\xc7\x2e\xcb\xde\x58\x51" "\xbf\xbf\x4e\xeb\x1f\xfe\xcb\xe3\x4d\xfb\xff\x8d\x6b\xeb\xc7\x23\x5e" "\x1f\x3b\xfa\xad\xeb\x2f\x24\xae\x7f\xf2\x73\x63\xc7\x8e\xcf\x9c\x9e" "\x9e\x6c\x38\xaa\xf9\x67\xe7\x7c\xbc\xbe\x3f\x71\x7f\xaf\x0a\xef\xad" "\xad\x5f\xef\x3b\x7e\xea\xc9\xa9\x93\xa3\x13\xa3\x13\x59\x36\x5a\xde" "\x8f\xd0\xbb\x68\xdf\x0c\xf3\xa7\xf5\x71\xf6\x42\x6f\xbf\xf9\xd1\xf0" "\x7c\x5e\xff\x67\xaf\xad\xda\xf8\x2f\x5f\x8a\x97\xff\xdb\x23\xf5\xcb" "\xcf\x3d\x50\xff\xbe\x75\x73\xd8\xee\x2b\xe1\xf2\xd5\xe1\xf9\xbb\xd4" "\xf5\x5f\x5a\x77\x6d\xfe\xfa\x1e\x78\xbd\xfe\x75\x53\x8f\xbd\x0b\xd6" "\x6e\xf8\xcf\x5d\x8b\xda\x30\x3c\xfe\xd6\x9f\x0b\xe2\xf9\x7e\xe2\x03" "\x4f\xe6\xc7\xa1\x76\x5d\xfe\x7d\x23\xbe\xae\x2f\x71\xff\x7f\x34\x59" "\xbf\x9f\x6f\x87\xe3\x3a\x1b\x3e\x99\x79\xfd\xb5\x73\xeb\x35\x6e\x1f" "\x3f\x1b\xe1\xdc\xc3\xf5\xd7\xfb\x25\x1f\xbf\xf0\x36\x17\x9f\xd7\xbf" "\x0e\xcf\xf7\x27\x7e\x5c\xbf\xff\xb8\x5f\xf1\xf1\xfe\x28\xfc\x1c\xf3" "\xdd\x35\xcd\xef\x77\xf1\xfc\xf8\xf6\x99\xc1\xd6\xfb\xcf\x3f\xc5\xe3" "\x6c\x78\x3f\xc9\xce\xd6\xaf\x8f\x5b\xc5\xe3\x7d\xee\xed\x6b\x0b\x77" "\x2f\x7e\x0e\x49\x76\xf6\xba\xfc\xeb\x3f\x4e\xf7\x73\xdd\x05\x3d\xcc" "\x85\xcc\x3c\x33\x33\x7e\x64\xfa\xd8\xe9\xa7\xc7\x4f\x4d\xcd\x9c\x1a" "\x9f\x79\xe6\xd9\x7d\x47\x8f\x9f\x3e\x76\x6a\x5f\xfe\x59\x9e\xfb\x3e" "\xd3\xe9\xf6\x73\xef\x4f\xab\xf2\xf7\xa7\xc9\xa9\x1d\xdb\xb3\xfc\xdd" "\xea\x78\x7d\xbc\xcb\xde\xeb\xfd\x3f\xf1\xe8\xc1\xc9\x9d\x13\x1b\x27" "\xa7\x0e\x1d\x38\x7d\xe8\xd4\xa3\x27\xa6\x4e\x1e\x3e\x38\x33\x73\x70" "\x6a\x72\x66\xe3\x81\x43\x87\xa6\x3e\xd7\xe9\xf6\xd3\x93\x7b\xb6\x6c" "\xdd\xbd\x6d\xe7\xd6\xb1\xc3\xd3\x93\x7b\x76\xed\xde\xbd\x6d\xf7\xd8" "\xf4\xb1\xe3\xb5\xdd\xa8\xef\x54\x07\x3b\x26\x3e\x3b\x76\xec\xe4\xbe" "\xfc\x26\x33\x7b\xb6\xef\xde\x72\xc7\x1d\xdb\x27\xc6\x8e\x1e\x9f\x9c" "\xda\xb3\x73\x62\x62\xec\x74\xa7\xdb\xe7\xdf\x9b\xc6\x6a\xb7\xfe\xfd" "\xb1\x93\x53\x47\x0e\x9c\x9a\x3e\x3a\x35\x36\x33\xfd\xec\xd4\x9e\x2d" "\xbb\x77\xec\xd8\xda\xf1\xd3\x00\x8f\x9e\x38\x34\x33\x3a\x7e\xf2\xf4" "\xb1\xf1\xd3\x33\x53\x27\xc7\xeb\x8f\x65\xf4\x54\x7e\x71\xed\x7b\x5f" "\xa7\xdb\x53\x4e\x33\xff\x5e\xff\x79\xb6\xd5\x40\xfd\x83\xf8\xb2\x4f" "\xdd\xba\x23\x7d\x3e\x6b\xcd\xcb\xcf\x2f\x78\x57\xf5\x4d\x5a\x3e\x40" "\xf4\xad\xf0\x59\x34\xff\xf4\xbe\x13\xbb\x16\xf3\x75\xcc\xfd\xc3\x61" "\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\x2f\x0f\x33\x91\xff\x01" "\x00\x00\xa0\x34\x62\xee\x5f\x11\x66\x22\xff\x03\x00\x00\x40\x69\xc4" "\xdc\x3f\x12\x66\x52\x91\xfc\x5f\xba\xfe\xff\x9a\x33\x8b\x5a\x5f\xff" "\x5f\xff\xbf\xf1\x78\xe9\xff\x57\xac\xff\xff\xb0\xfe\x7f\x99\xe9\xff" "\xb7\xa7\xff\xdf\x81\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x5d\xd5\x6b\xfd" "\xff\x98\xfb\x57\x66\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\x5f" "\xff\x5f\xff\x5f\xff\xbf\x78\x7d\xfd\xff\xfe\xa4\xff\xdf\x9e\xfe\x7f" "\x07\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x74\x55\xaf\xf5\xff\x63\xee\xbf" "\x22\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\x2b\xc3\x4c\xe4" "\x7f\x00\x00\x00\x28\x8d\x98\xfb\xaf\x0a\x33\x91\xff\x01\x00\x00\xa0" "\x34\x62\xee\x5f\x1d\x66\x52\x91\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff" "\xaf\xff\x5f\xbc\xbe\xfe\x7f\x7f\xd2\xff\x6f\x4f\xff\xbf\x03\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\x7f\xba\xaa\xd7\xfa\xff\x31\xf7\xbf\x2f\xcc\xa4" "\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\xf7\x87\x99\xc8\xff\x00\x00" "\x00\xd0\x7b\x86\x2e\xee\x66\x31\xf7\x5f\x1d\x66\x32\x2f\xff\x5f\xe4" "\x02\x00\x00\x00\xc0\x7b\x2e\xe6\xfe\x6b\xc2\x4c\x2a\xf2\xf7\xff\xfa" "\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xc5\xeb\xeb\xff\xf7\x27\xfd\xff" "\xf6\xf4\xff\x3b\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xab\x7a\xad\xff" "\x1f\x73\xff\x07\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xbf" "\x36\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x97\xc2\x4c\xe4\x7f" "\x00\x00\x00\x28\x8d\x98\xfb\xd7\x84\x99\x54\x24\xff\xeb\xff\xeb\xff" "\xeb\xff\xeb\xff\xeb\xff\x17\xaf\xaf\xff\xdf\x9f\xf4\xff\xdb\xd3\xff" "\xef\x40\xff\x5f\xff\x5f\xff\x5f\xff\x9f\xae\xea\xb5\xfe\x7f\xcc\xfd" "\xd7\x85\x99\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\x7f\x7d\x98\x89" "\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x2f\x87\x99\xc8\xff\x00\x00\x00" "\x50\x1a\x31\xf7\xaf\x0d\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7" "\xff\xd7\xff\x2f\x5e\x5f\xff\xbf\x3f\xe9\xff\xb7\xa7\xff\xdf\x81\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x5d\xd5\x6b\xfd\xff\x98\xfb\x6f\x08\x33" "\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\xc6\x30\x13\xf9\x1f\x00" "\x00\x00\x4a\x23\xe6\xfe\x0f\x86\x99\xc8\xff\x00\x00\x00\x50\x1a\x31" "\xf7\x8f\x86\x99\x54\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff" "\x17\xaf\xaf\xff\xdf\x9f\xf4\xff\xdb\xd3\xff\xef\x40\xff\x5f\xff\x5f" "\xff\x5f\xff\x9f\xae\xea\xb5\xfe\x7f\xcc\xfd\xeb\xc2\x4c\x2a\x92\xff" "\x01\x00\x00\xa0\x0a\x62\xee\x5f\x1f\x66\x22\xff\x03\x00\x00\x40\x69" "\xc4\xdc\x7f\x53\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x86\x30" "\x93\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xe2\xf5\xf5" "\xff\xfb\x93\xfe\x7f\x7b\xfa\xff\x1d\xe8\xff\xeb\xff\xeb\xff\xeb\xff" "\xd3\x55\xbd\xd6\xff\x8f\xb9\xff\x43\x61\x26\x15\xc9\xff\x00\x00\x00" "\x50\x05\x31\xf7\x6f\x0c\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xbf" "\x39\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\x7f\x53\x98\x49\x45\xf2" "\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xf1\xfa\xfa\xff\xfd\x49" "\xff\xbf\x3d\xfd\xff\x0e\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xaa\x5e" "\xeb\xff\xc7\xdc\x7f\x4b\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc" "\xfd\x9b\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x6f\x0d\x33\x91" "\xff\x01\x00\x00\xa0\x34\x62\xee\x1f\x0b\x33\xa9\x48\xfe\xd7\xff\xd7" "\xff\xd7\xff\xd7\xff\xd7\xff\x2f\x5e\x5f\xff\xbf\x3f\xe9\xff\xb7\xa7" "\xff\xdf\x81\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x5d\xd5\x6b\xfd\xff\x98" "\xfb\x6f\x0b\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\xf6\x30" "\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xf1\x30\x13\xf9\x1f\x00\x00" "\x00\x4a\x23\xe6\xfe\x89\x30\x93\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f" "\xfd\x7f\xfd\xff\xe2\xf5\xf5\xff\xfb\x93\xfe\x7f\x7b\xfa\xff\x1d\xe8" "\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x55\xbd\xd6\xff\x8f\xb9\x7f\x4b\x98" "\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\x5b\xc3\x4c\xe4\x7f\x00" "\x00\x00\x28\x8d\x98\xfb\xb7\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31" "\xf7\x6f\x0f\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff" "\x2f\x5e\x5f\xff\xbf\x3f\xe9\xff\xb7\xa7\xff\xdf\x81\xfe\xbf\xfe\xbf" "\xfe\xbf\xfe\x3f\x5d\xd5\x6b\xfd\xff\x98\xfb\xef\x08\x33\xa9\x48\xfe" "\x07\x00\x00\x80\x2a\x88\xb9\x7f\x47\x98\x89\xfc\x0f\x00\x00\x00\xa5" "\x11\x73\xff\xce\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x5d\x61" "\x26\x15\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xc5\xeb\xeb" "\xff\xf7\x27\xfd\xff\xf6\xf4\xff\x3b\xd0\xff\xd7\xff\xd7\xff\xd7\xff" "\xa7\xab\x7a\xad\xff\x1f\x73\xff\xee\x30\x93\x8a\xe4\x7f\x00\x00\x00" "\xa8\x82\x98\xfb\x3f\x1c\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xff" "\x2b\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xbf\x1a\x66\x52\x91" "\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x5f\xbc\xbe\xfe\x7f\x7f" "\xd2\xff\x6f\x4f\xff\xbf\x03\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xba\xaa" "\xd7\xfa\xff\x31\xf7\xef\x09\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88" "\xb9\xff\xd7\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xef\x0c\x33" "\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xdf\x1b\x66\x52\x91\xfc\xaf\xff" "\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x5f\xbc\xbe\xfe\x7f\x7f\xd2\xff\x6f" "\x4f\xff\xbf\x03\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xba\xaa\xd7\xfa\xff" "\x31\xf7\x7f\x24\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\xbb" "\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xef\x0e\x33\x91\xff\x01" "\x00\x00\xa0\x34\x62\xee\xbf\x27\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f" "\xff\x5f\xff\x5f\xff\xbf\x78\x7d\xfd\xff\xfe\xa4\xff\xdf\x9e\xfe\x7f" "\x07\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x74\x55\xaf\xf5\xff\x63\xee\xff" "\x68\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\xf7\x86\x99\xc8" "\xff\x00\x00\x00\x50\x1a\x31\xf7\x7f\x2c\xcc\x44\xfe\x07\x00\x00\x80" "\xd2\x88\xb9\xff\xbe\x30\x93\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd" "\x7f\xfd\xff\xe2\xf5\xf5\xff\xfb\x93\xfe\x7f\x7b\xfa\xff\x1d\xe8\xff" "\xeb\xff\xeb\xff\xeb\xff\xd3\x55\xbd\xd6\xff\x8f\xb9\xff\xd7\xc3\x4c" "\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xbf\x3f\xcc\x44\xfe\x07\x00" "\x00\x80\xd2\x88\xb9\xff\x81\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6" "\xfe\x8f\x87\x99\x54\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff" "\x17\xaf\xaf\xff\xdf\x9f\xf4\xff\xdb\xd3\xff\xef\x40\xff\x5f\xff\xbf" "\x32\xfd\xff\xd9\x15\xad\xb7\xd7\xff\xe7\xdd\xd0\x6b\xfd\xff\x98\xfb" "\x3f\x11\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\x27\xc3\x4c" "\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x3f\x15\x66\x22\xff\x03\x00\x00" "\x40\x69\xc4\xdc\xff\x1b\x61\x26\x15\xc9\xff\xfa\xff\xfa\xff\xfa\xff" "\xfa\xff\xfa\xff\xc5\xeb\xeb\xff\xf7\x27\xfd\xff\xf6\xf4\xff\x3b\xd0" "\xff\xd7\xff\xaf\x4c\xff\x7f\x3e\xfd\x7f\xde\x0d\xbd\xd6\xff\x8f\xb9" "\xff\xc1\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\x1f\x0a\x33" "\x91\xff\x01\x00\x00\xa0\x34\x62\xee\x7f\x38\xcc\x44\xfe\x07\x00\x00" "\x80\xd2\x88\xb9\xff\x91\x30\x93\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f" "\xfd\x7f\xfd\xff\xe2\xf5\xf5\xff\xfb\x93\xfe\x7f\x7b\xfa\xff\x1d\xe8" "\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x55\xbd\xd6\xff\x8f\xb9\xff\xd1\x30" "\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\x1f\x0b\x33\x91\xff\x01" "\x00\x00\xa0\x34\x62\xee\xff\xcd\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23" "\xe6\xfe\x4f\x87\x99\x54\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb" "\xff\x17\xaf\xaf\xff\xdf\x9f\xf4\xff\xdb\xd3\xff\xef\x40\xff\x5f\xff" "\x5f\xff\x5f\xff\x9f\xae\xea\xb5\xfe\x7f\xcc\xfd\x8f\x87\x99\x54\x24" "\xff\x03\x00\x00\x40\x15\xc4\xdc\xff\x5b\x61\x26\xf2\x3f\x00\x00\x00" "\x94\x46\xcc\xfd\xbf\x1d\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xff" "\x3b\x61\x26\x15\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xc5" "\xeb\xeb\xff\xf7\xa7\xa5\xeb\xff\xc7\x77\x1e\xfd\x7f\xfd\x7f\xfd\xff" "\x48\xff\x5f\xff\x5f\xff\x9f\x56\xbd\xd6\xff\x8f\xb9\xff\x77\xc3\x4c" "\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\x7f\x22\xcc\x44\xfe\x07\x00" "\x00\x80\xbe\x50\xf4\xdf\x64\xb7\x8a\xb9\x7f\x5f\x98\x89\xfc\x0f\x00" "\x00\x00\xa5\x11\x73\xff\xfe\x30\x93\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xfd" "\xff\x1e\xed\xff\xff\xe9\xfa\x7f\xfe\xe1\xf7\x3f\xb9\x7f\x8b\xfe\xbf" "\xfe\xbf\xfe\xff\x05\x59\xd2\xff\xff\x7f\xed\xc5\xef\xff\xff\xaf\xff" "\xaf\xff\x9f\xe8\xff\xeb\xff\xeb\xff\xd3\xaa\xd7\xfa\xff\x31\xf7\x1f" "\x08\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\xf7\xc2\x4c\xe4" "\x7f\x00\x00\x00\x28\x8d\x98\xfb\x0f\x86\x99\xc8\xff\x00\x00\x00\x50" "\x1a\x31\xf7\x4f\x86\x99\x54\x24\xff\xeb\xff\xeb\xff\xeb\xff\xf7\x68" "\xff\xdf\xff\xff\x3f\xd1\xff\xd7\xff\xbf\x10\x4b\xda\xff\x7f\x6c\xae" "\x27\xae\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xcf\x7c\xbd\xd6" "\xff\x8f\xb9\x7f\x2a\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe4\xfe" "\xc1\x43\xf5\x39\x77\x85\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xe1\x30" "\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x27\xc3\x4c\x2a\x92\xff\xf5" "\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x8b\xd7\xd7\xff\xef\x4f\xfa\xff" "\xed\xe9\xff\x77\xa0\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x57\xf5\x5a\xff" "\x3f\xe6\xfe\xe9\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\x3f" "\x13\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xff\xd9\x30\x13\xf9\x1f" "\x00\x00\x00\x4a\x23\xe6\xfe\x23\x61\x26\x15\xc9\xff\xfa\xff\xfa\xff" "\xfa\xff\xfa\xff\xfa\xff\xc5\xeb\xeb\xff\xf7\x27\xfd\xff\xf6\xf4\xff" "\x3b\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xab\x7a\xad\xff\x1f\x73\xff" "\xd1\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\x8f\x85\x99\xc8" "\xff\x00\x00\x00\x50\x1a\x31\xf7\x1f\x0f\x33\x91\xff\x01\x00\x00\xa0" "\x34\x62\xee\x3f\x11\x66\x52\x91\xfc\xaf\xff\xaf\xff\x5f\xda\xfe\xff" "\x9d\xfa\xff\x0b\xad\xaf\xff\xaf\xff\x5f\x66\xfa\xff\xed\xe9\xff\x77" "\xa0\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x57\xf5\x5a\xff\x3f\xe6\xfe\xa7" "\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\x3f\x19\x66\x22\xff" "\x03\x00\x00\x40\x69\xc4\xdc\x3f\x13\x66\x22\xff\x03\x00\x00\xfc\x3f" "\x7b\xf7\xb1\xf3\x5b\x59\xc5\x71\xfc\x25\x61\x00\xe1\x02\x1c\x38\x71" "\xee\x25\x30\x71\xac\x17\xe0\xc0\x89\x13\x13\xe3\xc0\x89\xbd\x83\xbd" "\x62\xef\xbd\x57\x2c\xa0\x88\xbd\x37\xb0\xa1\xd8\xc5\xde\xbb\xd8\x4b" "\xa2\x31\x59\x6b\x11\xce\xd9\xef\xde\x07\xdc\x9c\x3c\xfb\x59\x9f\xcf" "\x64\x25\x47\x4f\x9e\xff\x80\x90\xfc\x12\xbe\xd9\x30\x8d\xdc\xfd\x0f" "\x8c\x5b\x9a\xec\x7f\xfd\xbf\xfe\x7f\xda\xfe\xdf\xf7\xff\x4f\x7d\x5f" "\xff\xaf\xff\x9f\xd9\xf9\xed\xff\x2f\xff\xdf\xbf\xf9\xf4\xff\xfa\x7f" "\xfd\x7f\xd0\xff\xeb\xff\xf5\xff\x9c\x69\xb4\xfe\x3f\x77\xff\x83\xe2" "\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xe0\xb8\xc5\xfe\x07\x00" "\x00\x80\x69\xe4\xee\x7f\x48\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7" "\x3f\x34\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\xfc" "\xbe\xfe\xff\x98\x7c\xff\x7f\x5d\xa7\xfe\xff\x01\x37\x5e\x72\xff\x9b" "\xaf\xb9\xf3\xb5\xb7\xe5\x7d\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\x5f\xa3" "\xf5\xff\xb9\xfb\x1f\x16\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe" "\x87\xc7\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x23\xe2\x16\xfb\x1f" "\x00\x00\x00\xa6\x91\xbb\xff\x91\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb" "\xff\xf5\xff\xfa\xff\xe5\xf7\xf5\xff\xc7\xa4\xff\x5f\xd7\xa9\xff\xbf" "\x3d\xef\xeb\xff\xf5\xff\xfa\x7f\xfd\x3f\xfb\x1a\xad\xff\xcf\xdd\xff" "\xa8\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x3a\x6e\xb1\xff" "\x01\x00\x00\x60\x1a\xb9\xfb\x1f\x13\xb7\xd8\xff\x00\x00\x00\x30\x8d" "\xdc\xfd\x97\xc5\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff" "\x97\xdf\xd7\xff\x1f\x93\xfe\x7f\x9d\xfe\x7f\x83\xfe\x5f\xff\xaf\xff" "\xd7\xff\xb3\xab\xd1\xfa\xff\xdc\xfd\x97\xc7\x2d\x4d\xf6\x3f\x00\x00" "\x00\x74\x90\xbb\xff\xb1\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff" "\xb8\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x7c\xdc\xd2\x64\xff" "\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf9\x7d\xfd\xff\x31\xe9\xff" "\xd7\xe9\xff\x37\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\xbb\x1a\xad\xff\xcf" "\xdd\xff\x84\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x31\x6e" "\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x9f\x14\xb7\xd8\xff\x00\x00\x00" "\x30\x8d\xdc\xfd\x4f\x8e\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\x2f\xbf\xaf\xff\x3f\x26\xfd\xff\xba\x61\xfa\xff\x0b\x2e\x5c" "\xfc\x63\xfd\xbf\xfe\xff\xc8\xbf\x5f\xff\xaf\xff\xe7\x6c\xa3\xf5\xff" "\xb9\xfb\x9f\x12\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xa7\xc6" "\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\xd3\xe2\x16\xfb\x1f\x00\x00" "\x00\xa6\x91\xbb\xff\xe9\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5" "\xff\xfa\xff\xe5\xf7\xf5\xff\xc7\xa4\xff\x5f\x37\x4c\xff\x7f\x0a\xfd" "\xbf\xfe\xff\xc8\xbf\x5f\xff\xaf\xff\xe7\x6c\xa3\xf5\xff\xb9\xfb\x9f" "\x11\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x2b\xe2\x16\xfb\x1f" "\x00\x00\x00\xa6\x91\xbb\xff\x99\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8" "\xdd\xff\xac\xb8\xa5\xc9\xfe\x5f\xee\xff\x6f\xf9\xdf\xf5\xff\xe7\x46" "\xff\x7f\xeb\xdf\xaf\xff\x5f\xfe\xe7\x43\xff\x7f\x5e\xfb\xff\xbb\xe9" "\xff\x7b\xd2\xff\xaf\xd3\xff\x6f\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x76" "\x35\x5a\xff\x9f\xbb\xff\xd9\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4" "\xee\x7f\x4e\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x3f\x37\x6e\xb1" "\xff\x01\x00\x00\x60\x1a\xb9\xfb\x9f\x17\xb7\x34\xd9\xff\xbe\xff\xaf" "\xff\xd7\xff\xeb\xff\x27\xed\xff\x27\xfb\xfe\xff\x85\xfa\xff\x73\xa4" "\xff\x5f\xa7\xff\xdf\xa0\xff\xd7\xff\xeb\xff\xf5\xff\xec\x6a\xb4\xfe" "\x3f\x77\xff\xf3\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x82" "\xb8\xc5\xfe\x07\x00\x00\x80\x63\x38\xfd\xbf\x1d\x28\xb9\xfb\x5f\x18" "\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x2f\x8a\x5b\x9a\xec\x7f\xfd" "\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x2f\xbf\x3f\x56\xff\xef\xfb\xff\xe7" "\x4a\xff\xbf\x4e\xff\xbf\x41\xff\xaf\xff\xd7\xff\xeb\xff\xd9\xd5\x68" "\xfd\x7f\xee\xfe\x17\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff" "\x25\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xd2\xb8\xc5\xfe\x07" "\x00\x00\x80\x69\xe4\xee\x7f\x59\xdc\xd2\x64\xff\xdf\xe1\xfd\xff\xc5" "\xa7\xbf\xad\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xde\xf4\xff" "\xeb\xf4\xff\x1b\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x5d\x8d\xd6\xff\xe7" "\xee\x7f\x79\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x5f\x11\xb7" "\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\xaf\x8c\x5b\xec\x7f\x00\x00\x00" "\x98\x46\xee\xfe\x57\xc5\x2d\x4d\xf6\xbf\xef\xff\xeb\xff\xf5\xff\xfa" "\x7f\xfd\xff\xf2\xfb\xfa\xff\x63\xd2\xff\xaf\xd3\xff\x6f\xd0\xff\xeb" "\xff\xf5\xff\xfa\x7f\x76\x35\x5a\xff\x9f\xbb\xff\xd5\x71\x4b\x93\xfd" "\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x4d\xdc\x62\xff\x03\x00\x00\xc0\x34" "\x72\xf7\xbf\x36\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x5f\x17\xb7" "\x34\xd9\xff\xfa\xff\x3b\xb6\xff\xcf\x3f\xd7\xff\xeb\xff\x4f\xf4\xff" "\xfa\x7f\xfd\xff\x79\xa1\xff\x5f\x77\x4a\xff\x7f\xfd\x7d\x2f\xbb\xc7" "\xad\xff\x44\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xec\x60\xb4\xfe\x3f" "\x77\xff\xeb\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x86\xb8" "\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x63\xdc\x62\xff\x03\x00\x00" "\xc0\x34\x72\xf7\xbf\x29\x6e\x69\xb2\xff\xf5\xff\xbe\xff\xaf\xff\xd7" "\xff\xeb\xff\x97\xdf\xd7\xff\x1f\x93\xfe\x7f\x9d\xef\xff\x6f\xd0\xff" "\xeb\xff\xf5\xff\xfa\x7f\x76\x35\x5a\xff\x9f\xbb\xff\xcd\x71\x4b\x93" "\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x4b\xdc\x62\xff\x03\x00\x00\xc0" "\x34\x72\xf7\xbf\x35\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\xdf\x16" "\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x5f\x7e\x5f\xff" "\x7f\x4c\xfa\xff\x75\xfa\xff\x0d\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xae" "\x46\xeb\xff\x73\xf7\x5f\x19\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee" "\xfe\xb7\xc7\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x3b\xe2\x16\xfb" "\x1f\x00\x00\x00\xa6\x91\xbb\xff\x9d\x71\x4b\x93\xfd\xaf\xff\xd7\xff" "\xeb\xff\xf5\xff\xfa\xff\xe5\xf7\xf5\xff\xc7\xa4\xff\x5f\xa7\xff\x3f" "\x39\x39\xb9\x6a\xe5\x07\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\xbb\x1a\xad" "\xff\xcf\xdd\xff\xae\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x5f" "\x15\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x57\xc7\x2d\xf6\x3f\x00" "\x00\x00\x4c\x23\x77\xff\xbb\xe3\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff" "\xeb\xff\xf5\xff\xcb\xef\xeb\xff\x8f\x49\xff\xbf\x4e\xff\xbf\x41\xff" "\xaf\xff\xd7\xff\xeb\xff\xd9\xd5\x68\xfd\x7f\xee\xfe\xf7\xc4\x2d\x4d" "\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x9a\xb8\xc5\xfe\x07\x00\x00\x80" "\x69\xe4\xee\x7f\x6f\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x5f\x1b" "\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x5f\x7e\x5f\xff" "\x7f\x4c\xfa\xff\x75\xfa\xff\x0d\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xae" "\x46\xeb\xff\x73\xf7\xbf\x2f\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc" "\xfd\xef\x8f\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x0f\xc4\x2d\xf6" "\x3f\x00\x00\x00\x4c\x23\x77\xff\x07\xe3\x96\x26\xfb\x5f\xff\xaf\xff" "\xd7\xff\xeb\xff\xf5\xff\xcb\xef\xeb\xff\x8f\x49\xff\xbf\x4e\xff\xbf" "\x41\xff\xaf\xff\xd7\xff\xeb\xff\xd9\xd5\x68\xfd\x7f\xee\xfe\x0f\xc5" "\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xc3\x71\x8b\xfd\x0f\x00" "\x00\x00\xd3\xc8\xdd\xff\x91\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee" "\xff\x68\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf9" "\xfd\xf3\xd0\xff\x5f\x74\xa2\xff\xdf\x9d\xfe\x7f\x9d\xfe\x7f\x83\xfe" "\x5f\xff\x3f\x7c\xff\x7f\xf1\xa9\x7f\x5f\xff\xcf\x88\x46\xeb\xff\x73" "\xf7\x7f\x2c\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x1f\x8f\x5b" "\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x4f\xc4\x2d\xf6\x3f\x00\x00\x00" "\x4c\x23\x77\xff\x27\xe3\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff" "\xf5\xff\xcb\xef\xfb\xfe\xff\x31\xe9\xff\xd7\xe9\xff\x37\xe8\xff\xf5" "\xff\xc3\xf7\xff\xa7\xd3\xff\x33\xa2\xd1\xfa\xff\xdc\xfd\x9f\x8a\x5b" "\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xa7\xe3\x16\xfb\x1f\x00\x00" "\x00\xa6\x91\xbb\xff\x33\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff" "\xd9\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf2\xfb" "\xfa\xff\x63\xd2\xff\xaf\xd3\xff\x6f\xd0\xff\xeb\xff\xf5\xff\xfa\x7f" "\x76\x35\x5a\xff\x9f\xbb\xff\x73\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d" "\xe4\xee\xbf\x2e\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\xaf\x8f\x5b" "\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\xcf\xc7\x2d\x4d\xf6\xbf\xfe\x5f" "\xff\xaf\xff\x3f\x66\xff\x7f\x91\xfe\x5f\xff\xaf\xff\x5f\x34\x4a\xff" "\x7f\xe9\xa5\x77\xbf\x41\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff" "\xee\x46\xeb\xff\x73\xf7\x7f\x21\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83" "\xdc\xfd\x5f\x8c\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x2f\xc5\x2d" "\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x97\xe3\x96\x26\xfb\x5f\xff\xaf" "\xff\xd7\xff\x1f\xb3\xff\x3f\xd1\xff\xeb\xff\xf5\xff\x8b\x46\xe9\xff" "\x7d\xff\xff\xf6\xfd\x7e\xfd\xbf\xfe\xff\xc8\xbf\xff\x36\xf5\xff\x77" "\x39\xfb\xef\xeb\xff\x99\xd1\x68\xfd\x7f\xee\xfe\x1b\xe2\x96\x26\xfb" "\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x95\xb8\xc5\xfe\x07\x00\x00\x80\x69" "\xe4\xee\xff\x6a\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xdf\x18\xb7" "\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x5f\x7e\x5f\xff\x7f" "\x4c\xfa\xff\x75\xfa\xff\x0d\xfa\x7f\xfd\xbf\xef\xff\xeb\xff\xd9\xd5" "\x68\xfd\x7f\xee\xfe\xaf\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb" "\xff\xeb\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\x8d\xb8\xc5\xfe" "\x07\x00\x00\x80\x69\xe4\xee\xff\x66\xdc\xd2\x64\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xfe\x7f\xf9\x7d\xfd\xff\x31\xe9\xff\xd7\xe9\xff\x37" "\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\xbb\x1a\xad\xff\xcf\xdd\xff\xad\xb8" "\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x7f\x3b\x6e\xb1\xff\x01\x00" "\x00\x60\x1a\xb9\xfb\xbf\x13\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd" "\xdf\x8d\x5b\x9a\xec\x7f\xfd\xbf\xfe\x7f\xfe\xfe\xff\xde\xfa\xff\x33" "\xde\xd7\xff\xeb\xff\x67\xa6\xff\x5f\xa7\xff\xdf\xa0\xff\xd7\xff\xeb" "\xff\xf5\xff\xec\x6a\xb4\xfe\x3f\x77\xff\x4d\x71\x4b\x93\xfd\x0f\x00" "\x00\x00\x1d\xe4\xee\xff\x5e\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7" "\x7f\x3f\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x7f\x10\xb7\x34\xd9" "\xff\xfa\x7f\xfd\xff\xfc\xfd\xbf\xef\xff\xeb\xff\xf5\xff\x9d\xe8\xff" "\xd7\xe9\xff\x37\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\xbb\x1a\xad\xff\xcf" "\xdd\xff\xc3\xb8\xa5\xc9\xfe\x07\x00\x00\x80\xa3\xba\xe7\x5d\xef\x77" "\xd3\xb9\xfe\x7f\x73\xf7\xff\x28\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9" "\xfb\x7f\x1c\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x3f\x89\x5b\x9a" "\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x2f\xbf\xaf\xff\x3f\x26" "\xfd\xff\x3a\xfd\xff\x06\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\x57\xa3\xf5" "\xff\xb9\xfb\x7f\x1a\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x9f" "\xc5\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\xcf\xe3\x16\xfb\x1f\x00" "\x00\x00\xa6\x91\xbb\xff\x17\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff" "\xf5\xff\xfa\xff\xe5\xf7\xf5\xff\xc7\xa4\xff\x5f\xf7\x7f\xf6\xff\xff" "\xb9\x40\xff\xaf\xff\x5f\xa1\xff\xd7\xff\xeb\xff\x39\xd3\x68\xfd\x7f" "\xee\xfe\x5f\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x57\x71" "\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xeb\xb8\xc5\xfe\x07\x00\x00" "\x80\x69\xe4\xee\xff\x4d\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\xff\x89" "\xfb\xff\x2b\x2e\x5a\x7c\x5f\xff\xaf\xff\x9f\x99\xfe\x7f\x9d\xef\xff" "\x6f\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x76\x35\x5a\xff\x9f\xbb\xff\xb7" "\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x5d\xdc\x62\xff\x03" "\x00\x00\xc0\x34\x72\xf7\xff\x3e\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9" "\xfb\xff\x10\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x7f\xe2\xfe\xff\x94" "\xf7\xe7\xe9\xff\xef\x74\xc9\x65\xd7\xdd\xeb\x3e\x57\x5f\xa9\xff\xe7" "\x16\xfa\xff\x75\xfa\xff\x0d\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xae\x46" "\xeb\xff\x73\xf7\xff\x31\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd" "\x37\xc7\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x9f\xe2\x16\xfb\x1f" "\x00\x00\x00\xa6\x91\xbb\xff\xcf\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb" "\xff\xf5\xff\xc7\xed\xff\x7d\xff\x5f\xff\x7f\x36\xfd\xff\x3a\xfd\xff" "\x06\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\x57\xa3\xf5\xff\xb9\xfb\xff\x12" "\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xbf\xc6\x2d\xf6\x3f\x00" "\x00\x00\x4c\x23\x77\xff\xdf\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb" "\xff\xef\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xe5" "\xf7\xf5\xff\xc7\xa4\xff\x5f\xa7\xff\xdf\xa0\xff\xd7\xff\xeb\xff\xf5" "\xff\xec\x6a\xb4\xfe\x3f\x77\xff\x3f\xe2\x96\x26\xfb\x1f\x00\x00\x00" "\x3a\xc8\xdd\xff\xcf\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x57" "\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xff\x3b\x6e\x69\xb2\xff\xf5" "\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\xfc\xbe\xfe\xff\x98\xf4\xff\xeb" "\xf4\xff\x1b\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x5d\x8d\xd6\xff\xe7\xee" "\xff\x6f\x00\x00\x00\xff\xff\x98\x18\x85\x83", 24338); syz_mount_image(0x20000140, 0x20000000, 0x400, 0x20000180, 0x21, 0x5f12, 0x2000bd80); break; case 1: memcpy((void*)0x200000c0, "msdos\000", 6); memcpy((void*)0x20000000, ".\000", 2); *(uint8_t*)0x20000080 = 0; syz_mount_image(0x200000c0, 0x20000000, 0x18084a1, 0x20000080, 1, 0, 0x20000000); break; case 2: memcpy((void*)0x20000040, "./file0\000", 8); res = syscall(__NR_open, 0x20000040ul, 0ul, 0ul); if (res != -1) r[0] = res; break; case 3: syscall(__NR_getdents, r[0], 0x20000100ul, 0x4cul); break; } } int main(void) { syscall(__NR_mmap, 0x1ffff000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 7ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x21000000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); use_temporary_dir(); loop(); return 0; }