// https://syzkaller.appspot.com/bug?id=16d67548870e2a55046efe2db946239f1e4e6891 // 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 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif #ifndef __NR_truncate #define __NR_truncate 45 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; retry: const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } void execute_one(void) { memcpy((void*)0x20000000, "jfs\000", 4); memcpy((void*)0x20000040, "./file0\000", 8); memcpy( (void*)0x20006340, "\x78\x9c\xec\xdd\xcb\x8e\x1c\x57\x19\x07\xf0\xaf\xfa\x36\x17\x13\xc7\xca" "\x22\x0a\x16\x42\x93\xc4\x5c\x42\x88\xaf\xc1\x18\x02\x24\x59\xc0\x82\x0d" "\x0b\xe4\x2d\xb2\x35\x99\x44\x56\x1c\x40\xb6\x41\xb6\x65\xe1\x89\x66\xc3" "\x82\x87\x00\x21\xb1\x44\x88\x25\x2b\x1e\x20\x0b\xb6\xec\x78\x00\x2c\xd9" "\x48\xa0\xac\x52\xa8\x66\xce\x19\xd7\xb4\xa7\xdd\x63\x3b\xd3\xd5\x33\xe7" "\xf7\x93\xc6\x55\x5f\x9f\xaa\xe9\x53\xfe\x77\xf5\x65\xaa\xaa\x4f\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf1\xe3\x1f\xfd\xf4\x4c" "\x15\x11\x97\x7e\x9d\x6e\x38\x16\xf1\x85\xe8\x47\xf4\x22\x96\x9a\x7a\x25" "\x22\x96\x56\x8e\xe5\xe5\x07\x11\xf1\x52\x6c\x36\xc7\x8b\x11\x31\x5c\x88" "\xa8\x72\xe3\xf3\x11\x6f\x46\xc4\x27\x47\x23\xee\x3f\xb8\xb3\xda\xdc\x74" "\x76\x8f\xfd\xf8\xe1\x5f\xfe\xf9\xc7\x9f\x1d\xf9\xc9\x3f\xfe\x3c\x3c\xf5" "\xbf\xbf\xde\xe8\xbf\x35\x69\xb9\x9b\x37\x7f\xf7\xdf\xbf\xdd\x7d\xfa\xed" "\x05\x00\x00\x80\x12\xd5\x75\x5d\x57\xe9\x63\xfe\xf1\xf4\xf9\xbe\xd7\x75" "\xa7\x00\x80\x99\xc8\xaf\xff\x75\x92\x6f\x57\xcf\x5d\xbd\x3e\x67\xfd\x51" "\xab\xd5\x6a\xf5\x01\xac\xdb\xea\xdd\xdd\x6d\x17\x11\xb1\xde\x5e\xa7\x79" "\xcf\xe0\x70\x3c\x00\x1c\x30\xeb\xf1\x69\xd7\x5d\xa0\x43\xf2\x2f\xda\x20" "\x22\x8e\x74\xdd\x09\x60\xae\x55\x5d\x77\x80\x7d\x71\xff\xc1\x9d\xd5\x2a" "\xe5\x5b\xb5\x5f\x0f\x56\xb6\xda\xf3\xb9\x20\x3b\xf2\x5f\xaf\xb6\xaf\xef" "\x98\x34\x9d\x66\xfc\x1c\x93\x59\x3d\xbe\x36\xa2\x1f\x2f\x4c\xe8\xcf\xd2" "\x8c\xfa\x30\x4f\x72\xfe\xbd\xf1\xfc\x2f\x6d\xb5\x8f\xd2\x72\xfb\x9d\xff" "\xac\x4c\xca\x7f\xb4\x75\xe9\x53\x71\x72\xfe\xfd\xf1\xfc\xc7\x1c\x9e\xfc" "\x7b\xbb\xe6\x5f\xaa\x9c\xff\xe0\x89\xf2\xef\xcb\x1f\x00\x00\x00\x00\x00" "\xe6\x58\xfe\xfb\xff\xb1\x8e\x8f\xff\x2e\x3c\xfb\xa6\xec\xc9\xe3\x8e\xff" "\xae\xcc\xa8\x0f\x00\x00\x00\x00\x00\x00\x00\xf0\x79\x7b\xd6\xf1\xff\xb6" "\x55\xc6\xff\x03\x00\x00\x80\x79\xd5\x7c\x56\x6f\xfc\xfe\xe8\xc3\xdb\x26" "\x7d\x17\x5b\x73\xfb\xc5\x2a\xe2\xb9\xb1\xe5\x81\xc2\xa4\x8b\x65\x96\xbb" "\xee\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x94\x64\xb0\x75\x0e\xef" "\xc5\x2a\x62\x18\x11\xcf\x2d\x2f\xd7\x75\xdd\xfc\xb4\x8d\xd7\x4f\xea\x59" "\xd7\x3f\xe8\x4a\xdf\x7e\x28\x59\xd7\x4f\xf2\x00\x00\xb0\xe5\x93\xa3\x63" "\xd7\xf2\x57\x11\x8b\x11\x71\x31\x7d\xd7\xdf\x70\x79\x79\xb9\xae\x17\x97" "\x96\xeb\xe5\x7a\x69\x21\xbf\x9f\x1d\x2d\x2c\xd6\x4b\xad\xcf\xb5\x79\xda" "\xdc\xb6\x30\xda\xc3\x1b\xe2\xc1\xa8\x6e\x7e\xd9\x62\x6b\xbd\xb6\x69\x9f" "\x97\xa7\xb5\x8f\xff\xbe\xe6\xbe\x46\x75\x7f\x0f\x1d\x9b\x8d\x0e\x03\x07" "\x80\x88\xd8\x7a\x35\xba\xef\x15\xe9\x90\xa9\xeb\xe7\xa3\xeb\x77\x39\x1c" "\x0c\xf6\xff\xc3\xc7\xfe\xcf\x5e\x74\xfd\x38\x05\x00\x00\x00\xf6\x5f\x5d" "\xd7\x75\x95\xbe\xce\xfb\x78\x3a\xe6\xdf\xeb\xba\x53\x00\xc0\x4c\xe4\xd7" "\xff\xf1\xe3\x02\x6a\xb5\x5a\xad\x56\xab\x0f\x5f\xdd\x56\xef\xee\x6e\xbb" "\x88\x88\xf5\xf6\x3a\xcd\x7b\x06\xc3\xf1\x03\xc0\x01\xb3\x1e\x9f\x76\xdd" "\x05\x3a\x24\xff\xa2\x0d\x22\xe2\xa5\xae\x3b\x01\xcc\xb5\xaa\xeb\x0e\xb0" "\x2f\xee\x3f\xb8\xb3\x5a\xa5\x7c\xab\xf6\xeb\x41\x1a\xdf\x3d\x9f\x0b\xb2" "\x23\xff\xf5\x6a\x73\xbd\xbc\xfe\x6e\xd3\x69\xc6\xcf\x31\x99\xd5\xe3\x6b" "\x23\xfa\xf1\xc2\x84\xfe\xbc\x38\xa3\x3e\xcc\x93\x9c\x7f\x6f\x3c\xff\x4b" "\x5b\xed\xa3\xb4\xdc\x7e\xe7\x3f\x2b\x93\xf2\x6f\xb6\xf3\x58\x07\xfd\xe9" "\x5a\xce\xbf\x3f\x9e\xff\x98\xc3\x93\x7f\x6f\xd7\xfc\x4b\x95\xf3\x1f\x3c" "\x51\xfe\x7d\xf9\x03\x00\x00\x00\x00\xc0\x1c\xcb\x7f\xff\x3f\x36\x57\xc7" "\x7f\x47\x4f\xbb\x39\x53\x3d\xee\xf8\xef\xca\xbe\xdd\x2b\x00\x00\x00\x00" "\x00\x00\x00\xec\xaf\xfb\x0f\xee\xac\xe6\xeb\x5e\xf3\xf1\xff\x2f\xed\xb2" "\x9c\xeb\x3f\x0f\xa7\x9c\x7f\x25\xff\x22\xe5\xfc\x7b\x63\xf9\x7f\x7d\x6c" "\xb9\x7e\x6b\xfe\xde\xbb\x0f\xf3\xff\xcf\x83\x3b\xab\x7f\xba\xf1\xef\x2f" "\xe6\xe9\x5e\xf3\x5f\xc8\x33\x55\x7a\x64\x55\xe9\x11\x51\xa5\x7b\xaa\x06" "\x69\xfa\x2c\x5b\xf7\xa8\x8d\x61\x7f\xd4\xdc\xd3\xb0\xea\xf5\x07\xe9\x9c" "\x9f\x7a\xf8\x7e\x5c\x89\xab\xb1\x16\xa7\x77\x2c\xdb\x4b\xff\x1f\x0f\xdb" "\xcf\xec\x68\x6f\x7a\x3a\xdc\x6c\xaf\xfb\x5b\xed\x67\x77\xb4\x0f\xb6\xdb" "\xf3\xfa\xe7\x76\xb4\x0f\xd3\x99\x4e\xf5\x52\x6e\x3f\x19\xab\xf1\x8b\xb8" "\x1a\xef\x6d\xb6\x37\x6d\x0b\x53\xb6\x7f\x71\x4a\x7b\x3d\xa5\x3d\xe7\xdf" "\xb7\xff\x17\x29\xe7\x3f\x68\xfd\x34\xf9\x2f\xa7\xf6\x6a\x6c\xda\xb8\xf7" "\x71\xef\x91\xfd\xbe\x3d\xdd\xed\x7e\xde\xb9\xf2\xe5\xdf\x9e\xde\xff\xcd" "\x99\x6a\x23\xfa\xdb\xdb\xd6\xd6\x6c\xdf\x2b\x1d\xf4\x67\xf3\xff\xe4\xc8" "\x28\x7e\x75\x7d\xed\xda\xc9\x9b\x97\x6f\xdc\xb8\x76\x26\xd2\x64\xc7\xad" "\x67\x23\x4d\x3e\x67\x39\xff\x61\xfa\xd9\x7e\xfe\x7f\x75\xab\x3d\x3f\xef" "\xb7\xf7\xd7\x7b\x1f\x8f\x9e\x38\xff\x79\xb1\x11\x83\x89\xf9\xbf\xda\x9a" "\x6f\xb6\xf7\xb5\x19\xf7\xad\x0b\x39\xff\x51\xfa\xc9\xf9\xbf\x97\xda\x77" "\xdf\xff\x0f\x72\xfe\x93\xf7\xff\xd7\x3b\xe8\x0f\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x3c\x4e\x5d\xd7\x9b\x97\x88\xbe\x13\x11\xe7\xd3" "\xf5\x3f\x5d\x5d\x9b\x09\x00\xcc\x56\x7e\xfd\xaf\x93\x7c\xfb\xac\xea\xfe" "\x8c\xef\x4f\xad\x3e\xe0\x75\x35\x67\xfd\x99\x69\xfd\x59\x3d\x5f\xfd\x51" "\xab\x0f\x62\xdd\x56\xef\xee\xed\x76\x11\x11\x7f\x6f\xaf\xd3\xbc\x67\xf8" "\xcd\x6e\xbf\x0c\x00\x98\x67\x9f\x45\xc4\xbf\xba\xee\x04\x9d\x91\x7f\xc1" "\xf2\xf7\xfd\x35\xd3\x13\x5d\x77\x06\x98\xa9\xeb\xb7\x6e\x7f\x78\xf9\xea" "\xd5\xb5\x6b\xd7\xbb\xee\x09\x00\x00\x00\x00\x00\x00\x00\xf0\xb4\xf2\xf8" "\x9f\x2b\xad\xf1\x9f\x4f\xd4\x75\x7d\x77\x6c\xb9\x1d\xe3\xbf\xbe\x1b\x2b" "\xcf\x3a\xfe\xe7\x20\xcf\x6c\x0f\x30\x3a\x61\xa0\xea\xfe\x93\x6f\xd3\xe3" "\x6c\xf4\x46\xfd\x5e\x6b\xb8\xf1\x97\x63\xd2\xf8\xdf\xc3\xed\xb9\xc7\x8d" "\xff\x3d\x98\x72\x7f\xc3\x29\xed\xa3\x29\xed\x0b\x53\xda\x17\xa7\xb4\xef" "\x7a\xa1\x47\x4b\xce\xff\xe5\xd6\x78\xe7\x27\x22\xe2\xf8\xd8\xf0\xeb\x25" "\x8c\xff\x3a\x3e\xe6\x7d\x09\x72\xfe\xaf\xb4\x1e\xcf\x4d\xfe\x5f\x1b\x5b" "\xae\x9d\x7f\xfd\x87\x83\x9c\x7f\x6f\x47\xfe\xa7\x6e\x7c\xf4\xcb\x53\xd7" "\x6f\xdd\x7e\xe3\xca\x47\x97\x3f\x58\xfb\x60\xed\xe7\xe7\xce\x9c\x39\x7d" "\xee\xfc\xf9\x0b\x17\x2e\x9c\x7a\xff\xca\xd5\xb5\xd3\x5b\xff\x76\xd8\xe3" "\xfd\x95\xf3\xcf\x63\x5f\x3b\x0f\xb4\x2c\x39\xff\x9c\xb9\xfc\xcb\x92\xf3" "\xff\x4a\xaa\xe5\x5f\x96\x9c\xff\x57\x53\x2d\xff\xb2\xe4\xfc\xf3\xfb\x3d" "\xf9\x97\x25\xe7\x9f\x3f\xfb\xc8\xbf\x2c\x39\xff\xd7\x52\x2d\xff\xb2\xe4" "\xfc\xbf\x91\x6a\xf9\x97\x25\xe7\xff\x7a\xaa\xe5\x5f\x96\x9c\xff\x37\x53" "\x2d\xff\xb2\xe4\xfc\xdf\x48\xb5\xfc\xcb\x92\xf3\x3f\x99\x6a\xf9\x97\x25" "\xe7\x7f\x2a\xd5\x7b\xcc\x7f\x69\xbf\xfb\xc5\x6c\xe4\xfc\xf3\x11\x2e\xfb" "\x7f\x59\x72\xfe\xf9\xcc\x06\xf9\x97\x25\xe7\x7f\x36\xd5\xf2\x2f\x4b\xce" "\xff\x5c\xaa\xe5\x5f\x96\x9c\xff\x9b\xa9\x96\x7f\x59\x72\xfe\xdf\x4a\xb5" "\xfc\xcb\x92\xf3\x3f\x9f\x6a\xf9\x97\x25\xe7\xff\xed\x54\xcb\xbf\x2c\x39" "\xff\x0b\xa9\x96\x7f\x59\x72\xfe\xdf\x49\xb5\xfc\xcb\x92\xf3\xff\x6e\xaa" "\xe5\x5f\x96\x9c\xff\x5b\xa9\x96\x7f\x59\x72\xfe\xdf\x4b\xb5\xfc\xcb\x92" "\xf3\xff\x7e\xaa\xe5\x5f\x96\x9c\xff\x0f\x52\x2d\xff\xb2\xe4\xfc\xdf\x4e" "\xb5\xfc\xcb\xf2\xf0\xfb\xff\xcd\x98\x31\x73\xeb\xf6\x87\xf9\x2b\x1d\xe6" "\xa5\x3f\x1d\xcd\x74\xfc\xc4\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x3c\x62\x16\xa7\x13\x77\xbd\x8d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xc0\xff\xd9\x81\x03\x01\x00\x00\x00\x00\x20\xff\xd7\x46\xa8\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xc2\x0e\x1c\x08\x00\x00\x00\x00\x00\xf9\xbf" "\x36\x42\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x15\xf6\xee\x2e\x46\xae\xb3" "\xbe\x1f\xf8\x99\x7d\xf3\xc6\x81\xc4\x40\xc8\xdf\xc9\xdf\x84\xb5\x63\x8c" "\x71\x36\xd9\xf5\x4b\xfc\x42\xeb\x62\xc2\x6b\xc3\x5b\x49\x08\x85\xbe\x60" "\xbb\xde\xb5\x59\xf0\x1b\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\xa9\x54\xc0\x56" "\x73\xce\xf3\x3c\x3b\x33\x3b\x3b\xb3\xeb\x9d\xac\x67\xce\xf9\x7c\xa4\xe4" "\x97\x9d\x39\x33\xe7\xcc\x99\x67\x66\xf7\x6b\xe7\xbb\x03\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\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\xa3\xad\x6f\x98\xfd\x54\x2d\xcb\xb2\x5a" "\xad\x56\x5c\xb0\x29\xcb\x5e\x54\x9f\x37\x4d\x6c\xca\x2f\x79\xed\x8d\x3d" "\x3e\x00\x00\x00\x60\xed\x7e\x91\xff\xfb\xf9\x5b\xd3\x05\x47\x56\x70\xa3" "\x86\x6d\xfe\xe9\xae\x6f\x7f\x75\x61\x61\x61\x21\x7b\xdf\xf0\x9f\x8e\x7e" "\x6e\x61\x21\x5d\x31\x91\x65\xa3\x1b\xb2\x2c\xbf\x2e\xba\xf6\x83\xf7\xd7" "\x1a\xb7\x09\x9e\xc8\xc6\x6b\x43\x0d\x5f\x0f\x75\xd9\xfd\x70\x97\xeb\x47" "\xba\x5c\x3f\xda\xe5\xfa\xb1\x2e\xd7\x6f\xe8\x72\xfd\x78\x97\xeb\x97\x9c" "\x80\x25\x6e\xca\x6a\xe9\xce\xb6\xe7\xff\xb9\xa9\x38\xa5\xd9\x6d\xd9\x68" "\x7e\xdd\xf6\x36\xb7\x7a\xa2\xb6\x61\xa8\x7e\xee\xd2\x6d\xb3\x5a\x7e\x9b" "\x85\xd1\x93\xd9\x5c\x76\x3a\x9b\xcd\xa6\x9b\xb6\x2f\xb6\xad\xe5\xdb\x7f" "\x7d\x6b\x7d\x5f\x6f\xcd\xe2\xbe\x86\x1a\xf6\xb5\xa5\xbe\x42\x7e\xf2\xd8" "\x89\x78\x0c\xb5\x70\x8e\xb7\x37\xed\x6b\xf1\x3e\xa3\x1f\xbd\x3e\x9b\xf8" "\xe9\x4f\x1e\x3b\xf1\xd7\x17\x9f\xbb\xa3\xdd\xec\x7a\x1a\x9a\xee\xaf\x38" "\xce\x9d\xdb\xea\xc7\xf9\x89\x70\x49\x71\xac\xb5\x6c\x43\x3a\x27\xf1\x38" "\x87\x1a\x8e\x73\x4b\x9b\xe7\x64\xb8\xe9\x38\x6b\xf9\xed\xea\xff\xdd\x7a" "\x9c\xcf\xaf\xf0\x38\x87\x17\x0f\x73\x5d\xb5\x3e\xe7\xe3\xd9\x50\xfe\xdf" "\xdf\xc9\xcf\xd3\x48\x2d\x6b\x73\x9e\xb6\x84\xcb\xfe\xe7\xee\x2c\xcb\xae" "\x2c\x1e\x76\xeb\x36\x4b\xf6\x95\x0d\x65\x1b\x9b\x2e\x19\x5a\x7c\x7e\xc6" "\x8b\x15\x59\xbf\x8f\xfa\x52\x7a\x69\x36\xb2\xaa\x75\xba\x75\x05\xeb\xb4" "\x3e\x67\xb6\x37\xaf\xd3\xd6\xd7\x44\x7c\xfe\xb7\x86\xdb\x8d\x2c\x73\x0c" "\x8d\x4f\xd3\x8f\x1e\x1f\x6b\x78\xde\x7f\xbe\x70\x3d\xeb\x34\xaa\x3f\xea" "\xe5\x5e\x2b\xad\x6b\xb0\xd7\xaf\x95\x7e\x59\x83\x71\x5d\x7c\x27\x7f\xd0" "\x4f\xb6\x5d\x83\xdb\xc3\xe3\x7f\x6c\xc7\xf2\x6b\xb0\xed\xda\x69\xb3\x06" "\xd3\xe3\x6e\x58\x83\xdb\xba\xad\xc1\xa1\xb1\xe1\xfc\x98\xd3\x93\x50\xcb" "\x6f\xb3\xb8\x06\x77\x37\x6d\x3f\x9c\xef\xa9\x96\xcf\x67\x77\x74\x5e\x83" "\x53\x17\xcf\x9c\x9f\x9a\xff\xd8\xc7\xef\x9d\x3b\x73\xfc\xd4\xec\xa9\xd9" "\xb3\x7b\x77\xef\x9e\xde\xbb\x7f\xff\xc1\x83\x07\xa7\x4e\xce\x9d\x9e\x9d" "\x2e\xfe\x7d\x9d\x67\xbb\xff\x6d\xcc\x86\xd2\x6b\x60\x5b\x38\x77\xf1\x35" "\xf0\xea\x96\x6d\x1b\x97\xea\xc2\x17\xc7\x96\xbc\xff\x5e\xef\xeb\x70\xbc" "\xc3\xeb\x70\x53\xcb\xb6\xbd\x7e\x1d\x8e\xb4\x3e\xb8\xda\xfa\xbc\x20\x97" "\xae\xe9\xe2\xb5\xf1\x9e\xfa\x49\x1f\xbf\x3a\x94\x2d\xf3\x1a\xcb\x9f\x9f" "\x5d\x6b\x7f\x1d\xa6\xc7\xdd\xf0\x3a\x1c\x69\x78\x1d\xb6\xfd\x9e\xd2\xe6" "\x75\x38\xb2\x82\xd7\x61\x7d\x9b\xf3\xbb\x56\xf6\x33\xcb\x48\xc3\x3f\xed" "\x8e\x61\xf9\xef\x05\x6b\x5b\x83\x9b\x1a\xd6\x60\xeb\xcf\x23\xad\x6b\xb0" "\xd7\x3f\x8f\xf4\xcb\x1a\x1c\x0f\xeb\xe2\x7b\xbb\x96\xff\x5e\xb0\x25\x1c" "\xef\x93\x93\xab\xfd\x79\x64\x78\xc9\x1a\x4c\x0f\x37\xbc\xf7\xd4\x2f\x49" "\x3f\xef\x8f\x1f\xcc\x47\xbb\x75\x79\x67\xfd\x8a\x9b\xc7\xb2\x4b\xf3\xb3" "\x17\xee\x7b\xf4\xf8\xc5\x8b\x17\x76\x67\x61\xac\x8b\x97\x35\xac\x95\xd6" "\xf5\xba\xb1\xe1\x31\x65\x4b\xd6\xeb\xd0\xaa\xd7\xeb\x91\xb9\xbb\x9e\xbc" "\xb3\xcd\xe5\x9b\xc2\xb9\x1a\xbf\xb7\xfe\xaf\xf1\x65\x9f\xab\xfa\x36\xfb" "\xee\xeb\xfc\x5c\xe5\xdf\xdd\xda\x9f\xcf\xa6\x4b\xf7\x64\x61\xf4\xd8\x7a" "\x9f\xcf\x76\xdf\xcd\xeb\xe7\x73\x2c\xcb\x3e\xff\xad\xc7\x1f\xfa\xc6\x63" "\x9f\x7f\xc3\xb2\xe7\xb3\x9e\x37\x3f\x31\xb5\xf6\x9f\xc5\x53\x2e\x6d\x78" "\xff\x1d\x5d\xe6\xfd\x37\xe6\xfe\x5f\x16\xfb\x4b\x77\xf5\xc4\xf0\xe8\x48" "\xf1\xfa\x1d\x4e\x67\x67\xb4\xe9\xfd\xb8\xf9\xa9\x1a\xc9\xdf\xbb\x6a\xf9" "\xbe\x9f\x9f\x5a\xd9\xfb\xf1\x68\xf8\x67\xbd\xdf\x8f\x6f\xeb\xf0\x7e\xbc" "\xb9\x65\xdb\x5e\xbf\x1f\x8f\xb6\x3e\xb8\xf8\x7e\x5c\xeb\xf6\xa7\x1d\x6b" "\xd3\xfa\x7c\x8e\x87\x75\x72\x7a\xba\xf3\xfb\x71\x7d\x9b\xcd\x7b\x56\xbb" "\x26\x47\x3a\xbe\x1f\xdf\x1d\x66\x2d\x9c\xff\xd7\x84\xa4\x90\x72\x51\xc3" "\xda\x59\x6e\xdd\xa6\x7d\x8d\x8c\x8c\x86\xc7\x35\x12\xf7\xd0\xbc\x4e\xf7" "\x36\x6d\x3f\x1a\xb2\x59\x7d\x5f\x4f\xef\xb9\xbe\x75\xba\xf3\xee\xe2\xbe" "\x86\xd3\xa3\x5b\xb4\x5e\xeb\x74\xa2\x65\xdb\x5e\xaf\xd3\xf4\x67\x5f\xcb" "\xad\xd3\x5a\xb7\x3f\x7d\xbb\x3e\xad\xcf\xe7\x78\x58\x17\xb7\xed\xed\xbc" "\x4e\xeb\xdb\x3c\xb3\x6f\xed\xef\x9d\x37\xc5\xff\x6c\x78\xef\x1c\xeb\xb6" "\x06\x47\x87\xc7\xea\xc7\x3c\x9a\x16\x61\xfe\x7e\x9f\x2d\xdc\x14\xd7\xe0" "\x7d\xd9\x89\xec\x5c\x76\x3a\x9b\xc9\xaf\x1d\xcb\xd7\x53\x2d\xdf\xd7\xe4" "\xfd\x2b\x5b\x83\x63\xe1\x9f\xf5\x7e\xaf\xdc\xdc\x61\x0d\xee\x6c\xd9\xb6" "\xd7\x6b\x30\x7d\x1f\x5b\x6e\xed\xd5\x46\x96\x3e\xf8\x1e\x68\x7d\x3e\xc7" "\xc3\xba\x78\xea\xfe\xce\x6b\xb0\xbe\xcd\x1b\x0f\xf4\xf6\x67\xd7\x9d\xe1" "\x92\xb4\x4d\xc3\xcf\xae\xad\x7f\xbe\xb6\xdc\x9f\x79\xdd\xd9\x72\x9a\x5e" "\xa8\xb5\x32\x12\x8e\xf3\x5b\x07\x3a\xff\xd9\x6c\x7d\x9b\xd3\x07\x57\x9b" "\x33\x3b\x9f\xa7\x7b\xc2\x25\x37\xb7\x39\x4f\xad\xaf\xdf\xe5\x5e\x53\x33" "\xd9\xfa\x9c\xa7\xcd\xe1\x38\x9f\x3b\xb8\xfc\x79\xaa\x1f\x4f\x7d\x9b\xcf" "\x1d\x5a\xe1\x7a\x3a\x92\x65\xd9\xe5\x8f\x3c\x90\xff\x79\x6f\xf8\xfb\x95" "\xbf\xbb\xf4\xdd\xaf\x36\xfd\xbd\x4b\xbb\xbf\xd3\xb9\xfc\x91\x07\x7e\xfc" "\xe2\x93\xff\xb8\x9a\xe3\x07\x60\xf0\xfd\xb2\x18\x1b\x8b\xef\x75\x0d\x7f" "\x33\xb5\x92\xbf\xff\x07\x00\x00\x00\x06\x42\xcc\xfd\x43\x61\x26\xf2\x3f" "\x00\x00\x00\x94\x46\xcc\xfd\xf1\xff\x0a\x4f\xe4\x7f\x00\x00\x00\x28\x8d" "\x98\xfb\x47\xc2\x4c\x2a\x92\xff\x37\xbf\xf1\xb9\xb9\x5f\x5e\xce\x52\x33" "\x7f\x21\x88\xd7\xa7\xd3\xf0\x60\xb1\x5d\xec\xb8\x4e\x87\xaf\x27\x16\xb7" "\xcf\x6f\xf3\xc0\x97\x67\xff\xfb\x1f\x2e\xaf\x6c\xdf\x43\x59\x96\xfd\xfc" "\xc1\x3f\x68\xbb\xfd\xe6\x07\xe3\x71\x15\x26\xc2\x71\x5e\x7b\x53\xf3\xe5" "\x4b\x7c\xf5\xde\x15\xed\xfb\xd8\x23\x97\xd3\x7e\x1b\xfb\xeb\x5f\x08\xf7" "\x1f\xcf\xc1\x4a\x97\x41\xbb\x0a\xee\x74\x96\x65\x5f\xbf\xf5\x33\xf9\x7e" "\x26\xde\x7f\x35\x9f\xcf\x3c\x78\x2c\x9f\x0f\x5d\x79\xf2\x89\xfa\x36\xcf" "\x1f\x2a\xbe\x8e\xb7\x7f\xf6\x65\xc5\xf6\x7f\x11\xca\xbf\x47\x4e\x1e\x6f" "\xba\xfd\xb3\xe1\x3c\xfc\x30\xcc\xe9\xb7\xb5\x3f\x1f\xf1\x76\x5f\xb9\xfa" "\x9a\x2d\x07\xde\xbb\xb8\xbf\x78\xbb\xda\xb6\x5b\xf2\x87\xfd\xd4\x07\x8a" "\xfb\x8d\xbf\x27\xe7\xb3\x4f\x14\xdb\xc7\xf3\xbc\xdc\xf1\x7f\xe3\xd3\x4f" "\x7f\xa5\xbe\xfd\xa3\xaf\x6a\x7f\xfc\x97\x87\xda\x1f\xff\xd3\xe1\x7e\xbf" "\x1c\xe6\xcf\x5e\x51\x6c\xdf\xf8\x1c\xd4\xbf\x8e\xb7\xfb\x64\x38\xfe\xb8" "\xbf\x78\xbb\xfb\xbe\xf4\xcd\xb6\xc7\x7f\xed\x53\xc5\xf6\xe7\xdf\x5c\x6c" "\x77\x2c\xcc\xb8\xff\x9d\xe1\xeb\xed\x6f\x7e\x6e\xae\xf1\x7c\x3d\x5a\x3b" "\xde\xf4\xb8\xb2\xb7\x14\xdb\xc5\xfd\x4f\x7f\xf7\x8f\xf3\xeb\xe3\xfd\xc5" "\xfb\x6f\x3d\xfe\xf1\xa3\x57\x9b\xce\x47\xeb\xfa\x78\xe6\xdf\x8a\xfb\x99" "\x6a\xd9\x3e\x5e\x1e\xf7\x13\xfd\x7d\xcb\xfe\xeb\xf7\xd3\xb8\x3e\xe3\xfe" "\x9f\xfe\xa3\x63\x4d\xe7\xb9\xdb\xfe\xaf\x3d\xf4\xec\x2b\xea\xf7\xdb\xba" "\xff\x7b\x5a\xb6\x3b\xff\x91\x5d\xf9\xfe\x17\xef\xaf\xf9\x37\x36\xfd\xe5" "\x27\x3f\xd3\x76\x7f\xf1\x78\x8e\xfc\xed\xf9\xa6\xc7\x73\xe4\xdd\xe1\x75" "\x1c\xf6\xff\xd4\x07\xc2\x7a\x0c\xd7\xff\xef\xb5\xe2\xfe\x5a\x7f\xbb\xc2" "\xb1\x77\x37\xbf\xff\xc4\xed\xbf\xb0\xe9\x72\xd3\xe3\x89\xde\xfa\xd3\x62" "\xff\xd7\x5e\x77\x2a\x9f\x1b\xc6\x6f\xda\x78\xf3\x8b\x5e\x7c\xcb\x95\x57" "\xd6\xcf\x5d\x96\x7d\x67\x43\x71\x7f\xdd\xf6\x7f\xea\xaf\xce\x35\x1d\xff" "\x17\x6f\x2f\xce\x47\xbc\x3e\x76\xf4\x5b\xf7\xbf\x9c\xb8\xff\x0b\x1f\x9d" "\x3c\x7b\x6e\xfe\xd2\xdc\x4c\x3a\xab\x8f\xdd\x9a\xff\xee\x9c\xb7\x17\xc7" "\x13\x8f\xf7\xd6\xf0\xfe\xda\xfa\xf5\xd1\x73\x17\x3f\x38\x7b\x61\x62\x7a" "\x62\x3a\xcb\x26\xca\xfb\x2b\xf4\xae\xdb\x97\xc2\xfc\x71\x31\xae\x74\xde" "\x7a\x61\xc9\x3b\xe8\xae\x47\xc2\xf3\x79\xe7\x9f\x7f\x7d\xe3\x8e\x7f\xfd" "\x74\xbc\xfc\xdf\xdf\x53\x5c\x7e\xf5\x6d\xc5\xf7\xad\x57\x87\xed\x3e\x1b" "\x2e\xdf\x14\x9e\xbf\xd5\xed\x7f\xa9\xa7\xb6\xde\x9e\xbf\xbe\x6b\xcf\x84" "\x23\x5c\x58\xfa\xfb\x82\xd7\x62\xcb\xf6\xff\x3a\xb8\xa2\x0d\xc3\xe3\x6f" "\xfd\xb9\x20\xae\xf7\xf3\x2f\xff\x60\x7e\x1e\xea\xd7\xe5\xdf\x37\xe2\xeb" "\x7a\x8d\xc7\xff\xfd\x99\xe2\x7e\xbe\x16\xce\xeb\x42\xf8\xcd\xcc\xdb\x6e" "\x5f\xdc\x5f\xe3\xf6\xf1\x77\x23\x5c\x7d\xb8\x78\xbd\xaf\xf9\xfc\x85\xb7" "\xb9\xf8\xbc\xfe\x4d\x78\xbe\xdf\xf1\xc3\xe2\xfe\xe3\x71\xc5\xc7\xfb\xfd" "\xf0\x73\xcc\x37\x37\x37\xbf\xdf\xc5\xf5\xf1\xb5\xcb\x43\xad\xf7\x9f\xff" "\x16\x8f\x2b\xe1\xfd\x24\xbb\x52\x5c\x1f\xb7\x8a\xe7\xfb\xea\xf3\xb7\xb7" "\x3d\xbc\xf8\x7b\x48\xb2\x2b\x77\xe4\x5f\xff\x49\xba\x9f\x3b\x56\xf5\x30" "\x97\x33\xff\xb1\xf9\xa9\xd3\x73\x67\x2f\x3d\x3a\x75\x71\x76\xfe\xe2\xd4" "\xfc\xc7\x3e\x7e\xf4\xcc\xb9\x4b\x67\x2f\x1e\xcd\x7f\x97\xe7\xd1\x0f\x75" "\xbb\xfd\xe2\xfb\xd3\xc6\xfc\xfd\x69\x66\x76\xff\xbe\x2c\x7f\xb7\x3a\x57" "\x8c\x17\xd8\x8d\x3e\xfe\xf3\x8f\x9c\x98\x39\x30\xbd\x63\x66\xf6\xe4\xf1" "\x4b\x27\x2f\x3e\x72\x7e\xf6\xc2\xa9\x13\xf3\xf3\x27\x66\x67\xe6\x77\x1c" "\x3f\x79\x72\xf6\xa3\x4b\x6f\xd1\xfc\xdb\xba\xe7\x66\x0e\xef\xde\x73\x68" "\xef\x81\x3d\x93\xa7\xe6\x66\x0e\x1f\x3c\x74\x68\xef\xa1\xc9\xb9\xb3\xe7" "\xea\x87\x51\x1c\x54\x17\xfb\xa7\x3f\x3c\x79\xf6\xc2\xd1\xfc\x26\xf3\x87" "\xf7\x1d\xda\x7d\xff\xfd\xfb\xa6\x27\xcf\x9c\x9b\x99\x3d\x7c\x60\x7a\x7a" "\xf2\x52\xb7\xdb\xe7\xdf\x9b\x26\xeb\xb7\xfe\xfd\xc9\x0b\xb3\xa7\x8f\x5f" "\x9c\x3b\x33\x3b\x39\x3f\xf7\xf1\xd9\xc3\xbb\x0f\xed\xdf\xbf\xa7\xeb\x6f" "\x03\x3c\x73\xfe\xe4\xfc\xc4\xd4\x85\x4b\x67\xa7\x2e\xcd\xcf\x5e\x98\x2a" "\x1e\xcb\xc4\xc5\xfc\xe2\xfa\xf7\xbe\x6e\xb7\xa7\x9c\xe6\xff\xa3\xf8\x79" "\xb6\x55\xad\xf8\x45\x7c\xd9\xbb\xee\xd9\x9f\x7e\x3f\x6b\xdd\x97\x1f\x5f" "\xf6\xae\x8a\x4d\x5a\x7e\x81\xe8\x73\xe1\x77\xd1\xfc\xf3\x4b\xce\x1f\x5c" "\xc9\xd7\x31\xf7\x8f\x86\x99\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\x3f" "\x16\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xbf\x21\xcc\x44\xfe\x07\x00" "\x00\x80\xd2\x88\xb9\x7f\x3c\xcc\xa4\x22\xf9\xbf\x57\xfd\xff\x78\x9b\x1b" "\xde\xff\xdf\x7c\x79\x45\xfb\xd7\xff\xd7\xff\x6f\x3c\x5f\xfa\xff\x15\xeb" "\xff\x3f\xdc\x6f\xfd\xff\xe2\xfd\x42\xff\xbf\x37\xd6\xda\xbf\xd7\xff\x0f" "\xf4\xff\xf5\xff\xf5\xff\xd7\xa1\xff\xdf\x4c\xff\x9f\x32\xea\xb7\xfe\x7f" "\xcc\xfd\x37\x65\x59\x25\xf3\x3f\x00\x00\x00\x54\x41\xcc\xfd\x1b\xc3\x4c" "\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x6f\x0e\x33\x91\xff\x01\x00\x00\xa0" "\x34\x62\xee\x7f\x51\x98\x49\x45\xf2\xbf\xfe\xff\x1a\xfb\xff\xc5\xff\x40" "\xa2\xff\xdf\x72\xfc\xfa\xff\xcd\xf4\xff\xc3\x7a\xd0\xff\xd7\xff\x5f\x07" "\xfa\xff\x9d\xe9\xff\x77\xa1\xff\x3f\x95\x55\xab\xff\x7f\xa5\x97\xc7\xaf" "\xff\xaf\xff\xcf\x52\xfd\xd6\xff\x8f\xb9\xff\xc5\x61\x26\x15\xc9\xff\x00" "\x00\x00\x50\x05\x31\xf7\xdf\x12\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc" "\x7f\x6b\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xa6\x30\x93\x8a\xe4" "\x7f\xfd\x7f\x9f\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x7e\xff\xfa\xff\x83\x49" "\xff\xbf\x33\xfd\xff\x2e\xf4\xff\x7d\xfe\xbf\xfe\xbf\xfe\x3f\x3d\xd5\x6f" "\xfd\xff\x98\xfb\x5f\x12\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff" "\x4b\xc3\x4c\xe4\x7f\x00\x00\x00\xe8\x3f\x23\xd7\x77\xb3\x98\xfb\x5f\x16" "\x66\xb2\x24\xff\x5f\xe7\x0e\x00\x00\x00\x80\x1b\x2e\xe6\xfe\xdb\xb2\x96" "\x22\x78\x45\xfe\xfe\x5f\xff\x5f\xff\xbf\xff\xfb\xff\x1b\xd2\x75\xfa\xff" "\xfa\xff\x59\x5f\xf6\xff\x87\x33\xfd\xff\xfe\xa1\xff\xdf\x99\xfe\x7f\x17" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xf4\x54\x63\xff\xff\x67\x0d\xef\xc9\x37" "\xaa\xff\x9f\xe7\xfe\x6c\x3c\x7b\x79\x98\x49\x45\xf2\x3f\x00\x00\x00\x54" "\x41\xcc\xfd\xb7\x87\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xff\xbf\x30" "\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xcd\x61\x26\x15\xc9\xff\xfa\xff" "\xfa\xff\xfd\xdf\xff\xf7\xf9\xff\xfa\xff\xfd\xde\xff\xf7\xf9\xff\xfd\x44" "\xff\xbf\x33\xfd\xff\x2e\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xa9\x7e\xfb" "\xfc\xff\x98\xfb\xef\x08\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff" "\xce\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xff\x1f\x66\x22\xff\x03" "\x00\x00\x40\x69\xc4\xdc\xbf\x25\xcc\xa4\x22\xf9\x5f\xff\xbf\xcf\xfb\xff" "\xb1\x39\xaa\xff\xaf\xff\xaf\xff\xbf\xb2\xfe\x7f\x7d\x31\xe8\xff\x57\x9a" "\xfe\x7f\x67\xfa\xff\x5d\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x53\xfd\xd6" "\xff\x8f\xb9\xff\x15\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\xdf" "\x15\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xff\xca\x30\x13\xf9\x1f\x00" "\x00\x00\x4a\x23\xe6\xfe\x89\x30\x93\x8a\xe4\x7f\xfd\xff\x3e\xef\xff\x17" "\x3d\xf8\x31\x9f\xff\xaf\xff\xaf\xff\xef\xf3\xff\xf5\xff\x57\x46\xff\xbf" "\x33\xfd\xff\x2e\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xa9\x7e\xeb\xff\xc7" "\xdc\xbf\x35\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\x6d\x61\x26" "\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x77\x87\x99\xc8\xff\x00\x00\x00\x50" "\x1a\x31\xf7\x6f\x0f\x33\xa9\x48\xfe\xd7\xff\x1f\x88\xfe\x7f\xa6\xff\xaf" "\xff\xaf\xff\xaf\xff\xaf\xff\xbf\x32\xfa\xff\x9d\xe9\xff\x77\xa1\xff\xaf" "\xff\xaf\xff\xaf\xff\x4f\x4f\xf5\x5b\xff\x3f\xe6\xfe\x57\x85\x99\x54\x24" "\xff\x03\x00\x00\x40\x15\xc4\xdc\xbf\x23\xcc\x44\xfe\x07\x00\x00\x80\xd2" "\x88\xb9\xff\xd5\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x3b\xc3\x4c" "\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xdb\xef\x5f\xff\x7f" "\x30\xe9\xff\x77\xa6\xff\xdf\x85\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x3d\xd5" "\x6f\xfd\xff\x98\xfb\x5f\x13\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73" "\xff\xae\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x7b\xc2\x4c\xe4\x7f" "\x00\x00\x00\x28\x8d\x98\xfb\x27\xc3\x4c\x2a\x92\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\xf5\xff\xdb\xef\x5f\xff\x7f\x30\xe9\xff\x77\xa6\xff\xdf\x85" "\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x3d\xd5\x6f\xfd\xff\x98\xfb\xef\x0d\x33" "\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\xbe\x30\x13\xf9\x1f\x00\x00" "\x00\x4a\x23\xe6\xfe\xa9\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xe9" "\x30\x93\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\x55\xf5\xff\x5f\xb9" "\x78\xbf\xfa\xff\x05\xfd\xff\xfe\xa2\xff\xdf\x99\xfe\x7f\x17\xfa\xff\xfa" "\xff\x37\xbc\xff\x3f\xaa\xff\x4f\xa9\xf4\x5b\xff\x3f\xe6\xfe\xdd\x61\x26" "\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\xef\x09\x33\x91\xff\x01\x00\x00" "\xa0\x34\x62\xee\xdf\x1b\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xbf\x2f" "\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xdf\xe7\xff\xb7\xdf\xbf" "\xfe\xff\x60\xd2\xff\xef\xac\xf7\xfd\xff\xf8\x10\xf5\xff\xf5\xff\xf5\xff" "\x7d\xfe\xbf\xfe\x3f\x4b\xb5\xef\xff\x7f\xf1\xd6\x1b\xd5\xff\x8f\xb9\xff" "\xfe\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\xf7\x87\x99\xc8\xff" "\x00\x00\x00\x50\x1a\x31\xf7\x1f\x08\x33\x91\xff\x01\x00\x00\xa0\x34\x62" "\xee\x3f\x18\x66\x52\x91\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf" "\x7e\xff\xfa\xff\x83\x49\xff\xbf\x33\x9f\xff\xdf\x85\xfe\xbf\xfe\xbf\xfe" "\xbf\xfe\x3f\x6b\xf4\xf0\x1f\x36\x7e\xd5\x6f\x9f\xff\x1f\x73\xff\xa1\x30" "\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\x5f\x1b\x66\x22\xff\x03\x00" "\x00\x40\x69\xc4\xdc\xff\x2b\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd" "\xbf\x1a\x66\x52\x91\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x7e" "\xff\xfa\xff\x83\x49\xff\xbf\x33\xfd\xff\x2e\xf4\xff\xf5\xff\xf5\xff\xf5" "\xff\xe9\xa9\x7e\xeb\xff\xc7\xdc\x7f\x38\xcc\xa4\x22\xf9\x1f\x00\x00\x00" "\xaa\x20\xe6\xfe\x5f\x0b\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\x7f\x5d" "\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x91\x30\x93\x8a\xe4\x7f\xfd" "\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xf6\xfb\x5f\xef\xfe\xff\x58\xbc\x5f" "\xfd\xff\x35\xd1\xff\xef\x4c\xff\xbf\x0b\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f" "\x7a\xaa\xdf\xfa\xff\x31\xf7\xbf\x3e\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa" "\x20\xe6\xfe\x07\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xdf\x10\x66" "\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xff\xc6\x30\x93\x8a\xe4\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xf6\xfb\xf7\xf9\xff\x83\x49\xff\xbf\x33" "\xfd\xff\x2e\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xa9\x7e\xeb\xff\xc7\xdc" "\xff\xa6\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\xdf\x1c\x66\x22" "\xff\x03\x00\x00\x40\x69\xc4\xdc\xff\x96\x30\x13\xf9\x1f\x00\x00\x00\x4a" "\x23\xe6\xfe\xb7\x86\x99\x54\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb" "\xff\xb7\xdf\xbf\xfe\xff\x60\xd2\xff\xef\x4c\xff\xbf\x0b\xfd\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\x7a\xaa\xdf\xfa\xff\x31\xf7\xff\x7a\x98\x49\x45\xf2\x3f" "\x00\x00\x00\x54\x41\xcc\xfd\x0f\x86\x99\xc8\xff\x00\x00\x00\x50\x1a\x31" "\xf7\xbf\x2d\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\xed\x61\x26\x15" "\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xed\xf7\xaf\xff\x3f\x98" "\xf4\xff\x3b\x1b\xb0\xfe\xff\x2f\x6e\x09\x97\xeb\xff\x17\xf4\xff\xfb\xfb" "\xf8\x57\xdb\xff\x1f\x69\xf9\xfa\x05\xe9\xff\xff\x60\xb9\xfe\xff\xc2\x86" "\xd6\xdb\xeb\xff\xf3\x42\xe8\xb7\xfe\x7f\xcc\xfd\xef\x08\x33\xa9\x48\xfe" "\x07\x00\x00\x80\x2a\x88\xb9\xff\x9d\x61\x26\xf2\x3f\x00\x00\x00\x94\x46" "\xcc\xfd\xef\x0a\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xff\x8d\x30\x93" "\x8a\xe4\x7f\xfd\xff\xfa\x71\x2c\xb6\x97\xf5\xff\xf5\xff\xf3\x0b\xf4\xff" "\xf5\xff\xf5\xff\x07\x96\xfe\x7f\x67\x03\xd6\xff\xf7\xf9\xff\x2d\xf4\xff" "\xfb\xfb\xf8\x7d\xfe\xbf\xfe\x3f\x4b\xf5\x5b\xff\x3f\xe6\xfe\x77\x87\x99" "\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\xff\x50\x98\x89\xfc\x0f\x00\x00" "\x00\xa5\x11\x73\xff\xc3\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xef" "\x09\x33\xa9\x48\xfe\xd7\xff\x1f\x9c\xcf\xff\xaf\x6f\xa3\xff\xaf\xff\xaf" "\xff\xaf\xff\xaf\xff\xdf\x99\xfe\x7f\x67\xfa\xff\x5d\xe8\xff\xeb\xff\xf7" "\x5b\xff\xff\x3f\xf5\xff\x19\x6c\xfd\xd6\xff\x8f\xb9\xff\x91\x30\x93\x8a" "\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\xdf\x1b\x66\x22\xff\x03\x00\x00\x40" "\x69\xc4\xdc\xff\x9b\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xef\x0b" "\x33\xa9\x48\xfe\xd7\xff\x1f\x94\xfe\xff\xc4\x80\x7e\xfe\xff\xe3\xfa\xff" "\x2f\x60\xff\xff\xae\x5b\x8a\xed\xf4\xff\xf5\xff\x59\xd4\x47\xfd\xff\x71" "\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x9f\xff\xaf\xff\x5f\x75\xfd\xd6\xff\x8f" "\xb9\xff\xfd\x61\x26\x2b\xcf\xff\xe3\x2b\xde\x12\x00\x00\x00\xb8\x21\x62" "\xee\xff\xad\x30\x93\x8a\xfc\xfd\x3f\x00\x00\x00\x54\x41\xcc\xfd\xbf\x1d" "\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xff\x3b\x61\x26\x15\xc9\xff\xfa" "\xff\x83\xd2\xff\xbf\x3a\xa0\xfd\x7f\x9f\xff\x9f\xf9\xfc\xff\xc5\x75\xa9" "\xff\xaf\xff\xbf\x0e\xd6\xaf\xff\x1f\xdf\x79\x7c\xfe\xbf\xfe\xbf\xfe\x7f" "\xa4\xff\xaf\xff\xaf\xff\x4f\xab\x7e\xeb\xff\xc7\xdc\xff\xbb\x61\x26\x15" "\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\x7f\x20\xcc\x44\xfe\x07\x00\x00\x80" "\x81\xd0\xee\xff\xc9\x6e\x15\x73\xff\xd1\x30\x13\xf9\x1f\x00\x00\x00\x4a" "\x23\xe6\xfe\x63\x61\x26\x15\xc9\xff\xfa\xff\xfa\xff\xfa\xff\x7d\xda\xff" "\xff\xb3\x6d\xff\xf2\xbd\x6f\xbf\xf3\xd8\x6e\xfd\x7f\xfd\x7f\xfd\xff\x55" "\x59\xd7\xcf\xff\xaf\xbf\xf8\x97\xff\xfc\xff\xeb\xda\xbf\xfe\x7f\x0f\xfa" "\xff\x47\xf4\xff\xaf\xd7\x8d\xee\xcf\x0f\xfa\xf1\xeb\xff\xeb\xff\xb3\x54" "\xbf\xf5\xff\x63\xee\x3f\x1e\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73" "\xff\xef\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x9f\x08\x33\x91\xff" "\x01\x00\x00\xa0\x34\x62\xee\x9f\x09\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7" "\xff\xef\xd3\xfe\xff\x00\x7f\xfe\x7f\x3c\x1f\xfa\xff\xcd\x7a\xd6\xff\x8f" "\x6f\xba\xfa\xff\x6d\xad\x6b\xff\xff\xbd\x8b\x3d\x71\xfd\xff\xd5\xf6\xff" "\xc7\xda\x5e\xea\xf3\xff\xf5\xff\x07\xf9\xf8\xf5\xff\xf5\xff\x59\xaa\xdf" "\xfa\xff\x31\xf7\xcf\x86\x99\x54\x24\xff\x03\x00\x00\x40\x15\x84\xdc\x3f" "\x74\xb2\x98\x8b\x57\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x0f\x87\x99\xc8" "\xff\x00\x00\x00\x50\x1a\xa7\xf2\x7f\x8f\x67\x1f\x0c\x33\xa9\x48\xfe\xd7" "\xff\xd7\xff\xd7\xff\xd7\xff\xf7\xf9\xff\xed\xf7\xdf\xa9\xff\x5f\x1b\xf1" "\xf9\xff\xfd\x4a\xff\xbf\xb3\xfe\xe9\xff\xb7\xa7\xff\xaf\xff\x3f\xc8\xc7" "\xaf\xff\xaf\xff\xcf\x52\xfd\xd6\xff\x8f\xb9\x7f\x2e\xcc\xa4\x22\xf9\x1f" "\x00\x00\x00\xaa\x20\xe6\xfe\x0f\x85\x99\xc8\xff\x00\x00\x00\x30\x78\x6a" "\x6d\xff\x17\xed\x94\xfb\x3f\x1c\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc" "\x7f\x3a\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\xfd" "\xfe\xfb\xf6\xf3\xff\xf5\xff\x3b\xd2\xff\xef\x4c\xff\xbf\x0b\xfd\x7f\xfd" "\x7f\xfd\x7f\xfd\x7f\x7a\xaa\xdf\xfa\xff\x31\xf7\x9f\x09\x33\xa9\x48\xfe" "\x07\x00\x00\x80\x2a\x88\xb9\xff\x6c\x98\xc9\xff\xb1\x77\x27\x4d\x96\x95" "\xd5\x1e\x87\x4f\xde\x5b\x15\x55\x15\x70\x23\xee\xec\x0e\xee\xc4\x08\x87" "\x0e\xfc\x00\x0c\x74\xac\x1f\xc0\x81\x13\x07\x1a\x61\x38\x10\x15\x15\x7b" "\x0a\xfb\x16\x45\xc5\x5e\x51\xec\x1b\x6c\x40\x10\x51\xb1\xef\xc0\x0e\xc5" "\x1e\x54\xec\xfb\x06\x3b\xc4\xa6\x0c\xab\xd6\x5a\x55\x99\xb9\x73\x9f\x4c" "\xea\x9c\xcc\xbd\xdf\xf7\x79\x06\xac\x30\x25\xeb\x1c\x2a\x32\x80\x7f\x65" "\xfd\xd8\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xf9\x71\x8b\xfd\x0f\x00\x00" "\x00\xcd\xc8\xdd\xff\x88\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\x37\xdb\xff\xdf" "\x47\xff\xbf\xd3\xeb\xeb\xff\xf5\xff\x2d\xd3\xff\x8f\xd3\xff\x2f\xa1\xff" "\xd7\xff\xeb\xff\xf5\xff\xac\xd4\xd4\xfa\xff\xdc\xfd\x8f\x8c\x5b\x3a\xd9" "\xff\x00\x00\x00\xd0\x83\xdc\xfd\x8f\x8a\x5b\xec\x7f\x00\x00\x00\x68\x46" "\xee\xfe\x0b\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xd1\x71\x4b\x27" "\xfb\x7f\x4b\xff\xbf\xb1\x38\xdb\xfe\xff\xf0\xee\x5f\x7b\x42\xfd\x7f\x66" "\xbc\xfa\xff\x96\xfa\x7f\xcf\xff\xdf\xf1\xf5\xf5\xff\xfa\xff\x96\xed\x6f" "\xff\x7f\xf1\x7f\xfe\xce\xa7\xff\xd7\xff\xeb\xff\x83\xfe\x7f\x57\xfd\xff" "\x91\x9d\x3e\x5f\xff\x4f\x8b\xa6\xd6\xff\xe7\xee\x7f\x4c\xdc\xd2\xc9\xfe" "\x07\x00\x00\x80\x1e\xe4\xee\x7f\x6c\xdc\x62\xff\x03\x00\x00\x40\x33\x72" "\xf7\x5f\x18\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x8f\x8b\x5b\x3a\xd9" "\xff\xab\x7b\xfe\xff\xb1\x93\x1f\xf7\xfc\xff\xd3\xf4\xff\xfa\xff\xad\x5f" "\x1f\xfa\x7f\xfd\xbf\xfe\x7f\xfd\x3c\xff\x7f\xdc\x0a\xfb\xff\x8d\xe3\x13" "\xef\xff\x2f\xb8\xe5\x9c\x87\xdf\x71\xed\xff\x5f\xb7\x97\xd7\xd7\xff\xeb" "\xff\x3d\xff\x5f\xff\xcf\x6a\x4d\xad\xff\xcf\xdd\xff\xf8\xb8\xa5\x93\xfd" "\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x84\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4" "\xee\x7f\x62\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x29\x6e\xe9\x64" "\xff\xaf\xae\xff\x8f\xe7\xff\xeb\xff\x8b\xfe\x5f\xff\xbf\xf5\xeb\x43\xff" "\xaf\xff\xd7\xff\xaf\x9f\xfe\x7f\x9c\xe7\xff\x2f\xa1\xff\xd7\xff\xeb\xff" "\xf5\xff\xac\xd4\xd4\xfa\xff\xdc\xfd\x4f\x8e\x5b\x3a\xd9\xff\x00\x00\x00" "\xd0\x83\xdc\xfd\x4f\x89\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x8b\xe2" "\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x78\xdc\xd2\xc9\xfe\xd7\xff\xaf" "\xbf\xff\xff\xa7\xfe\x5f\xff\x1f\x57\xff\xaf\xff\xd7\xff\xaf\x9f\xfe\x7f" "\x9c\xfe\x7f\x09\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xa5\xa6\xd6\xff\xe7\xee" "\xbf\x38\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x3f\x35\x6e\xb1\xff" "\x01\x00\x00\xa0\x19\xb9\xfb\x9f\x16\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc" "\xfd\x4f\x8f\x5b\x3a\xd9\xff\xfa\x7f\xcf\xff\x9f\x47\xff\x7f\x42\xff\xaf" "\xff\xd7\xff\xeb\xff\x77\x45\xff\x3f\x4e\xff\xbf\x84\xfe\xff\x6c\xfb\xf9" "\xc3\xfa\x7f\xfd\xbf\xfe\x9f\x33\xed\xb1\xff\xbf\x6b\xe4\x6f\xdb\x2b\xe9" "\xff\x73\xf7\x3f\x23\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x3f\x33" "\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x9f\x15\xb7\xd8\xff\x00\x00\x00" "\xd0\x8c\xdc\xfd\xcf\x8e\x5b\x3a\xd9\xff\xfa\x7f\xfd\xff\x3c\xfa\x7f\xcf" "\xff\x9f\x64\xff\xbf\xfd\x4b\xef\x24\xfd\xff\x30\xfd\xff\xfe\xd0\xff\x8f" "\x9b\x4c\xff\xbf\x71\x68\xf0\xc3\xfa\xff\xd9\xf7\xff\x9e\xff\xaf\xff\xd7" "\xff\xb3\xc9\xd4\x9e\xff\x9f\xbb\xff\x39\x71\x4b\x27\xfb\x1f\x00\x00\x00" "\x7a\x90\xbb\xff\xb9\x71\xcb\xc8\xfe\xdf\xf3\x2f\xe6\x03\x00\x00\x00\x07" "\x2a\x77\xff\xf3\xe2\x16\xdf\xff\x07\x00\x00\x80\xd9\xcb\xea\x2c\x77\xff" "\xf3\xe3\x96\x4e\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x7b\xfe\xff\xf0\xeb" "\x8f\xf5\xff\xd7\x9d\xf1\xfe\xf4\xff\xd3\xa2\xff\x1f\x37\x99\xfe\x7f\x07" "\xfa\x7f\xfd\xff\x9c\xdf\xbf\xfe\x5f\xff\xcf\x76\x53\xeb\xff\x73\xf7\xbf" "\x20\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x5f\x12\xb7\xd8\xff\x00" "\x00\x00\xd0\x8c\xdc\xfd\x2f\x8c\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe" "\x17\xc5\x2d\x9d\xec\xff\xe1\xfe\xff\xf4\xff\xaf\xff\xdf\x1d\xfd\xff\xe6" "\xf7\xaf\xff\x1f\xfe\xfa\x58\x55\xff\x9f\x3f\xa2\xfe\x7f\xb4\xff\xbf\xaf" "\xe7\xff\xf7\x49\xff\x3f\x6e\xff\xfb\xff\x23\xfa\xff\xcd\x3f\xbe\xfe\x7f" "\x8d\x0e\xfa\xfd\x37\xde\xff\x1f\x5b\xf6\xf9\xfa\x7f\x86\x4c\xad\xff\xcf" "\xdd\x7f\x69\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x71\xdc\x62" "\xff\x03\x00\x00\x40\x33\x72\xf7\xbf\x24\x6e\xb1\xff\x01\x00\x00\xa0\x19" "\xb9\xfb\x5f\x1a\xb7\x74\xb2\xff\xd7\xfa\xfc\xff\x25\x95\x90\xfe\x5f\xff" "\xaf\xff\xf7\xfc\xff\xb9\x3e\xff\x7f\xb1\xef\xfd\xff\x21\xfd\xff\x2e\xb5" "\xdc\xff\xdf\x7b\xaf\x3f\xd8\x00\xcf\xff\x5f\x42\xff\xaf\xff\xd7\xff\x7b" "\xfe\x3f\x2b\x35\xb5\xfe\x3f\x77\xff\x65\x71\x4b\x27\xfb\x1f\x00\x00\x00" "\x7a\x70\xd9\x9d\x8b\x93\xbb\xff\x65\x8b\x85\xfd\x0f\x00\x00\x00\x73\x74" "\xe6\xef\x1d\xd8\xfa\x1b\x4a\x43\xee\xfe\x97\xc7\x2d\xf6\x3f\x00\x00\x00" "\x34\x23\x77\xff\x2b\xe2\x96\x4e\xf6\xff\x5a\xfb\xff\x25\xf4\xff\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\xef\xf9\xff\xab\xd6\x72\xff\xbf\x0a\xfa\xff\x25\xf4" "\xff\xeb\xe8\xe7\x0f\x35\xd6\xff\x5f\xbe\xd3\xe7\x4f\xa1\xff\xbf\x48\xff" "\xcf\xc4\x6c\xea\xff\x6f\x38\xfd\xf1\x83\xea\xff\x73\xf7\xbf\x32\x6e\xe9" "\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\xbf\x2a\x6e\xb1\xff\x01\x00\x00\xa0" "\x19\xb9\xfb\x5f\x1d\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xaf\x89\x5b" "\x3a\xd9\xff\x6b\xef\xff\x8f\xed\xfc\xda\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf" "\xff\xd7\xff\xaf\x9a\xfe\x7f\x9c\xfe\x7f\x09\xfd\xbf\xe7\xff\x7b\xfe\xbf" "\xfe\x9f\x95\xda\xd4\xff\x9f\xe1\xa0\xfa\xff\xdc\xfd\xaf\x8d\x5b\x3a\xd9" "\xff\x00\x00\x00\xd0\x83\xdc\xfd\xaf\x8b\x5b\xec\x7f\x00\x00\x00\x68\x46" "\xee\xfe\xcb\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xf5\x71\x4b\x27" "\xfb\xdf\xf3\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf8\xf5\xf5\xff\xf3\xa4" "\xff\x1f\xa7\xff\x5f\x42\xff\xaf\xff\xd7\xff\xeb\xff\x59\xa9\xa9\xf5\xff" "\xb9\xfb\xdf\x10\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xaf\x88\x5b" "\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x37\xc6\x2d\xf6\x3f\x00\x00\x00\x34" "\x23\x77\xff\x9b\xe2\x96\x4e\xf6\xbf\xfe\x7f\xbd\xfd\x7f\x7e\x5c\xff\xaf" "\xff\x5f\xe8\xff\xf5\xff\xfa\xff\x7d\xd1\x6d\xff\xbf\x31\xf4\x4f\xa2\xed" "\x76\xe8\xff\x6f\x7a\xe8\xf1\xfb\x6f\xfe\x88\xfe\x5f\xff\xaf\xff\xd7\xff" "\xeb\xff\x59\x81\x49\xf4\xff\x27\x4e\xff\xdb\x65\xee\xfe\x37\xc7\x2d\x9d" "\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xb7\xc4\x2d\xf6\x3f\x00\x00\x00\x34" "\x23\x77\xff\x5b\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x6d\x71\xcb" "\x1e\xf7\xff\xff\xae\xf4\x5d\xed\x1f\xfd\xbf\xe7\xff\xeb\xff\xf5\xff\xfa" "\xff\xe1\xd7\xd7\xff\xcf\x53\xb7\xfd\xff\x2e\x79\xfe\xff\x12\xfa\x7f\xfd" "\xbf\xfe\x5f\xff\xcf\x4a\x4d\xa2\xff\x3f\xe3\x7f\xe7\xee\x7f\x7b\xdc\xe2" "\xfb\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xef\x88\x5b\xec\x7f\x00\x00\x00\x68" "\x46\xee\xfe\x77\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xbb\xe2\x96" "\x4e\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x87\x5f\xff\xee\xf6\xff" "\x47\x17\xc3\xf4\xff\xfb\x43\xff\x3f\x4e\xff\xbf\x84\xfe\x5f\xff\xaf\xff" "\xd7\xff\xb3\x52\x53\xeb\xff\x73\xf7\x5f\x19\xb7\x74\xb2\xff\x01\x00\x00" "\xa0\x07\xb9\xfb\xdf\x1d\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xef\x89" "\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xf7\xc6\x2d\x9d\xec\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\xd7\xff\x0f\xbf\xbe\xe7\xff\xcf\x93\xfe\x7f\x9c\xfe" "\x7f\xb1\x58\x5c\x35\xf2\x06\x86\xfa\xff\x13\x47\xf4\xff\xfa\x7f\xfd\xbf" "\xfe\x9f\xbb\x69\x6a\xfd\x7f\xee\xfe\xf7\xc5\x2d\x9d\xec\x7f\x00\x00\x00" "\xe8\x41\xee\xfe\xab\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xea\xb8" "\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x7f\xdc\xd2\xc9\xfe\xd7\xff\xeb" "\xff\xf5\xff\xfa\x7f\xfd\xff\xf0\xeb\xeb\xff\xe7\x49\xff\x3f\x4e\xff\xbf" "\x84\xe7\xff\xeb\xff\xf5\xff\xfa\x7f\x56\x6a\x6a\xfd\x7f\xee\xfe\x6b\xe2" "\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\xb5\x71\x8b\xfd\x0f\x00\x00" "\x00\xcd\xc8\xdd\xff\x81\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xbf\x2e" "\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf8\xf5\xf5\xff" "\xf3\xb4\xbe\xfe\x7f\xa1\xff\xd7\xff\xeb\xff\x97\xd0\xff\xeb\xff\xf5\xff" "\x6c\x35\xb5\xfe\x3f\x77\xff\x07\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20" "\x77\xff\xf5\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xa1\xb8\xc5\xfe" "\x07\x00\x00\x80\x66\xe4\xee\xff\x70\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xf5" "\xff\xfa\x7f\xfd\xff\xf0\xeb\xeb\xff\xe7\xc9\xf3\xff\xc7\xe9\xff\x97\xd0" "\xff\xeb\xff\xf5\xff\xfa\x7f\x56\x6a\x6a\xfd\x7f\xee\xfe\x8f\xc4\x2d\x9d" "\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x1b\xe2\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\xa3\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xb1\xb8\xa5" "\x93\xfd\xaf\xff\xd7\xff\x6f\xee\xff\x17\x0b\xfd\xbf\xfe\x5f\xff\x7f\xca" "\x3e\xf4\xff\x47\x4f\xfd\xac\x1e\xd7\xff\xaf\x90\xfe\x7f\x9c\xfe\x7f\x09" "\xfd\x7f\x9b\xfd\xff\x7f\x2d\x1a\xea\xff\x8f\xed\xf8\xf9\xfa\x7f\xa6\x68" "\x6a\xfd\x7f\xee\xfe\x8f\xc7\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe" "\x4f\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x27\xe3\x16\xfb\x1f\x00" "\x00\x00\x9a\x91\xbb\xff\x53\x71\x4b\x27\xfb\x7f\xfe\xfd\xff\x91\x2d\x9f" "\xa8\xff\x5f\x2c\x16\xb7\x5e\xd8\xd5\xf3\xff\xff\x55\x5f\x81\xfa\x7f\xfd" "\xff\x62\x5e\xfd\x7f\xfd\xac\xea\xff\x57\x47\xff\x3f\x4e\xff\xbf\x84\xfe" "\xbf\xcd\xfe\xdf\xf3\xff\xf5\xff\x1c\x98\xa9\xf5\xff\xb9\xfb\x3f\x1d\xb7" "\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x3f\x13\xb7\xd8\xff\x00\x00\x00" "\xd0\x8c\xdc\xfd\x9f\x8d\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xcf\xc5" "\x2d\x9d\xec\xff\xf9\xf7\xff\x5b\x3f\x51\xff\xbf\x38\xab\xe7\xff\xcf\xb1" "\xff\xf7\xfc\x7f\xfd\xbf\xfe\x9f\xd3\xf4\xff\xe3\xf4\xff\x4b\xe8\xff\x97" "\xf6\xf3\x1b\x3b\xfc\x7b\xcf\x42\xff\xaf\xff\xd7\xff\x33\x60\x6a\xfd\x7f" "\xee\xfe\xcf\xc7\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x1b\xe3\x16" "\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xa6\xb8\xc5\xfe\x07\x00\x00\x80\x66" "\xe4\xee\xff\x42\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xf3\xec\xff\x8f" "\xea\xff\xf5\xff\xfa\xff\x41\x53\xe9\xff\xcf\x3b\xef\x7e\x37\xeb\xff\xf5" "\xff\x2d\xf6\xff\x63\xf4\xff\xfa\x7f\xfd\x3f\x5b\x4d\xad\xff\xcf\xdd\xff" "\xc5\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xa5\xb8\xc5\xfe\x07" "\x00\x00\x80\x66\xe4\xee\xff\x72\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7" "\x7f\x25\x6e\x69\x7c\xff\x1f\x8b\xbb\xbd\xff\x3f\xbc\x38\x55\xa8\x9e\x32" "\xd4\xff\x47\xa3\xa6\xff\x3f\x83\xfe\x7f\xf3\xfb\xd7\xff\x0f\x7f\x7d\x78" "\xfe\xbf\xfe\x5f\xff\xbf\x7e\x53\xe9\xff\x67\xfe\xfc\xff\x43\xfa\x7f\xfd" "\xbf\xfe\x7f\xcd\xfd\xff\x3d\xb6\x7f\xbe\xfe\x9f\x16\x4d\xad\xff\xcf\xdd" "\x7f\x73\xdc\xd2\xf8\xfe\x07\x00\x00\x80\x9e\xe4\xee\xff\x6a\xdc\x62\xff" "\x03\x00\x00\x40\x33\x72\xf7\x7f\x2d\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9" "\xfb\x6f\x89\x5b\x3a\xd9\xff\x9e\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xc3" "\xaf\xaf\xff\x9f\x27\xfd\xff\x38\xcf\xff\x5f\x42\xff\xaf\xff\xf7\xfc\xff" "\xf3\x1f\xfc\xdf\xfa\x7f\x56\x67\x6a\xfd\x7f\xee\xfe\xaf\xc7\x2d\x27\x87" "\xdf\x3d\xcf\xbd\x9b\x7f\x99\x00\x00\x00\xc0\x84\xe4\xee\xff\x46\xdc\xd2" "\xc9\xf7\xff\x01\x00\x00\xa0\x07\xb9\xfb\xbf\x19\xb7\xd8\xff\x00\x00\x00" "\xd0\x8c\xdc\xfd\xdf\x8a\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf" "\xff\x1f\x7e\x7d\xfd\xff\x3c\xe9\xff\xc7\xe9\xff\x97\xe8\xa7\xff\x3f\x3a" "\xf4\xc1\x83\xee\xe7\xcf\xd6\x41\xbf\xff\x66\xfa\x7f\xcf\xff\x67\x85\xa6" "\xd6\xff\xe7\xee\xff\x76\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xff" "\x4e\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x37\x6e\xb1\xff\x01\x00" "\x00\xa0\x19\xb9\xfb\x6f\x8d\x5b\x3a\xd9\xff\xfa\x7f\xfd\x7f\xfb\xfd\xff" "\x83\xf4\xff\x5b\x5e\x5f\xff\xaf\xff\x6f\x99\xfe\x3f\xff\x89\x3e\x4c\xff" "\xbf\x44\x3f\xfd\xff\xa0\x83\xee\xe7\xe7\xfe\xfe\xf5\xff\xfa\x7f\xb6\x9b" "\x5a\xff\x9f\xbb\xff\xb6\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff" "\xbd\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x7e\xdc\x62\xff\x03\x00" "\x00\x40\x33\x72\xf7\xff\x20\x6e\xe9\x64\xff\xeb\xff\xfb\xea\xff\x37\x16" "\x3d\xf6\xff\x9e\xff\xaf\xff\xd7\xff\xf7\x64\x3e\xfd\xff\x15\x87\x86\x3e" "\xea\xf9\xff\xfa\x7f\xfd\xff\x7c\xdf\xbf\xfe\x5f\xff\xcf\x76\x53\xeb\xff" "\x73\xf7\xdf\xbe\x71\xa8\xcb\xfd\x0f\x00\x00\x00\x73\xf5\x80\x7b\x3d\xec" "\xb6\xdd\xfe\xb9\xb7\x9f\xfc\xe3\xd1\xc5\x0f\xe3\x16\xfb\x1f\x00\x00\x00" "\x9a\x91\xbb\xff\x47\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xe3\xb8" "\xa5\x93\xfd\xaf\xff\xef\xab\xff\xef\xf3\xf9\xff\xfa\x7f\xfd\xbf\xfe\xbf" "\x27\xf3\xe9\xff\x87\xe9\xff\xf5\xff\xfa\xff\xf9\xbe\x7f\xfd\xbf\xfe\x9f" "\xed\xa6\xd6\xff\xe7\xee\xff\x49\xdc\x72\xc6\xf0\x1b\xfc\x0f\xf4\x00\x00" "\x00\x00\xb3\x91\xbb\xff\xa7\x71\x4b\x27\xdf\xff\x07\x00\x00\x80\x1e\xe4" "\xee\xff\x59\xdc\xb2\x6d\xff\x9f\xd8\xe5\xef\x6a\x07\x00\x00\x00\xa6\x26" "\x77\xff\xcf\xe3\x96\x4e\xbe\xff\xaf\xff\x5f\xd6\xff\x1f\xdb\xd5\x5f\xcb" "\xda\xfa\xff\xc5\x9a\xfa\xff\xf8\xf3\xf4\xff\xa7\xe8\xff\xf5\xff\x43\xaf" "\xaf\xff\x9f\x27\xfd\xff\xb8\xb3\xec\xff\x4f\x6c\xe8\xff\xf5\xff\x23\xf4" "\xff\xfa\x7f\xfd\x3f\x5b\x4d\xad\xff\xcf\xdd\x7f\xfd\x35\x8b\x2e\xf7\x3f" "\x00\x00\x00\x34\x6a\xd3\xaf\x28\xfc\xe2\xe4\x1f\x8f\x2e\x7e\x19\xb7\xd8" "\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xbf\x8a\x5b\xec\x7f\x00\x00\x00\x68\x46" "\xee\xfe\x5f\xc7\x2d\x9d\xec\x7f\xfd\x7f\x8b\xcf\xff\x3f\xfd\xdf\x2c\xf0" "\xfc\xff\xce\xfb\xff\x4b\x8e\xc6\xeb\xff\xcf\xa6\xd7\xd7\xff\xeb\xff\x5b" "\xa6\xff\x1f\xe7\xf9\xff\x4b\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x2b\xb5\x87" "\xfe\xff\xe4\x20\x5d\x77\xff\x9f\xbb\xff\x37\x71\x4b\x27\xfb\x1f\x00\x00" "\x00\x7a\x90\xbb\xff\xb7\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xbb" "\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x7d\xdc\xd2\xc9\xfe\xd7\xff" "\xaf\xa7\xff\x3f\x1c\x77\xb0\x9f\xbf\xf4\xc8\x62\xb1\xd6\xfe\x7f\x17\xcf" "\xff\xd7\xff\xaf\xac\xff\x3f\x3e\xe5\xfe\x7f\x87\xd7\x6f\xa7\xff\xff\xbf" "\x73\x8e\xdf\xf8\xc0\x87\x5c\x7d\xa5\xfe\x9f\xd3\xf6\xb3\xff\xcf\xaf\x05" "\xfd\xff\x9e\xfa\xff\x73\xc7\x5e\x56\xff\xaf\xff\x9f\xf3\xfb\xd7\xff\xeb" "\xff\xd9\x6e\x6a\xcf\xff\xcf\xdd\xff\x87\xb8\xa5\x93\xfd\x0f\x00\x00\x00" "\x3d\xc8\xdd\x7f\x47\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x31\x6e" "\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xff\x14\xb7\x74\xb2\xff\xf5\xff\x2d" "\x3e\xff\x7f\x9e\xfd\x7f\xfe\x5c\x1f\x40\xff\x7f\x7c\x7e\xcf\xff\xcf\xa6" "\xb8\xf7\xfe\xdf\xf3\xff\xf5\xff\xdb\x79\xfe\xff\xb8\x09\xf4\xff\xa3\xd6" "\xd1\xff\x1f\xd9\xcb\x1b\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x56\x6a\x6a\xfd" "\x7f\xee\xfe\x3f\xc7\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xbf\xc4" "\x2d\xb9\xff\x37\xf6\xfc\x4b\xf7\x00\x00\x00\xc0\xc4\xe4\xee\xff\x6b\xdc" "\xe2\xfb\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x77\xc6\x2d\x9d\xec\x7f\xfd\xbf" "\xfe\x7f\x2a\xfd\x7f\x9a\xdb\xf3\xff\x0f\xa6\xff\xf7\xfc\xff\x85\xfe\x5f" "\xff\xbf\x03\xfd\xff\xb8\x1e\xfb\xff\xbd\xbc\xbe\xfe\x5f\xff\xaf\xff\xd7" "\xff\xb3\x5a\x53\xeb\xff\x73\xf7\xff\x2d\x6e\xe9\x64\xff\x03\x00\x00\x40" "\x0f\x72\xf7\xdf\x15\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x7f\x8f\x5b" "\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x7f\xc4\x2d\x9d\xec\x7f\xfd\xbf\xfe" "\x5f\xff\xaf\xff\xd7\xff\x0f\xbf\xbe\xfe\x7f\x9e\xf4\xff\xe3\xf4\xff\x4b" "\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x2b\x35\xb5\xfe\x3f\x77\xff\xbf\x03\x00" "\x00\xff\xff\x1e\xbe\x6d\x3d", 25081); syz_mount_image(/*fs=*/0x20000000, /*dir=*/0x20000040, /*flags=*/0, /*opts=*/0x20000480, /*chdir=*/1, /*size=*/0x61f9, /*img=*/0x20006340); memcpy((void*)0x20000040, "./file1\000", 8); syscall(__NR_truncate, /*file=*/0x20000040ul, /*len=*/0xcul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); use_temporary_dir(); loop(); return 0; }