// https://syzkaller.appspot.com/bug?id=4d8e140fa50a1c893ae3c5f468b341067e6c2de0 // 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) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 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, umount_flags) == 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, umount_flags)) 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, umount_flags)) 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) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 6; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0) + (call == 5 ? 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 (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[4] = {0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x20000040, "jfs\000", 4); memcpy((void*)0x20000240, "./file7\000", 8); *(uint8_t*)0x20000180 = 0; sprintf((char*)0x20000181, "%023llo", (long long)0); *(uint16_t*)0x20000198 = -1; *(uint16_t*)0x2000019a = 0; sprintf((char*)0x2000019c, "%020llu", (long long)-1); sprintf((char*)0x200001b0, "%023llo", (long long)0); sprintf((char*)0x200001c7, "0x%016llx", (long long)0); memcpy( (void*)0x20007240, "\x78\x9c\xec\xdd\x5b\x6f\x1c\x67\xfd\x07\xf0\xdf\x1e\xbc\x3e\xf4\xdf" "\xd4\xea\x45\x95\x7f\xc4\x21\x4d\x39\xb4\x94\x26\x8d\x93\x36\x2d\xa7" "\xa6\x42\xe2\x02\x04\x54\xaa\x72\x9f\xc8\xb8\x55\x44\x0a\x28\x09\x15" "\xad\x2c\xe2\x2a\x12\xf7\x48\x5c\xa3\xf2\x22\xb8\x06\xa1\xde\x20\x15" "\x89\x97\xc0\x1b\x88\x14\xf7\x86\x0a\x44\x07\x8d\xfd\x3c\xc9\x78\xbc" "\xce\xda\x24\xde\xb1\xfd\x7c\x3e\x92\x33\xfb\xdb\x67\xc6\xfb\x4c\xbe" "\x1e\xcf\xae\xe7\xf0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x10\xdf\xff\xde\x9b\x67\x7b\x11\x71\xf9\xdd\xf4\xc4\x62" "\xc4\xff\xc5\x20\xa2\x1f\x31\x5f\xd7\x27\xe3\xaf\x11\x71\x31\xcf\x3f" "\x8c\x88\xe3\xb1\xd1\x1c\x4f\x45\xc4\xb1\xd9\x88\x7a\xf9\x8d\x7f\x9e" "\x88\x38\x1f\x11\x1f\x1f\x8b\xb8\xbb\xbe\xba\x5c\x3f\xbd\xb4\xcb\x7e" "\xbc\xf4\xc6\x9d\xbf\xfd\xf0\xcd\x1f\xad\xfd\xf6\x8b\x7f\xf9\xfb\xbf" "\x3f\xfa\xfd\x9f\xda\xed\x6f\x7c\xf4\xdd\x1f\xfc\xf1\x56\xc4\xe2\xf1" "\xdf\xfc\xee\x3f\xb7\x1e\xcd\xba\x03\x00\x00\x40\x29\xaa\xaa\xaa\x7a" "\x1b\x1f\xf3\x23\x4e\xa4\xcf\xf7\xfd\xae\x3b\x05\x00\x4c\x45\xde\xff" "\x57\x49\x7e\x5e\xad\x7e\x98\x7a\x18\x5b\x75\xdd\x1f\xb5\x5a\xad\x56" "\x6f\x57\x8d\x77\xab\x59\x44\xc4\x5a\x73\x99\xfa\x3d\x83\xc3\xf1\x00" "\x70\xc8\xac\xc5\xa7\x5d\x77\x81\x0e\xc9\xbf\x68\xc3\x88\x78\xac\xeb" "\x4e\x00\x07\x5a\xaf\xeb\x0e\xb0\x2f\xee\xae\xaf\x2e\xf7\x52\xbe\xbd" "\xe6\xfe\xe0\xe4\x66\x7b\x3e\x17\x64\x4b\xfe\x6b\xbd\x7b\xd7\x77\xec" "\x34\x9d\xa4\x7d\x8e\xc9\xb4\x7e\xbe\x6e\xc7\x20\x9e\xdc\xa1\x3f\xf3" "\x53\xea\xc3\x41\x92\xf3\xef\xb7\xf3\xbf\xbc\xd9\x3e\x4a\xf3\xed\x77" "\xfe\xd3\xb2\x53\xfe\xa3\xcd\x4b\x9f\x8a\x93\xf3\x1f\xb4\xf3\x6f\x39" "\x3a\xf9\xf7\xc7\xe6\x5f\xaa\x9c\xff\x70\x4f\xf9\x0f\xe4\x0f\x00\x00" "\x00\x00\x00\x07\x58\xfe\xfb\xff\x62\xc7\xc7\x7f\x67\x1f\x7e\x55\x76" "\xe5\x41\xc7\x7f\x4f\x4e\xa9\x0f\x00\x00\x00\x00\x00\x00\x00\xf0\xa8" "\xed\x62\xfc\xbf\xfa\xc1\x8e\xe3\xff\xdd\x63\xfc\x3f\x00\x00\x00\x38" "\xb0\xea\xcf\xea\xb5\x0f\x8f\xdd\x7f\x6e\xa7\x7b\xb1\xd5\xcf\x5f\xea" "\x45\x3c\xde\x9a\x1f\x28\x4c\xba\x58\x66\xa1\xeb\x7e\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x40\x49\x86\x9b\xe7\xf0\x5e\xea\x45\xcc\x44" "\xc4\xe3\x0b\x0b\x55\x55\xd5\x5f\x4d\xed\x7a\xaf\x1e\x76\xf9\xc3\xae" "\xf4\xf5\x87\x92\x75\xfd\x4b\x1e\x00\x00\x36\x7d\x7c\xac\x75\x2d\x7f" "\x2f\x62\x2e\x22\x2e\xa5\x7b\xfd\xcd\x2c\x2c\x2c\x54\xd5\xdc\xfc\x42" "\xb5\x50\xcd\xcf\xe6\xf7\xb3\xa3\xd9\xb9\x6a\xbe\xf1\xb9\x36\x4f\xeb" "\xe7\x66\x47\xbb\x78\x43\x3c\x1c\x55\xf5\x37\x9b\x6b\x2c\xd7\x34\xe9" "\xf3\xf2\xa4\xf6\xf6\xf7\xab\x5f\x6b\x54\x0d\x76\xd1\xb1\xe9\xe8\x30" "\x70\x00\x88\x88\xcd\xbd\xd1\x5d\x7b\xa4\x23\xa6\xaa\x9e\x88\xae\xdf" "\xe5\x70\x38\xd8\xfe\x8f\x1e\xdb\x3f\xbb\xd1\xf5\xcf\x29\x00\x00\x00" "\xb0\xff\xaa\xaa\xaa\x7a\xe9\x76\xde\x27\xd2\x31\xff\x7e\xd7\x9d\x02" "\x00\xa6\x22\xef\xff\xdb\xc7\x05\xd4\x6a\xb5\x5a\xad\x56\x1f\xbd\xba" "\xa9\x1a\xef\x56\xb3\x88\x88\xb5\xe6\x32\xf5\x7b\x06\xc3\xf1\x03\xc0" "\x21\xb3\x16\x9f\x76\xdd\x05\x3a\x24\xff\xa2\x0d\x23\xe2\x78\xd7\x9d" "\x00\x0e\xb4\x5e\xd7\x1d\x60\x5f\xdc\x5d\x5f\x5d\xee\xa5\x7c\x7b\xcd" "\xfd\x41\x1a\xdf\x3d\x9f\x0b\xb2\x25\xff\xb5\xde\xc6\x72\x79\xf9\x71" "\xd3\x49\xda\xe7\x98\x4c\xeb\xe7\xeb\x76\x0c\xe2\xc9\x1d\xfa\xf3\xd4" "\x94\xfa\x70\x90\xe4\xfc\xfb\xed\xfc\x2f\x6f\xb6\x8f\xd2\x7c\xfb\x9d" "\xff\xb4\xec\x94\x7f\xbd\x9e\x8b\x1d\xf4\xa7\x6b\x39\xff\x41\x3b\xff" "\x96\xa3\x93\x7f\x7f\x6c\xfe\xa5\xca\xf9\x0f\xf7\x94\xff\x40\xfe\x00" "\x00\x00\x00\x00\x70\x80\xe5\xbf\xff\x2f\x3a\xfe\x9b\x57\x19\x00\x00" "\x00\x00\x00\x00\x00\x0e\x9d\xbb\xeb\xab\xcb\xf9\xba\xd7\x7c\xfc\xff" "\x73\x63\xe6\x73\xfd\xe7\xd1\x94\xf3\xef\xc9\xbf\x48\x39\xff\x7e\x3b" "\xff\xd6\x09\x39\x83\xc6\xe3\x3b\xaf\xdf\xcf\xff\x93\xf5\xd5\xe5\x0f" "\xff\xff\xc2\x17\xf2\xf4\xc0\xe7\x3f\x33\x18\xd5\xaf\x3d\xd3\xeb\x0f" "\x86\x9b\xe7\xfc\xfc\x33\xdf\xda\x74\x25\x5e\xdc\x36\x7f\x3d\x4f\x35" "\xf3\x56\x5c\x8d\x6b\xb1\x12\x67\xb7\xb5\xcf\x6c\x69\x5f\x9a\xd0\x7e" "\x6e\x5b\xfb\xa8\x6e\x9f\xcf\xed\xa7\x63\x39\x7e\x1e\xd7\xe2\x27\xf7" "\xda\x67\x27\x9c\x18\x35\x37\xa1\xbd\x9a\xd0\x9e\xf3\x1f\xd8\xfe\x8b" "\x94\xf3\x1f\x36\xbe\xea\xfc\x17\x52\x7b\xaf\x35\xad\xdd\xf9\xa0\xbf" "\x6d\xbb\x6f\x4e\xc7\xbd\xce\xc5\x1f\x7f\x76\x61\xfb\xd6\x35\x7d\xb7" "\x63\x70\x6f\xdd\x9a\xea\xf5\x3b\xd5\x41\x7f\x36\xfe\x4f\x1e\x1b\xc5" "\x2f\x6f\xac\x5c\x3f\xfd\xab\x2b\x37\x6f\x5e\x3f\x1b\x69\xb2\xe5\xd9" "\xa5\x48\x93\x47\x2c\xe7\x3f\x93\xbe\x72\xfe\xcf\x3e\xb3\xd9\x9e\x7f" "\xef\x37\xb7\xd7\x3b\x1f\x8c\xf6\x9c\xff\x41\x71\x3b\x86\x3b\xe6\xff" "\x4c\xe3\x71\xbd\xbe\xcf\x4d\xb9\x6f\x5d\xc8\xf9\x8f\xd2\x57\xce\x3f" "\xef\x81\xc6\x6f\xff\x87\x39\xff\x9d\xb7\xff\xe7\x3b\xe8\x0f\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3c\x48\x55\x55\x1b\x97\x88" "\x5e\x8c\x88\x97\xd3\xf5\x3f\x5d\x5d\x9b\x09\x00\x4c\x57\xde\xff\x57" "\xf9\x66\x18\x89\x5a\xad\x56\xab\xd5\xea\xa3\x57\x37\x55\xe3\xbd\xd6" "\x2c\x22\xe2\xcf\xcd\x65\xea\xf7\x0c\xbf\x1e\xf7\xcd\x00\x80\x83\xec" "\xb3\x88\xf8\x47\xd7\x9d\xa0\x33\xf2\x2f\x58\xbe\xdf\x5f\x3d\xfd\x52" "\xd7\x9d\x01\xa6\xea\xc6\x7b\xef\xff\xf4\xca\xb5\x6b\x2b\xd7\x6f\xfc" "\x2f\x4b\x57\x83\x47\xdf\x23\x00\x00\x00\x00\x00\x00\x00\x60\xaf\xf2" "\xf8\x9f\x27\x1b\xe3\x3f\x6f\x9c\x07\xd4\x1a\x37\x7a\xcb\xf8\xaf\xaf" "\xc7\xc9\x4f\xd6\x57\x97\xdf\x5d\xfc\xd7\xe7\x0f\xdd\xf8\x9f\xfd\xd1" "\x60\x63\xac\xf3\xb4\x42\x4f\x47\x73\x7c\xee\xed\x23\x14\x9f\x8a\x07" "\x8f\xff\x3d\x9c\xf0\x7a\x33\x13\xda\x47\x13\xda\x67\x27\xb4\xcf\x4d" "\x68\x1f\x7b\xa1\x47\x43\xce\xff\xe9\x94\x71\xce\xff\x44\x5a\xb1\x07" "\x8d\xff\x9a\xf3\x6f\x4f\x27\xbc\x64\xa7\x1e\x34\xfe\xeb\xb3\x1d\xf4" "\xa7\x6b\x39\xff\x53\x69\xac\xe7\x9c\xff\x57\x5b\xf3\x35\xf3\xaf\xfe" "\x70\x98\xc7\xff\xed\x6f\xc9\xff\xcc\xcd\x77\x7e\x71\xe6\xc6\x7b\xef" "\xbf\x70\xf5\x9d\x2b\x6f\xaf\xbc\xbd\xf2\xb3\x73\xe7\x97\x5e\x3d\xbb" "\x74\xe1\xfc\x2b\x2f\x9e\x79\xeb\xea\xb5\x95\xf4\x6f\x87\x3d\xde\x5f" "\x39\xff\x3c\xf6\xb5\xf3\x40\xcb\x92\xf3\xcf\x99\xcb\xbf\x2c\x39\xff" "\x2f\xa7\x5a\xfe\x65\xc9\xf9\x7f\x25\xd5\xf2\x2f\x4b\xce\x3f\xbf\xdf" "\x93\x7f\x59\x72\xfe\xf9\xb3\x8f\xfc\xcb\x92\xf3\x7f\x2e\xd5\xf2\x2f" "\x4b\xce\xff\x6b\xa9\x96\x7f\x59\x72\xfe\xcf\xa7\x5a\xfe\x65\xc9\xf9" "\x7f\x3d\xd5\xf2\x2f\x4b\xce\xff\x85\x54\xcb\xbf\x2c\x39\xff\xd3\xa9" "\x96\x7f\x59\x72\xfe\x67\x52\x2d\xff\xb2\xe4\xfc\xf3\x11\x2e\xf9\x97" "\x25\xe7\x9f\xcf\x6c\x90\x7f\x59\x72\xfe\x4b\xa9\x96\x7f\x59\x72\xfe" "\xe7\x52\x2d\xff\xb2\xe4\xfc\xcf\xa7\x5a\xfe\x65\xc9\xf9\xbf\x94\x6a" "\xf9\x97\x25\xe7\xff\x72\xaa\xf7\x90\xbf\x7b\x7f\x1d\x01\x39\xff\x0b" "\xa9\xb6\xfd\x97\x25\xe7\xff\x4a\xaa\xe5\x5f\x96\x9c\xff\xab\xa9\x96" "\x7f\x59\x72\xfe\xdf\x48\xb5\xfc\xcb\x92\xf3\xff\x66\xaa\xe5\x5f\x96" "\x9c\xff\xb7\x52\x2d\xff\xb2\xe4\xfc\xbf\x9d\x6a\xf9\x97\x25\xe7\xff" "\x9d\xb8\x7f\x31\xa9\xfc\xcb\x91\xf3\x7f\x2d\xd5\xb6\xff\xb2\xdc\xbf" "\xff\xbf\x07\x1e\x78\xe0\x41\x7e\xd0\xf5\x6f\x26\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xa0\x6d\x1a\xa7\x13\x77\xbd\x8e\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff" "\x65\x07\x0e\x04\x00\x00\x00\x00\x80\xfc\x5f\x1b\xa1\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x0a\x3b\x70\x20\x00\x00" "\x00\x00\x00\xe4\xff\xda\x08\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\xd8\xbb\xbb\x18\xb9\xca\xfb\x7e\xe0\x67\xdf" "\xec\xb5\x21\xf6\x26\x31\x84\x17\x03\x6b\x63\xc0\xc0\xe2\x5d\xbf\xe0" "\x97\xff\xbf\x0e\x06\x42\x4a\xa1\x6d\x08\x09\xf4\x8d\xd4\xb8\xf6\xda" "\x38\xf1\x5b\xbd\x6b\x02\x08\x89\x8d\xa0\x29\x12\x48\xe5\x82\x0b\x5a" "\x29\x29\x20\x54\xe5\x22\x55\x50\x9b\xa8\x41\xa2\x11\x95\x2a\xb5\xe9" "\x4d\x7b\xd5\xde\x54\x69\xa5\x46\x15\x8a\x42\xe5\x44\xbd\x69\x54\x70" "\x75\xe6\x3c\xcf\xe3\x99\xd9\xd9\x99\x5d\xef\xae\x3d\x73\xce\xe7\x83" "\xf0\xcf\x3b\x73\x66\xe6\xd9\x33\x67\x66\xf7\x3b\xd6\x77\x06\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xa0\xde\x86\x7b\x27\xff\xb0\x2f\xcb" "\xb2\xfc\xff\xda\x1f\x23\x59\x76\x79\xfe\xf7\x55\xd9\xbe\xfc\xcb\x99" "\x9d\x97\x7a\x85\x00\x00\x00\xc0\x62\x7d\x58\xfb\xf3\xdb\x6b\xd3\x09" "\xfb\xe6\x71\xa1\xba\x6d\xfe\xee\xfa\x7f\xfc\xee\xb9\x73\xe7\xce\x65" "\xd9\x9f\xac\xfb\xd4\xab\xf9\x0c\x46\xb3\x6c\xcd\xca\x2c\x2b\xce\x0b" "\x86\x7f\x72\xaa\x61\x9b\xe0\xf9\x6c\xb8\xaf\xbf\xee\xeb\xfe\x0e\x37" "\x3f\xd0\xe1\xfc\xc1\x0e\xe7\x0f\x75\x38\x7f\x45\x87\xf3\x57\x76\x38" "\x7f\xb8\xc3\xf9\xb3\x76\xc0\x2c\xab\x8a\xd7\x63\x6a\x57\xb6\xa9\xf6" "\xd7\x91\x62\x97\x66\xeb\xb2\xa1\xda\x79\x9b\x5a\x5c\xea\xf9\xbe\x95" "\xfd\xfd\xf1\xb5\x9c\x9a\xbe\xda\x65\xce\x0d\x1d\xce\x8e\x66\xc7\xb2" "\xc9\x6c\x62\xd6\x65\xfa\x6a\xff\x65\xd9\xbb\x1b\xf2\xdb\xba\x3f\x8b" "\xb7\xd5\x5f\x77\x5b\xeb\xb3\x2c\x3b\xfb\xb3\x67\x0f\xc6\x35\xf4\x85" "\x7d\xbc\x29\x6b\xb8\xb1\x9a\xfa\xfb\xee\x83\xbb\xb3\xd1\x9f\xff\xec" "\xd9\x83\x4f\x8e\xfc\xe2\xba\x56\xb3\xe3\x6e\x98\xb5\xd2\x2c\xdb\xbc" "\x31\x5f\xe7\x0b\x59\x76\xfe\xe5\xaa\xac\x2f\x5b\x99\xf6\x49\x5c\x67" "\x7f\xdd\x3a\xd7\xb7\x58\xe7\x40\xc3\x3a\xfb\x6a\x97\xcb\xff\xde\xbc" "\xce\xb3\xf3\x5c\x67\xfc\xbe\x87\xc3\x3a\xff\xa9\xcd\x3a\xd7\x87\xd3" "\x9e\xba\x31\xcb\xb2\x99\x6c\xce\x6d\x9a\x3d\x9f\xf5\x67\xab\x9b\x6e" "\x35\xed\xef\xe1\xe2\x88\xc8\xaf\x23\xbf\x2b\x3f\x91\x0d\x2e\xe8\x38" "\xd9\x30\x8f\xe3\x24\xbf\xcc\x8f\x6f\x6c\x3c\x4e\x9a\x8f\xc9\xb8\xff" "\x37\x84\x7d\x32\x38\xc7\x1a\xea\xef\x8e\x0f\xbe\xb6\x62\xd6\x7e\xbf" "\xd0\xe3\x24\xff\xae\xbb\xe1\x58\xcd\xaf\xfb\xa1\xfc\x46\x87\x87\xeb" "\x5f\x5a\x6d\x38\x56\xf3\x6d\x9e\xbd\x69\xee\x63\xa0\xe5\x7d\xd7\xe2" "\x18\x48\xc7\x72\xdd\x31\xb0\xb1\xd3\x31\xd0\xbf\x62\xa0\x76\x0c\xf4" "\x9f\x5f\xf3\xc6\x86\x63\x60\xeb\xac\xcb\xf4\x67\x7d\xb5\xdb\x7a\xff" "\xa6\xf6\xc7\xc0\xf8\xf4\xf1\x53\xe3\x53\x4f\x3f\x73\xc7\xd1\xe3\x07" "\x8e\x4c\x1e\x99\x3c\xb1\x7d\xc7\xb6\x3d\x5b\xb7\xed\xda\xb1\x7b\x62" "\xfc\xf0\xd1\x63\x93\xe1\xcf\x85\xed\xd2\x1e\xb2\x3a\xeb\x4f\xc7\xe0" "\xc6\xf0\x5c\x13\x8f\xc1\x5b\x9a\xb6\xad\x3f\x24\xcf\xbd\x51\x3c\x0e" "\x5e\xbf\x7a\xd7\xf5\xad\xe6\x42\xd6\x30\xbc\x44\x8f\x83\xc5\xac\x21" "\x0b\xc7\xcb\x17\x6f\xce\x17\x74\x79\x7f\x36\xc7\x31\x9e\x6f\xf3\xc2" "\xe6\xc5\x3f\x0e\xd2\xcf\xfd\xba\xc7\xc1\x60\xdd\xe3\xa0\xe5\x73\x6a" "\x8b\xc7\xc1\xe0\x3c\x1e\x07\xf9\x36\x67\x37\xcf\xef\x67\xe6\x60\xdd" "\xff\xad\xd6\xd0\xea\xb9\x70\x29\x8e\x81\x91\xba\x63\x60\x31\x3f\x0f" "\xeb\xd7\x70\x21\x3f\x0f\xf3\xdb\x7c\xec\xd6\xb9\x9f\x0b\xd7\x87\x75" "\xbd\x78\xdb\x42\x7f\x1e\x0e\xcc\x3a\x06\xe2\xb7\xd5\x17\x1e\x7b\xf9" "\x29\xe9\xf7\xbd\xe1\xdd\x61\xbf\xcc\x3e\x2e\xae\xc9\xcf\xb8\x6c\x45" "\x76\x66\x6a\xf2\xf4\x96\xa7\x0e\x4c\x4f\x9f\xde\x9a\x85\x71\x51\x7c" "\xb2\xee\xbe\x6a\x3e\x5e\x56\xd7\x7d\x4f\xd9\xac\xe3\xa5\x7f\xc1\xc7" "\xcb\xbe\xcf\x7d\xb4\xeb\x9a\x16\xa7\x8f\x84\x7d\x35\x7c\x7b\xfb\xfb" "\x2a\xdf\x66\xc7\x58\xfb\xfb\xaa\xf6\xec\xde\x7a\x7f\x36\x9c\xba\x2d" "\x0b\x63\x89\x5d\xec\xfd\xd9\xea\xa7\x59\xbe\x3f\x53\x96\x68\xb3\x3f" "\xf3\x6d\x5e\xb8\x63\xf1\xbf\x0b\xa6\x5c\x52\xf7\xfc\x37\xd4\xe9\xf9" "\x6f\x60\x68\xb0\x78\xfe\x1b\x48\x7b\x63\xa8\xe1\xf9\x6f\xf6\x5d\x33" "\x50\x5b\x59\x96\x9d\xbd\x63\x7e\xcf\x7f\x43\xe1\xff\x8b\xfd\xfc\xb7" "\xae\x4b\x9e\xff\xf2\x7d\xf5\xd8\x96\xf6\xc7\x40\xbe\xcd\x8b\xe3\x0b" "\x3d\x06\x06\xdb\x3e\xff\xdd\x18\x66\x5f\x58\xcf\xad\x21\x31\x0c\xd7" "\xe5\xfe\x8f\x6a\xe7\xcf\x14\x87\x69\xdd\x7d\xd9\xf1\xb8\x19\x1c\x1c" "\x0a\xc7\xcd\x60\xbc\xc5\xc6\xe3\x66\xfb\xac\xcb\xe4\xd7\x96\xdf\xf6" "\xe6\x89\x0b\x3b\x6e\x36\xdf\xd8\x78\x5f\x35\xfc\xde\x52\xc2\xe3\x26" "\xdf\x57\xaf\x4e\xb4\x3f\x6e\xf2\x6d\xde\xdb\xba\xf8\xe7\x8e\x55\xf1" "\xaf\x75\xcf\x1d\x2b\x3a\x1d\x03\x43\x03\x2b\xf2\xf5\x0e\xa5\x83\xa0" "\x78\xbe\x3b\xb7\x2a\x1e\x03\x5b\xb2\x83\xd9\xc9\xec\x58\x76\x28\x5d" "\x26\xbf\x97\xf3\xdb\x1a\xdb\x36\xbf\x63\x60\x45\xf8\xff\x62\x3f\x77" "\x5c\xd5\x25\xc7\x40\xbe\xaf\x5e\xdb\xd6\xfe\x18\xc8\xb7\xf9\xdb\xed" "\x4b\xfb\xbb\xd3\xe6\x70\x4a\xda\xa6\xee\x77\xa7\xe6\xd7\x17\xe6\xca" "\xfc\xd7\x0c\x9e\xbf\xbe\xe6\xdd\xb6\xd4\x99\x3f\x5f\xe7\x67\x76\xb4" "\x7f\x6d\x28\xdf\xe6\xa7\x3b\x16\x9a\x33\xda\xef\xa7\xdb\xc3\x29\x97" "\xb5\xd8\x4f\xcd\x8f\x9f\xb9\x8e\xe9\x43\x59\xe7\xfd\xb4\x54\xc7\x74" "\xbe\xce\x63\x77\xb6\x7f\x6d\x2a\xdf\x66\xdd\xce\x79\x1e\x4f\xfb\xb2" "\x2c\x7b\xe7\xa5\xb7\x8a\xd7\xbb\x8a\xd7\x77\xff\xe2\xcc\x3f\x7f\xb7" "\xe1\x75\xdf\x56\xaf\x29\xbf\xf3\xd2\x5b\x9f\xbf\xfa\x87\x3f\x5c\xc8" "\xfa\x01\x00\xb8\x70\x1f\xd5\xfe\x9c\x59\x51\xfc\xae\x59\xf7\x2f\xd6" "\xf3\xf9\xf7\x7f\x00\x00\x00\xa0\x27\xc4\xdc\xdf\x1f\x66\x22\xff\x03" "\x00\x00\x40\x69\xc4\xdc\x3f\x10\x66\x22\xff\x03\x00\x00\x40\x69\xc4" "\xdc\x3f\x18\x66\xb2\xaf\xd3\xbb\xe3\x95\xc3\x13\x7d\x5f\x7f\xf5\xc3" "\xe7\xb2\xf4\x6e\x80\xe7\x82\x78\x7e\x7c\x19\xe4\xa1\x95\xc5\x76\xb1" "\xe3\x3d\x13\xbe\x1e\x3d\x77\x5e\x7e\xfa\x3d\x6f\x0d\x3d\xf8\xbd\xe7" "\xe6\x77\xdb\xfd\x59\x96\xfd\xef\x03\xd7\xb6\xdc\xfe\x89\x95\x71\x5d" "\x85\x53\x71\x9d\x03\x8d\xa7\xcf\x72\xd5\x0d\xf3\xba\xfd\xc7\x1f\x39" "\xbf\x5d\xfd\xfb\x27\x9c\xed\x2f\xae\x3f\x7e\x3f\xf3\x7d\x19\x28\x76" "\x95\xdf\xfd\xb7\x7b\x6a\xd7\x3b\x7a\x6b\x31\xdf\x7b\x20\xab\xcd\x87" "\x67\x5e\x7c\xbe\x76\xfd\x7b\x8a\xaf\xe3\xf6\xef\xff\x47\xb1\xdd\x37" "\xc2\x9b\x96\xec\x3b\xdc\xd7\x70\xf9\xcd\x61\x3d\x9b\xc2\x1c\x0d\xef" "\x29\xf3\xd0\xaa\xf3\xfb\x21\x9f\xf1\x72\xdf\x79\xf7\xc8\xdf\x7f\xfa" "\xd1\xf3\xb7\x17\x2f\xd7\xb7\x71\x4d\xed\xdb\x7c\x6d\x4b\x71\xbd\xf1" "\x3d\xa2\x5e\xf9\xcb\x62\xfb\xf8\x7d\xcf\xb5\xfe\xbf\x7e\xe9\x5b\xdf" "\xc9\xb7\x7f\xea\xa6\xd6\xeb\x7f\xae\xbf\xf5\xfa\xdf\x0f\xd7\xfb\xe3" "\x30\xff\xe7\x83\xe2\xf4\xfa\x7d\xfe\xbd\xba\xf5\xff\x41\x58\x7f\xbc" "\xbd\x78\xb9\x2d\x6f\xfe\xa0\xe5\xfa\xdf\xfe\xab\x62\xfb\xb7\xc3\x71" "\xf1\x7a\x98\xcd\xeb\xbf\xfb\x8f\xae\xfb\xb0\xd5\xfd\x15\x6f\x67\xdf" "\x60\x71\xb9\x78\xfb\x13\x7f\x76\x5f\xed\x72\xf1\xfa\xe2\xf5\x37\xaf" "\x7f\x78\xfc\x9e\x86\xfd\xd1\x7c\xfd\xef\xbd\x59\x5c\xcf\xde\x27\xff" "\x7b\xa0\x7e\xfb\x78\x7a\xbc\x9d\xe8\xf1\xc1\xc6\xe3\xbb\x2f\xdc\xbf" "\x0d\x3d\xf2\x2c\xcb\xbe\xf5\xf5\xac\x61\x3f\x67\x43\xc5\xe5\xde\x69" "\x5a\x7f\xbc\xbe\x53\x83\xad\xd7\x7f\x7b\xd3\x3a\x4f\xbd\xf1\x44\xed" "\xf2\xcd\xdf\x4f\xf4\xcd\x47\xee\x6d\xf9\xfd\xc6\xf5\xec\xfb\xf3\x91" "\x86\xef\xe7\x95\x35\x61\xff\xf5\xaf\xfa\x87\xfc\x7a\xdf\xbf\x36\x1c" "\x8f\xe1\xfc\x5f\xcc\x14\xd7\xd7\xfc\x5e\xa6\x6f\xaf\x69\x7c\xbe\x89" "\xdb\xbf\x3e\x52\x3c\x6e\xe3\xf5\x8d\x37\xad\xff\x95\xa6\xf5\xcf\xdc" "\x90\xef\xbb\xce\xeb\xbf\xff\xe7\xc5\xfa\xdf\xbe\x6b\x65\xc3\xfa\xf7" "\xad\x0d\xc7\xd3\xc7\x8b\xd9\x69\xfd\x47\xfe\x74\x6d\xc3\xe5\xdf\xf8" "\x6c\xb1\x9e\xd3\x5f\x1d\x3b\x71\x72\xea\xcc\xd1\xf8\x1e\x07\x23\x4d" "\x8f\xe3\x95\xc3\xab\x56\x5f\x76\xf9\xc7\xd6\xac\x0d\xcf\xa5\xcd\x5f" "\xef\x3f\x39\xfd\xc4\xe4\xe9\xd1\x89\xd1\x89\x2c\x1b\xed\xc1\xb7\x0c" "\x5c\xee\xf5\xbf\x19\xe6\x7f\x15\x63\x66\xe9\x6f\xa1\xf0\x2f\x83\xc5" "\x71\xf7\xf2\x83\xc5\xcf\xad\x5b\x86\x8a\xaf\x5f\x09\xa7\x3f\x1e\xee" "\xcf\xf8\xf3\xf1\x9b\x7f\x3c\xd4\x70\xbc\x36\xdf\xef\x33\xc3\xc5\x5c" "\xec\xfa\x6f\x0b\xeb\x98\xaf\xf5\x9b\x7e\xb2\x7b\x5e\x1b\xfe\xe7\x8e" "\xb7\x5f\xfd\xd7\x87\xbf\xd4\xfc\x7b\x41\xfc\x7e\x4e\x5d\x31\x5c\xfb" "\xfe\x5e\xdb\x70\x65\xed\xbc\xbe\xf7\x8a\xf3\x9b\x9f\xaf\x3a\xf9\xf7" "\x2b\x1a\x1f\xd7\x3f\x5a\x57\xcc\xef\x87\xfd\x7a\x2e\xbc\x33\xf3\xc6" "\x2b\x8b\xdb\x6b\xbe\xfe\xf8\xde\x24\x2f\x7f\xa1\x78\xfc\xc6\xdf\xe4" "\xe2\xe5\xb3\xa6\xf7\x13\x19\x19\x68\xfc\x3e\x16\xbb\xfe\x1f\x85\xdf" "\x63\x7e\x70\x55\xe3\xf3\x5f\x3c\x3e\xbe\xff\x5c\xd3\xbb\x39\x8f\x64" "\x7d\xf9\x12\x66\xc2\xf3\x43\x36\x53\x9c\x1f\xb7\x8a\xfb\xfb\xe5\xb3" "\x57\xb6\xbc\xbd\xf8\x3e\x3c\xd9\xcc\xd5\x0b\x59\xe6\x9c\xa6\x9e\x9e" "\x1a\x3f\x76\xf4\xc4\x99\xa7\xc6\xa7\x27\xa7\xa6\xc7\xa7\x9e\x7e\x66" "\xff\xf1\x93\x67\x4e\x4c\xef\xaf\xbd\x77\xe9\xfe\x2f\x77\xba\xfc\xf9" "\xc7\xf7\xea\xda\xe3\xfb\xd0\xe4\xce\x1d\x59\xed\xd1\x7e\xb2\x18\xcb" "\xec\x52\xaf\xff\xd4\x23\x07\x0f\xed\x9a\xb8\xf9\xd0\xe4\xe1\x03\x67" "\x0e\x4f\x3f\x72\x6a\xf2\xf4\x91\x83\x53\x53\x07\x27\x0f\x4d\xdd\x7c" "\xe0\xf0\xe1\xc9\xaf\x76\xba\xfc\xd1\x43\x7b\xb7\x6e\xdb\xb3\x7d\xd7" "\xb6\xb1\x23\x47\x0f\xed\xdd\xbd\x67\xcf\xf6\x3d\x63\x47\x4f\x9c\xcc" "\x97\x51\x2c\xaa\x83\x9d\x13\x5f\x19\x3b\x71\x7a\x7f\xed\x22\x53\x7b" "\x77\xec\xd9\x7a\xe7\x9d\x3b\x26\xc6\x8e\x9f\x3c\x34\xb9\x77\xd7\xc4" "\xc4\xd8\x99\x4e\x97\xaf\xfd\x6c\x1a\xcb\x2f\xfd\xe4\xd8\xe9\xc9\x63" "\x07\xa6\x8f\x1e\x9f\x1c\x9b\x3a\xfa\xcc\xe4\xde\xad\x7b\x76\xee\xdc" "\xd6\xf1\xdd\x1f\x8f\x9f\x3a\x3c\x35\x3a\x7e\xfa\xcc\x89\xf1\x33\x53" "\x93\xa7\xc7\x8b\xef\x65\x74\xba\x76\x72\xfe\xb3\xaf\xd3\xe5\xa9\x86" "\xa9\xb5\xe1\xf9\xae\x49\x5f\xf8\xed\xfc\xbe\xdb\x77\xa6\xf7\xc7\xcd" "\xbd\xf5\xb5\x39\xaf\xaa\xd8\x64\xa4\xf1\xc4\x9f\x86\xf7\x82\xfa\xc6" "\xf0\xf6\xdd\xf3\xf9\x3a\xe6\xfe\xa1\x30\x13\xff\xfe\x0f\x00\x00\x00" "\xa5\x11\x73\x7f\xf8\x7c\x8a\xf3\xaf\xbb\xcb\xff\x00\x00\x00\x50\x1a" "\xe1\x03\xff\xc2\x67\x46\xfa\xf7\x7f\x00\x00\x00\x28\xa3\x98\xfb\x87" "\xc3\x4c\x2a\x92\xff\xf5\xff\xf5\xff\x2f\xa0\xff\x9f\xea\xda\xfa\xff" "\xfa\xff\x99\xfe\xbf\xfe\x7f\x07\xfa\xff\xfa\xff\xed\xe8\xff\xeb\xff" "\xf7\xf2\xfa\xf5\xff\xf5\xff\xe9\xac\xdb\xfa\xff\x31\xf7\xaf\xca\xb2" "\x4a\xe6\x7f\x00\x00\x00\xa8\x82\x98\xfb\x57\x87\x99\xc8\xff\x00\x00" "\x00\x50\x1a\x31\xf7\x5f\x16\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc" "\x7f\x79\x98\x49\x45\xf2\xbf\xfe\xbf\xfe\xbf\xcf\xff\x2f\x5f\xff\xbf" "\x2f\xcb\x66\xf4\xff\xf5\xff\xbb\x85\xfe\xbf\xfe\x7f\x3b\xfa\xff\xfa" "\xff\xbd\xbc\x7e\xfd\x7f\xfd\x7f\x3a\xeb\xb6\xfe\x7f\xcc\xfd\x1f\x0b" "\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\x7f\x4d\x98\x89\xfc\x0f" "\x00\x00\x00\xa5\x11\x73\xff\xda\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23" "\xe6\xfe\x91\x30\x93\x32\xe5\xff\xbb\xe6\x3e\x4b\xff\x5f\xff\x5f\xff" "\xbf\x7c\xfd\x7f\x9f\xff\x5f\xd0\xff\xef\x0e\xfa\xff\xfa\xff\xed\xe8" "\xff\xeb\xff\xf7\xf2\xfa\xf5\xff\xf5\xff\xe9\xac\xdb\xfa\xff\x31\xf7" "\x7f\x3c\xcc\xa4\x4c\xf9\x1f\x00\x00\x00\x2a\x2e\xe6\xfe\x4f\x84\x99" "\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x7f\x32\xcc\x44\xfe\x07\x00\x00" "\x80\xd2\x88\xb9\x7f\x5d\x98\x49\x45\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf" "\xfe\xbf\xfe\xbf\xfe\xff\x72\xd2\xff\x2f\x47\xff\x7f\x55\x38\x59\xff" "\xbf\x91\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\xed\x75\x5b\xff\x3f\xe6\xfe" "\x2b\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xbf\x32\xcc\x44" "\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x53\x61\x26\xf2\x3f\x00\x00\x00" "\x94\x46\xcc\xfd\x57\x85\x99\x54\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb" "\xff\xeb\xff\xeb\xff\x2f\x27\xfd\xff\x72\xf4\xff\xe3\xc9\xfa\xff\x8d" "\xf4\xff\xf5\xff\xf5\xff\xf5\xff\x69\xaf\xdb\xfa\xff\x31\xf7\x5f\x1d" "\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\x35\x61\x26\xf2\x3f" "\x00\x00\x00\x94\x46\xcc\xfd\xd7\x86\x99\xc8\xff\x00\x00\x00\x50\x1a" "\x31\xf7\xaf\x0f\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7" "\xff\xd7\xff\x5f\x4e\xfa\xff\xfa\xff\xed\xe8\xff\xeb\xff\xf7\xf2\xfa" "\xf5\xff\xf5\xff\xe9\xac\xdb\xfa\xff\x31\xf7\x5f\x17\x66\x52\x91\xfc" "\x0f\x00\x00\x00\x55\x10\x73\xff\xf5\x61\x26\xf2\x3f\x00\x00\x00\x94" "\x46\xcc\xfd\x37\x84\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\xeb\xff\x2f" "\x27\xfd\x7f\xfd\xff\x76\xf4\xff\xf5\xff\x7b\x79\xfd\xfa\xff\xfa\xff" "\x74\xd6\x6d\xfd\xff\x98\xfb\x37\x84\x99\x54\x24\xff\x03\x00\x00\x40" "\x15\xc4\xdc\xbf\x31\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\xc6" "\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x4d\x61\x26\x15\xc9\xff" "\xfa\xff\xfa\xff\xfa\xff\x65\xed\xff\x0f\xe8\xff\xeb\xff\x77\x05\xfd" "\x7f\xfd\xff\x76\xf4\xff\xf5\xff\x7b\x79\xfd\xfa\xff\xfa\xff\x74\xd6" "\x6d\xfd\xff\x98\xfb\x6f\x0a\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88" "\xb9\xff\xe6\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x5b\xc2\x4c" "\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x37\x87\x99\x54\x24\xff\xeb\xff" "\xeb\xff\xeb\xff\x97\xb5\xff\xef\xf3\xff\xf5\xff\xbb\x83\xfe\xbf\xfe" "\x7f\x3b\xfa\xff\xfa\xff\xbd\xbc\x7e\xfd\x7f\xfd\x7f\x3a\xeb\xb6\xfe" "\x7f\xcc\xfd\xb7\x86\x99\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\x7f" "\x5b\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xed\x61\x26\xf2\x3f" "\x00\x00\x00\x94\x46\xcc\xfd\x63\x61\x26\x15\xc9\xff\xfa\xff\xfa\xff" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xcb\x49\xff\x5f\xff\xbf\x1d\xfd\x7f" "\xfd\xff\x5e\x5e\xbf\xfe\xbf\xfe\x3f\x9d\x75\x5b\xff\x3f\xe6\xfe\x3b" "\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xdf\x12\x66\x22\xff" "\x03\x00\x00\x40\x69\xc4\xdc\x3f\x1e\x66\x22\xff\x03\x00\x00\x40\x69" "\xc4\xdc\x3f\x11\x66\x52\x91\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf" "\xff\xaf\xff\xbf\x9c\xf4\xff\xf5\xff\xdb\xd1\xff\xd7\xff\xef\xe5\xf5" "\xeb\xff\xeb\xff\xd3\x59\xb7\xf5\xff\x63\xee\xdf\x1a\x66\x52\x91\xfc" "\x0f\x00\x00\x00\x3d\xea\xba\x85\x6c\x1c\x73\xff\xb6\x30\x13\xf9\x1f" "\x00\x00\x00\x4a\x23\xe6\xfe\xed\x61\x26\xf2\x3f\x00\x00\x00\x94\x46" "\xcc\xfd\x3b\xc2\x4c\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\x97\x93\xfe\xbf\xfe\x7f\x3b\xf5\xfd\xff\xfc\x92\xfa\xff" "\x55\xe9\xff\xcf\xf5\x93\xa6\x57\xd6\x5f\xd0\xff\xd7\xff\xa7\xb3\x6e" "\xeb\xff\xc7\xdc\x7f\x67\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc" "\xfd\x3b\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x77\x85\x99\xcc" "\xce\xff\x7f\x73\xf1\x56\x05\x00\x00\x00\x2c\xa5\x98\xfb\x77\x87\x99" "\xf4\xfc\xbf\xff\xcf\xaf\x57\x55\xa9\xfe\xff\x81\xfb\xd3\x5f\xf5\xff" "\x0b\xfa\xff\xfa\xff\x99\xfe\xbf\xfe\xff\x32\xd3\xff\xd7\xff\x6f\xc7" "\xe7\xff\x57\xb5\xff\xbf\x34\x2e\xf5\xfa\xf5\xff\xf5\xff\xe9\xac\xdb" "\xfa\xff\x31\xf7\xef\x09\x33\xe9\xf9\xfc\x0f\x00\x00\x00\x44\x31\xf7" "\xff\xbf\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xff\x1f\x66\x22" "\xff\x03\x00\x00\x40\x69\xc4\xdc\xff\x4b\x61\x26\x15\xc9\xff\x95\xea" "\xff\xd7\xd1\xff\x2f\xe8\xff\xeb\xff\x67\xfa\xff\xfa\xff\xcb\x4c\xff" "\x5f\xff\xbf\x1d\xfd\x7f\xfd\xff\x5e\x5e\x7f\xf7\xf6\xff\xbf\xbd\x3a" "\xcb\xf4\xff\xe9\x0e\xdd\xd6\xff\x8f\xb9\x7f\x6f\x98\x49\x45\xf2\x3f" "\x00\x00\x00\x54\x41\xcc\xfd\x9f\x0e\x33\x91\xff\x01\x00\x00\xa0\x34" "\x62\xee\xbf\x2b\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\x7f\x5f\x98" "\x49\x45\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xff\x72" "\xd2\xff\xd7\xff\x6f\x67\x71\xfd\xff\x51\xfd\xff\x45\xba\xd4\xfd\xf9" "\x5e\x5f\x7f\xf7\xf6\xff\x7d\xfe\x3f\xdd\xa3\xdb\xfa\xff\x31\xf7\xdf" "\x1d\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\x3d\x61\x26\xf2" "\x3f\x00\x00\x00\x94\x46\xcc\xfd\xf7\x86\x99\xc8\xff\x00\x00\x00\x50" "\x1a\x31\xf7\x7f\x26\xcc\xa4\x22\xf9\xff\xa2\xf5\xff\x5b\x14\x8a\xf5" "\xff\xf5\xff\x33\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\x45\xd2\xff\xaf\x72" "\xff\xdf\xe7\xff\x2f\xd6\xa5\xee\xcf\xf7\xfa\xfa\xf5\xff\xf5\xff\xe9" "\xac\xdb\xfa\xff\x31\xf7\xdf\x17\x66\x52\x91\xfc\x0f\x00\x00\x00\x55" "\x10\x73\xff\x67\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x7f\x39" "\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\xfe\x30\x93\x8a\xe4\x7f" "\x9f\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xbf\x9c\xf4\xff\xf5" "\xff\xdb\xd1\xff\xd7\xff\xef\xe5\xf5\xeb\xff\xeb\xff\xd3\x59\xb7\xf5" "\xff\x63\xee\xff\x95\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb" "\x1f\x08\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\x7f\x30\xcc\x44\xfe" "\x07\x00\x00\x80\xd2\x88\xb9\xff\x57\xc3\x4c\x2a\x92\xff\xf5\xff\xf5" "\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x97\x93\xfe\xbf\xfe\x7f\x3b\xfa" "\xff\xfa\xff\xbd\xbc\x7e\xfd\x7f\xfd\x7f\x3a\xeb\xb6\xfe\x7f\xcc\xfd" "\xbf\x16\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\xaf\x87\x99" "\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x7f\x2e\xcc\x44\xfe\x07\x00\x00" "\x80\xd2\x88\xb9\xff\xa1\x30\x93\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\xff\xe5\xa4\xff\xaf\xff\xdf\x8e\xfe\xbf\xfe\x7f" "\x2f\xaf\x5f\xff\x5f\xff\x9f\xce\xba\xad\xff\x1f\x73\xff\xe7\xc3\x4c" "\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\x7f\x38\xcc\x44\xfe\x07\x00" "\x00\x80\xd2\x88\xb9\xff\x0b\x61\x26\xf2\x3f\x00\x00\x00\xf4\x80\xb3" "\xf3\xda\x2a\xe6\xfe\x2f\x86\x99\x54\x24\xff\xeb\xff\xeb\xff\xeb\xff" "\xeb\xff\x2f\x61\xff\x7f\x45\xa6\xff\x9f\xe8\xff\xaf\xaa\xfd\xa9\xff" "\xaf\xff\xdf\x8e\xfe\xbf\xfe\x7f\x2f\xaf\x5f\xff\x5f\xff\x9f\xce\xba" "\xad\xff\x1f\x73\xff\x23\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31" "\xf7\x3f\x1a\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xff\x1b\x61\x26" "\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xbf\x19\x66\x52\x91\xfc\xaf\xff" "\xaf\xff\xaf\xff\xaf\xff\xef\xf3\xff\xf5\xff\x97\x93\xfe\xbf\xfe\x7f" "\x3b\xfa\xff\xfa\xff\xbd\xbc\x7e\xfd\x7f\xfd\x7f\x3a\xeb\xb6\xfe\x7f" "\xcc\xfd\xbf\x15\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\x6f" "\x87\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xff\x4e\x98\x89\xfc\x0f" "\x00\x00\x00\xa5\x11\x73\xff\x63\x61\x26\x15\xc9\xff\x45\xff\xff\xd1" "\x83\xfa\xff\x05\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\x48\xff\x7f\x69\xe8" "\xff\xeb\xff\xb7\xa3\xff\xaf\xff\xdf\xcb\xeb\xd7\xff\xd7\xff\xa7\xb3" "\x6e\xeb\xff\xc7\xdc\xff\xa5\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82" "\x98\xfb\x7f\x37\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\x7f\x7f\x98" "\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xe3\x61\x26\x15\xc9\xff\x3e" "\xff\x5f\xff\x5f\xff\x5f\xff\x7f\x21\xfd\xff\x55\x2d\x4e\xd7\xff\x2f" "\xe8\xff\xb7\xa6\xff\xaf\xff\xdf\x8e\xfe\x7f\x99\xfb\xff\x2b\x96\x64" "\x8d\x97\x6e\xfd\x73\x3d\x61\x0d\xa6\xbf\xe9\xff\xeb\xff\xd3\x59\xb7" "\xf5\xff\x63\xee\x3f\x10\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73" "\xff\xef\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x1f\x0c\x33\x91" "\xff\x01\x00\x00\xa0\x34\x62\xee\x3f\x14\x66\x52\x91\xfc\xaf\xff\xaf" "\xff\xaf\xff\xaf\xff\xdf\x23\x9f\xff\x3f\x94\x2d\x47\xff\x7f\x46\xff" "\x7f\xb9\x95\xa4\xff\xff\x9e\xfe\x7f\x41\xff\xbf\x91\xfe\xbf\xcf\xff" "\xd7\xff\xd7\xff\xa7\xbd\x6e\xeb\xff\xc7\xdc\x3f\x19\x66\x52\x91\xfc" "\x0f\x00\x00\x00\xbd\x6e\x3e\xef\x3a\x1a\x73\xff\xe1\x30\x13\xf9\x1f" "\x00\x00\x00\x4a\x23\xe6\xfe\x23\x61\x26\xf2\x3f\x00\x00\x00\x94\x46" "\xcc\xfd\x4f\x84\x99\x54\x24\xff\x77\x63\xff\xff\x06\xfd\x7f\xfd\x7f" "\xfd\xff\x74\x3d\xfa\xff\x3e\xff\x5f\xff\xbf\x3d\x9f\xff\xaf\xff\x9f" "\xe9\xff\x5f\xb0\x4b\xdd\x9f\xef\xf5\xf5\xeb\xff\xeb\xff\xd3\x59\xb7" "\xf5\xff\x63\xee\x3f\x1a\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73" "\xff\x97\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xbf\x12\x66\x22" "\xff\x03\x00\x00\x40\x69\xc4\xdc\x7f\x2c\xcc\xa4\x22\xf9\xbf\x1b\xfb" "\xff\x99\xfe\xbf\xfe\xbf\xfe\x7f\xba\x1e\xfd\x7f\xfd\x7f\xfd\xff\xf6" "\xf4\xff\xf5\xff\x33\xfd\xff\x0b\x76\xa9\xfb\xf3\xbd\xbe\x7e\xfd\x7f" "\xfd\x7f\x3a\xeb\xb6\xfe\x7f\xcc\xfd\xc7\xc3\x4c\x2a\x92\xff\x01\x00" "\x00\xa0\x0a\x62\xee\x3f\x11\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc" "\x7f\x32\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x54\x98\x49\x4f" "\xe6\xff\xbe\x39\x7b\xbb\x73\xd1\xff\xd7\xff\xef\xb6\xfe\x7f\x7d\xf3" "\xb2\xd4\xfd\xff\x95\xfa\xff\xfa\xff\xfa\xff\x4b\x41\xff\x5f\xff\x3f" "\xd3\xff\xbf\x60\x97\xba\x3f\xdf\xeb\xeb\xd7\xff\xd7\xff\xa7\xb3\x6e" "\xeb\xff\xc7\xdc\xff\xfb\x61\x26\x3d\x99\xff\x01\x00\x00\x80\x56\x62" "\xee\x3f\x1d\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x3f\x15\x66\x22" "\xff\x03\x00\x00\x40\x69\xc4\xdc\x3f\x1d\x66\xd2\x3e\xff\xf7\x2f\xef" "\xaa\x2e\x1e\xfd\x7f\xfd\xff\x6e\xeb\xff\x57\xf6\xf3\xff\x07\xf5\xff" "\x23\xfd\x7f\xfd\xff\x85\xd0\xff\xd7\xff\xff\x3f\xf6\xee\x6b\x47\xaf" "\xb3\x8a\xe3\xf0\xe7\x88\x18\x38\x00\xce\x11\xf7\x02\xe2\x3e\x38\xe6" "\x0a\xe8\x90\x98\xde\x42\xaf\xa1\x85\x1a\x7a\xef\xbd\x85\x0e\xa1\xf7" "\xde\x7b\x6f\xa1\x48\x41\x9a\x59\x6b\x39\x83\xed\xbd\x3d\x23\x7f\x9e" "\x77\xbf\xeb\x79\x4e\x56\x9c\x78\x66\x76\x64\xc7\xd1\x5f\xa3\x9f\xf6" "\x4e\xff\x7f\x62\xa7\xdd\xcf\x6f\xfd\xf9\xf5\xff\xfa\x7f\xd6\x8d\xd6" "\xff\xe7\xee\x7f\x40\xdc\xe2\xfb\xff\x00\x00\x00\x30\x8d\xdc\xfd\x0f" "\x8c\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x07\xc5\x2d\xf6\x3f\x00" "\x00\x00\x4c\x23\x77\xff\x83\xe3\x96\x26\xfb\xff\xea\xf6\xff\xf7\x3d" "\xf2\x23\xfd\xbf\xfe\x7f\x77\xa2\xfe\xff\xce\xf5\xb1\x53\xf5\xff\xde" "\xff\x7f\xfe\xd7\x55\xff\xaf\xff\x3f\x86\xae\xfd\x7f\xfe\x49\xa8\xff" "\x3f\xa4\xff\x3f\x99\xd3\xee\xe7\xb7\xfe\xfc\xfa\x7f\xfd\x3f\xeb\x46" "\xeb\xff\x73\xf7\x3f\x24\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd" "\x0f\x8d\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x87\xc5\x2d\xf6\x3f" "\x00\x00\x00\x4c\x23\x77\xff\xc3\xe3\x96\x26\xfb\xdf\xfb\xff\xf5\xff" "\xdb\xeb\xff\x27\x7d\xff\xbf\xfe\xbf\xe8\xff\xf5\xff\xc7\xd1\xb5\xff" "\x4f\xfa\xff\x43\xfa\xff\x93\x39\xed\x7e\x7e\xeb\xcf\xaf\xff\xd7\xff" "\xb3\x6e\xb4\xfe\x3f\x77\xff\x23\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a" "\xc8\xdd\x7f\x5d\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x5f\x1f\xb7" "\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\xe7\xe2\x96\x26\xfb\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x7d\xd2\xff\xeb\xff\x97\xe8\xff" "\xc7\xed\xff\x6f\xd7\xff\xaf\x7e\x7d\xfd\xbf\xfe\x9f\x75\xa3\xf5\xff" "\xe7\x6e\xd8\x1d\xec\xfe\xc3\x2f\xd3\x6f\xff\x03\x00\x00\x40\x07\xb9" "\xfb\x1f\x15\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x8f\x8e\x5b\xec" "\x7f\x00\x00\x00\x98\x46\xee\xfe\xc7\xc4\x2d\x4d\xf6\xbf\xfe\x5f\xff" "\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfb\xa4\xff\xd7\xff\x2f\xd1\xff\x8f" "\xdb\xff\x7b\xff\xbf\xfe\x7f\xed\xe3\xf5\xff\x5c\x8e\xd1\xfa\xff\xdc" "\xfd\x8f\x8d\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xe3\xe2\x16" "\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\xf1\x71\x8b\xfd\x0f\x00\x00\x00" "\xd3\xc8\xdd\xff\x84\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f" "\xfd\xbf\xfe\x7f\x9f\xf4\xff\xfa\xff\x25\x1b\xe9\xff\xe3\x53\x5c\xf8" "\xcb\xa3\xff\x9f\xba\xff\xbf\xff\xbd\x56\x3e\xfe\x92\xfd\xff\x99\x9d" "\xfe\x5f\xff\x4f\x18\xad\xff\xcf\xdd\xff\xc4\xb8\xa5\xc9\xfe\x07\x00" "\x00\x80\x0e\x72\xf7\x3f\x29\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb" "\x9f\x1c\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x37\xc4\x2d\x4d\xf6" "\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfb\xa4\xff\xd7\xff" "\x2f\xd9\x48\xff\x7f\x49\xfa\xff\xa9\xfb\xff\xd5\xaf\xef\xfd\xff\xfa" "\x7f\xd6\x8d\xd6\xff\xe7\xee\x7f\x4a\xdc\xd2\x64\xff\x03\x00\x00\x40" "\x07\xb9\xfb\x9f\x1a\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x4f\x8b" "\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\xa7\xc7\x2d\x4d\xf6\xbf\xfe" "\x7f\xbd\xff\xbf\xee\x6e\xeb\x9f\x4f\xff\x7f\xf1\xe7\xd7\xff\xeb\xff" "\xf5\xff\xfa\x7f\xfd\xff\x06\xfa\xff\x9b\x2f\xf2\x13\xf5\xff\x97\x45" "\xff\xdf\xa8\xff\xbf\xeb\x85\x1f\xaf\xff\xd7\xff\xb3\x6e\xb4\xfe\x3f" "\x77\xff\x33\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xcc\xb8" "\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x56\xdc\x62\xff\x03\x00\x00" "\xc0\x34\x72\xf7\x3f\x3b\x6e\xb9\xcf\x6e\x77\x99\x19\xfb\xa6\xe9\xff" "\xbd\xff\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf7\x49\xff\xbf\x81\xfe\xff" "\x62\xf4\xff\x97\x45\xff\xdf\xa8\xff\xbf\x08\xfd\xbf\xfe\x9f\x75\xa3" "\xf5\xff\xb9\xfb\x9f\x13\xb7\xf8\xfe\x3f\x00\x00\x00\x4c\x23\x77\xff" "\x73\xe3\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x79\x71\x8b\xfd\x0f" "\x00\x00\x00\xd3\xc8\xdd\xff\xfc\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5" "\xff\x57\xb5\xff\xbf\xe7\x2d\x37\xdd\x4f\xff\x1f\xff\x5c\xff\xaf\xff" "\xbf\x12\xf4\xff\xfa\xff\x9d\xfe\xff\xc4\x4e\xbb\x9f\xdf\xfa\xf3\xeb" "\xff\xf5\xff\xac\x1b\xad\xff\xcf\xdd\x7f\x63\xdc\xd2\x64\xff\x03\x00" "\x00\x40\x07\xb9\xfb\x5f\x10\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd" "\x2f\x8c\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x17\xc5\x2d\x4d\xf6" "\xbf\xfe\x5f\xff\xaf\xff\xf7\xfe\x7f\xfd\xff\xe1\xf3\x3f\x32\x7e\x3f" "\x26\xfd\xff\x95\xa1\xff\xd7\xff\x2f\xb9\x02\xfd\xff\x8d\x77\xd7\xff" "\x9f\xd8\x69\xf7\xf3\x5b\x7f\x7e\xfd\xbf\xfe\x9f\x75\xa3\xf5\xff\xb9" "\xfb\x5f\x1c\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x97\xc4\x2d" "\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x4d\x71\x8b\xfd\x0f\x00\x00\x00" "\xd3\xc8\xdd\xff\xd2\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f" "\xfd\xbf\xf7\xff\xef\x93\xfe\x5f\xff\xbf\xc4\xfb\xff\xf5\xff\x5b\x7e" "\x7e\xfd\xbf\xfe\x9f\x75\xa3\xf5\xff\xb9\xfb\x5f\x16\xb7\x34\xd9\xff" "\x00\x00\x00\xd0\x41\xee\xfe\x97\xc7\x2d\xf6\x3f\x00\x00\x00\x4c\x23" "\x77\xff\x2b\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x95\x71\x4b" "\x93\xfd\xaf\xff\xd7\xff\xeb\xff\x2f\xd5\xff\xdf\xa4\xff\xff\x3f\xfa" "\x7f\xfd\xff\x49\xe8\xff\xf5\xff\x4b\xf4\xff\xfa\xff\x2d\x3f\xbf\xfe" "\x5f\xff\xcf\xba\xd1\xfa\xff\xdc\xfd\xaf\x8a\x5b\x9a\xec\x7f\x00\x00" "\x00\xe8\x20\x77\xff\xcd\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff" "\xea\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x4d\xdc\xd2\x64\xff" "\xeb\xff\xf5\xff\xfa\x7f\xef\xff\xd7\xff\xeb\xff\xf7\x49\xff\xaf\xff" "\x5f\xa2\xff\xd7\xff\x6f\xf9\xf9\xf5\xff\xfa\x7f\xd6\x8d\xd6\xff\xe7" "\xee\x7f\x6d\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x5f\x17\xb7" "\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\xaf\x8f\x5b\xec\x7f\x00\x00\x00" "\x98\x46\xee\xfe\x37\xc4\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff" "\xeb\xff\xf5\xff\xfb\xa4\xff\xd7\xff\x2f\xd1\xff\xeb\xff\xb7\xfc\xfc" "\xfa\x7f\xfd\x3f\xeb\x46\xeb\xff\x73\xf7\xbf\x31\x6e\x69\xb2\xff\x01" "\x00\x00\xa0\x83\xdc\xfd\x6f\x8a\x5b\xec\x7f\x00\x00\x00\x98\x46\xee" "\xfe\x37\xc7\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x5b\xe2\x96\x26" "\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x7d\xd2\xff\xeb" "\xff\x97\xe8\xff\xf5\xff\x5b\x7e\x7e\xfd\xbf\xfe\x9f\x75\xa3\xf5\xff" "\xb9\xfb\xdf\x1a\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xb7\xc5" "\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\xdb\xe3\x16\xfb\x1f\x00\x00" "\x00\xa6\x91\xbb\xff\x1d\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5" "\xff\xfa\x7f\xfd\xff\x3e\xe9\xff\xf5\xff\x4b\xb6\xd7\xff\x5f\x7b\xe4" "\x47\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xb2\xd1\xfa\xff\xdc\xfd\xef\x8c" "\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xbb\xe2\x16\xfb\x1f\x00" "\x00\x00\xa6\x91\xbb\xff\xdd\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd" "\xff\x9e\xb8\xa5\xc9\xfe\xd7\xff\x77\xee\xff\xcf\x9c\xdb\xed\xf4\xff" "\x3b\xfd\xbf\xfe\x5f\xff\xbf\x57\xfa\x7f\xfd\xff\x92\xed\xf5\xff\x47" "\xe9\xff\xf5\xff\xfa\x7f\xfd\x3f\xcb\x46\xeb\xff\x73\xf7\xbf\x37\x6e" "\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xef\x8b\x5b\xec\x7f\x00\x00" "\x00\x98\x46\xee\xfe\xf7\xc7\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff" "\x07\xe2\x96\x26\xfb\x5f\xff\xdf\xb9\xff\xf7\xfe\x7f\xfd\xff\xd1\xe7" "\xd4\xff\xeb\xff\xf7\x41\xff\xaf\xff\x5f\xa2\xff\xd7\xff\x6f\xf9\xf9" "\x47\xee\xff\xaf\xd1\xff\x33\x88\xd1\xfa\xff\xdc\xfd\x1f\x8c\x5b\x9a" "\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x87\xe2\x16\xfb\x1f\x00\x00\x00" "\xa6\x91\xbb\xff\xc3\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\x91" "\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x3b\xf6\xff\x67\x2f" "\xfe\x5b\xfc\x80\xfe\x5f\xff\x7f\x12\xfa\x7f\xfd\xff\x12\xfd\xbf\xfe" "\x7f\xcb\xcf\x3f\x72\xff\xef\xfd\xff\x8c\x62\xb4\xfe\x3f\x77\xff\x47" "\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xb1\xb8\xc5\xfe\x07" "\x00\x00\x80\x69\xe4\xee\xff\x78\xdc\x62\xff\x03\x00\x00\xc0\x34\x72" "\xf7\xdf\x12\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xef\xfd\xff" "\xfa\xff\x7d\xd2\xff\xeb\xff\x97\xe8\xff\x37\xd7\xff\xdf\xe9\x8e\x3f" "\xd0\xff\xeb\xff\xf5\xff\xac\x19\xad\xff\xcf\xdd\xff\x89\xb8\xa5\xc9" "\xfe\x07\x00\x00\x80\x0e\x72\xf7\x7f\x32\x6e\xb1\xff\x01\x00\x00\x60" "\x1a\xb9\xfb\x3f\x15\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x9f\x8e" "\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf7\x49" "\xff\xaf\xff\x5f\xa2\xff\xdf\x5c\xff\x7f\x84\xfe\x5f\xff\xaf\xff\x67" "\xcd\x68\xfd\x7f\xee\xfe\xcf\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90" "\xbb\xff\xb3\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xb9\xb8\xc5" "\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x7c\xdc\xd2\x64\xff\xeb\xff\xf5" "\xff\xfa\xff\x63\xf5\xff\xd7\xeb\xff\xf5\xff\xfa\xff\xe3\xd1\xff\xeb" "\xff\x97\x9c\xef\xff\xef\xbd\xeb\xd1\xff\x5f\x1b\x7f\xa1\xff\x9f\xe1" "\xf9\xf5\xff\xfa\x7f\xd6\x8d\xd6\xff\xe7\xee\xff\x42\xdc\xd2\x64\xff" "\x03\x00\x00\x40\x07\xb9\xfb\x6f\x8d\x5b\xec\x7f\x00\x00\x00\x98\x46" "\xee\xfe\x2f\xc6\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x97\xe2\x96" "\x26\xfb\x5f\xff\xaf\xff\xd7\xff\x7b\xff\xbf\xfe\x5f\xff\xbf\x4f\xfa" "\xff\xe3\xf6\xff\x67\x8f\xf5\x5c\xf3\xf4\xff\xde\xff\xbf\xd3\xff\x6f" "\xee\xf9\xf5\xff\xfa\x7f\xd6\x8d\xd6\xff\xe7\xee\xff\x72\xdc\xd2\x64" "\xff\x03\x00\x00\x40\x07\xb9\xfb\xbf\x12\xb7\xd8\xff\x00\x00\x00\x30" "\x8d\xdc\xfd\x5f\x8d\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\xaf\xc5" "\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfb\xa4" "\xff\xf7\xfe\xff\x25\xfa\x7f\xfd\xff\x96\x9f\x5f\xff\xaf\xff\x67\xdd" "\x68\xfd\x7f\xee\xfe\xaf\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb" "\xff\x1b\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xcd\xb8\xc5\xfe" "\x07\x00\x00\x80\x69\xe4\xee\xff\x56\xdc\xd2\x64\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xfe\x7f\x90\xfe\xff\xcc\x39\xfd\xff\x09\xe8\xff\xf5" "\xff\x3b\xfd\xff\x89\x9d\x76\x3f\xbf\xf5\xe7\xd7\xff\xeb\xff\x59\x37" "\x5a\xff\x9f\xbb\xff\xdb\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee" "\xff\x4e\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x7f\x37\x6e\xb1\xff" "\x01\x00\x00\x60\x1a\xb9\xfb\xbf\x17\xb7\x34\xd9\xff\x2b\xfd\x7f\x35" "\x70\xfa\xff\x65\xfa\xff\xdd\xc1\x7f\x3f\xfa\xff\xa3\x9f\x5f\xff\xaf" "\xff\xf7\xfe\x7f\xfd\xbf\xfe\x7f\x99\xfe\x5f\xff\xbf\xe5\xe7\xd7\xff" "\xeb\xff\x59\x37\x5a\xff\x9f\xbb\xff\xfb\x71\xcb\xf9\xe1\x77\xf6\xf8" "\xff\x96\x00\x00\x00\xc0\x48\x72\xf7\xff\x20\x6e\x69\xf2\xfd\x7f\x00" "\x00\x00\xe8\x20\x77\xff\x0f\xe3\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb" "\xff\x47\x71\x4b\x93\xfd\xef\xfd\xff\xfa\x7f\xef\xff\xd7\xff\xeb\xff" "\xf5\xff\xfb\xa4\xff\xd7\xff\x2f\xd1\xff\xeb\xff\xb7\xfc\xfc\xfa\x7f" "\xfd\x3f\xeb\x46\xeb\xff\x73\xf7\xff\x38\x6e\x69\xb2\xff\x01\x00\x00" "\xa0\x83\xdc\xfd\x3f\x89\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x9f" "\xc6\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\xcf\xe2\x96\x26\xfb\x5f" "\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x7d\xd2\xff\xeb\xff\x97" "\xe8\xff\xf5\xff\x5b\x7e\x7e\xfd\xbf\xfe\x9f\x75\xa3\xf5\xff\xb9\xfb" "\x7f\x1e\xb7\x34\xd9\xff\x00\x00\x00\xb0\x7d\xd7\xac\xfe\x8c\xdc\xfd" "\xbf\x88\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x5f\xc6\x2d\xf6\x3f" "\x00\x00\x00\x4c\x23\x77\xff\xaf\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7" "\xff\xeb\xff\xf5\xff\xfa\xff\x7d\xd2\xff\xeb\xff\x97\xe8\xff\xf5\xff" "\x5b\x7e\x7e\xfd\xbf\xfe\x9f\x75\xa3\xf5\xff\xb9\xfb\x7f\x1d\xb7\x34" "\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xdf\xc4\x2d\xf6\x3f\x00\x00\x00" "\x4c\x23\x77\xff\x6f\xe3\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x77" "\x71\x4b\x93\xfd\xaf\xff\xdf\x47\xff\x7f\xab\xfe\x5f\xff\x7f\x40\xff" "\xaf\xff\xd7\xff\x6f\xbf\xff\x3f\x13\x7f\xe0\xe8\xff\x0f\xe9\xff\x8f" "\xd2\xff\xeb\xff\xf5\xff\xfa\x7f\x96\x8d\xd6\xff\xe7\xee\xff\x7d\xdc" "\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xff\x10\xb7\xd8\xff\x00\x00" "\x00\x30\x8d\xdc\xfd\x7f\x8c\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe" "\x3f\xc5\x2d\x4d\xf6\xff\x3c\xfd\x7f\x3c\xe9\x10\xfd\xbf\xf7\xff\xeb" "\xff\x0f\xe9\xff\xf5\xff\xfa\xff\xed\xf7\xff\x49\xff\x7f\x48\xff\x7f" "\x94\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\x6c\xb4\xfe\x3f\x77\xff\x9f\xe3" "\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x97\xb8\xc5\xfe\x07\x00" "\x00\x80\x69\xe4\xee\xff\x6b\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7" "\xff\x2d\x6e\x69\xb2\xff\xe7\xe9\xff\x83\xfe\x5f\xff\xaf\xff\xd7\xff" "\xc7\xdf\xd7\xff\x8f\x41\xff\xaf\xff\x5f\xa2\xff\xd7\xff\x6f\xf9\xf9" "\xf5\xff\xfa\x7f\xd6\x8d\xd6\xff\xe7\xee\xff\x7b\xdc\xd2\x64\xff\x03" "\x00\x00\x40\x07\xb9\xfb\xff\x11\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc" "\xfd\xff\x8c\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\xdb\xe2\x96\x0b" "\xf6\xff\xd9\xab\xf8\x54\x57\x8f\xfe\x5f\xff\xbf\xbf\xfe\xff\xf6\x7b" "\xec\x76\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x5f\x9a\xfe\x5f" "\xff\xbf\xe5\xe7\xd7\xff\xeb\xff\x59\x37\x5a\xff\x7f\xdb\xc1\xff\x6b" "\xef\xb2\xfb\xd7\xc1\x47\xfb\xfe\x3f\x00\x00\x00\xcc\x28\x77\xff\xbf" "\xe3\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x3f\x71\x8b\xfd\x0f\x00" "\x00\x00\xd3\xc8\xdd\xff\xdf\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xbd\xff" "\x5f\xff\xaf\xff\xd7\xff\xef\x93\xfe\x5f\xff\xbf\x44\xff\xaf\xff\xdf" "\xf2\xf3\xeb\xff\xf5\xff\xac\x1b\xad\xff\xcf\xdd\xff\xbf\x00\x00\x00" "\xff\xff\xb2\xaf\x9c\xa7", 24401); syz_mount_image( /*fs=*/0x20000040, /*dir=*/0x20000240, /*flags=MS_RDONLY|MS_NOSUID|MS_NODIRATIME|MS_NOATIME*/ 0xc03, /*opts=*/0x20000180, /*chdir=*/2, /*size=*/0x5f51, /*img=*/0x20007240); break; case 1: memcpy((void*)0x20000040, "/dev/mISDNtimer\000", 16); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x20000040ul, /*flags=*/0ul, /*mode=*/0ul); if (res != -1) r[0] = res; break; case 2: memcpy((void*)0x20000040, ".\000", 2); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000040ul, /*flags=*/0ul, /*mode=*/0ul); if (res != -1) r[1] = res; break; case 3: *(uint64_t*)0x20000080 = 0; *(uint64_t*)0x20000088 = 0xd000000; *(uint64_t*)0x20000090 = 0x200000; syscall(__NR_ioctl, /*fd=*/r[1], /*cmd=*/0xc0185879, /*arg=*/0x20000080ul); break; case 4: res = syscall(__NR_ioctl, /*fd=*/r[0], /*cmd=*/0x80044940, /*arg=*/0x200030c0ul); if (res != -1) { r[2] = *(uint64_t*)0x20003228; r[3] = *(uint64_t*)0x20003230; } break; case 5: memcpy((void*)0x20000180, "msdos\000", 6); memcpy((void*)0x20000100, ".\000", 2); *(uint16_t*)0x200013c0 = r[3]; sprintf((char*)0x200013c2, "0x%016llx", (long long)-1); *(uint8_t*)0x200013d4 = r[0]; *(uint32_t*)0x200013d5 = -1; sprintf((char*)0x200013d9, "%023llo", (long long)0); memcpy( (void*)0x200013f0, "\xde\xfd\xd6\xf2\x4c\xb9\xac\xb7\xfe\x0b\x0d\xc9\x2a\x09\x31\x35\x91" "\x2e\xbe\xf4\x26\x73\x1f\xfe\x88\x13\x8f\x2b\x03\x79\x1e\xdb\x32\xe2" "\xba\x39\x24\x18\x8f\x2c\x07\xda\x77\xa1\xd7\x52\x90\xaf\x3d\xb4\x9e" "\x3a\xee\xdb\xaa\xbd\xfc\x89\x7f\xf5\xfe\xb6\x7e\x05\xcb\x1f\x92\x32" "\x78\x50\x60\x34\xc9\x92\x85\x99\x4c\x8d\x2a\x07\xe7\x73\x2f\x9e\x46" "\x66\xbe\xdc\x57\xef\xbc\x75\xed\xa5\x31\xe1\x09\x45\xea\xb9\x81\x0d" "\xce\x4d\xf5\xcb\x44\x68\xfe\xe9\xdf\x15\xba\xd9\x08\xce\x6d\x2c\xf9" "\x00\xc4\x54\x1e\xbe\x94\x68\x14\x28\xac\x22\x02\xf0\x13\x2d\xdf\xd0" "\x0b\xb4\xd2\x4a\xce\x8c\x51\x39\x14\x43\x18\x14\xc2", 149); *(uint32_t*)0x20001485 = -1; *(uint32_t*)0x20001489 = -1; *(uint8_t*)0x2000148d = -1; *(uint64_t*)0x2000148e = r[2]; syz_mount_image( /*fs=*/0x20000180, /*dir=*/0x20000100, /*flags=MS_I_VERSION|MS_PRIVATE|MS_SYNCHRONOUS|MS_STRICTATIME|MS_REMOUNT|MS_RELATIME|0x240c*/ 0x1a4243c, /*opts=*/0x200013c0, /*chdir=*/0, /*size=*/0, /*img=*/0x20000000); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); const char* reason; (void)reason; use_temporary_dir(); loop(); return 0; }