// https://syzkaller.appspot.com/bug?id=3229b6c5a916f7d5c1b6575544bd616d7dacb8ee // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static 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 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; retry: const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; 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")) { } } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } void execute_one(void) { memcpy((void*)0x20005d80, "bcachefs\000", 9); memcpy((void*)0x20005dc0, "./file0\000", 8); *(uint64_t*)0x20000300 = -1; *(uint64_t*)0x20000308 = 0; sprintf((char*)0x20000310, "0x%016llx", (long long)-1); sprintf((char*)0x20000322, "%023llo", (long long)-1); *(uint32_t*)0x20000339 = -1; *(uint16_t*)0x2000033d = -1; memcpy((void*)0x2000033f, ",euid=", 6); *(uint64_t*)0x20000345 = -1; *(uint64_t*)0x2000034d = -1; *(uint8_t*)0x20000355 = -1; *(uint8_t*)0x20000356 = -1; memcpy( (void*)0x200060c0, "\x78\x9c\xec\xdd\x7d\x90\x1c\xe5\x99\x18\xf0\xee\x99\x59\xed\x4a\xab\x8f" "\x95\x2c\x9b\x15\x12\x62\x31\xb2\x1d\x71\xc1\x16\x28\x10\xcb\x77\x8e\x36" "\xce\xd9\xb1\x1d\xd9\xc8\xc2\x02\x2c\x4e\x27\x09\x58\x61\x1d\x42\x12\xfa" "\x40\x20\x5d\xc2\x57\x0e\x08\x26\x29\x55\x41\x1d\x04\xe2\x94\x0e\x28\x72" "\x95\xba\x4a\x70\xe9\x12\xc2\x9d\x52\x25\x63\xc0\x57\xbe\x2a\x0a\x99\xf8" "\x0f\x8e\x7c\x1d\x15\x9c\x3f\xe2\x23\xaa\xb3\xc4\x11\xc9\xe5\x4d\xed\x6e" "\xf7\xee\x74\x6f\xbf\xd3\xb3\x33\xb3\x42\xe0\xdf\xaf\x4a\x3b\xd3\xbd\xcf" "\x3c\xef\xf3\xf4\xbc\xd3\xd3\xdd\xda\x9d\x8d\x00\x00\x00\xf8\x95\xf0\xca" "\xef\xed\x79\xf7\xeb\xe7\x7f\xf1\x47\xf7\x0e\x9d\xba\xeb\xcb\x7f\x72\xeb" "\x3d\x51\x6f\x75\x74\x7d\x4f\x1a\xd0\x97\xdc\xde\xf1\x7e\x55\xc8\x74\x5a" "\xfe\xe3\x33\x99\x67\xb6\xbb\xd6\x3f\x7a\x9b\x9f\x17\xe7\xfd\xe9\xc2\x77" "\xfb\xee\x5b\xf3\xb5\x87\x56\x7d\xe9\xc7\x9b\xff\x6c\xfe\xe0\xd2\x65\x43" "\x57\x7e\xef\xc8\x55\xf7\xdf\xf7\xe2\xe7\x7f\xf1\xe2\x63\x4f\xac\x29\x1b" "\x27\x9d\x4f\x97\x4c\x2c\xc7\x7f\x15\x47\xd1\xd2\xb7\x8f\x3c\x76\xff\xcb" "\x7f\x7e\xde\xc8\xba\x78\x64\xfc\xb8\xef\xee\x68\xfe\xfc\x78\xc1\xf7\xe7" "\xc7\xb9\x14\x2b\x4e\x47\x51\x74\xd3\x78\x9d\xd9\x6f\x1e\x39\xb5\x72\xeb" "\xc8\xed\x3d\xdf\xe9\xce\xac\x9f\x97\x4b\x62\xbe\xff\x6a\xeb\x49\xe6\xd9" "\xc1\x4d\x37\x3c\x75\xec\x96\xc1\x97\x8f\x0c\xec\x5a\xf9\xb3\x93\x57\xec" "\xbc\x7b\x22\x24\xee\xa9\x9b\x4f\x51\x34\x77\x73\xfd\xe3\xbb\xa2\x28\x9a" "\x99\xfc\x1b\x91\xce\xb6\xfe\xf4\xc1\xc9\xed\xda\x28\x8a\x66\xd5\x3d\xee" "\xb3\x25\x75\x5d\xdc\x64\xfd\x97\x06\x96\x97\x24\xb7\x33\x92\xdb\xde\x92" "\x3c\xe9\xf7\x2f\xca\x2d\xd7\x9a\xac\xa3\x96\xbb\xed\x6e\xf2\x71\xad\xaa" "\x4c\x73\xfe\xbc\xfc\xf6\xcb\xef\x8c\xa6\x4b\xda\xe7\xdc\xe4\xf6\xf9\xe4" "\xf6\x92\x29\xe6\xa9\xa6\xff\xe2\xa8\x12\x47\xb5\xf1\xf2\xb7\xc7\x13\x73" "\x24\xaa\x7b\xde\xe2\x28\x1e\x9d\xdb\x3d\xe3\xcb\x95\xd1\xe5\x68\x7c\x39" "\xca\x2f\xc7\xb9\xe5\x4a\x6e\xb9\xda\x95\xeb\x6b\x74\xdc\x64\xc3\x56\xe3" "\x38\xbb\x3e\x8d\xcb\xad\x4f\x77\xc7\xb5\x64\xfd\x45\xf5\xfb\xea\x02\xeb" "\x02\xeb\x17\x25\xb7\x3d\xc9\x0b\xf5\xbd\x74\x39\xca\xdf\x19\xd3\x3b\xe9" "\xce\x44\x1f\x51\x5d\x5d\x27\xce\xd6\xc4\x08\xa8\x04\x5e\x7b\xe9\xfa\xf1" "\xf2\x92\x27\xa3\x37\x59\xd7\x1b\x2f\x98\xf4\x98\xe1\x02\xe9\xf7\x4e\xfc" "\x70\xcb\x86\x77\xde\x38\xf0\x7c\x5f\xa0\x8e\xf8\xb9\x38\xc9\x1f\xb7\x94" "\x7f\x70\xe8\xc9\x63\xcf\x5e\x77\x74\x51\x7f\x28\xff\xe6\x4a\x92\xbf\xd2" "\x52\xfe\x57\xaa\xaf\x9e\x7e\xe6\x64\xff\xec\x60\xfe\x43\x69\xfe\x6a\x4b" "\xf9\xd7\xff\xf2\xa7\x0f\xde\x7b\xf5\xfe\x85\xc1\xed\x73\x22\xdd\x3e\xb5" "\x96\xf2\x2f\x7b\x78\xf6\xc1\x53\xfb\xd7\x75\x0f\x84\xf2\x1f\x4e\xf3\xf7" "\xb4\x94\xff\xca\x8d\x4b\x57\x5d\x70\x72\xdf\xed\xc1\xfa\x57\xa4\xdb\x67" "\x66\x4b\xf9\x7f\xf2\xc8\xf2\x33\x1b\x0f\xbd\x70\x34\x98\x3f\x4a\xf3\xcf" "\x6a\x29\xff\x9b\x4f\x3e\xbd\xa4\xba\xe8\xd1\xe3\xc1\xfc\xc7\xd2\xed\xd3" "\xdb\x52\xfe\x6b\x56\x3e\xbe\xfa\xab\x8b\xef\x7b\x22\xb8\xfd\x5f\x4b\xf3" "\xcf\x69\x29\xff\x86\xe3\xf7\x6f\xde\xf5\xd4\x4b\xcb\x83\xf3\x73\x6d\xba" "\x7d\xfa\x5a\xca\x7f\x7a\xf5\xeb\x6f\x9d\xe9\x5b\xf3\x74\x68\xdf\x19\x1f" "\x3e\xdb\xef\xb0\x00\x1f\x2e\x1f\x49\x8e\xb1\x1e\x4c\x96\x5b\x3d\xcf\x6c" "\x57\xdd\xf9\xc2\xe3\x03\xb5\xb1\x63\xbe\xd9\xc9\xbf\x39\x9d\x1c\x28\x27" "\xae\x3b\x77\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x80\x56\x3d\xba\xfa\x3f\xdc\x56\xbf\xfc\x89\xff\x73\xfb" "\xfa\xe3\xff\x71\xe9\xb6\x5a\xb2\xdc\x5d\x8b\xa2\x38\x8a\xa2\x77\xaa\x63" "\xcb\xe9\xfa\x19\x51\x14\xcf\x8c\xa2\x68\xcf\xde\x2d\xbb\xf7\x6e\xdb\x71" "\xf3\xc0\xef\xec\xdc\xb7\x7b\xc7\x96\xed\x03\x5b\xf6\x0e\x0c\xed\xd8\xbb" "\xfb\xce\x81\xbf\xf3\xb7\x07\x76\x0f\xed\xda\xbe\xe5\xce\x91\xef\xae\xb8" "\x74\xe5\xd8\xe3\x16\x8c\x66\x8b\xa2\x05\xf1\x05\x93\x6a\x19\x1e\x1e\x1e" "\x8e\xa2\x68\xa0\x7e\x5d\x3a\xde\x1f\x7c\xe5\xb9\xff\xb7\xfe\x89\xbf\xfe" "\x56\x14\xad\xf8\xe8\xeb\x4b\x6b\xc1\x7e\x3e\xf3\x5f\xdf\xfa\xe2\xc2\x82" "\xaf\x39\xf1\xe0\xf0\xda\x7f\x75\xc5\x23\x07\x66\xfc\xaf\x79\x63\x2b\xfa" "\x92\xba\xfa\x42\x75\xf5\x65\xd7\xa5\x15\xf4\x0e\xbe\xf6\x17\x5f\x78\xfe" "\x8d\x91\xba\x3e\xd6\xa8\xae\xc7\x5e\xbd\xf6\xff\x66\x0a\x1a\x5d\x31\x91" "\x27\x51\xe9\x8e\x2a\xa3\x77\xba\xe3\x59\x85\x75\x8c\x57\x3d\x51\xcf\xe8" "\xf6\xaa\x6d\xdd\xb6\x7d\x68\x45\xf9\xf6\x8d\x03\xdb\xf7\x53\x2f\xfd\xf1" "\xc9\x7f\x7f\xc7\xfa\x7f\x3e\xb6\x7d\x7b\x82\x7d\x34\xb9\x7d\x47\xb6\x6a" "\x6d\xf8\xa1\x9f\xdf\xfb\xa9\xbb\xbf\x30\xf4\xb9\x73\xf8\x79\x2f\xdb\xde" "\x75\x2d\x8c\xd6\x97\x6e\xbf\x9e\x64\x7b\xcf\x4d\xfa\x9a\x1b\xe8\xab\x12" "\xe8\xeb\xf6\x81\x37\x4f\xfc\x8b\x7f\xf7\x9f\x9f\xb9\x3b\x5a\x51\xfb\xf9" "\x85\x93\xc7\x2e\xeb\xab\x2b\x99\x00\x5d\xf1\xa2\xa6\xc6\x4d\x47\x98\x15" "\xcf\xcf\xc4\xf6\x24\xf1\xe9\x33\x9e\x3e\xee\x33\x7b\x6f\xdd\xf5\x99\x3d" "\x77\x1e\xb8\x74\xdb\xad\x5b\x6e\x1e\xba\x79\x68\xc7\xca\x95\x57\xac\xba" "\x6c\xe5\x65\x97\xaf\x5a\xf9\x99\xd1\xd6\xc7\xbe\x76\xac\xff\x74\xfc\x4f" "\x35\xd9\xff\xec\x24\xd3\xec\x78\x71\xe1\x76\xcb\xaf\x4d\xc7\xbd\x70\xf4" "\x6b\x35\x4a\xca\x4e\x6f\xea\xee\x64\x75\x45\xbd\x63\xb7\xb9\xed\x9c\x86" "\xe7\xbb\xee\x4d\xbe\xd7\x1b\x2f\x98\x94\x6b\xb8\x40\xfa\xbd\x13\x3f\xdc" "\xb2\xe1\x9d\x37\x0e\x3c\x1f\x7a\xe5\xc5\xcf\x8d\x8d\x38\x33\x9a\x33\x76" "\x1b\x2f\x09\x44\x6e\xcf\x3d\xb0\x3a\x5e\x70\xd1\xf8\x67\xe7\x75\xb9\xf3" "\xf7\x7b\xb6\xa7\x5f\x9b\x7b\x5d\x96\xd5\x55\x36\xaf\x46\xea\x2a\x9f\x57" "\xf5\x15\x35\xd8\x8f\xbd\x7a\xf1\x83\x3f\x7f\xea\x81\x7f\x79\x7d\x13\xfb" "\x8b\xba\xd0\xd1\xfa\xd2\x3a\x67\x8d\xbc\x5c\x2e\x8b\xea\x5e\xb7\x93\xb7" "\x55\x51\x5f\x4d\x3c\x3f\x83\x45\xdb\xe1\xc6\x4b\x77\xff\xf1\x9d\xdb\x36" "\x1c\x2a\xdb\x9f\xd7\x3f\x33\xf5\x5f\x73\xe2\xc1\xe1\xff\xb9\x24\xfe\xda" "\xbe\x3d\x7f\xb1\x7b\x6c\xc5\x59\x79\xbf\xac\x2f\xa8\xc5\xf7\xcb\xf1\xaa" "\x27\xea\x19\xdd\x5e\x3d\xc9\xf3\x71\xae\x6e\xdf\xee\xa8\x9a\xf4\xd5\x5b" "\x58\xd7\xba\xf8\xa9\xcf\x7f\xea\xd6\xa3\xbf\x36\x5e\xdf\x8c\x19\xd1\x1d" "\x5b\xf6\xee\xdd\x7d\xd9\xd8\xd7\x0f\x6a\x5f\x7f\x39\x63\xde\xc2\x6d\xf7" "\x2c\xbe\x60\x52\x5f\x97\x8f\x7d\x2d\xdb\xef\x5f\x98\x5b\x2e\xdd\xef\x57" "\x8a\xfb\x2b\xdb\xef\xe7\xc7\x99\x88\x2f\xce\x37\x90\x5b\xee\x8d\xaa\x2d" "\xbd\x4f\xac\xff\xe5\x4f\x1f\xbc\xf7\xea\xfd\x0b\x83\xef\x13\x27\x9a\x7d" "\x9f\xf8\xdd\xcc\x52\xb5\xcd\xf7\x89\x4a\xe0\xf5\xfe\xd0\x5f\x7f\x77\xe0" "\xdd\xeb\xbf\xf9\x6e\xd9\x7c\xba\x6a\xcf\xe2\xbb\x16\x16\x7c\xcd\xb7\x37" "\x38\xfc\xc2\x1f\xfd\xfa\x65\x9f\xbb\xf6\xea\x2f\x8d\xad\x38\x2b\xfb\xa1" "\xfa\x82\x5a\xdc\x0f\x8d\x57\x9d\xd4\x93\x6e\xaf\xd1\xfd\xd0\xe5\xe7\x4e" "\x1f\xef\xdf\xf3\x9c\x79\x21\xc6\x83\xc3\x17\x7e\xef\x93\xd7\x9c\x39\x75" "\xdb\x37\xc6\x56\x94\x6d\xdf\xf1\xe8\xa2\xed\xbb\xb2\x7c\x3f\x5f\x0d\xf4" "\x75\x7d\xd7\xc7\xe7\x3f\xf2\xb3\xc5\x1f\xef\xdc\xfc\xdd\xb3\xe9\x6f\x2e" "\xfe\xf4\xac\xd9\xe7\xd8\xfc\xed\x49\xb6\x6f\x4f\x60\xfb\x8e\x57\x9d\xd4" "\x53\xad\xdf\xbe\x9f\xbe\x71\xe7\xf6\x9b\xc6\x96\xcf\xdd\xe3\xb6\x31\xdd" "\x25\xe7\x3f\xe9\xfb\xce\x9e\x3b\x0f\xdc\xb2\x65\xfb\xf6\xa1\xdd\x7b\x9a" "\xeb\xab\xd9\xf7\xd3\x74\x9c\xfc\x56\x6e\xf5\xfd\x34\x7d\xf7\x58\x50\xd2" "\x57\xfa\x7c\x4d\xf4\x35\x7d\x77\x9a\xd9\x5e\xcd\xbe\xde\xd2\xfa\x6f\xca" "\xe5\x68\xf5\xf5\x06\x90\x9a\x78\x5f\x98\x91\x59\x9f\xdf\x7f\xa6\xd7\xfd" "\x96\xce\x8d\xd6\x7f\xfa\x81\x1f\xbc\x1a\x0f\x8c\xbd\x5f\x76\xea\x7a\x6b" "\x3a\xce\xf9\xb9\x37\xe6\x56\xaf\xb7\x96\x9d\x27\x7d\x3c\xb7\x9c\x3d\x4f" "\xaa\x45\x75\x7d\x8f\x99\x7c\x9e\x34\xfa\x90\xb2\xf3\xa4\xfc\x38\x65\xe7" "\x49\x17\xe7\x96\xcb\xcf\x63\x1e\x2c\xec\x24\xf4\xfc\x75\x25\xef\xbc\x45" "\xd7\x4d\x73\xf5\xd6\x46\x32\x84\xe6\x47\x7f\x92\xbf\x3f\x59\x4e\x8f\x37" "\x97\x7e\x3a\xba\xa2\xfa\xfc\x27\xbe\x12\x0f\x36\x37\x3f\x9a\x3d\x9e\x4e" "\xc7\xf9\x5b\xb9\x0d\xd4\xea\xf1\x74\xd9\xfc\x58\x16\x15\xd7\xd5\xe9\xf9" "\xf1\xc9\xdc\x83\xca\x9f\xef\x43\x85\x95\xf5\x04\x9e\x8f\xb2\xe7\x7b\x59" "\x26\xd1\xf0\x70\xbb\xe7\xe5\x7d\x81\xaa\xd3\xf3\xf2\xde\x28\x6e\x29\xff" "\xe0\xd0\x93\xc7\x9e\xbd\xee\xe8\xa2\x60\xfe\xcd\x95\x24\x7f\xa5\xa5\xfc" "\xaf\x54\x5f\x3d\xfd\xcc\xc9\xfe\xd9\xc1\xfc\x87\xd2\xfc\xb5\x96\xf2\x2f" "\x7b\x78\xf6\xc1\x53\xfb\xd7\x75\x07\xf3\x1f\x4e\xb7\x4f\x4f\x4b\xf9\xaf" "\xdc\xb8\x74\xd5\x05\x27\xf7\xdd\x1e\xcc\xbf\x22\xad\x7f\x66\x4b\xf9\x7f" "\xf2\xc8\xf2\x33\x1b\x0f\xbd\x70\x34\x98\x3f\x4a\xf3\xf7\xb6\x94\xff\x9a" "\x95\x8f\xaf\xfe\xea\xe2\xfb\x9e\x08\xe6\x7f\x2d\x4e\xc6\x19\x79\xed\x46" "\xd1\x91\x53\x2b\xb7\x8e\x2d\xc7\x51\x57\x32\xff\xd3\x3a\xba\x32\x75\x45" "\xf9\xe5\x38\xb7\x5c\xc9\x2d\x57\xeb\x97\x2b\x63\xff\xd7\x3b\x3e\x40\x35" "\x8e\xb3\xeb\xd3\xb8\xdc\xfa\xb4\x8f\x5a\xb2\xfe\xa2\xba\x1a\x8b\xac\x0f" "\xac\x4f\x5f\xb5\x3d\xc9\x0b\xfb\xbd\x74\x39\xca\xdf\x69\xbc\x3e\xdd\x3d" "\xa5\x75\x9d\x08\xbc\xff\x9c\x2d\x95\xba\x63\x8f\xa2\xf5\x65\xd7\x27\x3b" "\xe5\x9d\xb7\xfb\xff\xa0\x7e\x39\xfd\xff\xff\x74\x0e\x74\xd7\xc6\x9e\xbb" "\xcb\x73\xdb\xab\xec\xfd\x23\xbf\xf7\x4e\xf3\x05\xaf\xc3\x06\x2e\x61\x94" "\x1d\x2f\x4c\xfe\xff\xb7\x59\x2d\xbd\xfe\xde\x7c\xf2\xe9\x25\xd5\x45\x8f" "\x1e\x0f\x5e\x57\x3d\xd6\xec\x75\xd5\x5d\x99\xa5\x59\x25\xd7\x55\xdb\xad" "\x37\xb8\xbf\x38\x96\xee\x4f\xdb\xdb\x1f\xf5\x87\xf2\xbf\x96\xe6\x6f\xef" "\xfd\x20\x98\x3f\x79\x3f\x28\x9b\x67\x9f\xc8\x2d\x97\xce\xb3\xae\xe2\xf1" "\xca\xe6\x59\xfe\x38\xa5\x37\x9a\xd3\x52\xdf\x1b\x8e\xdf\xbf\x79\xd7\x53" "\x2f\x2d\x0f\xce\xb3\xb5\x63\x2f\xf8\xf2\x79\xf6\x68\x66\x69\x4e\xe9\x3c" "\x6b\xef\xff\xa5\x83\xf3\xec\xb9\xb8\x23\xdb\x23\x98\x7f\x6d\x67\x8e\x6b" "\x82\xf3\x2c\x39\xae\x29\x9b\x67\x97\xe4\x96\xdb\x9f\x67\xd9\xe3\xd1\xaf" "\x25\xb7\x77\xe4\xe2\x7b\x93\x2b\xc4\x53\xed\xfb\xf4\xea\xd7\xdf\x3a\xd3" "\xb7\xe6\xe9\xe0\x3c\x3b\xdc\xec\x3c\xfb\xc3\xcc\x52\x5f\xe9\x3c\x6b\xef" "\xf8\x36\xf8\x3c\x8d\x1f\xdf\x4e\xf7\xf1\xf9\x07\xfb\xf8\xf3\x7d\x3b\x3e" "\x4c\xfe\x3b\x77\xba\x8e\x0f\xd7\x05\xd6\x4f\xf5\xf8\xb0\x77\xd2\x9d\x89" "\x3e\xa2\x0f\xe2\xf1\x61\x60\x3f\x03\x00\x8d\xfc\xe8\xa1\x3b\xff\x77\xfd" "\x72\x7a\xfe\x9f\xbe\x77\xa7\xe7\xff\x3f\xc8\x3d\xae\xdd\xf3\xca\xfc\xcf" "\x43\xa5\x3a\x75\x5e\x19\xcc\x7f\xb8\x33\xe7\x2b\xc1\xe3\xd4\xf1\xf3\x95" "\xe9\x3e\xdf\x9a\xee\xe3\xec\xe9\x3d\xdf\x72\x1c\x1f\xc8\x3f\x7e\x1d\x79" "\xba\xaf\x0b\x4d\xef\x79\xa5\xf3\x90\x64\x39\xca\xdf\x19\xe3\x3c\x04\x00" "\x80\xf7\xc3\x45\xff\xe6\xbb\xbf\x59\xbf\x9c\x9e\xff\x8f\xff\xdc\x5b\xf2" "\xfb\xff\x2f\xa5\xcb\xb9\xc7\x3b\xcf\x0d\xe4\x3f\x6b\xe7\xb9\xd3\x7d\x9d" "\xc4\x79\x74\x61\xfe\x0e\xfd\x7c\x45\xf9\x75\xb0\xe9\xbe\x4e\xe5\x3a\x80" "\xeb\x00\xe5\x5c\x07\x00\x00\xf8\x70\xd8\xb4\x75\xf7\xd0\xd0\x9e\x5d\x5b" "\x6e\x1c\xda\xb4\x6d\xc7\xb6\xbd\xe3\xeb\xbb\x46\xcf\x9c\x26\xff\x9c\xea" "\xdf\x4d\x6e\xd7\xe6\xf2\x94\xfd\xfc\x74\x51\xfc\xac\x06\xf1\xdf\x08\xe6" "\xcf\xd6\xf3\xd9\x40\x7c\x48\x6d\xf4\x67\x5e\xa3\xe8\x86\x1b\xbf\x7d\xf9" "\xa6\x9b\x86\x6e\x9f\x6a\xff\xa1\xf1\xca\xfa\x2f\x8a\x6f\xd4\x7f\xfe\xfc" "\x22\xd4\xff\xaa\x40\x7c\x48\xbb\xfd\x87\xc6\x2b\xeb\xbf\x28\xbe\x51\xff" "\x57\x07\xf3\x67\xeb\xf9\x5c\x20\x3e\xa4\xdd\xfe\x43\xe3\x95\xf5\x5f\x14" "\xdf\xa8\xff\x6f\x06\xf3\x67\xeb\xf9\xf5\x40\x7c\x48\xbb\xfd\x87\xc6\x2b" "\xeb\xbf\x28\xbe\x51\xff\xf9\xdf\x07\x0b\xf5\xff\x1b\x81\xf8\x90\x76\xfb" "\x0f\x8d\x57\xd6\x7f\x51\x7c\xa3\xfe\xaf\x09\xe6\xcf\xd6\xf3\xf9\x40\x7c" "\x48\xbb\xfd\x87\xc6\x2b\xeb\xbf\x28\xbe\x51\xff\xd7\x06\xf3\x67\xeb\xf9" "\x7b\x81\xf8\x90\x76\xfb\x0f\x8d\x57\xd6\x7f\x51\x7c\xa3\xfe\xaf\x0b\xe6" "\xcf\xd6\xb3\x3a\x10\x1f\xd2\x6e\xff\xa1\xf1\xca\xfa\x2f\x8a\x6f\xd4\xff" "\xb7\x82\xf9\xb3\xf5\x0c\x06\xe2\x43\xda\xed\x3f\x34\x5e\x59\xff\x45\xf1" "\x8d\xfa\xdf\x10\xcc\x9f\xad\xe7\xef\x07\xe2\x43\xda\xed\x3f\x34\x5e\x59" "\xff\x45\xf1\x8d\xfa\xbf\x3e\x98\x3f\x5b\xcf\x17\x02\xf1\x21\x85\xfd\xc7" "\x51\xd3\xfd\x87\xc6\x2b\xeb\xbf\x28\xbe\x51\xff\xbf\x15\xcc\x9f\xad\xe7" "\x1f\x04\xe2\x43\xda\x7d\xfe\x43\xe3\x95\xf5\x5f\x14\xdf\xa8\xff\x8d\xc1" "\xfc\xd9\x7a\x7e\x33\x10\x1f\xd2\x6e\xff\xa1\xf1\xca\xfa\x2f\x8a\x6f\xd4" "\xff\x6f\x07\xf3\x67\xeb\xf9\x62\x20\x3e\xa4\xdd\xfe\x43\xe3\x95\xf5\x5f" "\x14\xdf\xa8\xff\x4d\xc1\xfc\xd9\x7a\xbe\x14\x88\x0f\x69\xb7\xff\xd0\x78" "\x65\xfd\x17\xc5\x37\xea\x7f\x73\x30\x7f\xb6\x9e\x7f\x18\x88\x0f\x69\xb7" "\xff\xd0\x78\x65\xfd\x17\xc5\x37\xea\x7f\x4b\x30\x7f\xb6\x9e\x2f\x07\xe2" "\x43\xda\xed\x3f\x34\x5e\x59\xff\x45\xf1\x8d\xfa\xbf\x21\x98\x3f\x5b\xcf" "\x57\x02\xf1\x21\xed\xf6\x1f\x1a\xaf\xac\xff\xa2\xf8\x46\xfd\xdf\x18\xcc" "\x9f\xad\xe7\xab\x81\xf8\x90\x76\xfb\x0f\x8d\x57\xd6\x7f\x51\x7c\xa3\xfe" "\xf3\x9f\x77\x18\xea\xff\x1f\x05\xe2\x43\xda\xed\x3f\x34\x5e\x59\xff\x45" "\xf1\x8d\xfa\x1f\x0a\xe6\xcf\xd6\xb3\x26\x10\x1f\xd2\x6e\xff\xa1\xf1\xca" "\xfa\x2f\x8a\x6f\xd4\xff\xd6\x60\xfe\xe2\xcf\x0d\xc8\xc7\x87\xb4\xdb\x7f" "\x68\xbc\xb2\xfe\x8b\xe2\x1b\xf5\x7f\x73\x30\x7f\xb6\x9e\xaf\x07\xe2\x43" "\xda\xed\x3f\x34\x5e\x59\xff\x45\xf1\x8d\xfa\xff\x76\x30\x7f\xb6\x9e\xab" "\x02\xf1\x21\xed\xf6\x1f\x1a\xaf\xac\xff\xa2\xf8\x46\xfd\x6f\x0b\xe6\xcf" "\xd6\xb3\x36\x10\x1f\xd2\x6e\xff\xa1\xf1\xca\xfa\x2f\x8a\x6f\xd4\xff\xef" "\x04\xf3\x67\xeb\xf9\x46\x20\x3e\xa4\xdd\xfe\x43\xe3\x95\xf5\x5f\x14\xdf" "\xa8\xff\x5b\x82\xf9\xb3\xf5\xac\x0b\xc4\x87\xb4\xdb\x7f\x68\xbc\xb2\xfe" "\x8b\xe2\x1b\xf5\xbf\x3d\x98\x3f\x5b\xcf\xd5\x81\xf8\x90\x76\xfb\x0f\x8d" "\x57\xd6\x7f\x51\x7c\xa3\xfe\x6f\x0d\xe6\xcf\xd6\xf3\xcd\x40\x7c\x48\xbb" "\xfd\x87\xc6\x2b\xeb\xbf\x28\xbe\x51\xff\x3b\x82\xf9\xb3\xf5\xac\x0f\xc4" "\x87\xb4\xdb\x7f\x68\xbc\xb2\xfe\x8b\xe2\x1b\xf5\xbf\x33\x98\x3f\x5b\xcf" "\x35\x81\xf8\x90\xc9\xfd\xc7\xd1\x54\xfa\x0f\x8d\x57\xd6\x7f\x51\x7c\xa3" "\xfe\x77\x05\xf3\x67\xeb\xb9\x36\x10\x1f\xd2\xee\xf3\x1f\x1a\xaf\xac\xff" "\xa2\xf8\x46\xfd\xdf\x16\xcc\x9f\xad\xe7\xba\x40\x7c\x48\xbb\xfd\x87\xc6" "\x2b\xeb\xbf\x28\xbe\x51\xff\xbb\x83\xf9\xb3\xf5\x7c\x2b\x10\x1f\xd2\x6e" "\xff\xa1\xf1\xca\xfa\x2f\x8a\x6f\xd4\xff\x9e\x60\xfe\x6c\x3d\x1b\x02\xf1" "\x21\xed\xf6\x1f\x1a\xaf\xac\xff\xa2\xf8\x46\xfd\xef\x0d\xe6\xcf\xd6\x73" "\x7d\x20\x3e\xa4\xdd\xfe\x43\xe3\x95\xf5\x5f\x14\xdf\xa8\xff\x7d\xc1\xfc" "\xd9\x7a\x7e\x2b\x10\x1f\xd2\x6e\xff\xa1\xf1\xca\xfa\x2f\x8a\x6f\xd4\xff" "\xed\xc1\xfc\xd9\x7a\x36\x06\xe2\x43\xda\xed\x3f\x34\x5e\x59\xff\x45\xf1" "\x8d\xfa\xdf\x1f\xcc\x9f\xad\xe7\xb7\x03\xf1\x21\xed\xf6\x1f\x1a\xaf\xac" "\xff\xa2\xf8\x46\xfd\xe7\x3f\x07\x32\xd4\xff\xa6\x40\x7c\xc8\x78\xff\x7b" "\x77\x0f\x0d\x6d\xda\xb7\xeb\xa6\x2d\x7b\x87\x36\xed\xd8\x79\xd3\xd0\x9e" "\x4d\xfb\x77\x6f\xdb\xbb\x77\x28\x39\x50\x6b\xf7\xf7\xca\xc2\xbf\x17\xf4" "\x3e\xff\x22\x0b\x0d\x65\x5e\x1f\x63\x93\x64\xdb\x8e\x3d\x43\xbb\x27\xef" "\xbf\x67\x36\x9c\xbf\xf5\x73\x22\x1a\xfd\xb5\xa7\x99\x63\xb7\xf1\xc7\x9a" "\x8a\xcf\x7f\xec\x75\xab\xb3\xe6\x5c\x99\xef\x5d\x51\xad\xe1\xf6\x3a\x3f" "\xb7\x3c\x2f\xf9\x3c\xda\x79\x81\xcf\xa3\xcd\xc7\xa7\x69\x17\x8f\xde\x99" "\xfc\x79\xb4\xf9\x61\x6b\x25\x9f\xe3\x5a\xb6\x7f\xca\x8f\x1f\xda\x3f\xc5" "\x0d\xe2\x8b\xf6\xaf\xa1\xfd\x59\xd9\xfb\xdf\x94\xf7\x7f\xa5\xf3\xbb\xa7" "\x61\xff\xf9\xd5\xdd\xc9\x2f\xf6\x75\xc7\x1f\x6d\x2a\x3e\x6a\xf0\xf7\xdd" "\x9a\x9b\xaf\xed\xfd\xde\x69\x70\xbe\xbe\xd6\xdc\x7c\xcd\x7f\xee\x7a\xd9" "\x7c\xcd\xc7\x4f\x75\xbe\xf6\xb6\x39\x5f\xf3\xe3\x87\xe6\x53\xa5\x41\x7c" "\xa3\xe3\xa1\x66\xe7\xeb\x86\x40\x7c\xaa\xf9\xf9\x19\x07\xfb\x2d\x9a\x57" "\x53\xfd\x3b\x83\x69\xda\x29\xfd\x9d\xc1\xdc\x97\x49\x5a\xf8\x5b\x06\xcd" "\xbf\x1e\xda\xfb\x3d\xf2\xe0\xeb\x21\x29\xba\xec\xf5\x90\xff\x3d\xee\xb2" "\xd7\x43\x3e\x7e\xaa\xaf\x87\x99\x6d\xbe\x1e\xf2\xe3\x97\xbd\x1e\x8a\xe2" "\x1b\x9d\x1f\x37\xfb\x7a\xb8\x36\x10\x1f\xd2\xfc\x7c\x68\xef\x73\x0b\x82" "\xf3\x61\x45\x73\xf3\x21\xff\x77\xac\xca\xe6\x43\x3e\x7e\xaa\xf3\xa1\xa7" "\xcd\xf9\x90\x1f\xbf\x6c\x3e\x14\xc5\x37\xba\x5e\xd8\xec\x7c\xf8\x66\x20" "\xbe\x59\xcd\xcf\x8f\xf6\x3e\x57\x24\x38\x3f\x36\x37\x37\x3f\xf2\x7f\x4f" "\xa2\x6c\x7e\xe4\xe3\xa7\x3a\x3f\xe2\x36\xe7\x47\x7e\xfc\xb2\xf9\x51\x14" "\xdf\xe8\xff\x53\x9a\x9d\x1f\xdf\x08\xc4\xa7\x32\xef\x9f\x5b\xf7\x8c\x9e" "\xd4\x6f\xdb\xb2\x7d\xdb\x81\xdc\x0f\x60\xf4\x25\xef\x9f\xef\xf7\xfb\xe1" "\x59\x79\x5f\xfe\x9b\xdf\xf8\xcb\xf7\xc6\xbe\x24\x75\x54\x26\xd5\x51\x76" "\x3c\x11\xe7\xea\x98\x9f\x54\x32\x3f\xf4\x77\x0f\x03\x75\xdf\xf8\x5f\xfe" "\xed\xfa\x1f\xfc\xe2\x81\xef\x46\xd1\x8a\x8f\x56\x97\x84\xeb\x9e\x28\x79" "\xe2\x4b\x4e\x3c\x38\xbc\xe0\xae\x65\xcf\x5e\xf7\xb1\xe3\x5f\x18\xa9\xbf" "\xd2\xb0\xfe\xf1\xc8\xf4\xef\x16\x97\xfc\xbd\xe3\x7c\x7c\xda\x4f\x6d\xfb" "\xce\x3d\x7b\x7f\x6d\xeb\xce\x7d\x3b\x9a\xfd\x89\xab\xc6\xd2\xcf\x43\xa9" "\x8c\x2f\x4f\xd3\xe7\xa1\x24\x2b\xab\x4d\x7e\xbe\x49\xe8\xf7\x09\xa6\xfa" "\xf9\x26\x5d\x93\xee\x9c\x9b\x9a\xfe\x7c\x13\x80\x0f\x89\x79\x87\x9f\x9b" "\x53\xbf\x9c\x7e\xfe\x5f\xfa\x7e\xd4\x9f\xec\xfb\x66\x26\x3b\xc0\x74\x7d" "\xf3\xc7\xd9\xed\x7d\xbe\x5e\xf0\x38\xfb\x50\x73\xc7\xd9\xcb\xf3\xfd\x96" "\x1c\x67\xe7\xe3\xd3\x7e\x9b\x3d\xce\xae\xb4\x79\x9c\x9d\x1f\xbf\xec\x38" "\xbb\x28\xbe\xd1\xcf\xed\x35\x7b\x9c\xfd\xf5\x40\xfc\x54\x65\xe7\xc9\xc8" "\x04\x19\x9d\x1f\x43\x9b\xf6\xef\xdc\x5d\xff\x33\x71\xd3\xfd\x77\x6b\x3b" "\x5f\xef\xf4\xfe\x1d\xdf\xf6\xeb\xeb\xd4\xe7\x36\x66\x27\x6a\x7a\xfd\xa3" "\x55\xcd\xd7\x3f\xbd\x9f\x0b\x39\xfd\xf5\x4f\xef\xdf\x01\x9e\xfe\xfa\xa7" "\xf7\xef\x3c\xb7\xea\xac\x9d\x2f\x25\x1f\x16\x59\xf6\xf9\x91\x65\xe7\x51" "\xa1\xdf\x4b\x9f\xea\x79\xd4\x8c\x49\x77\xce\x4d\xce\xa3\x00\xe0\xdc\xf7" "\xcf\x76\xbf\xfd\xaf\xeb\x97\xd3\xf3\xff\xe4\x2c\x76\xfc\xfc\xff\x3b\xc9" "\x72\xb5\xc3\xe3\x4f\xf7\x79\xd4\x74\x9f\x57\x4e\xf7\x71\xf2\x07\xff\xf3" "\xf7\xa7\xf7\x3c\xc8\xf9\x40\x83\xc1\xce\x01\xce\x07\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8a\xfd\xe1\x7f" "\xff\x4f\xdf\xaf\x5f\xee\xae\xf5\x8f\xde\xbe\xf2\x7b\x7b\xde\xfd\xfa\xf9" "\x5f\xfc\xd1\xbd\x43\xa7\xee\xfa\xf2\x9f\xdc\x7a\xcf\x79\x7f\xba\xf0\xdd" "\xbe\xfb\xd6\x7c\xed\xa1\x55\x5f\xfa\xf1\xe6\x3f\x9b\x3f\xb8\x74\xd9\xd0" "\x95\xdf\x3b\x72\xd5\xfd\xf7\xbd\xf8\xf9\x5f\xbc\xf8\xd8\x13\x6b\x4a\x07" "\xea\x1b\xbb\xb9\x24\x59\xec\x89\xa2\xf8\xaf\xe2\x28\x5a\xfa\xf6\x91\xc7" "\xee\x7f\xf9\xcf\xcf\x1b\x59\x17\x8f\x8c\x1f\xf7\xdd\x1d\xcd\x9f\x1f\x2f" "\xf8\xfe\xfc\x38\x97\x61\xc5\xe9\x28\x8a\x6e\x1a\xaf\x33\xfb\xcd\x23\xa7" "\x56\x6e\x1d\xb9\xbd\xe7\x3b\xdd\x99\xf5\xf3\x72\x49\xf2\x7d\x45\xbd\xd5" "\xb4\x9e\x4c\x9d\xd1\x1d\xa5\x1d\xf1\x01\xd4\x93\xcc\xb3\x83\x9b\x6e\x78" "\xea\xd8\x2d\x83\x2f\x1f\x19\xd8\xb5\xf2\x67\x27\xaf\xd8\x79\xf7\x44\x48" "\xdc\x53\x37\x9f\xa2\x68\xee\xe6\xfa\xc7\x77\x45\x51\x34\x33\xf9\x37\x22" "\x9d\x6d\xfd\xe9\x83\x93\xdb\xb5\x51\x14\xcd\xaa\x7b\xdc\x67\x4b\xea\xba" "\xb8\xc9\xfa\x2f\x0d\x2c\x2f\x49\x6e\x67\x24\xb7\xbd\x25\x79\xd2\xef\x5f" "\x94\x5b\xae\x35\x59\x47\x2d\x77\xdb\xdd\xe4\xe3\x5a\x55\x99\xe6\xfc\x79" "\xf9\xed\x97\xdf\x19\x4d\x97\xb4\xcf\xb9\xc9\xed\xf3\xc9\xed\x25\x4d\x3c" "\xb6\xbe\xc6\x6a\xfa\x2f\x8e\x2a\x71\x54\x1b\xff\xd6\xf6\x78\x62\x8e\x44" "\x75\xcf\x5b\x1c\xc5\xa3\x73\xbb\x67\x7c\xb9\x32\xba\x5c\x9f\x3b\xb7\x1c" "\xe7\x96\x2b\xb9\xe5\x6a\x57\xae\xaf\xd1\x71\x93\x0d\x5b\x8d\xe3\xec\xfa" "\x34\x2e\xb7\x3e\xdd\x1d\xd7\x92\xf5\x17\xd5\xef\xab\x0b\xac\x0b\xac\x5f" "\x94\xdc\xf6\x24\x2f\xd4\xf7\xd2\xe5\x28\x7f\x67\x4c\xef\xa4\x3b\x13\x7d" "\x44\x75\x75\x9d\x38\x5b\x13\x23\xa0\x12\x78\xed\xa5\xeb\xc7\xcb\x4b\x9e" "\x8c\xde\x64\x5d\x6f\xbc\x60\xd2\x63\x86\x0b\xa4\xdf\x3b\xf1\xc3\x2d\x1b" "\xde\x79\xe3\xc0\xf3\x7d\x81\x3a\xe2\xe7\xe2\x24\x7f\xdc\x52\xfe\xc1\xa1" "\x27\x8f\x3d\x7b\xdd\xd1\x45\xfd\xa1\xfc\x9b\x2b\x49\xfe\x4a\x4b\xf9\x5f" "\xa9\xbe\x7a\xfa\x99\x93\xfd\xb3\x83\xf9\x0f\x65\xf7\x30\x53\xcd\xbf\xfe" "\x97\x3f\x7d\xf0\xde\xab\xf7\x2f\x0c\x6e\x9f\x13\xe9\xf6\xa9\xb5\x54\xff" "\xb2\x87\x67\x1f\x3c\xb5\x7f\x5d\xf7\x40\x28\xff\xe1\x34\x7f\x4f\x4b\xf9" "\xaf\xdc\xb8\x74\xd5\x05\x27\xf7\xdd\x1e\xac\x7f\x45\xba\xfd\x67\xb6\x94" "\xff\x27\x8f\x2c\x3f\xb3\xf1\xd0\x0b\x47\x83\xf9\xa3\x34\xff\xac\x96\xf2" "\xbf\xf9\xe4\xd3\x4b\xaa\x8b\x1e\x3d\x1e\xcc\x7f\x2c\xdd\x3e\xbd\x2d\xe5" "\xbf\x66\xe5\xe3\xab\xbf\xba\xf8\xbe\x27\x82\xdb\xff\xb5\x34\xff\x9c\x96" "\xf2\x6f\x38\x7e\xff\xe6\x5d\x4f\xbd\xb4\x3c\x38\x3f\xd7\xa6\xdb\xa7\xaf" "\xa5\xfc\xa7\x57\xbf\xfe\xd6\x99\xbe\x35\x4f\x87\xf6\x9d\xf1\xe1\xb3\xfd" "\x0e\x0b\xf0\xe1\xf2\x91\xe4\x18\xeb\xc1\x64\xb9\xd5\xf3\xcc\x76\xd5\x9d" "\x2f\x3c\x3e\x50\x1b\x3b\xe6\x9b\x9d\xfc\x9b\xd3\xc9\x81\x72\xe2\xba\x73" "\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x08\xd9\x39\x5c\xdd\x57\xbf\xfc\xd6\xd1\x87\xae" "\xfa\xf6\xff\xd8\xf4\xdf\x6a\x71\x14\xc5\x81\xc7\x0c\x17\x48\xbf\x57\x9d" "\x31\x38\x38\xd0\x42\x1d\xcb\x1e\x9e\x7d\xf0\xd4\xfe\x75\xdd\xe9\xf2\xc8" "\xd8\xfd\x2d\xe4\x01\x00\x00\x00\x26\x5b\xfc\xe6\x03\xb7\xd5\x2f\xa7\xe7" "\xe1\x95\x64\x39\x8e\x7a\xa2\xfe\x68\x7f\x3c\x33\x5a\x5c\xf8\xf8\xf4\x1a" "\xc1\xe2\x74\x29\xce\xae\xcf\x5f\x43\x98\x39\x11\xd9\x91\x3c\x95\x0e\xe5" "\xa9\x76\x28\x4f\xad\x43\x79\xba\x3a\x94\x67\x46\x87\xf2\x74\x77\x28\x4f" "\x4f\x49\x9e\x9e\xa8\xb9\x3c\x33\x1b\xe6\xa9\x34\x5d\xcf\xac\x0e\xe5\xe9" "\xed\x50\x9e\xd9\x1d\xca\x33\xa7\x43\x79\xe6\x76\x28\xcf\xbc\x0e\xe5\xe9" "\x6b\x98\xa7\xf9\x79\x38\xbf\x43\x79\x16\x74\x28\xcf\x47\x1a\xe7\x39\xdc" "\x6c\x9e\x85\x1d\xaa\xe7\xa3\x1d\xca\xf3\xb1\x0e\xe5\x39\xaf\x43\x79\xf2" "\xd7\x94\xa7\x3a\x0f\xe7\x24\x91\xe7\x87\xf2\x8c\xde\xa9\x96\xe6\xa9\xc5" "\xd5\xf1\x6f\x14\x5d\x4f\x4f\xc7\xb9\xa0\xcd\x71\x7a\x9b\x1c\x27\x7f\xcd" "\x7e\xaa\xe3\xcc\x6c\x72\x9c\x8b\xdb\x1c\xa7\xa7\xc9\x71\x3e\xd9\xe6\x38" "\x71\x93\xe3\x2c\xcf\x3d\xae\x32\xc5\x71\x2a\x25\xe3\xa4\xf3\xf6\x8e\x50" "\x3f\xe9\x52\x93\xf3\xff\xce\x0e\xe5\x39\xd0\xa1\x3c\x07\x3b\x94\xe7\x77" "\x3b\x94\xe7\x1f\x77\x28\xcf\x3f\xe9\x50\x9e\xbb\xda\xcc\x03\x10\xf2\xfb" "\x2f\x5e\xf2\x47\xf5\xcb\xe9\xf9\x7f\x7a\xfe\x19\x47\x7d\x51\x77\xed\xf2" "\x68\x56\xb2\xc7\xc9\x5f\x05\x48\xcf\x77\x2f\x1c\xfd\x3a\xf9\xfd\x2e\xb4" "\x43\x4a\xf3\x2d\xc9\xad\xef\x2a\xcb\x97\x3f\xc1\xce\xe5\xbb\x70\xaa\xf5" "\xe5\x2f\x20\xe4\xf2\x7d\xbc\x61\xbe\xda\xa4\xf3\xd5\x82\x7c\xb5\xfa\x7c" "\xcb\x3a\x94\x0f\x00\x00\x00\xa6\xe2\x9f\x9e\x3e\x98\xf9\xaf\xb9\xc9\xe7" "\xff\xfd\x51\x77\x6d\xe1\xf8\xf9\xeb\x27\x72\x8f\x2f\x3d\x5f\xcf\xff\x47" "\x76\x22\xcd\x77\x49\x87\xf2\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\xff\xd9\xb5\xd7" "\x18\xb9\xca\xf2\x01\xe0\xef\xd9\x99\x9d\x99\xff\x72\xe9\x42\xda\x32\xa5" "\xb7\x4d\xdb\x3f\x85\x10\x7a\xa1\xa9\x11\x54\x98\x34\x91\x04\x23\x6c\x11" "\x5b\x2e\x0d\x59\x2b\x2c\x6c\xc3\xd2\x42\xb7\x05\x5a\x35\x45\x30\xb6\xd9" "\x04\x83\x16\x2f\xdc\x3e\x58\x90\x18\x42\x04\x12\x92\x06\x5d\x13\x0c\x28" "\xf1\x83\x8d\x0d\x62\xb8\xb8\x2e\xac\x04\xbe\x10\x41\x7a\x03\x8a\x8e\x99" "\xdd\x73\x76\xcf\xce\xce\xb0\xcb\x28\xad\xd5\xdf\x2f\xe4\x9c\x79\xce\x79" "\x9e\xf7\x79\xcf\x21\x21\x79\xce\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xf9\xfe\xf8\xfd\xbf\x3d\x9b\x8e" "\x07\xfb\x7a\xdb\xbb\x06\x3a\xfa\x43\x14\x2a\xff\xd4\x54\xae\x21\xb9\x97" "\xc9\x95\x4a\x6d\x0d\xec\xe3\x9d\xe7\xd6\x5e\xf9\xd7\x97\xb6\xee\x4e\xe2" "\x4a\xef\x7c\xb6\x81\x85\x00\x00\x00\x80\x71\x1e\x3f\x6f\xc6\xe9\xe9\x38" "\x99\xc3\x93\xd1\x3b\x0a\x85\x90\xcf\x2e\x0d\xf9\x28\x37\xa6\xae\x18\x7f" "\x07\x28\xc6\x71\x53\xeb\xf0\x79\xce\xa2\xb0\x3c\xb3\xfb\xff\x2f\x8c\x4a" "\x4d\x43\xf1\xc9\xd1\x49\x63\xea\x0a\x71\x5d\x21\x8e\x33\x71\x5d\xcf\x96" "\xad\xd7\xaf\xed\xee\xee\xdc\xf8\x09\xfe\xa8\xf4\xa9\x7e\x8e\xea\xfd\x44" "\x21\x0c\x7d\xbe\x98\x73\x62\x58\xb5\x68\xfb\x33\x7b\xa2\xb6\xe1\xe7\x68" "\x99\xe0\x39\x9a\xe2\xba\xc5\x9b\x6e\xb8\x71\x71\xcf\x96\xad\x67\xad\xbb" "\x61\xed\x75\x9d\xd7\x75\xae\x5f\xb6\x6c\xf9\x39\x4b\x97\x2d\x3d\xfb\x9c" "\x65\x8b\xaf\x5d\xd7\xdd\xb9\x64\xf8\x18\xf2\x13\xac\x17\x42\x28\x8d\x7d" "\x2f\x13\xfc\x8b\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" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x80\x23\x60\xdb\x6f\x77\x7f\x2b\x1d\x0f\xf6\xf5\xb6\x77\x0d\x74\xf4\xb7" "\x44\x21\x44\x75\x6a\xca\x35\x24\xf7\x32\xb9\x52\xa9\xad\x81\x7d\xbc\x72" "\xdf\x83\xb3\x32\x33\xee\xde\x9b\xc4\x95\xde\xf9\x6c\x03\x0b\x01\x00\x00" "\x00\xe3\xfc\xea\xf1\x19\xe7\xa7\xe3\x64\x0e\x4f\x46\xef\x28\x14\x42\x3e" "\x9b\x0b\x99\x30\x63\x28\x9e\x37\x9a\x9a\x0d\xa1\x5c\x4e\xae\x2f\xa8\xba" "\x7e\x24\xf6\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x1c\x59\xfb\x0e\xb6\xff\x39\x1d\x0f\xf6\xf5\xb6\x77\x0d\x74\xf4\x1f\x17" "\x85\x10\xd5\xa9\x29\xd7\x90\xdc\xcb\xe4\x4a\xa5\xb6\x06\xf6\xb1\x7a\xd9" "\x8f\xce\xff\xc2\xcc\x3b\xee\x4d\xe2\x4a\xef\x62\x03\xeb\x00\x00\x00\x00" "\xe3\xbd\x70\x7a\xf3\x1d\xe9\x38\x99\xc3\x9b\xe2\x38\x0a\x85\x50\x0c\xf3" "\x43\x73\x34\x63\x4c\x5d\xf2\x6d\xe0\xd4\xaa\xf5\xaa\xf3\x92\x75\x66\x4f" "\x32\xaf\xfa\xdb\x41\xbd\xbc\xf9\x93\xcc\x3b\x6d\x92\x79\x67\x4c\x90\x77" "\x71\x7c\xbe\x35\x00\x00\x00\xc0\xb1\xe7\x8a\xd6\xdf\xad\x4e\xc7\xc9\xfc" "\xdf\x1c\xc7\x51\x68\x0d\xf9\x6c\x31\x64\xe2\x78\xa2\x39\x3e\xf9\x2e\x30" "\xb7\x2a\x2f\xa9\x9f\x68\xbe\x4f\xea\xe7\xd5\xa9\x9f\x68\xee\x4f\xea\xab" "\xe7\x7e\x00\x00\x00\xf8\x5f\x76\xd6\x9b\x4f\x7c\x98\x8e\xc7\xcf\xff\xc5" "\x90\xcf\x16\x46\xe6\xef\x89\xfe\x9e\x7e\x51\x7c\xf6\x77\x72\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x9e\x5f\x1f\xbc\xf0\x17\xe9\x78\xb0\xaf\xb7\xbd\x6b" "\xa0\xa3\x3f\x13\x85\x10\xd5\xa9\x29\xd7\x90\xdc\xcb\xe4\x4a\xa5\xb6\x06" "\xf6\xb1\xea\x1f\x6f\xec\xb8\xfd\xd2\x5b\xa6\x26\x71\xa5\x77\x3e\xdb\xc0" "\x42\x00\x00\x00\xc0\x38\x8f\xe6\x3e\x7d\x4b\x3a\x4e\xe6\xf0\x64\xf4\x8e" "\x42\x21\xe4\xb3\x2d\xa1\x39\x1c\x37\x34\xf7\xbf\x96\x9b\x32\x75\xdd\x37" "\x67\xce\x0e\x21\x94\x86\x12\x72\xb9\x70\xeb\xda\x4d\x9b\x36\x9e\x3d\x7c" "\x4c\xf2\xbe\x14\xed\xfa\xdc\xc2\x1b\xfa\xce\x1c\x97\xb7\x74\xf8\x78\xe4" "\x9f\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf8\x57" "\x2d\x7b\x64\xe7\x9a\x74\x3c\xd8\xd7\xdb\xde\x35\xd0\xd1\xff\x7f\x51\x08" "\x51\x9d\x9a\x72\x0d\xc9\xbd\x4c\xae\x54\x6a\x6b\x60\x1f\x2f\xec\x3c\xe3" "\xf0\x55\x77\x3d\xd5\x97\xc4\x95\xde\xc5\x06\xd6\x01\x00\x00\x00\xc6\x9b" "\xd5\xfd\xf4\x5f\xd2\x71\x32\x87\x27\xb3\x7f\x14\x0a\xa1\x18\x72\x21\x17" "\xa6\x0f\xc5\xe9\x59\xbf\x96\x7a\xdf\x0c\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x80\xff\x1e\x3d\x5b\xb6\x5e\xbf\xb6\xbb\xbb" "\x73\xa3\x1f\x7e\xf8\xe1\xc7\xc8\x8f\xa3\xfd\x5f\x26\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x68\xf9\xf9\xfa\xef" "\xbd\x9d\x8e\x07\xfb\x7a\xdb\xbb\x06\x3a\xfa\x0b\x51\x08\x51\x9d\x9a\x72" "\x0d\xc9\xbd\x4c\xae\x54\x6a\x6b\x60\x1f\x9f\xba\x6a\xce\x39\xb3\xf7\x6f" "\xbe\x39\x89\x2b\xbd\x8b\x0d\xac\x03\x00\x00\x00\x8c\xb7\xe6\xad\xcd\xfb" "\xd3\x71\x32\x87\x27\xb3\x7f\x14\x0a\xa1\x18\x9a\x43\x73\x98\x16\xc7\xe3" "\x0d\xcd\xff\xad\x47\x62\xb7\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xc0\xd1\x34\x37\x44\xa1\xfc\x31\x9d\xb2\xf2\x68\xef\x1a\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf8" "\x24\x1c\x78\x71\xd5\x7d\xe9\x78\xb0\xaf\xb7\xbd\x6b\xa0\xa3\xff\x84\x28" "\x84\xa8\x4e\x4d\xb9\x86\xe4\x5e\x26\x57\x2a\xb5\x35\xb0\x8f\x2b\xf7\x7e" "\xfb\x2b\x37\xee\x7a\xf6\x8c\x24\xae\xf4\xce\x67\x1b\x58\x08\x00\x00\x00" "\x18\xa7\xf9\xcd\x17\xbf\x9a\x8e\x93\x39\x3c\x19\xbd\xa3\x50\x08\xf9\xec" "\xac\x90\x0f\xb3\xe2\x2b\xdd\x63\x17\x88\x32\x49\x62\xcd\xef\x02\xa3\x75" "\x5f\x1f\x53\x96\x99\x74\xdd\x8e\xaa\x1d\x0f\xef\xac\x10\x7f\x87\x28\x8c" "\xec\x33\x0c\x7d\x76\x18\xad\xbb\xeb\x23\xeb\x8a\xf1\xd5\xa6\xd6\xc9\xbd" "\x27\x00\x00\x00\x38\x96\x4d\xdb\x71\xf1\x37\xd2\x71\x32\xff\x37\xc7\x71" "\x14\x5a\x43\x3e\x3b\x2d\x35\x57\xdf\x38\xa6\xbe\x65\xd2\x73\xfc\xdd\x63" "\xea\x4e\x98\x74\xdd\x4f\xc7\xd4\xb5\x4e\x50\xf7\x6f\x78\x25\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x40\x83\xee\x5c\xf9\xdc\x29\xe9\x78\xb0\xaf" "\xb7\xbd\x6b\xa0\xa3\x3f\x8a\x42\x88\xea\xd4\x94\x6b\x48\xee\x65\x72\xa5" "\x52\x5b\x03\xfb\x28\x75\xde\xf7\xf4\xc3\x97\xf7\xcd\x48\xe2\x4a\xef\x62" "\x03\xeb\x00\x00\x00\x00\xe3\x5d\xfa\x46\xe1\xbb\xe9\x38\x99\xc3\x93\xd9" "\x3f\x0a\x85\x50\x0c\xb3\xc3\x89\x61\xf6\xd0\xdc\x1f\x5a\xc7\xd6\x27\x79" "\xc7\x95\x7e\xff\xf2\x8a\xdd\x2f\x5d\x11\xc2\x92\xe9\xcf\xcf\xc9\xd6\xed" "\xf7\xc3\x3d\x97\xbd\x1d\x0e\x7d\xf6\xb5\xf7\x86\x0f\x43\x61\x08\x4d\x63" "\x93\x9a\x42\x98\x12\xf7\x8b\xea\xf4\xbb\xfa\x0f\x8f\xac\x7a\xe6\xc3\xed" "\x0f\x84\xb0\x64\x5a\x66\x56\xfd\x7e\xa3\xad\x46\x0f\x55\xa2\x52\xf9\xe4" "\x6d\x0b\x1e\xbe\x7c\xfa\xde\x15\x75\x97\x01\x00\x00\x80\x63\x5a\xe1\xc1" "\x03\x3f\x49\xc7\xc9\xfc\x9f\x4c\xd4\x51\x68\x0d\xf9\xec\xfa\xba\xf3\x7f" "\x92\xf7\xb1\xe6\xff\xf6\x9e\x99\xdb\xa6\xc6\xc7\xf8\x0b\x40\x55\x45\x53" "\x6b\xdc\xaf\xa9\x4e\xbf\xde\x77\x1f\x68\x3b\xb8\xe6\xcb\x07\x2b\xf3\xff" "\xf3\x73\x0a\x23\xff\xaf\xc0\xe9\xf3\xc7\xe6\xa7\x5b\xa5\x8f\x55\xdf\x1c" "\xa2\x52\x79\xee\x13\xa7\xad\x3e\x7c\xe0\xa6\x4b\x86\x2f\x24\xfd\x33\x75" "\xfa\xaf\x69\x9e\x77\xd2\xce\xb7\x66\xce\x4b\xfa\x17\xe2\xeb\xd7\x84\xc9" "\xf6\x0f\x55\xfd\x7b\x3a\x0e\xcd\x5f\xd4\x72\xfc\x05\x63\xfb\x87\x10\xda" "\x6a\xf5\xff\xf1\x85\x8f\xbf\xbf\xea\xde\x77\xaf\x18\xee\x5f\xff\x7d\x2f" "\xfe\xd3\xe0\xe7\xa7\x86\x0d\x3f\x28\x74\x27\xc7\xe1\x2b\xe3\xfb\xaf\xbc" "\x7f\xf9\xce\xad\xb9\xd7\xa7\x8c\xed\x1f\xd5\xe9\xbf\xf0\xd9\x27\xf7\x3f" "\x76\xeb\xaa\x3b\xab\x9f\xff\xd4\x6c\xad\xfe\xe3\x8f\x55\x2a\x5d\xb3\xe5" "\xde\x7d\xb7\x2f\xbc\x6d\x45\xe7\xb9\xa9\xfe\x4d\x75\xfa\xdf\xdc\xf6\xca" "\x3b\xdf\xf9\xd9\x2f\x1f\xaa\xf4\xdf\x37\xb7\x65\xa4\xff\xc2\x8f\x78\xfe" "\x09\xfb\xef\x99\xbf\x63\xdf\xae\xed\xf7\xac\x19\xfb\xfe\x4b\xb5\xfa\x5f" "\x7d\xd6\xc6\x27\xb7\xac\xbb\xf2\xae\xea\xe7\x6f\xa9\x5a\x38\xfd\xe6\xd3" "\xc7\xf1\xef\xff\xd5\x59\xd1\x45\x9b\x7b\x5e\xde\x58\x7d\x0b\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xd8\xd6\xf1\xd8\x07\x87\xd2\xf1\x60" "\x5f\x6f\x7b\xd7\x40\x47\x7f\x53\x14\x42\x54\xa7\xa6\x5c\x43\x72\x2f\x93" "\x2b\x95\xda\x1a\xd8\xc7\x6f\x32\x7b\x3e\x78\x68\x7f\xf1\xf8\x24\xae\xf4" "\x2e\x36\xb0\x0e\x00\x00\x00\x30\xde\x25\x2b\x5e\xbd\x2e\x1d\x27\x73\x78" "\x32\xfb\x47\xa1\x10\x8a\x21\x17\x72\xa1\x65\x68\xee\x3f\x79\xdb\x82\x87" "\x2f\x9f\xbe\x77\x45\x68\x8d\xef\xc7\xe7\x6c\xf7\x86\x9e\x4d\x67\x5e\xbb" "\x61\xf3\xfa\x6b\x8e\xf4\x23\x00\x00\x00\x00\x13\xd8\x75\xde\xfb\x2b\xd2" "\x71\x32\xff\x67\xe3\x38\x0a\xad\x21\x9f\x5d\x10\x9a\xe3\xf9\x7f\xe5\xfd" "\xcb\x77\x6e\xcd\xbd\x3e\x25\x99\xff\x43\x08\x43\x7f\xee\xcf\x5e\xbb\xae" "\xbb\x73\x49\x18\xf9\x4e\xd0\xd3\x71\x68\xfe\xa2\x96\xe3\x2f\x48\xf2\x32" "\xf1\xb9\x50\xc9\x5b\x74\xf5\x86\xee\xf8\x33\x41\xb2\xee\x53\x8f\x7e\x66" "\xe9\xb9\x97\x5d\x3a\x92\xdf\x94\xce\x3f\x7b\x34\x6f\xee\x13\xa7\xad\x3e" "\x7c\xe0\xa6\x4b\x6a\xe6\x2d\x1b\xcd\x7b\x75\x56\x74\xd1\xe6\x9e\x97\x37" "\xa6\xf6\x59\x1a\xc9\x5b\x3a\x9a\xd7\xbb\xef\xf6\x85\xb7\xad\xe8\x3c\x37" "\x79\x8e\x28\x3e\x17\xe2\xe7\x49\xf2\xf6\xcc\xdf\xb1\x6f\xd7\xf6\x7b\xd6" "\x24\x79\x4d\xf1\xb9\x25\x5e\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x08\xe1\xa4\xf7\xfe\xfe\xb5\x74\x3c\xd8\xd7\xdb\xde\x35\xd0\xd1\x1f\x32" "\x21\x44\x75\x6a\xca\x35\x24\xf7\x32\xb9\x52\xa9\xad\x81\x7d\x7c\x70\xfe" "\xf3\x83\x87\x5b\xbf\xf8\x60\x12\x57\x7a\xe7\xb3\x0d\x2c\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\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x3f\xd9\x81\x03\x01\x00\x00\x00" "\x00\x20\xff\xd7\x46\xa8\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xc2\x7e\xfd" "\x84\xc6\x51\xc5\x71\x00\x7f\x6f\x77\x6b\xb6\xdd\xb4\x6e\x6a\xa1\x89\xd6" "\x90\x62\x2f\x2d\x08\x85\x60\xb1\x07\x69\x2e\xfe\x41\xa2\x96\x8a\xa2\x85" "\x62\x14\xe3\x45\xc5\x82\x68\xc5\x1e\x6c\x1b\x0c\x45\x3d\x14\x14\x5a\xda" "\x4b\x69\xc5\xb3\x92\x43\x51\x7b\x88\xc5\x56\x51\x10\xab\x78\x10\x4f\x0a" "\x7a\x52\xc9\x21\x29\x92\x8a\x4a\x92\x79\x9b\xcd\xb4\x43\xe2\x68\x4b\x29" "\x9f\x0f\x0c\x6f\x7f\x6f\x76\xbe\xf3\xe6\xed\xdb\xd9\x1d\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x6b\xda\xe3" "\x3f\xde\x5b\x6b\xaf\x3b\x6a\xdd\xb3\xed\xb9\xd7\x5f\xbc\xf0\xe0\xcd\x77" "\x7f\x71\x60\x78\xea\xb5\xfb\x3e\x7a\x7e\xff\xda\x8f\xd7\x5c\x68\x8e\x0c" "\x3e\xf0\xc6\xd6\x7b\xbe\x19\xfa\xbc\x6b\xa0\x77\xc3\xf0\x96\x0f\xc6\x1e" "\x1a\x1d\x39\x73\xd7\x9f\x67\x0e\x1f\x1d\x5c\xf4\x44\xaf\xcc\x35\x9b\xb2" "\xb2\x1e\x42\xfc\x2d\x86\xd0\xfb\xf3\xd8\xe1\xd1\xb3\x5f\xae\x9d\xe9\x8b" "\x33\xe7\x8f\xcd\x7d\xa1\xab\x2b\xae\xfe\xa4\x2b\xe6\x12\x36\x4f\x87\x10" "\x9e\x6e\x8d\x73\xe1\xce\xb1\xa9\xfe\x67\x66\xda\xfd\x6f\x76\x2c\xe8\xbf" "\x31\x17\x92\xbf\xae\xd0\xa8\xa6\xf1\xcc\x69\x2e\x1c\x2f\xd7\x97\x7a\xb6" "\xce\xf6\x3e\xf1\xd4\x89\xf1\x67\x07\xce\x8e\xf5\xed\xee\xff\x75\xf2\x8e" "\x17\xf6\xcd\xbf\x25\xd6\xdb\xd6\x53\x08\xab\x86\xda\x8f\x5f\x16\x42\x58" "\x9e\x6d\x33\xd2\x6a\xeb\x4e\x07\x67\xed\xf6\x10\xc2\x8a\xb6\xe3\xee\x5c" "\x64\x5c\xb7\x2d\x71\xfc\xb7\x17\xd4\xeb\xb2\xf6\x86\xac\x6d\x2c\x92\x93" "\xf6\xaf\xcf\xd5\xb5\x25\x8e\xa3\x96\x6b\x3b\x96\x78\x5c\x59\x95\x2b\x9c" "\x9f\x97\x9f\xbf\xfc\xcd\xe8\x4a\x49\xd7\xb9\x2a\x6b\x4f\x65\xed\xa6\x7f" "\x99\x53\x4d\x5b\x0c\x95\x18\x6a\xad\xe1\x3f\x17\xe7\xd7\x48\x68\xfb\xdc" "\x62\x88\xb3\x6b\xbb\xde\xaa\x2b\xb3\x75\x68\xd5\x21\x5f\xc7\x5c\x5d\xc9" "\xd5\xd5\x65\xb9\xeb\x9a\x3d\x6f\x36\xb1\xd5\x18\x17\xf6\xa7\xf7\xe5\xfa" "\xd3\xed\xb8\x96\xf5\xaf\x6f\xbf\x57\x5f\xc6\x8e\x82\xfe\x9e\xac\xad\x67" "\x5f\xd4\x3f\x52\x1d\xf2\x2f\xe6\x34\x2e\x79\x31\x7f\x1d\xa1\x6d\x5c\x13" "\x57\x6b\x61\x14\xa8\x14\x7c\xf7\x52\x7f\x6b\x78\xd9\x87\xd1\xc8\xfa\x1a" "\x71\xf5\x25\xc7\xfc\x7d\x19\x69\xdf\xc4\x67\x4f\xee\xfc\xfd\xfb\x57\x4f" "\x35\x0b\xc6\x11\xdf\x8f\x59\x7e\x2c\x95\x3f\x30\x7c\x6c\xfc\xbd\xc7\x4e" "\xf7\x74\x17\xe5\x0f\x55\xb2\xfc\x4a\xa9\xfc\x73\xd5\xaf\xa6\xdf\x9d\xec" "\xee\x2c\xcc\x3f\x94\xf2\xab\xa5\xf2\x1f\xf9\xeb\x97\x83\x07\x1e\xde\xb3" "\xa6\x70\x7e\x26\xd2\xfc\xd4\x4a\xe5\x6f\x78\xab\x73\xef\xd4\x9e\x1d\x1d" "\x7d\x45\xf9\xc7\x53\x7e\xbd\x54\xfe\x96\x5d\xbd\x5b\x6f\x9d\x7c\xe9\xe5" "\xc2\xf1\x6f\x4e\xf3\xb3\xbc\x54\xfe\x77\x6f\x6f\xbc\xb8\xeb\xd0\x87\xa7" "\x0b\xf3\x43\xca\x5f\x51\x2a\xff\x87\x63\x27\xd7\x55\x7b\xde\x39\x5f\x98" "\x3f\x9e\xe6\xa7\x51\x2a\xff\xd1\xfe\x23\xdb\xee\xbf\x65\xe4\x68\xe1\xfc" "\x7f\x9d\xf2\x57\x96\xca\xdf\x79\x7e\x74\x68\xf7\x89\x4f\x37\x16\xae\xcf" "\xed\x69\x7e\x9a\xa5\xf2\xa7\xb7\x7d\xfb\xd3\xc5\xe6\xe0\xc9\xa2\x7b\x67" "\x3c\x7e\xb5\x7f\x61\x01\xae\x2f\x37\x65\xff\xb1\x0e\x66\x75\xd9\xe7\xcc" "\xff\xaa\xed\x79\xe1\x48\x5f\x6d\xee\x3f\x5f\x67\xb6\xad\xfc\x3f\x4f\x94" "\x13\xdb\x9e\x5d\x00\x00\x00\xe0\x1f\x76\xe0\x58\x00\x00\x00\x00\x40\x98" "\xbf\x75\x57\x16\x1b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xc0\x0a\x00\x00\xff\xff\x4f\x2c\x65\x87", 23918); syz_mount_image(/*fs=*/0x20005d80, /*dir=*/0x20005dc0, /*flags=MS_SYNCHRONOUS|MS_NOEXEC*/ 0x18, /*opts=*/0x20000300, /*chdir=*/5, /*size=*/0x5d6e, /*img=*/0x200060c0); } 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); use_temporary_dir(); loop(); return 0; }