// https://syzkaller.appspot.com/bug?id=50efefb43f15f3224b46f25409571c62a92f8649 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static 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; } 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"); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } uint64_t r[1] = {0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x400000000000, "jfs\000", 4); memcpy((void*)0x400000000080, "./file0\000", 8); memcpy( (void*)0x400000004c00, "\x78\x9c\xec\xdd\x4f\x6f\x1c\x67\x1d\x07\xf0\xdf\xfe\xf1\xda\xde\xb6\x69" "\x54\xa1\x2a\x44\x1c\xdc\x14\x4a\x4b\x69\xfe\x27\x50\xfe\x35\xe5\xc0\x01" "\x0e\x20\xa1\x9c\x49\xe4\xba\x55\x20\x05\x94\x04\x44\xab\x88\x38\xca\x01" "\x71\x01\x5e\x02\x5c\x7a\xe1\xd0\xb7\xc0\x0b\xe8\x6b\x40\xbc\x00\x22\x25" "\x3d\xf5\x40\x19\x34\xde\xe7\x49\xc6\xeb\x75\xd6\x26\xf6\xce\xda\xcf\xe7" "\x23\x39\x33\xbf\x79\x76\xbc\xcf\xe4\xeb\xf1\xec\x7a\x66\xf6\x09\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x20\x7e\xf8\x83\x9f\x9e\xe9" "\x44\xc4\x95\xdf\xa6\x05\x47\x23\x9e\x8d\x5e\x44\x37\x62\xb9\xae\x57\xa2" "\x9e\xb9\x94\x1f\xdf\x8f\x88\x63\xb1\xd1\x1c\x2f\x46\x44\x6f\x31\xa2\x5e" "\x7f\xe3\x9f\xe7\x23\xce\x47\xc4\x27\x47\x22\x1e\x3c\xbc\xbd\x5a\x2f\x3e" "\xbb\xc3\x7e\x5c\x38\x7d\xeb\xc6\xe7\x3f\xfa\xfe\x3f\xff\xf0\xe7\x7b\xc7" "\x7e\xfe\xce\xcf\x3e\x1a\x6f\xff\xc9\x17\xce\x7d\xfc\xc7\x3b\x11\x47\x7f" "\xfc\xe6\xc7\x9f\xdf\xd9\x9b\x6d\x07\x00\x00\x80\x52\x54\x55\x55\x75\xd2" "\xdb\xfc\xe3\xe9\xfd\x7d\xb7\xed\x4e\x01\x00\x33\x91\x8f\xff\x55\x92\x97" "\xab\xd5\x6a\xb5\x7a\x4f\xeb\x3f\x75\x77\xf3\xf8\x67\x9f\x69\xbb\xbf\xea" "\x43\x5a\x37\x55\x93\xdd\x69\x16\x11\xb1\xde\x5c\xa7\x7e\xcd\xe0\x74\x3c" "\x00\x1c\x30\xeb\xf1\x59\xdb\x5d\xa0\x45\xf2\x2f\x5a\x3f\x22\x9e\x69\xbb" "\x13\xc0\x5c\xeb\xb4\xdd\x01\xf6\xc5\x83\x87\xb7\x57\x3b\x29\xdf\x4e\xf3" "\x78\xb0\x32\x6a\xcf\x7f\xa7\xdc\x94\xff\x7a\xe7\xd1\xfd\x1d\xdb\x4d\xa7" "\x19\xbf\xc6\x64\x56\x3f\x5f\xf7\xa2\x17\x2f\x6c\xd3\x9f\xe5\x19\xf5\x61" "\x9e\xe4\xfc\xbb\xe3\xf9\x5f\x19\xb5\x0f\xd2\xe3\xf6\x3b\xff\x59\xd9\x2e" "\xff\xc1\xe8\xd6\xa7\xe2\xe4\xfc\x7b\xe3\xf9\x8f\xd9\x94\xff\x5f\x22\xe2" "\xc0\xe6\xdf\x9d\x98\x7f\xa9\x72\xfe\xfd\xdd\xe4\xbf\xde\x3b\xc0\xfb\xbf" "\xfc\x01\x00\x00\x00\x00\x38\xfc\xf2\xdf\xff\x8f\xb6\x7c\xfe\x77\xf1\xe9" "\x37\x65\x47\x9e\x74\xfe\x77\x65\x46\x7d\x00\x00\x00\x00\x00\x00\x00\x80" "\xbd\xf6\xb4\xe3\xff\x3d\x62\xfc\x3f\x00\x00\x00\x98\x5b\xf5\x7b\xf5\xda" "\x5f\x8f\x3c\x5e\xb6\xcd\x67\xb1\x0d\xeb\x7f\x2e\x77\x22\x9e\x1b\x7b\x3c" "\x50\x98\x95\xc6\x87\x03\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb3" "\xd1\x1f\x5d\xd8\x7f\xb9\x13\xb1\x10\x11\xcf\x0d\x87\x55\x55\xd5\x5f\x4d" "\xe3\xf5\x6e\x3d\xed\xfa\x07\x5d\xe9\xdb\x0f\x25\x6b\xfb\x97\x3c\x00\x00" "\x8c\x7c\x72\x64\xec\x5e\xfe\x4e\xc4\x52\x44\x5c\x4e\x9f\xf5\xb7\x30\x1c" "\x0e\xab\x6a\x69\x79\x58\x0d\xab\xe5\xc5\xfc\x7a\x76\xb0\xb8\x54\x2d\x37" "\xde\xd7\xe6\x69\xbd\x6c\x71\xb0\x83\x17\xc4\xfd\x41\x55\x7f\xb3\xa5\xc6" "\x7a\x4d\xd3\xde\x2f\x4f\x6b\x1f\xff\x7e\xf5\x73\x0d\xaa\xde\x0e\x3a\x36" "\x1b\x2d\x06\x0e\x00\x11\x31\x3a\x1a\x3d\x70\x44\x3a\x64\xaa\xea\xf9\x68" "\xfb\x55\x0e\x07\x83\xfd\xff\xf0\xb1\xff\xb3\x13\x6d\xff\x9c\x02\x00\x00" "\x00\xfb\xaf\xaa\xaa\xaa\x93\x3e\xce\xfb\x78\x3a\xe7\xdf\x6d\xbb\x53\x00" "\xc0\x4c\xe4\xe3\xff\xf8\x79\x01\xb5\x5a\xad\x2e\xa6\xfe\x74\xb4\x70\x6e" "\xfa\xa3\x56\xef\x63\xdd\x54\x4d\x76\xa7\x59\x44\xc4\x7a\x73\x9d\xfa\x35" "\x83\xe1\xf8\x01\xe0\x80\x59\x8f\xcf\xda\xee\x02\x2d\x92\x7f\xd1\xfa\x11" "\x71\xac\xed\x4e\x00\x73\xad\xd3\x76\x07\xd8\x17\x0f\x1e\xde\x5e\xed\xa4" "\x7c\x3b\xcd\xe3\xc1\xca\xa8\x3d\x5f\x0b\xd2\x89\xbb\x8f\x57\x5a\xef\x6c" "\xac\x97\xd7\x9f\x34\x9d\x66\xfc\x1a\x93\x59\xfd\x7c\xdd\x8b\x5e\xbc\xb0" "\x4d\x7f\x5e\x9c\x51\x1f\xe6\x49\xce\xbf\x3b\x9e\xff\x95\x51\x7b\x1e\xe2" "\x7f\x53\x3e\xfb\x90\xff\xac\x6c\x97\x7f\xbd\x9d\x47\x5b\xe8\x4f\xdb\x72" "\xfe\xbd\xf1\xfc\xc7\x1c\x9e\xfc\xbb\x13\xf3\x2f\x55\xce\xbf\xbf\xab\xfc" "\x7b\xf2\x07\x00\x00\x00\x00\x80\x39\x96\xff\xfe\x7f\x74\xea\xf9\xdf\x86" "\x43\x7a\xfe\x77\x65\x46\x7d\x00\x00\x00\x00\x00\x00\x00\x80\xbd\xf6\xe0" "\xe1\xed\xd5\x7c\xdf\x6b\x3e\xff\xff\xa5\x09\x8f\xeb\x34\xe7\xdc\xff\x79" "\x68\xe4\xfc\x3b\x3b\xce\xdf\xfd\xbf\x87\x49\xce\xbf\x3b\x9e\xff\xd8\x05" "\x39\xbd\xc6\xfc\xfd\xb7\x1f\xe7\xff\xe9\xc3\xdb\xab\x1f\xdd\xfa\xf7\x17" "\xf3\x74\xee\xf3\x5f\xe8\x0d\xea\xe7\x5e\xe8\x74\x7b\xfd\x74\xcd\x4f\xb5" "\xf0\x6e\x5c\x8b\xeb\xb1\x16\xa7\xb7\x3c\xbe\xbf\xa9\xfd\xcc\x96\xf6\x85" "\x4d\xed\x67\xa7\xb4\x9f\xdb\xd2\x3e\xa8\xdb\x97\x73\xfb\xc9\x58\x8d\x5f" "\xc5\xf5\x78\xe7\x51\xfb\xe2\x94\x0b\xa3\x96\xa6\xb4\x57\x53\xda\x73\xfe" "\x3d\xfb\x7f\x91\x72\xfe\xfd\xc6\x57\x9d\xff\x30\xb5\x77\xc6\xa6\xb5\xfb" "\x77\xbb\x5b\xf6\xfb\xe6\x74\xd2\xf3\x5c\xfa\xfb\x7f\x5e\xd9\xba\x77\xcd" "\xde\xbd\xe8\x3d\xda\xb6\xa6\x7a\xfb\x4e\xb4\xd0\x9f\x8d\xff\x93\x67\x06" "\xf1\x9b\x9b\x6b\x37\x4e\xfe\xee\xea\xad\x5b\x37\xce\x44\x9a\x6c\x5a\x7a" "\x36\xd2\x64\x8f\xe5\xfc\x17\xd2\x57\xce\xff\xd5\x97\x47\xed\xf9\xf7\x7e" "\x73\x7f\xbd\x7f\x77\xb0\xeb\xfc\xe7\xc5\xbd\xe8\x6f\x9b\xff\xcb\x8d\xf9" "\x7a\x7b\x5f\x9b\x71\xdf\xda\x90\xf3\x1f\xa4\xaf\x9c\x7f\x3e\x02\x4d\xde" "\xff\x0f\x72\xfe\xdb\xef\xff\xaf\xb7\xd0\x1f\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x78\x92\xaa\xaa\x36\x6e\x11\xbd\x14\x11\x17\xd3\xfd" "\x3f\x6d\xdd\x9b\x09\x00\xcc\x56\x3e\xfe\x57\x49\x5e\xae\x56\xab\xd5\x6a" "\xb5\xfa\xf0\xd5\x4d\xd5\x64\x6f\x35\x8b\x88\xf8\x47\x73\x9d\xfa\x35\xc3" "\xef\x27\x7d\x33\x00\x60\x9e\xfd\x37\x22\xfe\xd5\x76\x27\x68\x8d\xfc\x0b" "\x96\x3f\xef\xaf\x9e\x7e\xb9\xed\xce\x00\x33\x75\xf3\x83\x0f\x7f\x71\xf5" "\xfa\xf5\xb5\x1b\x37\xdb\xee\x09\x00\x00\x00\x00\x00\x00\x00\xf0\xff\xca" "\xe3\x7f\xae\x34\xc6\x7f\xde\xb8\x0e\x68\x6c\xdc\xe8\x4d\xe3\xbf\xbe\x1d" "\x2b\x07\x76\xfc\xcf\xee\xa0\xb7\x31\xd6\x79\xda\xa0\x97\xe2\xc9\xe3\x7f" "\x9f\x88\x27\x8f\xff\xdd\x9f\xf2\x7c\x0b\x53\xda\x07\x53\xda\x17\xa7\xb4" "\x2f\x4d\x69\x9f\x78\xa3\x47\x43\xce\xff\xa5\x94\x71\xce\xff\x78\xda\xb0" "\x92\xc6\x7f\x7d\xb5\x85\xfe\xb4\x2d\xe7\x7f\x22\x8d\xf5\x9c\xf3\xff\xea" "\xd8\xe3\x9a\xf9\x57\x7f\x3b\xc8\xf9\x77\x37\xe5\x7f\xea\xd6\xfb\xbf\x3e" "\x75\xf3\x83\x0f\xdf\xb8\xf6\xfe\xd5\xf7\xd6\xde\x5b\xfb\xe5\x99\xd3\x17" "\xcf\x9f\xbb\x70\xfe\xdc\x85\x0b\xa7\xde\xbd\x76\x7d\xed\xf4\xe8\xdf\x16" "\x7b\xbc\xbf\x72\xfe\x79\xec\x6b\xd7\x81\x96\x25\xe7\x9f\x33\x97\x7f\x59" "\x72\xfe\x5f\x49\xb5\xfc\xcb\x92\xf3\x7f\x25\xd5\xf2\x2f\x4b\xce\x3f\xbf" "\xde\x93\x7f\x59\x72\xfe\xf9\xbd\x8f\xfc\xcb\x92\xf3\x7f\x2d\xd5\xf2\x2f" "\x4b\xce\xff\x6b\xa9\x96\x7f\x59\x72\xfe\xaf\xa7\x5a\xfe\x65\xc9\xf9\x7f" "\x3d\xd5\xf2\x2f\x4b\xce\xff\x8d\x54\xcb\xbf\x2c\x39\xff\x93\xa9\x96\x7f" "\x59\x72\xfe\xa7\x52\x2d\xff\xb2\xe4\xfc\xf3\x19\x2e\xf9\x97\x25\xe7\x9f" "\xaf\x6c\x90\x7f\x59\x72\xfe\x67\x53\x2d\xff\xb2\xe4\xfc\xcf\xa5\x5a\xfe" "\x65\xc9\xf9\x9f\x4f\xb5\xfc\xcb\x92\xf3\xbf\x90\x6a\xf9\x97\x25\xe7\x7f" "\x31\xd5\xf2\x2f\x4b\xce\xff\x1b\xa9\x96\x7f\x59\x72\xfe\xdf\x4c\xb5\xfc" "\xcb\x92\xf3\x7f\x33\xd5\xf2\x2f\x4b\xce\xff\x5b\xa9\x96\x7f\x59\x72\xfe" "\xdf\x4e\xb5\xfc\xcb\x92\xf3\xff\x4e\xaa\xe5\x5f\x96\x9c\xff\x77\x53\x2d" "\xff\xb2\xe4\xfc\xbf\x97\x6a\xf9\x97\x25\xe7\xff\x56\xaa\xe5\x5f\x96\xc7" "\x9f\xff\x6f\x66\xd7\x33\xc3\xf9\xe8\x86\x19\x33\x7b\x3f\xd3\xf6\x6f\x26" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x60\xdc\x2c\x2e\x27\x6e\x7b\x1b" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xfe\xc7\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\x76\xe0\x40\x00\x00\x00\x00\x00\xc8\xff\xb5" "\x11\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xb0\x77\x6f\x31\x72\x96\xf7" "\x19\xc0\xbf\x3d\xd9\x6b\x43\xc0\x0d\x67\xe2\x80\x6d\x4e\x06\x16\x76\xd7" "\x27\x70\x88\xc1\x24\x21\xa5\xa4\x07\x4a\x42\xda\xb4\xa4\xc6\xb1\xd7\xc6" "\x89\x4f\xf5\xae\x13\x40\xa8\x2c\x85\xb6\x44\x41\x2a\x52\x7b\x41\x2b\x35" "\x4d\xa2\x34\x8a\xd4\x56\xa0\x2a\x52\x53\x89\x46\x48\x8d\xd4\xde\x35\x57" "\x8d\xb8\x89\x5a\x29\x17\xbe\x80\xca\x41\x49\xa5\x54\x81\x8d\xbe\x99\xf7" "\x7d\x3d\x33\x3b\x3b\xb3\x5e\x7b\xbd\x33\xdf\xfb\xfb\x21\xfb\xef\xdd\xf9" "\x66\xe6\x9d\x6f\xbe\x99\x9d\x67\xd1\x33\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\xd0\x68\xe3" "\x47\xa7\xfe\x6c\xa0\x28\x8a\xf2\x4f\xed\xaf\x75\x45\x71\x71\xf9\xef\x35" "\xc5\xee\xf2\xcb\xd9\x1d\x2b\xbd\x42\x00\x00\x00\xe0\x5c\xbd\x5b\xfb\xfb" "\x1f\x2e\x4d\xdf\xd8\xbd\x88\x33\x35\x6c\xf3\xef\xd7\xfd\xe7\x77\xe6\xe6" "\xe6\xe6\x8a\xcf\xbd\x73\xea\xbd\xbf\x98\x9b\x4b\x27\x6c\x28\x8a\xa1\xd5" "\x45\x51\x3b\x2d\xfa\x8f\x9f\xff\x6c\xae\x71\x9b\xe0\xf9\x62\x74\x60\xb0" "\xe1\xeb\xc1\x2e\x57\x3f\xd4\xe5\xf4\xe1\x2e\xa7\x8f\x74\x39\x7d\x55\x97" "\xd3\x57\x77\x39\x7d\xb4\xcb\xe9\xf3\x76\xc0\x3c\x6b\xea\xbf\x8f\xa9\x5d" "\xd8\x8d\xb5\x7f\xae\xab\xef\xd2\xe2\xf2\x62\xa4\x76\xda\x8d\x6d\xce\xf5" "\xfc\xc0\xea\xc1\xc1\xf8\xbb\x9c\x9a\x81\xda\x79\xe6\x46\x0e\x14\x87\x8a" "\xc3\xc5\x54\x31\x31\xef\x3c\x03\xb5\xff\x8a\xe2\xf5\x8d\xe5\x75\x3d\x58" "\xc4\xeb\x1a\x6c\xb8\xae\xf5\x45\x51\x9c\xfe\xc9\x33\xfb\xe2\x1a\x06\xc2" "\x3e\xbe\xb1\x68\xba\xb2\x9a\xc6\xfb\xee\xed\xfb\x8b\x0d\xef\xfc\xe4\x99" "\x7d\xdf\x9a\x79\xeb\x9a\x76\xb3\xeb\x6e\x98\xb7\xd2\xa2\xd8\xbc\xa9\x5c" "\xe7\x0b\x45\x71\xe6\xd7\x55\xc5\x40\xb1\x3a\xed\x93\xb8\xce\xc1\x86\x75" "\xae\x6f\xb3\xce\xa1\xa6\x75\x0e\xd4\xce\x57\xfe\xbb\x75\x9d\xa7\x17\xb9" "\xce\x78\xbb\x47\xc3\x3a\x7f\xd0\x61\x9d\xeb\xc3\xf7\x9e\xbc\xa1\x28\x8a" "\xd9\x62\xc1\x6d\x5a\x3d\x5f\x0c\x16\x6b\x5b\xae\x35\xed\xef\xd1\xfa\x11" "\x51\x5e\x46\x79\x57\xbe\xbf\x18\x3e\xab\xe3\x64\xe3\x22\x8e\x93\xf2\x3c" "\x3f\xbe\xa1\xf9\x38\x69\x3d\x26\xe3\xfe\xdf\x18\xf6\xc9\xf0\x02\x6b\x68" "\xbc\x3b\xde\x7e\x6e\xd5\xbc\xfd\xbe\xd4\xe3\xa4\xbc\xd5\xbd\x70\xac\x96" "\x97\xfd\x70\x79\xa5\xa3\xa3\x8d\xbf\x5a\x6d\x3a\x56\xcb\x6d\x9e\xb9\x69" "\xe1\x63\xa0\xed\x7d\xd7\xe6\x18\x48\xc7\x72\xc3\x31\xb0\xa9\xdb\x31\x30" "\xb8\x6a\xa8\x76\x0c\x0c\x9e\x59\xf3\xa6\xa6\x63\x60\x72\xde\x79\x06\x8b" "\x81\xda\x75\x9d\xba\xa9\xf3\x31\x30\x3e\x73\xe4\xf8\xf8\xf4\x53\x4f\xdf" "\x71\xe8\xc8\xde\x83\x53\x07\xa7\x8e\x4e\x4e\xec\xd8\xb6\x75\xfb\xb6\xad" "\xdb\xb7\x8f\x1f\x38\x74\x78\x6a\xa2\xfe\xf7\xd9\xed\xd2\x3e\xb2\xb6\x18" "\x4c\xc7\xe0\xa6\xf0\x5c\x13\x8f\xc1\x5b\x5a\xb6\x6d\x3c\x24\xe7\xbe\x7e" "\xfe\x1e\x07\xa3\x3d\xf2\x38\x28\x6f\xfb\xa7\x6e\x2e\x17\x74\xf1\x60\xb1" "\xc0\x31\x5e\x6e\xf3\xc2\xe6\x73\x7f\x1c\xa4\x9f\xfb\x0d\x8f\x83\xe1\x86" "\xc7\x41\xdb\xe7\xd4\x36\x8f\x83\xe1\x45\x3c\x0e\xca\x6d\x4e\x6f\x5e\xdc" "\xcf\xcc\xe1\x86\x3f\xed\xd6\xb0\x5c\xcf\x85\xeb\x1a\x8e\x81\x95\xfc\x79" "\x58\x5e\xe7\x63\xb7\x2e\xfc\x5c\xb8\x3e\xac\xeb\xc5\xdb\xce\xf6\xe7\xe1" "\xd0\xbc\x63\x20\xde\xac\x81\xf0\xd8\x2b\xbf\x93\x5e\xef\x8d\xde\x1d\xf6" "\xcb\xfc\xe3\xe2\xda\xf2\x84\x8b\x56\x15\x27\xa7\xa7\x4e\xdc\xf9\xe4\xde" "\x99\x99\x13\x93\x45\x18\x17\xc4\x65\x0d\xf7\x55\xeb\xf1\xb2\xb6\xe1\x36" "\x15\xf3\x8e\x97\xc1\xb3\x3e\x5e\x76\xff\xfd\x2f\x6e\xbe\xb6\xcd\xf7\xd7" "\x85\x7d\x35\x7a\x7b\xe7\xfb\xaa\xdc\x66\xdb\x58\xe7\xfb\xaa\xf6\xec\xde" "\x7e\x7f\x36\x7d\x77\x4b\x11\xc6\x79\x76\xa1\xf7\x67\xbb\x9f\x66\xe5\xfe" "\x4c\x59\xa2\xc3\xfe\x2c\xb7\x79\xe1\x8e\x73\x7f\x2d\x98\x72\x49\xc3\xf3" "\xdf\x48\xb7\xe7\xbf\xa1\x91\xe1\xfa\xf3\xdf\x50\xda\x1b\x23\x4d\xcf\x7f" "\xf3\xef\x9a\xa1\xda\xca\x8a\xe2\xf4\x1d\x8b\x7b\xfe\x1b\x09\x7f\x2e\xf4" "\xf3\xdf\xe5\x3d\xf2\xfc\x57\xee\xab\xc7\xee\xec\x7c\x0c\x94\xdb\xbc\x38" "\x7e\xb6\xc7\xc0\x70\xc7\xe7\xbf\x1b\xc2\x1c\x08\xeb\xb9\x35\x24\x86\xd1" "\x86\xdc\xff\x5e\xed\xf4\xd9\xfa\x61\xda\x70\x5f\x76\x3d\x6e\x86\x87\x47" "\xc2\x71\x33\x1c\xaf\xb1\xf9\xb8\xd9\x3a\xef\x3c\xe5\xa5\x95\xd7\xbd\x79" "\x62\x69\xc7\xcd\xe6\x1b\x9a\xef\xab\xa6\xd7\x2d\x15\x3c\x6e\xca\x7d\xf5" "\x97\x13\x9d\x8f\x9b\x72\x9b\x37\x26\xcf\xfd\xb9\x63\x4d\xfc\x67\xc3\x73" "\xc7\xaa\x6e\xc7\xc0\xc8\xd0\xaa\x72\xbd\x23\xe9\x20\xa8\x3f\xdf\xcd\xad" "\x89\xc7\xc0\x9d\xc5\xbe\xe2\x58\x71\xb8\xd8\x9f\xce\x53\xde\xcb\xe5\x75" "\x8d\x6d\x59\xdc\x31\xb0\x2a\xfc\xb9\xd0\xcf\x1d\x57\x2f\xcf\x31\xf0\xdc" "\x5f\x2f\xe2\xba\x1b\x8f\x81\x72\x5f\xbd\xb2\xa5\xf3\x31\x50\x6e\xf3\xfd" "\xad\xe7\xf7\xb5\xd3\xe6\xf0\x9d\xb4\x4d\xc3\x6b\xa7\xd6\xdf\x2f\x2c\x94" "\xf9\xaf\x1d\x3e\x73\x79\xad\xbb\xed\x7c\x67\xfe\x72\x9d\x1f\xdb\xd6\xf9" "\x77\x43\xe5\x36\x6f\x6d\x3b\xdb\x9c\xd1\x79\x3f\xdd\x1e\xbe\x73\x51\x9b" "\xfd\xd4\xfa\xf8\x59\xe8\x98\xde\x5f\x5c\x98\xfd\x74\x75\x58\xe7\xe1\xed" "\x9d\x7f\x37\x55\x6e\x73\xf9\x8e\x45\x1e\x4f\xbb\x8b\xa2\x78\x73\xf2\xcd" "\xda\xef\xbb\xc2\xef\x77\xff\xe9\xe4\x7f\x7d\xa7\xe9\xf7\xbe\xed\x7e\xa7" "\xfc\xe6\xe4\x9b\x0f\x8d\x3f\xf2\xc3\xb3\x59\x3f\x00\x00\x4b\xf7\x5e\xed" "\xef\xd9\x55\xf5\xd7\x9a\x0d\xff\xc7\x7a\x31\xff\xff\x1f\x00\x00\x00\xe8" "\x0b\x31\xf7\x0f\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x0f\x85\x99" "\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x0f\x87\x99\x64\x92\xff\x9f\xb8\x7b" "\xe7\xab\xef\x3e\x5b\xa4\x77\x03\x9c\x0b\xe2\xe9\x71\x37\x3c\x7c\x6f\x7d" "\xbb\xd8\xf1\x9e\x0d\x5f\x6f\x98\x3b\xa3\xfc\xfe\x47\xbe\x39\xf2\xea\x97" "\x9f\x5d\xdc\x75\x0f\x16\x45\xf1\x8b\x87\x3e\xd0\x76\xfb\x27\xee\x8d\xeb" "\xaa\x3b\x1e\xd7\xf9\xa1\xe6\xef\xcf\x73\xf5\xf5\x8b\xba\xfe\xc7\x1f\x3d" "\xb3\x5d\xe3\xfb\x27\x9c\xde\x59\xbf\xfc\x78\x7b\x16\x7b\x18\xc4\xae\xf2" "\xeb\xe3\x5b\x6a\x97\xbb\xe1\xa9\xc9\xda\x7c\xe3\xa1\xa2\x36\x1f\x99\x7d" "\xf1\xf9\xfa\xe5\xd7\xbf\x8e\xdb\x9f\xda\x5a\xdf\xfe\x6f\xc2\x9b\x96\xec" "\x3e\x30\xd0\x74\xfe\xcd\x61\x3d\x37\x86\xb9\x21\xbc\xa7\xcc\xc3\xbb\xcf" "\xec\x87\x72\xc6\xf3\xbd\xba\xfe\xba\x7f\xbb\xec\xd3\x67\xae\x2f\x9e\x6f" "\x60\xd3\x25\xb5\x9b\xf9\xca\x1f\xd5\x2f\x37\xbe\x47\xd4\xcb\x97\xd5\xb7" "\x8f\xb7\x7b\xa1\xf5\xff\xeb\x57\xbe\xfd\x6a\xb9\xfd\x93\x37\xb5\x5f\xff" "\xb3\x83\xed\xd7\x7f\x2a\x5c\xee\x8f\xc3\xfc\xf9\xae\xfa\xf6\x8d\xfb\xfc" "\xcb\x0d\xeb\xff\x93\xb0\xfe\x78\x7d\xf1\x7c\x77\x7e\xe3\x7b\x6d\xd7\xff" "\xda\x55\xf5\xed\x5f\x0b\xc7\xc5\xd7\xc2\x6c\x5d\xff\xfd\x7f\xfe\xc1\x77" "\xdb\xdd\x5f\xf1\x7a\x76\xdf\x53\x3f\x5f\xbc\xfe\x89\xff\xdb\x56\x3b\x5f" "\xbc\xbc\x78\xf9\xad\xeb\x1f\x7d\x76\xb2\x69\x7f\xb4\x5e\xfe\x1b\xef\xd4" "\x2f\x67\xd7\x17\x7f\x3a\xd4\xb8\x7d\xfc\x7e\xbc\x9e\xe8\xf1\x7b\x9a\x8f" "\xef\x81\x70\xff\x36\xf5\xc8\x8b\xa2\xf8\xf6\x9f\x16\x4d\xfb\xb9\xf8\x70" "\xfd\x7c\xff\xd2\xb2\xfe\x78\x79\xc7\xef\x69\xbf\xfe\xdb\x5b\xd6\x79\x7c" "\xe0\xfa\xda\xf9\xcf\xdc\x9e\x75\x4d\xb7\xeb\xab\x7f\xb7\xa5\xed\xed\x8d" "\xeb\xd9\xfd\x8f\xeb\x9a\x6e\xcf\xcb\x0f\x84\xfd\xf7\xce\xf8\xf7\xcb\xcb" "\x3d\xf5\x48\x38\x1e\xc3\xe9\xff\xff\x83\xfa\xe5\xb5\xbe\x97\xe9\x6b\x0f" "\x34\x3f\xdf\xc4\xed\xbf\xb6\xae\xfe\xb8\x8d\x97\x37\xde\xb2\xfe\x97\x5b" "\xd6\x3f\x7b\x7d\xb9\xef\xba\xaf\xff\xc1\x77\xea\xeb\x7f\xed\xbe\xd5\x4d" "\xeb\xdf\xfd\xf1\x70\x3c\x3d\x58\x9f\xdd\xd6\x7f\xf0\x6f\x2f\x6d\x3a\xff" "\xd7\xbf\x55\xbf\x3f\x4e\x7c\x69\xec\xe8\xb1\xe9\x93\x87\xf6\x37\xec\xd5" "\xc6\xc7\xf1\xea\xd1\x35\x6b\x2f\xba\xf8\x7d\x97\x5c\x1a\x9e\x4b\x5b\xbf" "\xde\x73\x6c\xe6\x89\xa9\x13\x1b\x26\x36\x4c\x14\xc5\x86\x3e\x7c\xcb\xc0" "\xe5\x5e\xff\x37\xc2\xfc\xdf\xfa\x98\x3d\xff\xd7\x50\xf7\xc3\x9f\xd6\x8f" "\xbb\x97\x3e\x51\xff\xb9\x75\xcb\xcf\xea\x5f\xbf\x1c\xbe\xff\x78\xb8\x3f" "\xe3\xcf\xc7\xaf\xfe\xd5\x48\xd3\xf1\xda\x7a\xbf\xcf\xde\x57\x9f\xe7\xba" "\xfe\xdb\xc2\x3a\x16\xeb\xaa\xaf\xfc\xcf\xf5\x8b\xda\xf0\xd4\x67\x5f\x3f" "\xf9\xcf\x7f\xfc\x56\xeb\xeb\x82\x78\x7b\x8e\x5f\x31\x5a\xbb\x7d\xaf\x6c" "\xbc\xb2\x76\xda\xc0\x1b\xf5\xd3\x5b\x9f\xaf\xba\xf9\xef\x2b\x9a\x1f\xd7" "\x3f\x1a\x9e\xa8\xcd\xef\x86\xfd\x3a\x17\xde\x99\x79\xd3\x95\xf5\xeb\x6b" "\xbd\xfc\xf8\xde\x24\x2f\x7d\xb2\xfe\xf8\x8d\xaf\xe4\xe2\xf9\x8b\x96\xf7" "\x13\x59\x37\xd4\x7c\x3b\xce\x75\xfd\x3f\x0a\xaf\x63\xbe\x77\x75\xf3\xf3" "\x5f\x3c\x3e\xbe\xfb\x6c\xcb\xbb\x39\xaf\x2b\x06\xca\x25\xcc\x86\xe7\x87" "\x62\xb6\x7e\x7a\xdc\x2a\xee\xef\x97\x4e\x5f\xd9\xf6\xfa\xe2\xfb\xf0\x14" "\xb3\xd7\x9c\xcd\x32\x17\x34\xfd\xd4\xf4\xf8\xe1\x43\x47\x4f\x3e\x39\x3e" "\x33\x35\x3d\x33\x3e\xfd\xd4\xd3\x7b\x8e\x1c\x3b\x79\x74\x66\x4f\xed\xbd" "\x4b\xf7\x7c\xbe\xdb\xf9\xcf\x3c\xbe\xd7\xd6\x1e\xdf\xfb\xa7\x76\x6c\x2b" "\x6a\x8f\xf6\x63\xf5\xb1\xcc\x56\x7a\xfd\xc7\x1f\xdd\xb7\xff\xae\x89\x9b" "\xf7\x4f\x1d\xd8\x7b\xf2\xc0\xcc\xa3\xc7\xa7\x4e\x1c\xdc\x37\x3d\xbd\x6f" "\x6a\xff\xf4\xcd\x7b\x0f\x1c\x98\xfa\x52\xb7\xf3\x1f\xda\xbf\x6b\x72\xcb" "\xce\xad\x77\x6d\x19\x3b\x78\x68\xff\xae\xbb\x77\xee\xdc\xba\x73\xec\xd0" "\xd1\x63\xe5\x32\xea\x8b\xea\x62\xc7\xc4\x17\xc6\x8e\x9e\xd8\x53\x3b\xcb" "\xf4\xae\x6d\x3b\x27\xb7\x6f\xdf\x36\x31\x76\xe4\xd8\xfe\xa9\x5d\x77\x4d" "\x4c\x8c\x9d\xec\x76\xfe\xda\xcf\xa6\xb1\xf2\xdc\x5f\x1c\x3b\x31\x75\x78" "\xef\xcc\xa1\x23\x53\x63\xd3\x87\x9e\x9e\xda\x35\xb9\x73\xc7\x8e\x2d\x5d" "\xdf\xfd\xf1\xc8\xf1\x03\xd3\x1b\xc6\x4f\x9c\x3c\x3a\x7e\x72\x7a\xea\xc4" "\x78\xfd\xb6\x6c\x98\xa9\x7d\xbb\xfc\xd9\xd7\xed\xfc\xe4\x61\xfa\x58\x78" "\xbe\x6b\x31\x10\x5e\x9d\x7f\xe6\xf6\x1d\xe9\xfd\x71\x4b\xdf\x7c\x6e\xc1" "\x8b\xaa\x6f\xd2\xfc\xf2\xb4\x78\x3b\xbc\x17\x54\xfc\xf9\xd6\xed\xeb\x98" "\xfb\x47\xc2\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\xc3\x1b\xff\x9f" "\x39\x41\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x75\x98\x89\xfc\x0f\x00\x00" "\x00\x95\x11\x73\xff\x68\x98\x49\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff" "\x5f\xff\xbf\xdf\xfa\xff\xab\x8b\x7e\x52\x91\xfe\xff\x40\xa1\xff\x5f\xa3" "\xff\xdf\x4c\xff\x5f\xff\x5f\xff\x5f\xff\x9f\xce\x7a\xad\xff\x1f\x73\xff" "\x9a\xa2\xc8\x32\xff\x03\x00\x00\x40\x0e\x62\xee\x5f\x1b\x66\x22\xff\x03" "\x00\x00\x40\x65\xc4\xdc\x7f\x51\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73" "\xff\xc5\x61\x26\x79\xe4\xff\x91\xd6\x7f\xea\xff\xeb\xff\xeb\xff\x37\xf6" "\xff\xe3\xb6\xfa\xff\x85\xfe\x7f\x0f\xf5\xff\xfb\x4b\x45\xfa\xff\x3e\xff" "\x3f\xd0\xff\x6f\xa6\xff\xaf\xff\xdf\x63\xfd\xff\x35\xfa\xff\xf4\x9a\x5e" "\xeb\xff\xc7\xdc\xff\xbe\x30\x93\x3c\xf2\x3f\x00\x00\x00\x64\x21\xe6\xfe" "\x4b\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x2f\x0d\x33\x91\xff\x01" "\x00\x00\xa0\x32\x62\xee\x5f\x17\x66\x92\x49\xfe\xf7\xf9\xff\xfa\xff\xfa" "\xff\x3e\xff\x5f\xff\x5f\xff\x7f\x39\xe9\xff\xeb\xff\x77\xa2\xff\xaf\xff" "\xdf\xcf\xeb\xef\xc1\xfe\xbf\xcf\xff\xa7\xe7\xf4\x5a\xff\x3f\xe6\xfe\x5f" "\x09\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\x7f\x7f\x98\x89\xfc\x0f" "\x00\x00\x00\x95\x11\x73\xff\x65\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc" "\xfd\x97\x87\x99\x64\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5" "\xff\x97\x93\xfe\xbf\xfe\x7f\x27\xfa\xff\xfa\xff\xfd\xbc\x7e\xfd\x7f\xfd" "\x7f\xba\xeb\xb5\xfe\x7f\xcc\xfd\x57\x84\x99\x64\x92\xff\x01\x00\x00\x20" "\x07\x31\xf7\x5f\x19\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x55\x98" "\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xd5\x61\x26\x99\xe4\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xe5\xa4\xff\xaf\xff\xdf\x89\xfe" "\xbf\xfe\x7f\x3f\xaf\x5f\xff\x5f\xff\x9f\xee\x7a\xad\xff\x1f\x73\xff\x35" "\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\xd7\x86\x99\xc8\xff\x00" "\x00\x00\x50\x19\x31\xf7\x7f\x20\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9" "\x7f\x7d\x98\x49\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff" "\x7f\x39\xf5\x57\xff\x7f\x70\xc1\x53\xf4\xff\xeb\xf4\xff\x9b\xe9\xff\xeb" "\xff\xeb\xff\xeb\xff\xd3\x59\xaf\xf5\xff\x63\xee\xff\x60\x98\x49\x26\xf9" "\x1f\x00\x00\x00\x72\x10\x73\xff\x75\x61\x26\xf2\x3f\x00\x00\x00\x54\x46" "\xcc\xfd\xd7\x87\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x6f\x08\x33\xc9" "\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x2f\xa7\xfe\xea" "\xff\x2f\x4c\xff\xbf\x4e\xff\xbf\x99\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x9d" "\xf5\x5a\xff\x3f\xe6\xfe\x8d\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc" "\xfd\x9b\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x6f\x08\x33\x91\xff" "\x01\x00\x00\xa0\x32\x62\xee\xbf\x31\xcc\x24\x93\xfc\xaf\xff\x7f\x01\xfa" "\xff\xab\x1a\x2f\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xff\x7c\xd2\xff" "\xd7\xff\x2f\xf4\xff\x97\x6c\xa5\xfb\xf3\xfd\xbe\x7e\xfd\xff\xc5\xf5\xff" "\x57\x75\xbb\x20\x2a\xad\xd7\xfa\xff\x31\xf7\xdf\x14\x66\x92\x49\xfe\x07" "\x00\x00\x80\x1c\xc4\xdc\x7f\x73\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73" "\xff\x2d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x9b\xc3\x4c\x32\xc9" "\xff\xfa\xff\x3e\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x7f\x39\xe9\xff\x2f" "\xba\xff\xbf\x66\x29\xeb\xd2\xff\xaf\xd3\xff\x5f\x9a\x95\xee\xcf\xf7\xfb" "\xfa\xf5\xff\x7d\xfe\x3f\xdd\xf5\x5a\xff\x3f\xe6\xfe\x5b\xc3\x4c\x32\xc9" "\xff\x00\x00\x00\x90\x83\x98\xfb\x6f\x0b\x33\x91\xff\x01\x00\x00\xa0\x32" "\x62\xee\xbf\x3d\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x2c\xcc\x24" "\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xbf\x9c\xaa\xda" "\xff\x4f\xcf\xa3\x3e\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x9f\x05" "\xf5\x5a\xff\x3f\xe6\xfe\x3b\xc2\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98" "\xfb\xef\x0c\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x1f\x0f\x33\x91\xff" "\x01\x00\x00\xa0\x32\x62\xee\x9f\x08\x33\xc9\x24\xff\xeb\xff\xeb\xff\xeb" "\xff\xeb\xff\xeb\xff\xeb\xff\x2f\xa7\xaa\xf6\xff\x97\xe1\xf3\xff\x97\xb4" "\x7e\xfd\xff\x3a\xfd\xff\xa5\x59\xe9\xfe\x7c\xbf\xaf\x5f\xff\x5f\xff\x9f" "\xee\x7a\xad\xff\x1f\x73\xff\x64\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10" "\x73\xff\x96\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xad\x61\x26\xf2" "\x3f\x00\x00\x00\x54\x46\xcc\xfd\xdb\xc2\x4c\x32\xc9\xff\xfa\xff\xfa\xff" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xcb\x49\xff\x5f\xff\xbf\x13\xfd\x7f\xfd" "\xff\x7e\x5e\xbf\xfe\xbf\xfe\x3f\xcd\x06\xdb\x7c\xaf\xd7\xfa\xff\x31\xf7" "\x6f\x0f\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\xdf\x11\x66\x22\xff" "\x03\x00\x00\x40\x65\xc4\xdc\x7f\x57\x98\x89\xfc\x0f\x00\x00\x00\x95\x11" "\x73\xff\xdd\x61\x26\x99\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xde\xed" "\xff\x37\x5f\xbf\xfe\xbf\xfe\x7f\x3b\xfa\xff\xfa\xff\x85\xfe\xff\x92\xad" "\x74\x7f\xbe\xdf\xd7\xaf\xff\xaf\xff\x4f\x77\xe7\xb7\xff\x7f\xe9\x39\xf7" "\xff\x63\xee\xdf\x19\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xff\xa1" "\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x7b\xc2\x4c\xe4\x7f\x00\x00" "\x00\xe8\x2b\xed\x3e\x87\x30\x8a\xb9\xff\xc3\x61\x26\x99\xe4\x7f\xfd\xff" "\xaa\xf7\xff\xe7\x56\xeb\xff\xeb\xff\xf7\x6f\xff\xbf\x79\x7f\xea\xff\xeb" "\xff\xb7\xa3\xff\xaf\xff\x5f\xe8\xff\x2f\xd9\x4a\xf7\xe7\xfb\x7d\xfd\xfa" "\xff\xfa\xff\x74\x77\x7e\xfb\xff\xf3\x5e\x9e\x9e\x75\xff\x3f\xe6\xfe\x5d" "\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\xf7\x86\x99\xc8\xff\x00" "\x00\x00\x50\x19\x31\xf7\xdf\x17\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc" "\xbf\x3b\xcc\x24\x93\xfc\xaf\xff\x5f\xf5\xfe\x7f\xef\x7d\xfe\xff\x40\xa1" "\xff\xaf\xff\x5f\xa7\xff\xaf\xff\x7f\x3e\xe8\xff\xeb\xff\x17\xfa\xff\x4b" "\xb6\xd4\xfe\x7c\x78\xd9\xa2\xff\xdf\x43\xfd\xff\xf2\x18\xd2\xff\xa7\x17" "\xf5\x5a\xff\x3f\xe6\xfe\xfb\xc3\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98" "\xfb\x3f\x12\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xd1\x30\x13\xf9" "\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x8f\x85\x99\x64\x92\xff\xf5\xff\xf5\xff" "\x73\xfa\xfc\xff\xe7\x5a\xee\x2f\xfd\xff\xe6\x75\xea\xff\xeb\xff\x2f\x07" "\xfd\x7f\xfd\xff\x4e\xf4\xff\xfb\xb3\xff\x1f\xe9\xff\xf7\x4e\xff\xdf\xe7" "\xff\xd3\xab\x7a\xad\xff\x1f\x73\xff\x03\x61\x26\x99\xe4\x7f\x00\x00\x00" "\xc8\x41\xcc\xfd\x1f\x0f\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xff\xd5" "\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x07\xc3\x4c\x32\xc9\xff\xfa" "\xff\xfa\xff\x39\xf5\xff\x5b\xef\x2f\xfd\xff\xe6\x75\xea\xff\xeb\xff\x2f" "\x07\xfd\x7f\xfd\xff\x4e\xf4\xff\xf5\xff\xfb\x79\xfd\xfa\xff\xfa\xff\x74" "\xd7\x6b\xfd\xff\x98\xfb\x7f\x2d\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88" "\xb9\xff\xa1\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x4f\x84\x99\xc8" "\xff\x00\x00\x00\x50\x19\x31\xf7\xff\x7a\x98\x49\x26\xf9\x5f\xff\xff\xc2" "\xf4\xff\x07\xd3\xe5\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x9f\x4f\xfa" "\xff\xfa\xff\x85\xfe\xff\x92\xad\x74\x7f\xbe\xdf\xd7\xaf\xff\xaf\xff\x4f" "\x77\xbd\xd6\xff\x8f\xb9\xff\x37\xc2\x4c\x32\xc9\xff\x00\x00\x00\x90\x83" "\x98\xfb\x7f\x33\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xb7\xc2\x4c" "\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x1f\x0e\x33\xc9\x24\xff\xeb\xff\xfb" "\xfc\x7f\xfd\x7f\xfd\xff\x9e\xed\xff\x0f\x37\xef\x4f\xfd\x7f\xfd\xff\x76" "\xf4\xff\xf5\xff\x0b\xfd\xff\x25\x5b\xe9\xfe\x7c\xbf\xaf\x5f\xff\x5f\xff" "\x9f\xee\x7a\xad\xff\x1f\x73\xff\x6f\x87\x99\x64\x92\xff\x01\x00\x00\x20" "\x07\x31\xf7\x3f\x12\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xc9\x30" "\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x4f\x85\x99\x64\x92\xff\xf5\xff" "\xf5\xff\xf5\xff\xf5\xff\x7b\xb6\xff\xdf\xb2\x3f\xf5\xff\xf5\xff\xdb\xd1" "\xff\xd7\xff\x2f\xf4\xff\x97\x6c\xa5\xfb\xf3\xfd\xbe\x7e\xfd\x7f\xfd\x7f" "\xba\xeb\xb5\xfe\x7f\xcc\xfd\x8f\x86\x99\x64\x92\xff\x01\x00\x00\x20\x07" "\x31\xf7\x7f\x3a\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x77\xc2\x4c" "\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x7f\x37\xcc\x24\x93\xfc\xaf\xff\xaf" "\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xbf\x9c\xf4\xff\xe7\xf7\xff\xcb\xe7" "\xb0\x95\xec\xff\xaf\x5a\xcc\x86\xfa\xff\x8b\xa2\xff\xaf\xff\xaf\xff\xaf" "\xff\x4f\x67\xbd\xd6\xff\x8f\xb9\xff\x33\x61\x26\x99\xe4\x7f\x00\x00\x00" "\xc8\x41\xcc\xfd\xbf\x17\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xfb" "\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x8f\x85\x99\x64\x92\xff\xf5" "\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x97\x93\xfe\xbf\xcf\xff\xef" "\x44\xff\x5f\xff\xbf\x9f\xd7\xaf\xff\xaf\xff\x4f\x77\xbd\xd6\xff\x8f\xb9" "\xff\xb3\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\x7f\x10\x66\x22" "\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x27\xcc\x44\xfe\x07\x00\x00\x80\xca" "\x88\xb9\xff\xf1\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe" "\xbf\xfe\xff\x72\xd2\xff\xd7\xff\xef\x44\xff\x5f\xff\xbf\x9f\xd7\xaf\xff" "\xaf\xff\x4f\x77\xbd\xd6\xff\x8f\xb9\x7f\x6f\x98\x49\x26\xf9\x1f\x00\x00" "\x00\x72\x10\x73\xff\xe7\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xf7" "\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xef\x0f\x33\xc9\x24\xff\xeb" "\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x2f\x27\xfd\x7f\xfd\xff\x4e" "\xf4\xff\xf5\xff\xfb\x79\xfd\xfa\xff\xfa\xff\x74\xd7\x6b\xfd\xff\x98\xfb" "\xa7\xc2\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\x0f\x84\x99\xc8\xff" "\x00\x00\x00\x50\x19\x31\xf7\x1f\x0c\x33\x91\xff\x01\x00\x00\xa0\x32\x62" "\xee\x7f\x22\xcc\x24\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf" "\xff\xbf\x9c\xf4\xff\xf5\xff\x3b\xd1\xff\xd7\xff\xef\xe7\xf5\xeb\xff\xeb" "\xff\xd3\x5d\xaf\xf5\xff\x63\xee\x3f\x14\x66\x92\x49\xfe\x07\x00\x00\x80" "\x1c\xc4\xdc\xff\xf9\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x2f\x84" "\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x1f\x0e\x33\xc9\x24\xff\xeb\xff" "\xeb\xff\xeb\xff\x57\xb0\xff\x3f\xac\xff\x5f\xe8\xff\xf7\x0c\xfd\x7f\xfd" "\xff\x4e\xf4\xff\xf5\xff\xfb\x79\xfd\xfa\xff\xfa\xff\x74\xd7\x6b\xfd\xff" "\x98\xfb\x8f\x84\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7\x1f\x0d\x33" "\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x3f\x16\x66\x22\xff\x03\x00\x00\x40" "\x65\xc4\xdc\x7f\x3c\xcc\x24\x93\xfc\xaf\xff\xaf\xff\xaf\xff\x5f\xc1\xfe" "\xbf\xcf\xff\xaf\xd1\xff\xef\x0d\xfa\xff\xfa\xff\x9d\xe8\xff\xeb\xff\xf7" "\xf3\xfa\xf5\xff\xf5\xff\xe9\xae\xd7\xfa\xff\x31\xf7\xff\x61\x98\x49\x26" "\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\x89\x30\x13\xf9\x1f\x00\x00\x00\x2a" "\x23\xe6\xfe\xe9\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x99\x30\x93" "\x4c\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xff\x72\xd2\xff" "\xd7\xff\xef\x44\xff\x5f\xff\xbf\x9f\xd7\xaf\xff\xaf\xff\x4f\x77\xbd\xd6" "\xff\x8f\xb9\xff\x64\x98\x49\x26\xf9\x1f\x00\x00\xe0\x97\xec\xdd\xe5\x8e" "\x66\x59\x15\xc7\xe1\xb7\x19\x48\x43\x08\xe1\x5a\xb8\x02\x2e\x81\x6b\xe0" "\x0b\x97\x80\xbb\x0f\xee\xee\xee\xee\x2e\x83\xbb\xbb\xbb\x0c\x0c\x0e\x03" "\xc9\x10\xa8\xb5\xd6\x00\x5d\x75\x4e\x75\x51\x67\x6a\x9f\xbd\x9e\xe7\xcb" "\x0a\x4d\x43\xef\x74\x25\x90\x7f\x26\xbf\x1c\xe8\x20\x77\xff\xdd\xe3\x16" "\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x1e\x71\x8b\xfd\x0f\x00\x00\x00\xd3" "\xc8\xdd\x7f\xcf\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xc3\xf4\xff\x47" "\x9d\x9f\xfe\x5f\xff\xaf\xff\xbf\x2a\xfa\x7f\xfd\xff\x41\xff\x7f\x66\x17" "\xdd\xcf\xef\xfd\xfd\xfa\x7f\xfd\x3f\xeb\x46\xeb\xff\x73\xf7\xdf\x2b\x6e" "\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xf7\x8e\x5b\xec\x7f\x00\x00\x00" "\x98\x46\xee\xfe\xfb\xc4\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x7d\xe3" "\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\x0f\xd3\xff\xfb\xfe\x7f\xfe\x5c\x67" "\xec\xff\x2f\xdd\xfc\xc7\xea\xff\xcf\x97\xfe\x5f\xff\x7f\xd0\xff\x9f\xd9" "\x45\xf7\xf3\x7b\x7f\xbf\xfe\x5f\xff\xcf\xba\xd1\xfa\xff\xdc\xfd\xf7\x8b" "\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xfd\xe3\x16\xfb\x1f\x00\x00" "\x00\xa6\x91\xbb\xff\x01\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xc0" "\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xef\xff\x6f\x49" "\xff\xaf\xff\x5f\xa2\xff\xd7\xff\xef\xf9\xfd\xfa\x7f\xfd\x3f\xeb\x46\xeb" "\xff\x73\xf7\x3f\x28\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x0f\x8e" "\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x87\xc4\x2d\xf6\x3f\x00\x00\x00" "\x4c\x23\x77\xff\x43\xe3\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5" "\xff\xfa\xff\x2d\xe9\xff\xf5\xff\x4b\xf4\xff\xfa\xff\x3d\xbf\x5f\xff\xaf" "\xff\x67\xdd\x68\xfd\x7f\xee\xfe\x87\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74" "\x90\xbb\xff\xe1\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\x88\xb8\xc5" "\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x64\xdc\xd2\x64\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\x25\xfd\xbf\xfe\x7f\x89\xfe\x5f\xff\xbf" "\xe7\xf7\xeb\xff\xf5\xff\xac\xdb\xbc\xff\xbf\xcb\xb5\xff\xbe\xa7\xed\xff" "\x73\xf7\x5f\x1b\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x47\xc5\x2d" "\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\xa3\xe3\x16\xfb\x1f\x00\x00\x00\xa6" "\x91\xbb\xff\x31\x71\x4b\x93\xfd\x7f\x4c\xff\x7f\xcd\x41\xff\xdf\xb4\xff" "\xbf\xe9\x92\xfe\x5f\xff\x3f\x66\xff\x7f\x63\xfc\xaf\x8c\xfe\x5f\xff\x7f" "\x25\xfd\xbf\xfe\xff\xa0\xff\x3f\xb3\x93\xfb\xf9\xd3\xfd\x4d\xe8\xff\xf5" "\xff\xfa\x7f\xd6\x6c\xde\xff\xaf\xf4\xfe\xff\xfb\xaf\x73\xf7\x3f\x36\x6e" "\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x8f\x8b\x5b\xec\x7f\x00\x00\x00" "\x98\x46\xee\xfe\xc7\xc7\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x13\xe2" "\x96\x26\xfb\xdf\xf7\xff\xf5\xff\xe7\xf9\xfd\xff\xfc\xef\xd5\xff\x1f\xd1" "\xff\xfb\xfe\xbf\xfe\x5f\xff\xaf\xff\x5f\xb6\x61\xff\x7f\xb7\xfc\xcb\xd4" "\xff\x9f\xec\xa2\xfb\xf9\xbd\xbf\x7f\xa9\xff\xbf\xf3\x29\xde\xaf\xff\xa7" "\x83\xd1\xfa\xff\xdc\xfd\x4f\x8c\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77" "\xff\x93\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\xc9\x71\x8b\xfd\x0f" "\x00\x00\x00\xd3\xc8\xdd\xff\x94\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xcf\xb3" "\xff\x6f\xf3\xfd\xff\xdb\x1d\xfd\xe7\xf5\xff\xff\xfd\x1e\xfd\xbf\xfe\xff" "\x38\xfa\x7f\xfd\xff\x12\xdf\xff\xd7\xff\xef\xf9\xfd\xbe\xff\xaf\xff\x67" "\xdd\x68\xfd\x7f\xee\xfe\xa7\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb" "\xff\x69\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xf4\xb8\xc5\xfe\x07" "\x00\x00\x80\x69\xe4\xee\x7f\x46\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f" "\xdf\xff\xff\xbf\xfa\xff\x6b\xf4\xff\xfa\xff\x65\xfa\x7f\xfd\xff\x12\xfd" "\xbf\xfe\x7f\xcf\xef\xd7\xff\xeb\xff\x59\x37\x5a\xff\x9f\xbb\xff\x99\x71" "\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x56\xdc\x62\xff\x03\x00\x00" "\xc0\x34\x72\xf7\x3f\x3b\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x9f\x13" "\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xef\xfb\xff\xfa\xff\x2d\xe9" "\xff\xa7\xeb\xff\x2f\xe9\xff\x6f\xa6\xff\xd7\xff\xeb\xff\xf5\xff\x2c\x1b" "\xad\xff\xcf\xdd\xff\xdc\xb8\xa5\xc9\xfe\x07\x00\x00\x80\xd9\x5c\x77\xcc" "\xaf\xe5\xee\x7f\x5e\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x3f\x3f\x6e" "\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x5f\x10\xb7\x34\xd9\xff\xfa\x7f\xfd" "\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x6f\x49\xff\x3f\x5d\xff\xef\xfb\xff\xff" "\x41\xff\xaf\xff\xd7\xff\xeb\xff\x59\x36\x5a\xff\x9f\xbb\xff\x85\x71\x4b" "\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x51\xdc\x62\xff\x03\x00\x00\xc0" "\x34\x72\xf7\xbf\x38\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x5f\x12\xb7" "\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x6f\x49\xff\xaf" "\xff\x5f\xa2\xff\x3f\xbe\xff\xbf\xed\x09\x7f\x9e\xfe\x7f\xac\xf7\x9f\x4f" "\xff\x9f\x3f\x7d\xfd\x3f\x73\x1a\xad\xff\xcf\xdd\xff\xd2\xb8\xa5\xc9\xfe" "\x07\x00\x00\x80\x0e\x72\xf7\xbf\x2c\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9" "\xfb\x5f\x1e\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\xaf\x88\x5b\x9a\xec" "\xff\x93\xfa\xff\x1b\x6e\x7f\xf4\xef\xeb\xff\x4f\x47\xff\x7f\xfc\xfb\xf5" "\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x5f\xa2\xff\xf7\xfd\xff\x3d\xbf" "\xdf\xf7\xff\xf5\xff\xac\x1b\xad\xff\xcf\xdd\xff\xca\xb8\xa5\xc9\xfe\x07" "\x00\x00\x80\x0e\x72\xf7\xbf\x2a\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb" "\x5f\x1d\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\xaf\x89\x5b\x9a\xec\x7f" "\xdf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x5d\xf4\xff\x97\xf5\xff\xc7\xd3" "\xff\xeb\xff\x0f\xb7\x4c\xff\x7f\xf9\xb8\x5f\xd4\xff\xeb\xff\xf5\xff\xfa" "\x7f\x96\x8d\xd6\xff\xe7\xee\x7f\x6d\xdc\xd2\x64\xff\x03\x00\x00\x40\x07" "\xb9\xfb\x5f\x17\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\xaf\x8f\x5b\xec" "\x7f\x00\x00\x00\x98\x46\xee\xfe\x37\xc4\x2d\x4d\xf6\xbf\xfe\x5f\xff\x7f" "\xe1\xfd\xff\xad\xf4\xff\x49\xff\x1f\x3f\x57\xfd\xbf\xef\xff\x5f\x05\xfd" "\xbf\xfe\xff\xe0\xfb\xff\x67\x76\xd1\xfd\xfc\xde\xdf\xaf\xff\xd7\xff\xb3" "\x6e\xb4\xfe\x3f\x77\xff\x1b\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd" "\xff\xa6\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x73\xdc\x62\xff\x03" "\x00\x00\xc0\x34\x72\xf7\xbf\x25\x6e\x69\xb2\xff\xf5\xff\xfa\xff\x0b\xef" "\xff\x7d\xff\xbf\xe8\xff\xe3\xe7\xaa\xff\xd7\xff\x5f\x05\xfd\xbf\xfe\xff" "\xa0\xff\x3f\xb3\x8b\xee\xe7\xf7\xfe\x7e\xfd\xbf\xfe\x9f\x75\xa3\xf5\xff" "\xb9\xfb\xdf\x1a\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xb7\xc5\x2d" "\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\xdb\xe3\x16\xfb\x1f\x00\x00\x00\xa6" "\x91\xbb\xff\x1d\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f" "\xfd\xff\x96\xf4\xff\xfa\xff\x25\xfa\x7f\xfd\xff\x9e\xdf\xaf\xff\xd7\xff" "\xb3\x6e\xb4\xfe\x3f\x77\xff\x3b\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8" "\xdd\xff\xae\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x77\xdc\x62\xff" "\x03\x00\x00\xc0\x34\x72\xf7\xbf\x27\x6e\x69\xb2\xff\xf5\xff\x7b\xef\xff" "\xef\x7a\x7d\xbc\x40\xff\xaf\xff\xd7\xff\xeb\xff\x87\xa4\xff\xd7\xff\x2f" "\xd1\xff\xeb\xff\xf7\xfc\x7e\xfd\xbf\xfe\x9f\x75\xa3\xf5\xff\xb9\xfb\xdf" "\x1b\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xf7\xc5\x2d\xf6\x3f\x00" "\x00\x00\x4c\x23\x77\xff\xfb\xe3\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff" "\x03\x71\x4b\x93\xfd\xdf\xa3\xff\xbf\xcd\x15\xbf\x6d\x9e\xfe\xdf\xf7\xff" "\xf5\xff\xfa\x7f\xfd\xff\xd8\xf4\xff\xfa\xff\x25\xfa\x7f\xfd\xff\x9e\xdf" "\xaf\xff\xd7\xff\xb3\x6e\xb4\xfe\x3f\x77\xff\x07\xe3\x96\x26\xfb\x1f\x00" "\x00\x00\x3a\xc8\xdd\xff\xa1\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff" "\x70\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x5f\x17\xb7\x34\xd9\xff\x3d" "\xfa\xff\x2b\xe9\xff\x8f\x9c\x7b\xff\x7f\xd3\x1d\xf5\xff\xfa\xff\xa2\xff" "\xd7\xff\x1f\xf4\xff\xfa\xff\x15\xfa\x7f\xfd\xff\x9e\xdf\x3f\x75\xff\x7f" "\xe9\xa0\xff\xe7\x5c\x8c\xd6\xff\xe7\xee\xff\x48\xdc\xd2\x64\xff\x03\x00" "\x00\x40\x07\xb9\xfb\x3f\x1a\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x1f" "\x8b\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x8f\xc7\x0d\x77\xba\xc3\xc5" "\x3d\xe9\x16\xa5\xff\xd7\xff\xfb\xfe\xbf\xfe\x5f\xff\xaf\xff\xdf\x92\xfe" "\x5f\xff\xbf\x44\xff\xaf\xff\xdf\xf3\xfb\xa7\xee\xff\x7d\xff\x9f\x73\x32" "\x5a\xff\x9f\xbb\xff\x13\x71\x8b\x7f\xfe\x0f\x00\x00\x00\xd3\xc8\xdd\xff" "\xc9\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x54\xdc\x62\xff\x03\x00" "\x00\xc0\x34\x72\xf7\x7f\x3a\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\xaf\xff\xdf\x92\xfe\x5f\xff\xbf\x44\xff\xaf\xff\xdf\xf3\xfb\xf5" "\xff\xfa\x7f\xd6\x8d\xd6\xff\xe7\xee\xff\x4c\xdc\xd2\x64\xff\x03\x00\x00" "\x40\x07\xb9\xfb\x3f\x1b\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x9f\x8b" "\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\xcf\xc7\x2d\x4d\xf6\xbf\xfe\x5f" "\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x5b\xd2\xff\xeb\xff\x97\xe8\xff\xf5" "\xff\x7b\x7e\xbf\xfe\x5f\xff\xcf\xba\xd1\xfa\xff\xdc\xfd\x5f\x88\x5b\x9a" "\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x17\xe3\x16\xfb\x1f\x00\x00\x00\xa6" "\x91\xbb\xff\x4b\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xe5\xb8\xa5" "\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\x4b\xfa\x7f\xfd" "\xff\x12\xfd\xbf\xfe\x7f\xcf\xef\xd7\xff\xeb\xff\x59\x37\x5a\xff\x9f\xbb" "\xff\x2b\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x6a\xdc\x62\xff" "\x03\x00\x00\xc0\x34\x72\xf7\x7f\x2d\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9" "\xfb\xbf\x1e\xb7\x34\xd9\xff\x33\xf7\xff\x4b\xbf\x4d\xff\x7f\x44\xff\xaf" "\xff\x3f\xe8\xff\xf5\xff\x1b\xd3\xff\xeb\xff\x97\xe8\xff\xf5\xff\x7b\x7e" "\xbf\xfe\x5f\xff\xcf\xba\xd1\xfa\xff\xdc\xfd\xdf\x88\x5b\x9a\xec\x7f\x00" "\x00\x00\xe8\x20\x77\xff\x37\xe3\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff" "\x5b\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xed\xb8\xa5\xc9\xfe\x9f" "\xb9\xff\x5f\xa2\xff\x3f\xa2\xff\xd7\xff\x1f\xf4\xff\xfa\xff\x8d\xe9\xff" "\xf5\xff\x4b\xf4\xff\xfa\xff\x3d\xbf\x5f\xff\xaf\xff\x67\xdd\x68\xfd\x7f" "\xee\xfe\xef\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xbb\x71\x8b" "\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xbd\xb8\xc5\xfe\x07\x00\x00\x80\x69" "\xe4\xee\xff\x7e\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f" "\xff\xbf\x25\xfd\xbf\xfe\x7f\x89\xfe\x5f\xff\xbf\xe7\xf7\xeb\xff\xf5\xff" "\xac\x1b\xad\xff\xcf\xdd\xff\x83\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72" "\xf7\xff\x30\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x7f\x14\xb7\xd8\xff" "\x00\x00\x00\x30\x8d\xdc\xfd\x3f\x8e\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff" "\xaf\xff\xd7\xff\xeb\xff\xb7\xa4\xff\xd7\xff\x2f\xd1\xff\xeb\xff\xf7\xfc" "\x7e\xfd\xbf\xfe\x9f\x75\xa3\xf5\xff\xb9\xfb\x7f\x12\xb7\x34\xd9\xff\x00" "\x00\x00\xd0\x41\xee\xfe\x9f\xc6\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff" "\xcf\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\xe7\x71\x4b\x93\xfd\xaf" "\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x96\xda\xf6\xff\xff\xfa\xbf" "\x55\xfd\xff\x2a\xfd\xbf\xfe\x7f\xcf\xef\xd7\xff\xeb\xff\x59\x37\x5a\xff" "\x9f\xbb\xff\x17\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x65\xdc" "\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xff\x2a\x6e\xb1\xff\x01\x00\x00\x60" "\x1a\xb9\xfb\x7f\x1d\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\x6f\xa9\x6d\xff\xef\xfb\xff\xa7\xa2\xff\xd7\xff\xef\xf9\xfd\xfa" "\x7f\xfd\x3f\xeb\x46\xeb\xff\x73\xf7\x5f\x1f\xb7\x34\xd9\xff\x00\x00\x00" "\xd0\x41\xee\xfe\xdf\xc4\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x6f\xe3" "\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x86\xb8\xa5\xc9\xfe\xd7\xff\xeb" "\xff\xa7\xec\xff\x2f\xeb\xff\xf5\xff\xfa\xff\x51\xe8\xff\xf5\xff\x4b\xf4" "\xff\xfa\xff\x3d\xbf\x5f\xff\xaf\xff\x67\xdd\x68\xfd\x7f\xee\xfe\xdf\xc5" "\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xf7\x71\x8b\xfd\x0f\x00\x00" "\x00\xd3\xc8\xdd\xff\x87\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x63" "\xdc\xd2\x64\xff\xeb\xff\xf5\xff\x53\xf6\xff\xbe\xff\xaf\xff\xd7\xff\x0f" "\x43\xff\xaf\xff\x5f\xa2\xff\xd7\xff\xef\xf9\xfd\xfa\x7f\xfd\x3f\xeb\x46" "\xeb\xff\x73\xf7\xff\x29\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x7f" "\x8e\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\xbf\xc4\x2d\xf6\x3f\x00\x00" "\x00\x4c\x23\x77\xff\x5f\xe3\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff" "\xf5\xff\xfa\xff\x2d\xe9\xff\xf5\xff\x4b\xf4\xff\xfa\xff\x3d\xbf\x5f\xff" "\xaf\xff\x67\xdd\x68\xfd\x7f\xee\xfe\xbf\xc5\x2d\x4d\xf6\x3f\x00\x00\x00" "\x74\x90\xbb\xff\xc6\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x7b\xdc" "\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xff\x23\x6e\x69\xb2\xff\xf5\xff\xfa" "\x7f\xfd\xbf\xfe\xff\x34\xfd\xff\xad\xf5\xff\xfa\xff\x33\xd2\xff\xeb\xff" "\x97\xe8\xff\xf5\xff\x7b\x7e\xbf\xfe\x5f\xff\xcf\xba\xd1\xfa\xff\xdc\xfd" "\xff\x0c\x00\x00\xff\xff\x9e\xad\x25\xbc", 24310); syz_mount_image(/*fs=*/0x400000000000, /*dir=*/0x400000000080, /*flags=MS_REC*/ 0x4000, /*opts=*/0x400000001e40, /*chdir=*/-1, /*size=*/0x5ef6, /*img=*/0x400000004c00); memcpy((void*)0x400000000240, ".\000", 2); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x400000000240ul, /*flags=*/0, /*mode=*/0); if (res != -1) r[0] = res; *(uint32_t*)0x400000000080 = 0x4100; *(uint32_t*)0x400000000084 = 0; memcpy((void*)0x400000000088, "\000\000\021\021\"\"33", 8); memset((void*)0x400000000090, 0, 24); memset((void*)0x4000000000ac, 0, 20); syscall(__NR_ioctl, /*fd=*/r[0], /*cmd=*/0xc0185879, /*arg=*/0x400000000080ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x3ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x400000000000ul, /*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=*/0x400001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); const char* reason; (void)reason; loop(); return 0; }