// https://syzkaller.appspot.com/bug?id=8229b95c46a59cd18267cf2f832e1da7d1d30f4f // 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"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x8002 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {69 6f 63 68 61 72 73 65 74 3d 6d 61 63 63 72 6f // 61 74 69 61 6e 2c 64 69 73 63 61 72 64 3d 30 78 30 30 30 30 30 30 // 30 30 30 30 30 30 30 30 30 33 2c 6e 6f 64 69 73 63 61 72 64 2c 65 // 72 72 6f 72 73 3d 63 6f 6e 74 69 6e 75 65 2c 69 6f 63 68 61 72 73 // 65 74 3d 6d 61 63 63 79 72 69 6c 6c 69 63 2c 00 67 ad d4 ce ec 7c // b8 70 2b 1b 4a 0f f3 22 83 9e 69 b5 07 d7 47 8e 07 06 b0 04 08 dc // 59 28 3f 5c 01 59 b8 e3 c0 28 9d cb 18 25 04 84 4e f8 e6 97 2c db // 3f 50 68 0f c9 60 2e d2 7c 1f 6b 47 a9 1f 94 1f 15 4a e2 05 d3 4a // 9b 7a 7c 67 ef a0 c0 e2 a7 02 51 d6 64 fc e1 2a e6 4a 5a 52 1a a8 // 30 80 b7 67 2c 4e 15 66 a6 1a 0a de 4b 6c 9d 78 15 10 53 d9 fb 31 // fd 2c fc 77 f2 69 f8 73 e1 4e 5f e3 c4 6c 0a cb b2 2d 40 39 1a e3 // 1d 20 25 dc d9 47 ad f7 67 39 ae 4e cb e3 b6 30 04 0b 37 e2 b0 9d // 78 16 e0 b9 39 81 de 11 47 53 2c f2 f4 6d 4d 49 04 f6 8f b4 3c d1 // 65 b9} (length 0x11a) // } // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x62a7 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x62a7) // } // ] // returns fd_dir memcpy((void*)0x200000000000, "jfs\000", 4); memcpy((void*)0x200000000040, "./file0\000", 8); memcpy( (void*)0x2000000000c0, "\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x6d\x61\x63\x63\x72\x6f\x61\x74" "\x69\x61\x6e\x2c\x64\x69\x73\x63\x61\x72\x64\x3d\x30\x78\x30\x30\x30\x30" "\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x33\x2c\x6e\x6f\x64\x69\x73" "\x63\x61\x72\x64\x2c\x65\x72\x72\x6f\x72\x73\x3d\x63\x6f\x6e\x74\x69\x6e" "\x75\x65\x2c\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x6d\x61\x63\x63\x79" "\x72\x69\x6c\x6c\x69\x63\x2c\x00\x67\xad\xd4\xce\xec\x7c\xb8\x70\x2b\x1b" "\x4a\x0f\xf3\x22\x83\x9e\x69\xb5\x07\xd7\x47\x8e\x07\x06\xb0\x04\x08\xdc" "\x59\x28\x3f\x5c\x01\x59\xb8\xe3\xc0\x28\x9d\xcb\x18\x25\x04\x84\x4e\xf8" "\xe6\x97\x2c\xdb\x3f\x50\x68\x0f\xc9\x60\x2e\xd2\x7c\x1f\x6b\x47\xa9\x1f" "\x94\x1f\x15\x4a\xe2\x05\xd3\x4a\x9b\x7a\x7c\x67\xef\xa0\xc0\xe2\xa7\x02" "\x51\xd6\x64\xfc\xe1\x2a\xe6\x4a\x5a\x52\x1a\xa8\x30\x80\xb7\x67\x2c\x4e" "\x15\x66\xa6\x1a\x0a\xde\x4b\x6c\x9d\x78\x15\x10\x53\xd9\xfb\x31\xfd\x2c" "\xfc\x77\xf2\x69\xf8\x73\xe1\x4e\x5f\xe3\xc4\x6c\x0a\xcb\xb2\x2d\x40\x39" "\x1a\xe3\x1d\x20\x25\xdc\xd9\x47\xad\xf7\x67\x39\xae\x4e\xcb\xe3\xb6\x30" "\x04\x0b\x37\xe2\xb0\x9d\x78\x16\xe0\xb9\x39\x81\xde\x11\x47\x53\x2c\xf2" "\xf4\x6d\x4d\x49\x04\xf6\x8f\xb4\x3c\xd1\x65\xb9", 282); memcpy( (void*)0x200000012f40, "\x78\x9c\xec\xdd\xcd\x8e\x1c\x57\xd9\x07\xf0\xa7\xfa\x6b\x3e\xf2\xc6\xb1" "\xb2\x88\xf2\x5a\x08\x4d\x12\x03\x09\x21\xfe\x0c\xc6\x10\x20\xc9\x02\x16" "\xd9\xb0\x40\xde\xa2\x58\x93\x49\x64\xe1\x00\xb2\x0d\x72\x22\x0b\x4f\xe4" "\x0d\x0b\x2e\x02\x84\xc4\x12\x10\x4b\x56\x5c\x40\x16\x6c\xd9\x71\x01\x58" "\xb2\x91\x80\x6c\x48\xa1\x9e\x39\x67\x5c\xdd\x74\xbb\xc7\xe3\x74\x57\xcf" "\x9c\xdf\x4f\x9a\x54\x3d\x75\xaa\xa6\x4f\xe5\xdf\x35\xdd\xed\xaa\xea\x13" "\x00\x00\x00\x00\x00\x00\x00\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\xbc\xf5\xdd\xef" "\x9f\xad\x22\xe2\xed\x9f\xa5\x05\xc7\x23\xfe\x2f\xba\x11\x9d\x88\xb5\x61" "\xbd\x11\x11\x6b\x1b\xc7\xf3\xfa\xbd\x88\x78\x36\x76\x9a\xe3\x99\x88\xe8" "\xaf\x44\x54\xb9\xf1\xa9\x88\x57\x23\xe2\xe3\x63\x11\xf7\xee\xdf\xda\x1c" "\x2e\x3a\xb7\xcf\x7e\x7c\xe7\x0f\x7f\xfd\xcd\x0f\x9e\xf8\xde\x5f\x7e\xd7" "\x3f\xfd\xaf\x3f\xde\xe8\xbe\x36\x6d\xbd\x9b\x37\x7f\xf9\xcf\x3f\xdd\x3e" "\xf8\xfe\x02\x00\x00\x40\x89\xea\xba\xae\xab\xf4\x31\xff\x44\xfa\x7c\xdf" "\x69\xbb\x53\x00\xc0\x42\xe4\xd7\xff\x3a\xc9\xcb\xd5\x4b\x57\x6f\x2f\x59" "\x7f\xd4\x6a\xb5\x5a\x7d\x08\xeb\xa6\x7a\xb2\xdb\xcd\x22\x22\xb6\x9b\xdb" "\x0c\xdf\x33\x38\x1d\x0f\x00\x87\xcc\x76\x7c\xd2\x76\x17\x68\x91\xfc\x8b" "\xd6\x8b\x88\x27\xda\xee\x04\xb0\xd4\xaa\xb6\x3b\xc0\x5c\xdc\xbb\x7f\x6b" "\xb3\x4a\xf9\x56\xcd\xd7\x83\x8d\xdd\xf6\x7c\x2d\xc8\x48\xfe\xdb\xd5\xde" "\xfd\x1d\xd3\xa6\xb3\x8c\x5f\x63\xb2\xa8\xe7\xd7\x9d\xe8\xc6\xd3\x53\xfa" "\xb3\xb6\xa0\x3e\x2c\x93\x9c\x7f\x67\x2c\xff\x95\xd4\x3e\x48\xd3\x79\xe7" "\xbf\x28\xd3\xf2\x1f\xec\xde\xfa\x54\x9c\x9c\x7f\x77\xfc\xf8\x1f\x73\x74" "\xf2\xef\x4c\xcc\xbf\x54\x39\xff\xde\x23\xe5\xdf\x95\x3f\x00\x00\x00\x00" "\x00\x2c\xb1\xfc\xef\xff\xc7\x5b\x3e\xff\xbb\xf2\xf8\xbb\xb2\x2f\x0f\x3b" "\xff\xbb\xb1\xa0\x3e\x00\x00\x00\x00\x00\x00\x00\xc0\x67\xed\x71\xc7\xff" "\xdb\x53\x19\xff\x0f\x00\x00\x00\x96\xd5\xf0\xb3\xfa\xd0\xaf\x8e\x3d\x58" "\x36\xed\xbb\xd8\x86\xcb\x2f\x55\x11\x4f\x8e\xad\x0f\x94\xe2\x3f\x23\x23" "\x88\xac\xb7\xdd\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x28\x49\x6f" "\xf7\x1a\xde\x4b\x55\x44\x3f\x22\x9e\x5c\x5f\xaf\xeb\x7a\xbd\x1e\x35\x5e" "\x3f\xaa\xc7\xdd\xfe\xb0\x2b\x7d\xff\xa1\x64\x6d\xff\x91\x07\x00\x80\x5d" "\x1f\x1f\x1b\xbb\x97\xbf\x8a\x58\x8d\x88\x4b\xe9\xbb\xfe\xfa\xeb\xeb\xeb" "\x75\xbd\xba\xb6\x5e\xaf\xd7\x6b\x2b\xf9\xfd\xec\x60\x65\xb5\x5e\x6b\x7c" "\xae\xcd\xd3\xe1\xb2\x95\xc1\x3e\xde\x10\xf7\x06\xf5\xf0\x97\xad\x36\xb6" "\x6b\x9a\xf5\x79\x79\x56\xfb\xf8\xef\x1b\x3e\xd6\xa0\xee\xee\xa3\x63\x8b" "\xd1\x62\xe0\x00\x10\x11\xbb\xaf\x46\xf7\xbc\x22\x1d\x31\x75\xfd\x54\xb4" "\xfd\x2e\x87\xc3\xc1\xf1\x7f\xf4\x38\xfe\xd9\x8f\xb6\x9f\xa7\x00\x00\x00" "\xc0\xfc\xd5\x75\x5d\x57\x69\x98\xbf\x13\xe9\x9c\x7f\xa7\xed\x4e\x01\x00" "\x0b\x91\x5f\xff\xc7\xcf\x0b\xa8\xd5\x6a\xb5\x5a\xad\x3e\x7a\x75\x53\x3d" "\xd9\xed\x66\x11\x11\xdb\xcd\x6d\x86\xef\x19\x0c\xc7\x0f\x00\x87\xcc\x76" "\x7c\xd2\x76\x17\x68\x91\xfc\x8b\xd6\x8b\x88\x67\xdb\xee\x04\xb0\xd4\xaa" "\xb6\x3b\xc0\x5c\xdc\xbb\x7f\x6b\xb3\x4a\xf9\x56\xcd\xd7\x83\x8d\xdd\xf6" "\x7c\x2d\xc8\x48\xfe\xdb\xd5\xce\x76\x79\xfb\x49\xd3\x59\xc6\xaf\x31\x59" "\xd4\xf3\xeb\x4e\x74\xe3\xe9\x29\xfd\x79\x66\x41\x7d\x58\x26\x39\xff\xce" "\x78\xfe\x6f\xef\xb6\x0f\xd2\x7a\xf3\xce\x7f\x51\xa6\xe5\x3f\xdc\xcf\xe3" "\x2d\xf4\xa7\x6d\x39\xff\xee\x78\xfe\x63\x8e\x4e\xfe\x9d\x89\xf9\x97\x2a" "\xe7\xdf\x7b\xa4\xfc\xbb\xf2\x07\x00\x00\x00\x00\x80\x25\x96\xff\xfd\xff" "\xf8\x52\x9d\xff\x1d\x1c\x74\x77\x66\x7a\xd8\xf9\xdf\x8d\xb9\x3d\x2a\x00" "\x00\x00\x00\x00\x00\x00\xcc\xd7\xbd\xfb\xb7\x36\xf3\x7d\xaf\xf9\xfc\xff" "\xe7\x26\xac\xe7\xfe\xcf\xa3\x29\xe7\x5f\xc9\xbf\x48\x39\xff\x74\xff\xff" "\xde\x85\x37\x2f\x8e\xad\xd7\x6d\xcc\xdf\x7d\xf3\x41\xfe\xff\xb8\x7f\x6b" "\xf3\xb7\x37\xfe\xfe\xff\x79\xba\xdf\xfc\x57\xf2\x4c\x95\x9e\x59\x55\x7a" "\x46\x54\xe9\x91\xaa\x5e\x9a\x1e\x70\xc7\xa6\xb8\xd3\xef\x0e\x86\x8f\xd4" "\xaf\x3a\xdd\x5e\xba\xe6\xa7\xee\xbf\x1b\x57\xe2\x6a\x6c\xc5\x99\x91\x75" "\x3b\xe9\x78\x78\xd0\x7e\x76\xa4\x7d\xd8\xd3\xfe\x4e\x7b\xdd\xdd\x6d\x3f" "\x37\xd2\xde\xdb\x6b\xcf\xdb\x9f\x1f\x69\xef\xa7\x2b\x9d\xea\xb5\xdc\x7e" "\x2a\x36\xe3\xc7\x71\x35\xde\xd9\x69\x1f\xb6\xad\xcc\xd8\xff\xd5\x19\xed" "\xf5\x8c\xf6\x9c\x7f\xd7\xf1\x5f\xa4\x9c\x7f\xaf\xf1\x33\xcc\x7f\x3d\xb5" "\x57\x63\xd3\xa1\xbb\x1f\x75\xfe\xe7\xb8\x6f\x4e\x27\x3d\xce\x1b\x57\x3e" "\xff\x8b\x33\xf3\xdf\x9d\x99\xee\x44\x77\x6f\xdf\x9a\x86\xfb\xf7\x7c\x0b" "\xfd\xd9\xf9\x7f\xf2\xc4\x20\x7e\x7a\x7d\xeb\xda\xa9\x9b\x97\x6f\xdc\xb8" "\x76\x36\xd2\x64\x64\xe9\xb9\x48\x93\xcf\x58\xce\xbf\x9f\x7e\x72\xfe\x2f" "\xbe\xb0\xdb\x9e\xff\xee\x37\x8f\xd7\xbb\x1f\x0d\x1e\x39\xff\x65\x71\x27" "\x7a\x53\xf3\x7f\xa1\x31\x3f\xdc\xdf\x97\x16\xdc\xb7\x36\xe4\xfc\x07\xe9" "\x27\xe7\xff\x4e\x6a\x9f\x7c\xfc\x1f\xe6\xfc\xa7\x1f\xff\x2f\xb7\xd0\x1f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x98\xba\xae\x77\x6e" "\x11\x7d\x23\x22\x2e\xa4\xfb\x7f\xda\xba\x37\x13\x00\x58\xac\xfc\xfa\x5f" "\x27\x79\xf9\xa2\xea\xee\x41\xb7\xff\xfd\xe8\x7e\xb4\xd5\x7f\xb5\x7a\xc1" "\x75\xb5\x64\xfd\x59\x68\xfd\x69\x3d\xef\xc7\x7b\x6b\xa9\xf6\x57\x7d\xa0" "\xfa\xdf\x4b\xd6\x9f\xa5\xab\x9b\xea\xc9\x5e\x6f\x16\x11\xf1\xe7\xe6\x36" "\xc3\xf7\x0c\x3f\x9f\xf4\xcb\x00\x80\x65\xf6\x69\x44\xfc\xad\xed\x4e\xd0" "\x1a\xf9\x17\x2c\x7f\xdf\xdf\x70\x7a\xb2\xed\xce\x00\x0b\x75\xfd\x83\x0f" "\x7f\x78\xf9\xea\xd5\xad\x6b\xd7\xdb\xee\x09\x00\x00\x00\x00\x00\x00\x00" "\x70\x50\x79\xfc\xcf\x8d\xc6\xf8\xcf\x27\xeb\xba\xbe\x3d\xb6\xde\xc8\xf8" "\xaf\x6f\xc6\xc6\xe3\x8e\xff\xd9\xcb\x33\x7b\x03\x8c\x4e\x19\xa8\xba\xfb" "\xe8\xfb\xf4\x30\x9d\x88\x6e\xa7\x31\xdc\xf8\x73\x31\x6d\xfc\xef\xfe\xde" "\xdc\xc3\xc6\xff\xee\xcd\x78\xbc\xfe\x8c\xf6\xc1\x8c\xf6\x95\x19\xed\xab" "\x33\xda\x27\xde\xe8\xd1\x90\xf3\x7f\xae\x31\xde\xf9\xc9\x88\x38\x31\x36" "\xfc\x7a\x09\xe3\xbf\x8e\x8f\x79\x5f\x82\x9c\xff\xf3\x8d\xe7\xf3\x30\xff" "\x2f\x8d\xad\xd7\xcc\xbf\xfe\xf5\x61\xce\xbf\x33\x92\xff\xe9\x1b\xef\xff" "\xe4\xf4\xf5\x0f\x3e\x7c\xe5\xca\xfb\x97\xdf\xdb\x7a\x6f\xeb\x47\xe7\xcf" "\x9e\x3d\x73\xfe\xc2\x85\x8b\x17\x2f\x9e\x7e\xf7\xca\xd5\xad\x33\xbb\xff" "\x6d\xb1\xc7\xf3\x95\xf3\xcf\x63\x5f\xbb\x0e\xb4\x2c\x39\xff\x9c\xb9\xfc" "\xcb\x92\xf3\xff\x42\xaa\xe5\x5f\x96\x9c\xff\x17\x53\x2d\xff\xb2\xe4\xfc" "\xf3\xfb\x3d\xf9\x97\x25\xe7\x9f\x3f\xfb\xc8\xbf\x2c\x39\xff\x97\x52\x2d" "\xff\xb2\xe4\xfc\xbf\x9c\x6a\xf9\x97\x25\xe7\xff\x72\xaa\xe5\x5f\x96\x9c" "\xff\x57\x52\x2d\xff\xb2\xe4\xfc\x5f\x49\xb5\xfc\xcb\x92\xf3\x3f\x95\x6a" "\xf9\x97\x25\xe7\x7f\x3a\xd5\xfb\xcc\x7f\x6d\xde\xfd\x62\x31\x72\xfe\xf9" "\x0c\x97\xe3\xbf\x2c\x39\xff\x7c\x65\x83\xfc\xcb\x92\xf3\x3f\x97\x6a\xf9" "\x97\x25\xe7\x7f\x3e\xd5\xf2\x2f\x4b\xce\xff\xd5\x54\xcb\xbf\x2c\x39\xff" "\xaf\xa6\x5a\xfe\x65\xc9\xf9\x5f\x48\xb5\xfc\xcb\x92\xf3\xff\x5a\xaa\xe5" "\x5f\x96\x9c\xff\xc5\x54\xcb\xbf\x2c\x39\xff\xaf\xa7\x5a\xfe\x65\xc9\xf9" "\x7f\x23\xd5\xf2\x2f\x4b\xce\xff\xb5\x54\xcb\xbf\x2c\x39\xff\x6f\xa6\x5a" "\xfe\x65\xc9\xf9\x7f\x2b\xd5\xf2\x2f\x4b\xce\xff\xdb\xa9\x96\x7f\x59\x72" "\xfe\xaf\xa7\x5a\xfe\x65\x79\xf0\xfd\xff\x66\xcc\x98\x31\x93\x67\xda\xfe" "\xcb\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8c\x5b\xc4\xe5\xc4\x6d" "\xef\x23\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x7f\xd9\x81\x03\x01\x00" "\x00\x00\x00\x20\xff\xd7\x46\xa8\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xc2" "\x0e\x1c\x08\x00\x00\x00\x00\x00\xf9\xbf\x36\x42\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x15\xf6\xee\x2e\x46\xae\xb3\x3e\x03\xf8\x99\xfd\xf2\xda\x81" "\xc4\x40\x48\x9d\xd4\x09\x1b\xc7\x24\x21\xd9\x64\xd7\x76\xe2\x0f\xda\x14" "\x13\x3e\x1b\xbe\x4a\x42\x52\xe8\x07\xb6\xeb\x5d\x9b\x05\xc7\x36\x5e\xbb" "\x04\x1a\xd5\x8e\x02\x25\x12\x46\x45\x15\x6d\xc3\x45\x5b\x40\xa8\xcd\x4d" "\x85\x55\x71\x41\x2b\x40\xb9\x40\xad\x2a\x55\x82\xf6\x82\xde\x20\x2a\x54" "\x2e\xa2\x2a\xa0\x80\x54\x95\x56\xc0\x56\x33\xe7\x7d\xdf\x9d\x39\x3b\x3b" "\xb3\xeb\x1d\x6f\xce\x9e\xf3\xfb\x49\xc9\x3f\x3b\x73\x66\xce\x99\x33\xef" "\xcc\xee\x63\xe7\xd9\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\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x68\x77\xf3\x1b\x66\x3f\xd9\xc8\xb2\xac\xd1\x68\xe4\x17\x6c\xcd\xb2" "\x97\x34\xe7\xe6\x89\xad\xad\x4b\x5e\xfb\xe2\x1e\x1f\x00\x00\x00\xb0\x76" "\x3f\x6f\xfd\xfb\x85\x6b\xd2\x05\x07\x57\x70\xa3\xb6\x6d\xfe\xe9\xa6\x6f" "\x7d\x65\x61\x61\x61\x21\x7b\xef\xf0\x9f\x8e\x7e\x76\x61\x21\x5d\x31\x91" "\x65\xa3\x9b\xb2\xac\x75\x5d\x74\xe9\xfb\xef\x6b\xb4\x6f\x13\x3c\x99\x8d" "\x37\x86\xda\xbe\x1e\xea\xb3\xfb\xe1\x3e\xd7\x8f\xf4\xb9\x7e\xb4\xcf\xf5" "\x63\x7d\xae\xdf\xd4\xe7\xfa\xf1\x3e\xd7\x2f\x39\x01\x4b\x6c\xce\x1a\xe9" "\xce\x76\xb6\xfe\x73\x6b\x7e\x4a\xb3\x6b\xb3\xd1\xd6\x75\x3b\xbb\xdc\xea" "\xc9\xc6\xa6\xa1\xe6\xb9\x4b\xb7\xcd\x1a\xad\xdb\x2c\x8c\x1e\xcb\xe6\xb2" "\x13\xd9\x6c\x36\xdd\xb1\x7d\xbe\x6d\xa3\xb5\xfd\xd7\x6e\x6e\xee\xeb\xad" "\x59\xdc\xd7\x50\xdb\xbe\xb6\x37\x57\xc8\x8f\x1f\x3f\x1a\x8f\xa1\x11\xce" "\xf1\xce\x8e\x7d\x2d\xde\x67\xf4\xc3\xd7\x67\x13\x3f\xf9\xf1\xe3\x47\xff" "\xfa\xec\xf3\xd7\x77\x9b\x7d\x4f\x43\xc7\xfd\xe5\xc7\x79\xfb\x8e\xe6\x71" "\x7e\x3c\x5c\x92\x1f\x6b\x23\xdb\x94\xce\x49\x3c\xce\xa1\xb6\xe3\xdc\xde" "\xe5\x39\x19\xee\x38\xce\x46\xeb\x76\xcd\xff\x2e\x1e\xe7\x0b\x2b\x3c\xce" "\xe1\xc5\xc3\x5c\x57\xc5\xe7\x7c\x3c\x1b\x6a\xfd\xf7\xb7\x5b\xe7\x69\xa4" "\x91\x75\x39\x4f\xdb\xc3\x65\x3f\xbd\x25\xcb\xb2\x0b\x8b\x87\x5d\xdc\x66" "\xc9\xbe\xb2\xa1\x6c\x4b\xc7\x25\x43\x8b\xcf\xcf\x78\xbe\x22\x9b\xf7\xd1" "\x5c\x4a\x2f\xcf\x46\x56\xb5\x4e\x6f\x5e\xc1\x3a\x6d\xce\x99\x9d\x9d\xeb" "\xb4\xf8\x9a\x88\xcf\xff\xcd\xe1\x76\x23\xcb\x1c\x43\xfb\xd3\xf4\xc3\x27" "\xc6\xda\x9e\xf7\x9f\x2d\x5c\xce\x3a\x8d\x9a\x8f\x7a\xb9\xd7\x4a\x71\x0d" "\x0e\xfa\xb5\x52\x96\x35\x18\xd7\xc5\xb7\x5b\x0f\xfa\xa9\xae\x6b\x70\x67" "\x78\xfc\x8f\xdf\xba\xfc\x1a\xec\xba\x76\xba\xac\xc1\xf4\xb8\xdb\xd6\xe0" "\x8e\x7e\x6b\x70\x68\x6c\xb8\x75\xcc\xe9\x49\x68\xb4\x6e\xb3\xb8\x06\x77" "\x75\x6c\x3f\xdc\xda\x53\xa3\x35\x9f\xbb\xb5\xf7\x1a\x9c\x3a\xfb\xe8\xe9" "\xa9\xf9\x8f\x7e\xec\xae\xb9\x47\x8f\x1c\x9f\x3d\x3e\x7b\x72\xcf\xae\x5d" "\xd3\x7b\xf6\xee\xdd\xbf\x7f\xff\xd4\xb1\xb9\x13\xb3\xd3\xf9\xbf\x2f\xf3" "\x6c\x97\xdf\x96\x6c\x28\xbd\x06\x76\x84\x73\x17\x5f\x03\xb7\x15\xb6\x6d" "\x5f\xaa\x0b\x5f\x18\x5b\xf2\xfe\x7b\xb9\xaf\xc3\xf1\x1e\xaf\xc3\xad\x85" "\x6d\x07\xfd\x3a\x1c\x29\x3e\xb8\xc6\xfa\xbc\x20\x97\xae\xe9\xfc\xb5\xf1" "\x9e\xe6\x49\x1f\xbf\x38\x94\x2d\xf3\x1a\x6b\x3d\x3f\x77\xac\xfd\x75\x98" "\x1e\x77\xdb\xeb\x70\xa4\xed\x75\xd8\xf5\x7b\x4a\x97\xd7\xe1\xc8\x0a\x5e" "\x87\xcd\x6d\x4e\xdf\xb1\xb2\x9f\x59\x46\xda\xfe\xe9\x76\x0c\xcb\x7f\x2f" "\x58\xdb\x1a\xdc\xda\xb6\x06\x8b\x3f\x8f\x14\xd7\xe0\xa0\x7f\x1e\x29\xcb" "\x1a\x1c\x0f\xeb\xe2\xbb\x77\x2c\xff\xbd\x60\x7b\x38\xde\xa7\x26\x57\xfb" "\xf3\xc8\xf0\x92\x35\x98\x1e\x6e\x78\xef\x69\x5e\x92\x7e\xde\x1f\xdf\xdf" "\x1a\xdd\xd6\xe5\x0d\xcd\x2b\xae\x1a\xcb\xce\xcd\xcf\x9e\xb9\xfb\xb1\x23" "\x67\xcf\x9e\xd9\x95\x85\xb1\x2e\x5e\xd1\xb6\x56\x8a\xeb\x75\x4b\xdb\x63" "\xca\x96\xac\xd7\xa1\x55\xaf\xd7\x83\x73\x37\x3d\x75\x43\x97\xcb\xb7\x86" "\x73\x35\x7e\x57\xf3\x5f\xe3\xcb\x3e\x57\xcd\x6d\xee\xb9\xbb\xf7\x73\xd5" "\xfa\xee\xd6\xfd\x7c\x76\x5c\xba\x3b\x0b\x63\xc0\xd6\xfb\x7c\x76\xfb\x6e" "\xde\x3c\x9f\x63\x59\xf6\xb9\x6f\x3e\xf1\xe0\xd7\x1f\xff\xdc\x1b\x96\x3d" "\x9f\xcd\xbc\xf9\xf1\xa9\xb5\xff\x2c\x9e\x72\x69\xdb\xfb\xef\xe8\x32\xef" "\xbf\x31\xf7\xff\x22\xdf\x5f\xba\xab\x27\x87\x47\x47\xf2\xd7\xef\x70\x3a" "\x3b\xa3\x1d\xef\xc7\x9d\x4f\xd5\x48\xeb\xbd\xab\xd1\xda\xf7\x0b\x53\x2b" "\x7b\x3f\x1e\x0d\xff\xac\xf7\xfb\xf1\xb5\x3d\xde\x8f\xb7\x15\xb6\x1d\xf4" "\xfb\xf1\x68\xf1\xc1\xc5\xf7\xe3\x46\xbf\x3f\xed\x58\x9b\xe2\xf3\x39\x1e" "\xd6\xc9\x89\xe9\xde\xef\xc7\xcd\x6d\xb6\xed\x5e\xed\x9a\x1c\xe9\xf9\x7e" "\x7c\x4b\x98\x8d\x70\xfe\x5f\x13\x92\x42\xca\x45\x6d\x6b\x67\xb9\x75\x9b" "\xf6\x35\x32\x32\x1a\x1e\xd7\x48\xdc\x43\xe7\x3a\xdd\xd3\xb1\xfd\x68\xc8" "\x66\xcd\x7d\x3d\xb3\xfb\xf2\xd6\xe9\xed\xb7\xe4\xf7\x35\x9c\x1e\xdd\xa2" "\xf5\x5a\xa7\x13\x85\x6d\x07\xbd\x4e\xd3\x9f\x7d\x2d\xb7\x4e\x1b\xfd\xfe" "\xf4\xed\xf2\x14\x9f\xcf\xf1\xb0\x2e\xae\xdd\xd3\x7b\x9d\x36\xb7\x79\xf6" "\x9e\xb5\xbf\x77\x6e\x8e\xff\xd9\xf6\xde\x39\xd6\x6f\x0d\x8e\x0e\x8f\x35" "\x8f\x79\x34\x2d\xc2\xd6\xfb\x7d\xb6\xb0\x39\xae\xc1\xbb\xb3\xa3\xd9\xa9" "\xec\x44\x36\xd3\xba\x76\xac\xb5\x9e\x1a\xad\x7d\x4d\xde\xbb\xb2\x35\x38" "\x16\xfe\x59\xef\xf7\xca\x6d\x3d\xd6\xe0\xed\x85\x6d\x07\xbd\x06\xd3\xf7" "\xb1\xe5\xd6\x5e\x63\x64\xe9\x83\x1f\x80\xe2\xf3\x39\x1e\xd6\xc5\xd3\xf7" "\xf6\x5e\x83\xcd\x6d\xde\xb8\x6f\xb0\x3f\xbb\xde\x1e\x2e\x49\xdb\xb4\xfd" "\xec\x5a\xfc\xf3\xb5\xe5\xfe\xcc\xeb\x86\xc2\x69\xba\x52\x6b\x65\x24\x1c" "\xe7\x37\xf7\xf5\xfe\xb3\xd9\xe6\x36\x27\xf6\xaf\x36\x67\xf6\x3e\x4f\x77" "\x86\x4b\xae\xea\x72\x9e\x8a\xaf\xdf\xe5\x5e\x53\x33\xd9\xfa\x9c\xa7\x6d" "\xe1\x38\x9f\xdf\xbf\xfc\x79\x6a\x1e\x4f\x73\x9b\xcf\x1e\x58\xe1\x7a\x3a" "\x98\x65\xd9\xf9\x0f\xdf\xdf\xfa\xf3\xde\xf0\xf7\x2b\x7f\x77\xee\x3b\x5f" "\xe9\xf8\x7b\x97\x6e\x7f\xa7\x73\xfe\xc3\xf7\xff\xe8\xa5\xc7\xfe\x71\x35" "\xc7\x0f\xc0\xc6\xf7\x8b\x7c\x6c\xc9\xbf\xd7\xb5\xfd\xcd\xd4\x4a\xfe\xfe" "\x1f\x00\x00\x00\xd8\x10\x62\xee\x1f\x0a\x33\x91\xff\x01\x00\x00\xa0\x32" "\x62\xee\x8f\xff\x57\x78\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x3f\x12\x66" "\x52\x93\xfc\xbf\xed\x8d\xcf\xcf\xfd\xe2\x7c\x96\x9a\xf9\x0b\x41\xbc\x3e" "\x9d\x86\x07\xf2\xed\x62\xc7\x75\x3a\x7c\x3d\xb1\xb0\xa8\x79\xf9\xfd\x5f" "\x9a\xfd\xef\x7f\x38\xbf\xb2\x7d\x0f\x65\x59\xf6\xb3\x07\xfe\xa0\xeb\xf6" "\xdb\x1e\x88\xc7\x95\x9b\x08\xc7\x79\xe9\x4d\x9d\x97\x2f\xf1\x95\xbb\x56" "\xb4\xef\xc3\x0f\x9f\x4f\xfb\x6d\xef\xaf\x7f\x3e\xdc\x7f\x7c\x3c\x2b\x5d" "\x06\xdd\x2a\xb8\xd3\x59\x96\x7d\xed\x9a\x4f\xb7\xf6\x33\xf1\xbe\x8b\xad" "\xf9\xec\x03\x87\x5b\xf3\xc1\x0b\x4f\x3d\xd9\xdc\xe6\x85\x03\xf9\xd7\xf1" "\xf6\xcf\xbd\x22\xdf\xfe\x2f\x42\xf9\xf7\xe0\xb1\x23\x1d\xb7\x7f\x2e\x9c" "\x87\x1f\x84\x39\xfd\xb6\xee\xe7\x23\xde\xee\xcb\x17\x5f\xb3\x7d\xdf\x23" "\x8b\xfb\x8b\xb7\x6b\xec\xb8\xba\xf5\xb0\x9f\x7e\x7f\x7e\xbf\xf1\xf7\xe4" "\x7c\xe6\xc9\x7c\xfb\x78\x9e\x97\x3b\xfe\xaf\x7f\xea\x99\x2f\x37\xb7\x7f" "\xec\xd5\xdd\x8f\xff\xfc\x50\xf7\xe3\x7f\x26\xdc\xef\x97\xc2\xfc\xdf\x1b" "\xf3\xed\xdb\x9f\x83\xe6\xd7\xf1\x76\x9f\x08\xc7\x1f\xf7\x17\x6f\x77\xf7" "\x17\xbf\xd1\xf5\xf8\x2f\x7d\x32\xdf\xfe\xf4\x9b\xf3\xed\x0e\x87\x19\xf7" "\x7f\x7b\xf8\x7a\xe7\x9b\x9f\x9f\x6b\x3f\x5f\x8f\x35\x8e\x74\x3c\xae\xec" "\x2d\xf9\x76\x71\xff\xd3\xdf\xf9\xe3\xd6\xf5\xf1\xfe\xe2\xfd\x17\x8f\x7f" "\xfc\xd0\xc5\x8e\xf3\x51\x5c\x1f\xcf\xfe\x5b\x7e\x3f\x53\x85\xed\xe3\xe5" "\x71\x3f\xd1\xdf\x17\xf6\xdf\xbc\x9f\xf6\xf5\x19\xf7\xff\xcc\x1f\x1d\xee" "\x38\xcf\xfd\xf6\x7f\xe9\xc1\xe7\x6e\x6c\xde\x6f\x71\xff\x77\x16\xb6\x3b" "\xfd\xe1\x3b\x5a\xfb\x5f\xbc\xbf\xce\xdf\xd8\xf4\x97\x9f\xf8\x74\xd7\xfd" "\xc5\xe3\x39\xf8\xb7\xa7\x3b\x1e\xcf\xc1\x77\x87\xd7\x71\xd8\xff\xd3\xef" "\x0f\xeb\x31\x5c\xff\x7f\x97\xf2\xfb\x2b\xfe\x76\x85\xc3\xef\xee\x7c\xff" "\x89\xdb\x7f\x7e\xeb\xf9\x8e\xc7\x13\xbd\xf5\x27\xf9\xfe\x2f\xbd\xee\x78" "\x6b\x6e\x1a\xdf\xbc\xe5\xaa\x97\xbc\xf4\xea\x0b\xaf\x6a\x9e\xbb\x2c\xfb" "\xf6\xa6\xfc\xfe\xfa\xed\xff\xf8\x5f\x9d\xea\x38\xfe\x2f\x5c\x97\x9f\x8f" "\x78\x7d\xec\xe8\x17\xf7\xbf\x9c\xb8\xff\x33\x1f\x99\x3c\x79\x6a\xfe\xdc" "\xdc\x4c\x3a\xab\x8f\x5f\xd3\xfa\xdd\x39\x6f\xcf\x8f\x27\x1e\xef\x35\xe1" "\xbd\xb5\xf8\xf5\xa1\x53\x67\x3f\x30\x7b\x66\x62\x7a\x62\x3a\xcb\x26\xaa" "\xfb\x2b\xf4\x2e\xdb\x17\xc3\xfc\x51\x3e\x2e\xf4\xde\x7a\x61\xc9\x3b\xe8" "\x1d\x0f\x87\xe7\xf3\x86\x3f\xff\xda\x96\x5b\xff\xf5\x53\xf1\xf2\x7f\x7f" "\x4f\x7e\xf9\xc5\xb7\xe5\xdf\xb7\x6e\x7b\xf8\xb9\x1b\xc7\x1e\xc9\xb2\xcf" "\x84\xcb\xb7\x86\xe7\x6f\x75\xfb\x5f\xea\xe9\x9b\xaf\x6b\xbd\xbe\x1b\xcf" "\x86\x23\x5c\x58\xfa\xfb\x82\xd7\x62\xfb\xce\xff\xda\xbf\xa2\x0d\xc3\xe3" "\x2f\xfe\x5c\x10\xd7\xfb\xe9\x57\x7e\xa0\x75\x1e\x9a\xd7\xb5\xbe\x6f\xc4" "\xd7\xf5\x1a\x8f\xff\x7b\x33\xf9\xfd\x7c\x35\x9c\xd7\x85\xf0\x9b\x99\x77" "\x5c\xb7\xb8\xbf\xf6\xed\xe3\xef\x46\xb8\xf8\x50\xfe\x7a\x5f\xf3\xf9\x0b" "\x6f\x73\xf1\x79\xfd\x9b\xf0\x7c\xbf\xe3\x07\xf9\xfd\xc7\xe3\x8a\x8f\xf7" "\x7b\xe1\xe7\x98\x6f\x6c\xeb\x7c\xbf\xbb\x2d\xac\xa3\xaf\x9e\x1f\x2a\xde" "\x7f\xeb\xb7\x78\x5c\x08\xef\x27\xd9\x85\xfc\xfa\xb8\x55\x3c\xdf\x17\x5f" "\xb8\xae\xeb\xe1\xc5\xdf\x43\x92\x5d\xb8\xbe\xf5\xf5\x9f\xa4\xfb\xb9\x7e" "\x55\x0f\x73\x39\xf3\x1f\x9d\x9f\x3a\x31\x77\xf2\xdc\x63\x53\x67\x67\xe7" "\xcf\x4e\xcd\x7f\xf4\x63\x87\x1e\x3d\x75\xee\xe4\xd9\x43\xad\xdf\xe5\x79" "\xe8\x83\xfd\x6e\xbf\xf8\xfe\xb4\xa5\xf5\xfe\x34\x33\xbb\xf7\x9e\xac\xf5" "\x6e\x75\x2a\x1f\x57\xc4\x48\x69\x8e\xff\xf4\xc3\x47\x67\xf6\x4d\xdf\x3a" "\x33\x7b\xec\xc8\xb9\x63\x67\x1f\x3e\x3d\x7b\xe6\xf8\xd1\xf9\xf9\xa3\xb3" "\x33\xf3\xb7\x1e\x39\x76\x6c\xf6\x23\xfd\x6e\x3f\x37\x73\xdf\xae\xdd\x07" "\xf6\xec\xdb\x3d\x79\x7c\x6e\xe6\xbe\xfd\x07\x0e\xec\x39\x30\x39\x77\xf2" "\x54\xf3\x30\xf2\x83\xea\x63\xef\xf4\x87\x26\x4f\x9e\x39\xd4\xba\xc9\xfc" "\x7d\xf7\x1c\xd8\x75\xef\xbd\xf7\x4c\x4f\x3e\x7a\x6a\x66\xf6\xbe\x7d\xd3" "\xd3\x93\xe7\xfa\xdd\xbe\xf5\xbd\x69\xb2\x79\xeb\xdf\x9f\x3c\x33\x7b\xe2" "\xc8\xd9\xb9\x47\x67\x27\xe7\xe7\x3e\x36\x7b\xdf\xae\x03\x7b\xf7\xee\xee" "\xfb\xdb\x00\x1f\x3d\x7d\x6c\x7e\x62\xea\xcc\xb9\x93\x53\xe7\xe6\x67\xcf" "\x4c\xe5\x8f\x65\xe2\x6c\xeb\xe2\xe6\xf7\xbe\x7e\xb7\xa7\x9a\xe6\xff\x23" "\xff\x79\xb6\xa8\x91\xff\x22\xbe\xec\x5d\x77\xee\x4d\xbf\x9f\xb5\xe9\x4b" "\x4f\x2c\x7b\x57\xf9\x26\x85\x5f\x20\xfa\x7c\xf8\x5d\x34\xff\xfc\xb2\xd3" "\xfb\x57\xf2\x75\xcc\xfd\xa3\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31" "\xf7\x8f\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x6f\x0a\x33\x91\xff" "\x01\x00\x00\xa0\x32\x62\xee\x1f\x0f\x33\xa9\x49\xfe\xaf\x5c\xff\x7f\xdb" "\xf9\x15\xed\x5f\xff\x5f\xff\xbf\xfd\x7c\xe9\xff\xd7\xac\xff\xff\x50\xd9" "\xfa\xff\xf9\xfb\x85\xfe\xff\x60\xac\xb5\x7f\xbf\x9a\xfe\xff\x3e\xfd\x7f" "\xfd\x7f\xfd\xff\x0e\x2f\x4e\xff\xbf\x3c\xc7\xaf\xff\xaf\xff\xcf\x52\x65" "\xeb\xff\xc7\xdc\xbf\x39\xcb\x6a\x99\xff\x01\x00\x00\xa0\x0e\x62\xee\xdf" "\x12\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x55\x98\x89\xfc\x0f\x00" "\x00\x00\x95\x11\x73\xff\x4b\xc2\x4c\x6a\x92\xff\xf5\xff\xf5\xff\xf5\xff" "\xf5\xff\xf5\xff\xbb\xef\x5f\xff\x7f\x63\xd2\xff\xef\x4d\xff\xbf\x0f\xfd" "\xff\xa9\xac\x5e\xfd\xff\x0b\x83\x3c\x7e\xfd\x7f\xfd\x7f\x96\x2a\x5b\xff" "\x3f\xe6\xfe\x97\x86\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\x7f\x75" "\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x35\x61\x26\xf2\x3f\x00\x00" "\x00\x54\x46\xcc\xfd\x5b\xc3\x4c\x6a\x92\xff\xf5\xff\xb3\x6c\xa8\xad\xbc" "\xac\xff\xaf\xff\xdf\xba\x40\xff\x5f\xff\x5f\xff\x7f\xc3\xd2\xff\xef\x4d" "\xff\xbf\x0f\xfd\x7f\x9f\xff\xaf\xff\xaf\xff\xcf\x40\x95\xad\xff\x1f\x73" "\xff\xcb\xc2\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62\xee\x7f\x79\x98\x89" "\xfc\x0f\x00\x00\x00\xe5\x33\x72\x79\x37\x8b\xb9\xff\x15\x61\x26\x4b\xf2" "\xff\x65\xee\x00\x00\x00\x00\x78\xd1\xc5\xdc\x7f\x6d\x56\xf8\x20\xf8\x9a" "\xfc\xfd\xbf\xfe\xbf\xcf\xff\x2f\x7f\xff\x7f\x53\xba\x4e\xff\x5f\xff\x3f" "\x2b\x65\xff\x7f\x38\xd3\xff\x2f\x0f\xfd\xff\xde\xf4\xff\xfb\xd0\xff\xd7" "\xff\xd7\xff\xd7\xff\x67\xa0\xca\xd6\xff\x6f\xe5\xfe\x6c\x3c\x7b\x65\x98" "\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\xd7\x85\x99\xc8\xff\x00\x00" "\x00\x50\x19\x31\xf7\xff\x52\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff" "\xb6\x30\x93\x9a\xe4\x7f\xfd\x7f\xfd\xff\xf2\xf7\xff\x7d\xfe\xbf\xfe\x7f" "\xd9\xfb\xff\x3e\xff\xbf\x4c\xf4\xff\x7b\xd3\xff\xef\x43\xff\x5f\xff\x5f" "\xff\x7f\x4d\xfd\xff\xe1\x4c\xff\x9f\x4e\x65\xeb\xff\xc7\xdc\x7f\x7d\x98" "\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\x37\x84\x99\xc8\xff\x00\x00" "\x00\x50\x19\x31\xf7\xff\x72\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff" "\xf6\x30\x93\x9a\xe4\x7f\xfd\xff\x92\xf7\xff\x63\x73\x54\xff\x5f\xff\x5f" "\xff\x5f\xff\x5f\xff\x7f\x45\xf4\xff\x7b\xd3\xff\xef\x43\xff\x5f\xff\x5f" "\xff\xdf\xe7\xff\x33\x50\x65\xeb\xff\xc7\xdc\x7f\x63\x98\x49\x4d\xf2\x3f" "\x00\x00\x00\xd4\x41\xcc\xfd\x37\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31" "\xf7\xbf\x2a\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x22\xcc\xa4\x26" "\xf9\x5f\xff\xbf\xe4\xfd\xff\xbc\x07\x3f\xe6\xf3\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\x57\x46\xff\xbf\x37\xfd\xff\x3e\xf4\xff\xf5\xff\x07\xd2\xff" "\x5f\x38\xaf\xff\xaf\xff\x4f\xae\x6c\xfd\xff\x98\xfb\x6f\x0e\x33\xa9\x49" "\xfe\x07\x00\x00\x80\x3a\x88\xb9\x7f\x47\x98\x89\xfc\x0f\x00\x00\x00\x95" "\x11\x73\xff\x2d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x3b\xc3\x4c" "\x6a\x92\xff\xf5\xff\x37\x44\xff\x3f\xd3\xff\xd7\xff\xd7\xff\xd7\xff\xd7" "\xff\x5f\x19\xfd\xff\xde\xf4\xff\xfb\xd0\xff\xd7\xff\xf7\xf9\xff\xfa\xff" "\x0c\x54\xd9\xfa\xff\x31\xf7\xbf\x3a\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea" "\x20\xe6\xfe\x5b\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x6f\x0b\x33" "\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xbf\x3d\xcc\xa4\x26\xf9\x5f\xff\x5f" "\xff\x5f\xff\x5f\xff\x5f\xff\xbf\xfb\xfe\xf5\xff\x37\x26\xfd\xff\xde\xf4" "\xff\xfb\xd0\xff\xd7\xff\xd7\xff\xd7\xff\x67\xa0\xca\xd6\xff\x8f\xb9\xff" "\x35\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\xdf\x11\x66\x22\xff" "\x03\x00\x00\x40\x65\xc4\xdc\x7f\x67\x98\x89\xfc\x0f\x00\x00\x00\x95\x11" "\x73\xff\x64\x98\x49\x4d\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f" "\xf7\xfd\xeb\xff\x6f\x4c\xfa\xff\xbd\xe9\xff\xf7\xa1\xff\xaf\xff\xaf\xff" "\xaf\xff\xcf\x40\x95\xad\xff\x1f\x73\xff\x5d\x61\x26\x35\xc9\xff\x00\x00" "\x00\x50\x07\x31\xf7\xdf\x1d\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x3f" "\x15\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x3f\x1d\x66\x52\x93\xfc\xaf" "\xff\xaf\xff\xaf\xff\xaf\xff\xbf\xaa\xfe\xff\xab\x16\xef\x57\xff\x3f\xa7" "\xff\x5f\x2e\xfa\xff\xbd\xe9\xff\xf7\xa1\xff\xaf\xff\xff\xa2\xf7\xff\x47" "\xf5\xff\xa9\x94\xb2\xf5\xff\x63\xee\xdf\x15\x66\x52\x93\xfc\x0f\x00\x00" "\x00\x75\x10\x73\xff\xee\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x3d" "\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xf7\x84\x99\xd4\x24\xff\xeb" "\xff\xeb\xff\xeb\xff\xeb\xff\xfb\xfc\xff\xee\xfb\xd7\xff\xdf\x98\xf4\xff" "\x7b\x1b\x7c\xff\x3f\x3e\x44\xfd\x7f\xfd\x7f\xfd\x7f\x9f\xff\xaf\xff\xcf" "\x52\x65\xeb\xff\xc7\xdc\x7f\x6f\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41" "\xcc\xfd\x7b\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xf7\x85\x99\xc8" "\xff\x00\x00\x00\x50\x19\x31\xf7\xef\x0f\x33\xa9\x49\xfe\xd7\xff\xd7\xff" "\xd7\xff\xd7\xff\xd7\xff\xef\xbe\x7f\xfd\xff\x8d\x49\xff\xbf\x37\x9f\xff" "\xdf\x87\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x6b\xf4\xd0\x1f\xb6\x7f\x55\xb6" "\xfe\x7f\xcc\xfd\x07\xc2\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62\xee\x7f" "\x6d\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xaf\x84\x99\xc8\xff\x00" "\x00\x00\x50\x19\x31\xf7\xff\x6a\x98\x49\x4d\xf2\xbf\xfe\x7f\x47\xf7\xbc" "\xf9\x70\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x5b\xf4\xff\x37\x26\xfd\xff\xde" "\xf4\xff\xfb\xd0\xff\x5f\x5d\x7f\x7e\xb4\xf3\x4b\xfd\x7f\xfd\x7f\xfd\x7f" "\x8a\x96\xed\xff\x87\xe8\xbd\xde\xfd\xff\x98\xfb\xef\x0b\x33\xa9\x49\xfe" "\x07\x00\x00\x80\x3a\x88\xb9\xff\xd7\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c" "\x98\xfb\x5f\x17\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x30\xcc\xa4" "\x26\xf9\x5f\xff\xdf\xe7\xff\xeb\xff\xeb\xff\xeb\xff\x77\xdf\xff\x7a\xf7" "\xff\xc7\xe2\xfd\xea\xff\xaf\x89\xfe\x7f\x6f\xfa\xff\x7d\xe8\xff\xfb\xfc" "\x7f\xfd\x7f\xfd\x7f\x06\xaa\x6c\x9f\xff\x1f\x73\xff\xeb\xc3\x4c\x6a\x92" "\xff\x01\x00\x00\xa0\x0e\x62\xee\xbf\x3f\xcc\x44\xfe\x07\x00\x00\x80\xca" "\x88\xb9\xff\x0d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x6f\x0c\x33" "\xa9\x49\xfe\xd7\xff\xd7\xff\xdf\x28\xfd\xff\xab\xf4\xff\xf5\xff\x0b\x8f" "\xa7\x6a\xfd\x7f\x9f\xff\x3f\x18\xfa\xff\xbd\xe9\xff\xf7\xa1\xff\xaf\xff" "\xaf\xff\xaf\xff\xcf\x40\x95\xad\xff\x1f\x73\xff\x9b\xc2\x4c\x6a\x92\xff" "\x01\x00\x00\xa0\x0e\x62\xee\x7f\x73\x98\x89\xfc\x0f\x00\x00\x00\x95\x11" "\x73\xff\x5b\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xdf\x1a\x66\x52" "\x93\xfc\xaf\xff\xaf\xff\xbf\x51\xfa\xff\x99\xfe\xbf\xfe\x7f\xe1\xf1\xe8" "\xff\xeb\xff\x77\xa3\xff\xdf\x9b\xfe\x7f\x1f\xfa\xff\xfa\xff\xfa\xff\xfa" "\xff\x0c\x54\xd9\xfa\xff\x31\xf7\xff\x7a\x98\x49\x4d\xf2\x3f\x00\x00\x00" "\xd4\x41\xcc\xfd\x0f\x84\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xbf\x2d" "\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xed\x61\x26\x35\xc9\xff\xfa" "\xff\xfa\xff\xfa\xff\xfa\xff\x6b\xea\xff\x6f\xd6\xff\xd7\xff\x2f\x17\xfd" "\xff\xde\x36\x58\xff\xff\xe7\x57\x87\xcb\xf5\xff\x73\xfa\xff\xe5\x3e\xfe" "\xd5\xf6\xff\x47\x0a\x5f\x5f\x91\xfe\xff\xf7\x97\xeb\xff\x2f\x6c\x2a\xde" "\x5e\xff\x9f\x2b\xa1\x6c\xfd\xff\x98\xfb\xdf\x11\x66\x52\x93\xfc\x0f\x00" "\x00\x00\x75\x10\x73\xff\x3b\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb" "\xdf\x15\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\x1b\x61\x26\x35\xc9" "\xff\xfa\xff\xcd\xe3\x58\x6c\x2f\xeb\xff\x57\xb5\xff\x3f\xa4\xff\xef\xf3" "\xff\xf5\xff\x6b\x42\xff\xbf\xb7\x0d\xd6\xff\xf7\xf9\xff\x05\xfa\xff\xe5" "\x3e\x7e\x9f\xff\xaf\xff\xcf\x52\x65\xeb\xff\xc7\xdc\xff\xee\x30\x93\x9a" "\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\x1f\x0c\x33\x91\xff\x01\x00\x00\xa0" "\x32\x62\xee\x7f\x28\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x3d\x61" "\x26\x35\xc9\xff\xfa\xff\x3e\xff\xbf\x1e\xfd\x7f\x9f\xff\x9f\xe9\xff\xeb" "\xff\xd7\xc4\xda\xfa\xf7\xa3\xfa\xff\x91\xfe\xbf\xfe\xbf\xfe\x7f\x39\xfa" "\xff\xff\xa9\xff\xcf\xc6\x56\xb6\xfe\x7f\xcc\xfd\x0f\x87\x99\xd4\x24\xff" "\x03\x00\x00\x40\x1d\xc4\xdc\xff\x48\x98\x89\xfc\x0f\x00\x00\x00\x95\x11" "\x73\xff\x6f\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xbf\x37\xcc\xa4" "\x26\xf9\x5f\xff\x7f\xa3\xf4\xff\x27\x36\x68\xff\xff\x09\xfd\xff\x2b\xd8" "\xff\xbf\xe9\xea\x7c\x3b\xfd\x7f\xfd\x7f\x16\xf9\xfc\xff\xde\xf4\xff\xfb" "\xd0\xff\xd7\xff\x2f\x5b\xff\xdf\xe7\xff\xb3\xc1\x95\xad\xff\x1f\x73\xff" "\xfb\xc2\x4c\x56\x9e\xff\xc7\x57\xbc\x25\x00\x00\x00\x70\x65\x14\xff\x22" "\xa9\x20\xe6\xfe\xdf\x0a\x33\xa9\xc9\xdf\xff\x03\x00\x00\x40\x1d\xc4\xdc" "\xff\xdb\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xbf\x13\x66\x52\x93" "\xfc\xaf\xff\xbf\x51\xfa\xff\x3e\xff\x3f\xd3\xff\xf7\xf9\xff\x85\xc7\xa3" "\xff\xaf\xff\xdf\xcd\xfa\xf5\xff\xe3\x3b\x8f\xfe\xbf\xfe\xbf\xfe\x7f\xa4" "\xff\xaf\xff\xaf\xff\x4f\x51\xd9\xfa\xff\x31\xf7\xff\x6e\x98\x49\x4d\xf2" "\x3f\x00\x00\x00\xd4\x41\xcc\xfd\xef\x0f\x33\x91\xff\x01\x00\x00\x60\x43" "\xe8\xf6\xff\x64\x17\xc5\xdc\x7f\x28\xcc\x44\xfe\x07\x00\x00\x80\xca\x88" "\xb9\xff\x70\x98\x49\x4d\xf2\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x49\xfb\xff\x7f" "\xb6\xe3\x5f\xbe\xfb\xad\x77\x1e\xde\xa5\xff\xaf\xff\xaf\xff\xbf\x2a\xeb" "\xfa\xf9\xff\xcd\x17\xbf\xcf\xff\xd7\xff\xd7\xff\x4f\xf4\xff\xf5\xff\xf5" "\xff\x29\x2a\x5b\xff\x3f\xe6\xfe\x23\x61\x26\x35\xc9\xff\x00\x00\x00\x50" "\x07\x31\xf7\xff\x5e\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xd1\x30" "\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x99\x30\x93\x9a\xe4\x7f\xfd\x7f" "\xfd\x7f\xfd\xff\x92\xf6\xff\x37\xf0\xe7\xff\xc7\xf3\xa1\xff\xdf\x69\x60" "\xfd\xff\xf8\xa6\xab\xff\xdf\x55\xde\xbf\x4f\xab\xe8\xca\xf6\xff\x1f\x59" "\xec\x89\xeb\xff\xaf\xb6\xff\x3f\xd6\xf5\x52\xfd\x7f\xfd\xff\x8d\x7c\xfc" "\xfa\xff\xfa\xff\x2c\x55\xb6\xfe\x7f\xcc\xfd\xb3\x61\x26\x35\xc9\xff\x00" "\x00\x00\x50\x07\x21\xf7\x0f\x1d\xcb\xe7\xe2\x15\xf2\x3f\x00\x00\x00\x54" "\x46\xcc\xfd\xc7\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x3f\x10\x66" "\x52\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xef\xf3\xff\xbb\xef\xbf\x57" "\xff\xbf\x31\xe2\xf3\xff\xcb\x2a\xf5\xef\x7f\xda\x7a\xa1\xe8\xff\x17\x94" "\xa7\xff\xdf\x9d\xfe\xbf\xfe\xff\x46\x3e\x7e\xfd\x7f\xfd\x7f\x96\x2a\x5b" "\xff\x3f\xe6\xfe\xb9\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\x3f" "\x18\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xa1\x30\x13\xf9\x1f\x00" "\x00\x00\x2a\x23\xe6\xfe\x13\x61\x26\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff" "\xfa\xff\xfa\xff\xdd\xf7\x5f\xda\xcf\xff\xd7\xff\xef\x69\xad\xfd\x7b\xfd" "\xff\x40\xff\xbf\xde\xfd\xff\xff\xd1\xff\xd7\xff\xd7\xff\x67\x30\xfe\x9f" "\xbd\x3b\x69\xb2\xac\x4e\xeb\x38\x7e\x52\x0b\x2a\x33\xda\x85\x0b\x23\x5c" "\xb8\x31\xc2\xa5\x2f\xa1\x17\xba\xd6\x17\xe0\xc2\x8d\x1b\x23\x0c\x23\x6c" "\xb5\x5b\x6d\xe7\xae\x76\x1e\x5b\xbb\xb5\x9d\xb5\x05\xe7\x01\x54\x10\x44" "\x54\x70\x1e\x40\x45\x14\x67\x50\x71\x9e\x07\x54\x44\x94\xa8\x8e\xba\xf9" "\x3c\x4f\x4e\x27\xcf\xcd\xe1\xe6\xbd\xe7\xfc\xff\x9f\xcf\xa2\x1e\x49\x2a" "\xb9\x57\xa2\xcc\xe2\x47\xf2\xf5\xcc\xad\xff\xcf\xdd\xff\x29\x71\x4b\x27" "\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x2d\x71\x8b\xfd\x0f\x00\x00\x00\xcd" "\xc8\xdd\xff\xa9\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x69\x71\x4b" "\x27\xfb\x5f\xff\x7f\x9d\xfe\xff\xa8\x52\xd6\xff\x9f\x7c\xff\xeb\xfb\xff" "\x7c\xc5\x1b\xec\xff\x3f\x4a\xff\x7f\xde\xeb\xeb\xff\xf5\xff\x2d\xd3\xff" "\x4f\xd3\xff\xaf\x31\xde\xff\xdf\x3f\x0c\x43\x5f\xfd\xbf\xe7\xff\xeb\xff" "\xf5\xff\x6c\xc8\xdc\xfa\xff\xdc\xfd\x9f\x1e\xb7\x74\xb2\xff\x01\x00\x00" "\xa0\x07\xb9\xfb\xdf\x3a\x1c\xd8\xff\x00\x00\x00\xd0\xa8\xb7\xae\x7e\xdc" "\x1f\xde\x16\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x9f\x11\xb7\x74\xb2" "\xff\x4f\xf5\xff\x7b\x43\x9f\xfd\x7f\x66\xbc\x9e\xff\xef\xf9\xff\xfa\xff" "\xf3\xfa\xff\xd5\x0f\xfa\x7f\xfd\xff\xfc\x6d\xb7\xff\x7f\xe7\xbd\xaf\x7c" "\xfa\xff\x0b\xf7\xff\x0f\xbf\x67\xdd\xcb\xce\xb4\xff\x6f\xf1\xf9\xff\xf7" "\x8f\x7d\x70\xd7\xfd\xfc\x75\xed\xfa\xfd\x5f\xb0\xff\xbf\x7d\xde\xe7\xeb" "\xff\x69\xd1\xdc\xfa\xff\xdc\xfd\x9f\x19\xb7\x74\xb2\xff\x01\x00\x00\xa0" "\x07\xb9\xfb\x3f\x2b\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xdf\x1e\xb7" "\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x9f\x1d\xb7\x74\xb2\xff\x37\xf7\xfc" "\xff\x83\xd5\xc7\x17\xda\xff\x17\xfd\xbf\xfe\x7f\xf5\x01\xfd\xbf\xe7\xff" "\xeb\xff\x17\xcb\xf3\xff\xa7\xf5\xf4\xfc\xff\xb7\xbd\xf0\xa6\xb7\xbc\xf2" "\xf8\x87\x3d\x71\x99\xd7\xef\xa8\xff\x1f\xb5\xeb\x7e\x7e\xe9\xef\xdf\xf3" "\xff\xf5\xff\x9c\x35\xb7\xfe\x3f\x77\xff\xe7\xc4\x2d\x9d\xec\x7f\x00\x00" "\x00\xe8\x41\xee\xfe\xcf\x8d\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xcf" "\x8b\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xcf\x8f\x5b\x3a\xd9\xff\x9b" "\xeb\xff\x17\xfd\xfc\xff\xa2\xff\xd7\xff\xaf\x3e\xb0\xa8\xfe\xff\x8e\xfe" "\x5f\xff\xcf\x31\xfa\xff\x69\x3d\xf5\xff\x57\x79\x7d\xfd\xbf\xfe\x5f\xff" "\xaf\xff\x67\xb3\xe6\xd6\xff\xe7\xee\xff\x82\xb8\xa5\x93\xfd\x0f\x00\x00" "\x00\x3d\xc8\xdd\xff\x85\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x8e" "\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xbf\x13\xb7\x74\xb2\xff\xf5\xff" "\x37\xdf\xff\xbf\xa1\xff\xd7\xff\xc7\xf5\xfc\x7f\xfd\xbf\xfe\xff\xe6\xe9" "\xff\xa7\xe9\xff\xd7\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x36\x6a\x6e\xfd\x7f" "\xee\xfe\x77\xc6\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x2f\x8a\x5b" "\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x2f\x8e\x5b\xec\x7f\x00\x00\x00\x68" "\x46\xee\xfe\x2f\x89\x5b\x3a\xd9\xff\xfa\x7f\xcf\xff\xd7\xff\xeb\xff\xf5" "\xff\xe3\xaf\xaf\xff\x5f\x26\xfd\xff\x34\xfd\xff\x1a\xfa\xff\xeb\xf6\xf3" "\xf7\xe9\xff\xf5\xff\xfa\x7f\x8e\xbb\x64\xff\xff\xfa\xc4\x97\xed\x8d\xf4" "\xff\xb9\xfb\xbf\x34\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x7f\x59" "\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x79\xdc\x62\xff\x03\x00\x00" "\x40\x33\x72\xf7\x7f\x45\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\xff" "\x2b\xf7\xff\x67\x7f\xe9\xad\xe8\xff\xc7\xe9\xff\xb7\x43\xff\x3f\x6d\x36" "\xfd\xff\xde\xad\xd1\x0f\xeb\xff\x17\xdf\xff\x7b\xfe\xbf\xfe\x5f\xff\xcf" "\x09\x73\x7b\xfe\x7f\xee\xfe\xaf\x8c\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83" "\xdc\xfd\x5f\x15\xb7\x4c\xec\xff\x4b\xff\xcb\x7c\x00\x00\x00\x60\xa7\x72" "\xf7\x7f\x75\xdc\xe2\xfb\xff\x00\x00\x00\xb0\x78\x59\x9d\xe5\xee\xff\x9a" "\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x9e\xff\x3f\xfe\xfa\x53" "\xfd\xff\x13\xc7\xde\x9f\xfe\x7f\x5e\xf4\xff\xd3\x66\xd3\xff\x9f\x43\xff" "\xaf\xff\x5f\xf2\xfb\xd7\xff\xeb\xff\x39\x6b\x6e\xfd\x7f\xee\xfe\xaf\x8d" "\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xef\x8a\x5b\xec\x7f\x00\x00" "\x00\x68\x46\xee\xfe\xaf\x8b\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xaf" "\x8f\x5b\x3a\xd9\xff\xe3\xfd\xff\xd1\x9f\xd7\xff\x5f\x8c\xfe\xff\xe4\xfb" "\xd7\xff\x8f\xff\xfa\xd8\x54\xff\x9f\x7f\x45\xfd\xff\x64\xff\xff\xd1\x9e" "\xff\xdf\x27\xfd\xff\xb4\xed\xf7\xff\xb7\xf5\xff\x27\xff\xfa\xfa\xff\x1b" "\xb4\xeb\xf7\xdf\x78\xff\x7f\xb0\xee\xf3\xf5\xff\x8c\x99\x5b\xff\x9f\xbb" "\xff\xdd\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x3d\x71\x8b\xfd" "\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x0d\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8" "\xdd\xff\x8d\x71\x4b\x27\xfb\xdf\xf3\xff\xf5\xff\xfa\xff\xe5\xf5\xff\x9e" "\xff\x7f\x68\x97\xcf\xff\x1f\xb6\xde\xff\xdf\xd2\xff\x5f\x90\xfe\x7f\x9a" "\xe7\xff\xaf\xa1\xff\xd7\xff\xeb\xff\x3d\xff\x9f\x8d\x9a\x5b\xff\x9f\xbb" "\xff\xbd\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\xf0\xde\xd7\x86\xd5\xee\xff" "\xa6\x61\xb0\xff\x01\x00\x00\x60\x89\x8e\xff\xb7\x03\xa7\xff\x83\xd2\x90" "\xbb\xff\x9b\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x5b\xe2\x96\x4e" "\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xc7\x5f\xff\xb2\xfd\xff\xba" "\x07\x23\x7b\xfe\xff\x76\xe8\xff\xa7\xe9\xff\xd7\xd0\xff\xdf\x44\x3f\x7f" "\xab\xb1\xfe\xff\x7d\xe7\x7d\xfe\x1c\xfa\xff\x77\xe8\xff\x99\x99\x13\xfd" "\xff\x53\x47\x1f\xdf\x55\xff\x9f\xbb\xff\x5b\xe3\x96\x4e\xf6\x3f\x00\x00" "\x00\xf4\x20\x77\xff\xb7\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xb7" "\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x77\xc4\x2d\x9d\xec\xff\x1b" "\xef\xff\x27\x82\x58\xfd\xbf\xfe\x5f\xff\xaf\xff\x6f\xa9\xff\x5f\x47\xff" "\xbf\x1d\xfa\xff\x69\xfa\xff\x35\xf4\xff\x9e\xff\xef\xf9\xff\xfa\x7f\x36" "\xea\xa8\xff\x3f\xf9\xf5\x70\x57\xfd\x7f\xee\xfe\xef\x8c\x5b\x3a\xd9\xff" "\x00\x00\x00\xd0\x83\xdc\xfd\xdf\x15\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc" "\xfd\xef\x8b\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xef\x8e\x5b\x3a\xd9" "\xff\x9e\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xe3\xaf\xaf\xff\x5f\x26\xfd" "\xff\x34\xfd\xff\x1a\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x46\x9d\x78\xfe\xff" "\x31\xbb\xea\xff\x73\xf7\x3f\x10\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9" "\xfb\x1f\x8c\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xef\x89\x5b\xec\x7f" "\x00\x00\x00\x68\x46\xee\xfe\xef\x8d\x5b\x3a\xd9\xff\xfa\xff\x9b\xed\xff" "\xf3\xe3\xfa\x7f\xfd\xff\xa0\xff\xd7\xff\xeb\xff\xb7\xa2\xdb\xfe\x7f\x6f" "\xec\x77\xa2\xb3\xce\xe9\xff\x9f\xfd\xa4\x3b\x1f\x7b\xf2\x23\xfa\x7f\xfd" "\xbf\xfe\x5f\xff\xaf\xff\x67\x03\x66\xd1\xff\xdf\x3d\xfa\xa7\xcb\xdc\xfd" "\xdf\x17\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xbf\x3f\x6e\xb1\xff" "\x01\x00\x00\xa0\x19\xb9\xfb\x7f\x20\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9" "\xfb\x7f\x30\x6e\xb9\xe4\xfe\xff\xe0\x8d\xbe\xab\xed\xd1\xff\x7b\xfe\xbf" "\xfe\x5f\xff\xaf\xff\x1f\x7f\x7d\xfd\xff\x32\x75\xdb\xff\x5f\x90\xe7\xff" "\xaf\xa1\xff\xd7\xff\xeb\xff\xf5\xff\x6c\xd4\x2c\xfa\xff\x63\x7f\x9c\xbb" "\xff\x87\xe2\x16\xdf\xff\x07\x00\x00\x80\x66\xe4\xee\xff\xe1\xb8\xc5\xfe" "\x07\x00\x00\x80\x66\xe4\xee\xff\x91\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4" "\xee\xff\xd1\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xf1" "\xd7\xbf\x6a\xff\xbf\x3f\x8c\xd3\xff\x6f\x87\xfe\x7f\x9a\xfe\x7f\x0d\xfd" "\xbf\xfe\x5f\xff\xaf\xff\x67\xa3\xe6\xd6\xff\xe7\xee\x7f\x28\x6e\xe9\x64" "\xff\x03\x00\x00\x40\x0f\x72\xf7\x3f\x1c\xb7\xd8\xff\x00\x00\x00\xd0\x8c" "\xdc\xfd\x3f\x16\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x3f\x1e\xb7\x74" "\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x3f\xfe\xfa\x9e\xff\xbf\x4c" "\xfa\xff\x69\xfa\xff\x61\x18\x1e\x99\x78\x03\x63\xfd\xff\xdd\xdb\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\xcf\x15\xcd\xad\xff\xcf\xdd\xff\x13\x71\x4b\x27\xfb" "\x1f\x00\x00\x00\x7a\x90\xbb\xff\x91\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4" "\xee\x7f\x34\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x7f\x32\x6e\xe9\x64" "\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xfc\xf5\xf5\xff\xcb\xa4\xff" "\x9f\xa6\xff\x5f\xc3\xf3\xff\xf5\xff\xfa\x7f\xfd\x3f\x1b\x35\xb7\xfe\x3f" "\x77\xff\x63\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xf1\xb8\xc5" "\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\xa9\xb8\xc5\xfe\x07\x00\x00\x80\x66" "\xe4\xee\x7f\x22\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x8d\xf4" "\xff\x77\xf4\xff\xa7\xe9\xff\xb7\xe3\xe6\xfa\xff\x41\xff\xdf\x5e\xff\x7f" "\xfa\xcb\x8d\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\x61\xdb\xea\xff\x5f\x8f\xaf" "\xf7\xeb\xfa\xff\xdc\xfd\x3f\x1d\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9" "\xfb\x9f\x8c\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x9f\x89\x5b\xec\x7f" "\x00\x00\x00\x68\x46\xee\xfe\x9f\x8d\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\xef\xf9\xff\xe3\xaf\xaf\xff\x5f\x26\xcf\xff\x9f\xa6\xff\x5f\x43" "\xff\xaf\xff\xbf\xd4\xfb\xff\x90\x13\x7f\xa4\xff\xd7\xff\x73\xd6\xb6\xfa" "\xff\xf3\x7a\xff\xd3\x7f\x9c\xbb\xff\xe7\xe2\x96\x4e\xf6\x3f\x00\x00\x00" "\xf4\x20\x77\xff\x53\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x74\xdc" "\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x7c\xdc\xd2\xc9\xfe\xd7\xff\xeb" "\xff\x4f\xf6\xff\xc3\xa0\xff\xd7\xff\xeb\xff\x0f\x6d\xa1\xff\xdf\x1f\xf4" "\xff\x1b\xa7\xff\x9f\xa6\xff\x5f\x43\xff\xdf\x66\xff\xff\x01\xc3\x92\x9f" "\xff\x7f\x10\x7f\x3a\x7e\xb9\x1f\x9c\xfb\xf9\xfa\x7f\xe6\x68\x6e\xfd\x7f" "\xee\xfe\x5f\x88\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xbf\x18\xb7" "\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xbf\x14\xb7\xd8\xff\x00\x00\x00\xd0" "\x8c\xdc\xfd\xbf\x1c\xb7\xb4\xb4\xff\xdf\x38\x3f\x7d\x5b\x7e\xff\x7f\xfb" "\xd4\x27\xea\xff\x87\x61\x78\xf1\xed\x9e\xff\xaf\xff\x9f\x78\x7d\xfd\xff" "\x6c\xfa\xff\xfa\xbb\xaa\xff\xdf\x1c\xfd\xff\xb4\x46\xfb\xff\x57\x86\x61" "\xd0\xff\x6f\x40\xb3\xfd\xff\x96\xde\xbf\xe7\xff\xeb\xff\x39\x6b\x6e\xfd" "\x7f\xee\xfe\x5f\x89\x5b\x5a\xda\xff\x00\x00\x00\xd0\xb9\xdc\xfd\xbf\x1a" "\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xbf\x16\xb7\xd8\xff\x00\x00\x00" "\xd0\x8c\xdc\xfd\xbf\x1e\xb7\x74\xb2\xff\x97\xdf\xff\x9f\xfe\x44\xfd\xff" "\x70\xad\xe7\xff\xeb\xff\x57\x1f\xd0\xff\xeb\xff\xf5\xff\x8b\x75\xdd\xfe" "\xfe\x81\xfd\xf8\x3d\x4d\xff\xbf\xa4\xfe\x7f\xcb\xcf\xff\x3f\xb8\xf7\x3b" "\x5e\xb7\xfd\xff\xde\x39\xff\xdc\x33\xe8\xff\xf5\xff\xfa\x7f\x46\xcc\xad" "\xff\xcf\xdd\xff\x1b\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x99" "\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x36\x6e\xb1\xff\x01\x00\x00" "\xa0\x19\xb9\xfb\x7f\x33\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xfa\xff\x65\xf6" "\xff\xfb\xfa\x7f\xfd\xbf\xfe\x7f\xd4\x5c\x9e\xff\xff\xe6\x37\x7f\xcc\xf3" "\xfa\xff\x56\xfb\x7f\xcf\xff\x3f\x8f\xfe\x5f\xff\xaf\xff\xe7\xb4\xb9\xf5" "\xff\xb9\xfb\x7f\x2b\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\xff\x76" "\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x17\xb7\xd8\xff\x00\x00\x00" "\xd0\x8c\xe7\x56\x21\xe7\xfe\xf0\x3b\xc3\xd0\xe5\xfe\x3f\xdb\xff\xdf\x37" "\x1c\x16\xaa\x87\xc6\xfa\xff\x68\xd4\xf4\xff\xc7\xe8\xff\x4f\xbe\x7f\xfd" "\xff\xf8\xaf\x0f\xcf\xff\xd7\xff\xeb\xff\x6f\xde\x5c\xfa\x7f\xcf\xff\xbf" "\xda\xfb\xd7\xff\xeb\xff\x97\xfc\xfe\x2f\xd5\xff\x7f\xf8\xd9\xcf\xd7\xff" "\xd3\xa2\xb9\xf5\xff\xb9\xfb\x9f\x8f\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83" "\xdc\xfd\xbf\x1b\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xbf\x17\xb7\xd8" "\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x2f\xc4\x2d\x9d\xec\x7f\xcf\xff\xbf\xe1" "\xfe\xff\x3e\xfd\xbf\xfe\x5f\xff\x5f\xbf\x2e\xf5\xff\xfa\xff\x2d\xd0\xff" "\x4f\xd3\xff\xaf\xa1\xff\xbf\x7e\x3f\x9f\x5f\x55\xf5\xff\xcb\x7d\xfe\xff" "\x07\xea\xff\xd9\x9c\xb9\xf5\xff\xb9\xfb\x7f\x3f\x6e\x59\x0d\xbf\x8f\xf8" "\xa0\x2b\xfe\xaf\x09\x00\x00\x00\xcc\x48\xee\xfe\x3f\x88\x5b\x3a\xf9\xfe" "\x3f\x00\x00\x00\xf4\x20\x77\xff\x1f\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23" "\x77\xff\x1f\xc5\x2d\x9d\xec\x7f\xfd\xbf\xe7\xff\xeb\xff\xf5\xff\xfa\xff" "\xf1\xd7\xd7\xff\x2f\x93\xfe\x7f\x9a\xfe\x7f\x8d\x7e\xfa\xff\xfd\xb1\x0f" "\xee\xba\x9f\xbf\xae\x5d\xbf\xff\x1d\xf6\xff\xab\x5f\x16\x9e\xff\xcf\x1c" "\xcd\xad\xff\xcf\xdd\xff\xc7\x71\x4b\x27\xfb\x1f\x00\x00\x00\xda\xf6\xda" "\xea\xc7\xdc\xfd\x7f\x12\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x7f\x1a" "\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x2f\xc6\x2d\x9d\xec\xff\x25\xf6" "\xff\x07\xfa\x7f\xfd\xff\xa5\xfa\xff\x4f\xd0\xff\x9f\x7a\x7d\xfd\xbf\xfe" "\xbf\x65\xfa\xff\xfc\x1d\x7d\x9c\xfe\x7f\x8d\x7e\xfa\xff\x51\xbb\xee\xe7" "\x37\xf6\xfe\xef\xfd\x1f\x41\x5f\xfd\xff\x8a\xfe\x9f\x39\x9a\x5b\xff\x9f" "\xbb\xff\xa5\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x67\x71\x8b" "\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xe7\x71\x8b\xfd\x0f\x00\x00\x00\x0b" "\x75\xfb\xcc\x47\x72\xf7\xff\x45\xdc\xd2\xc4\xfe\xbf\xb5\xf6\x67\x2c\xb1" "\xff\xf7\xfc\xff\xab\xf7\xff\x7b\x43\x8f\xfd\xbf\xe7\xff\xeb\xff\xf5\xff" "\x3d\x59\x4e\xff\xff\xe0\xe8\x6f\xd2\x9e\xff\xaf\xff\xd7\xff\x2f\xf7\xfd" "\xeb\xff\xf5\xff\x9c\x35\xb7\xfe\x3f\x77\xff\xcb\x7b\xb7\x1a\xdc\xff\x00" "\x00\x00\xd0\xae\x8f\xfb\xc8\x4f\x7e\xe9\xa2\x3f\xf7\xe5\xd5\x8f\xfb\xc3" "\x5f\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x5f\xc5\x2d\xf6\x3f\x00" "\x00\x00\x34\x23\x77\xff\x5f\xc7\x2d\x9d\xec\x7f\xfd\x7f\x5f\xfd\x7f\x9f" "\xcf\xff\xd7\xff\xeb\xff\xf5\xff\x3d\x59\x4e\xff\x3f\x4e\xff\xaf\xff\xd7" "\xff\x2f\xf7\xfd\xeb\xff\xf5\xff\x9c\x35\xb7\xfe\x3f\x77\xff\xdf\xc4\x2d" "\xc7\x86\xdf\xfa\xff\x2f\x7a\x00\x00\x00\xc0\x56\xdd\x7f\xb9\x9f\x9e\xbb" "\xff\x6f\xe3\x96\x4e\xbe\xff\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x77\x71\xcb" "\x99\xfd\x7f\xf7\x82\xff\x55\x3b\x00\x00\x00\x30\x37\xb9\xfb\xff\x3e\x6e" "\xe9\xe4\xfb\xff\xfa\xff\x99\xf7\xff\xc3\x0d\xf5\xff\xf1\xf3\xf4\xff\x87" "\xb6\xdd\xff\xef\x9d\xfa\xf9\xfa\xff\x43\xfa\x7f\xfd\xff\x26\xe8\xff\xa7" "\x5d\xb3\xff\xbf\xbb\xa7\xff\xd7\xff\x4f\xd0\xff\xeb\xff\xf5\xff\x9c\x36" "\xb7\xfe\x3f\x77\xff\x93\x8f\x0d\x5d\xee\x7f\x00\x00\x00\x68\xd4\x89\x7f" "\xa3\xf0\x0f\xab\x1f\xf7\x87\x7f\x8c\x5b\x2e\xba\xff\x4f\x7f\xa3\x0a\x00" "\x00\x00\x98\x9d\xdc\xfd\xff\x14\xb7\xf8\xfe\x3f\x00\x00\x00\x34\x23\x77" "\xff\x3f\xc7\x2d\x9d\xec\x7f\xfd\xff\xcc\xfb\xff\x2b\x3d\xff\xff\xa0\xfe" "\x27\xcf\xff\x9f\x67\xff\xbf\xb5\xe7\xff\xbf\x6b\x7f\xf4\xf5\xf5\xff\xfa" "\xff\x96\xe9\xff\xa7\x79\xfe\xff\x1a\xfa\x7f\xfd\xbf\xfe\xff\xf2\xfd\xff" "\xab\x87\x47\xff\xcf\x98\x4b\xf4\xff\xab\x41\x7a\xd3\xfd\x7f\xee\xfe\x7f" "\x89\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xff\x1a\xb7\xd8\xff\x00" "\x00\x00\xd0\x8c\xdc\xfd\xff\x16\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd" "\xff\x1e\xb7\x74\xb2\xff\xf5\xff\x3b\xe8\xff\xdf\x7d\x7b\x18\x6e\xb4\xff" "\xbf\xc0\xf3\xff\xf5\xff\x7d\xf4\xff\xe7\xbc\x7e\x3b\xfd\xff\x87\xbe\xe9" "\xce\x33\x1f\xff\x89\x8f\x3e\xa4\xff\xe7\xc8\x36\xfb\xff\xfc\xb5\xa0\xff" "\xd7\xff\xeb\xff\x0f\xe9\xff\x3b\xed\xff\x83\xfe\x9f\x31\x73\x7b\xfe\x7f" "\xee\xfe\xff\x88\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xaf\xc4\x2d" "\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x7f\xc6\x2d\xf7\xf6\xff\xd3\xbb\x7a" "\x57\x00\x00\x00\xc0\x26\xe5\xee\xff\xaf\xb8\xa5\x93\xef\xff\xeb\xff\x5b" "\x7c\xfe\xff\x32\xfb\xff\xfc\x7b\xbd\x83\xfe\xff\xce\xf2\xfa\xff\x6c\x8a" "\x7b\xef\xff\x3d\xff\x5f\xff\x7f\x96\xe7\xff\x4f\xd3\xff\xaf\xa1\xff\xd7" "\xff\xeb\xff\xf5\xff\x6c\xd4\xdc\xfa\xff\xdc\xfd\xff\x1d\xb7\x74\xb2\xff" "\x01\x00\x00\xa0\x07\xb9\xfb\x5f\x8d\x5b\x72\xff\xef\x5d\xfa\x5f\xdd\x03" "\x00\x00\x00\x33\x93\xbb\xff\x7f\xe2\x16\xdf\xff\x07\x00\x00\x80\x66\xe4" "\xee\x7f\x2d\x6e\xe9\x64\xff\xeb\xff\xf5\xff\x73\xe9\xff\x93\xe7\xff\x1f" "\x7d\x9e\xe7\xff\x1f\xd2\xff\xeb\xff\x2f\x43\xff\x3f\x4d\xff\xbf\x86\xfe" "\x5f\xff\xaf\xff\xd7\xff\xb3\x51\x73\xeb\xff\x73\xf7\xff\x6f\xdc\xd2\xc9" "\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x3d\x6e\xb1\xff\x01\x00\x00\xa0\x19" "\xb9\xfb\xff\x2f\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xff\x3f\x6e\xe9" "\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf6\xfb\xff\xc3\xaf\xb5\xfa\xff" "\xa3\xbf\xab\xfa\xff\xcd\xd1\xff\x4f\xd3\xff\xaf\xa1\xff\xd7\xff\xeb\xff" "\xf5\xff\x6c\xd4\xdc\xfa\xff\xdc\xfd\xef\x0f\x00\x00\xff\xff\xf7\x04\x6e" "\x4d", 25255); syz_mount_image(/*fs=*/0x200000000000, /*dir=*/0x200000000040, /*flags=MS_SILENT|MS_NOSUID*/ 0x8002, /*opts=*/0x2000000000c0, /*chdir=*/1, /*size=*/0x62a7, /*img=*/0x200000012f40); // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0x101042 (4 bytes) // mode: open_mode = 0x45 (2 bytes) // ] // returns fd memcpy((void*)0x2000000000c0, "./file1\000", 8); syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x2000000000c0ul, /*flags=O_SYNC|O_CREAT|O_RDWR*/ 0x101042, /*mode=S_IXOTH|S_IROTH|S_IXUSR*/ 0x45); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; use_temporary_dir(); loop(); return 0; }