// https://syzkaller.appspot.com/bug?id=cfca7b506458d00ca033bda8d3e482b4af8a10ee // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, 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 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, loopfd = -1, 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) { memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; 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) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; retry: while (umount2(dir, MNT_DETACH | UMOUNT_NOFOLLOW) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, MNT_DETACH | UMOUNT_NOFOLLOW) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, MNT_DETACH | UMOUNT_NOFOLLOW)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, MNT_DETACH | UMOUNT_NOFOLLOW)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { int i, call, thread; for (call = 0; call < 9; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0) + (call == 7 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[4] = {0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x200055c0, "btrfs\000", 6); memcpy((void*)0x20005600, "./file0\000", 8); memcpy((void*)0x200013c0, "noacl", 5); *(uint8_t*)0x200013c5 = 0x2c; memcpy((void*)0x200013c6, "subvolid", 8); *(uint8_t*)0x200013ce = 0x3d; sprintf((char*)0x200013cf, "0x%016llx", (long long)0); *(uint8_t*)0x200013e1 = 0x2c; memcpy((void*)0x200013e2, "ssd_spread", 10); *(uint8_t*)0x200013ec = 0x2c; memcpy((void*)0x200013ed, "space_cache=v2", 14); *(uint8_t*)0x200013fb = 0x2c; memcpy((void*)0x200013fc, "discard", 7); *(uint8_t*)0x20001403 = 0x2c; memcpy((void*)0x20001404, "enospc_debug", 12); *(uint8_t*)0x20001410 = 0x2c; memcpy((void*)0x20001411, "space_cache=v2", 14); *(uint8_t*)0x2000141f = 0x2c; memcpy((void*)0x20001420, "noflushoncommit", 15); *(uint8_t*)0x2000142f = 0x2c; memcpy((void*)0x20001430, "ssd_spread", 10); *(uint8_t*)0x2000143a = 0x2c; memcpy((void*)0x2000143b, "datasum", 7); *(uint8_t*)0x20001442 = 0x2c; *(uint8_t*)0x20001443 = 0; memcpy( (void*)0x20005680, "\x78\x9c\xec\xdd\x7d\x6c\x55\x67\x1d\x07\xf0\x73\xdb\x95\x22\x2f\x6d" "\x67\x74\x69\xe3\x0b\x2c\x8e\x80\xe0\x08\xae\x4e\x07\x44\x5a\x8b\x18" "\x5e\xe6\xac\x6d\xb2\x81\x7b\xa1\x4e\xe3\xc0\x39\x2c\x64\x88\xe2\x9a" "\x75\x83\x90\xcd\xcd\x5a\x36\x8b\x76\x32\x98\x44\xa7\x4c\x91\x4a\x06" "\xc8\x16\x47\x71\x09\xe8\x2c\xd9\x4c\x5c\x57\xc5\x2d\xe0\xea\x0b\x8d" "\x5b\x98\xec\x85\xb9\xf9\x92\xde\x7b\xcf\xe5\xde\x73\x68\x7b\x87\x73" "\x9d\xdb\xe7\x43\xda\x73\x9e\xfb\x3b\xcf\x73\x9f\x7b\x72\xfe\xb8\xdf" "\x4b\x9f\x73\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\x08" "\x82\x60\xdd\xcd\x9d\xd7\x3d\xd8\xd6\xf1\xf2\x39\x5b\x77\x54\xde\xf1" "\xc4\xda\x86\x19\xeb\x9e\xe9\x3b\xfb\x0b\xad\xf7\x6e\x7e\x60\x52\x5d" "\xc5\x84\xa7\x9b\x1e\xad\x5b\xd9\xb4\x71\x7a\xf5\x93\x6d\xc7\xce\xea" "\xa9\x58\xd8\x3e\x29\x08\x12\xc9\x7e\x89\x74\xff\xc5\x35\x73\xeb\x3e" "\x57\xbf\xf8\xe3\x23\xc3\x01\x1b\x3e\x99\xda\x96\x95\x0d\xf4\x94\xa9" "\xae\x87\x53\x8d\x11\x39\x0f\xf6\xf7\xcb\xfd\xf9\x74\x10\x04\x45\x91" "\x01\x0a\xd3\xdb\x39\xe9\x9d\x82\x9c\x01\x32\xbb\x2b\xe2\x03\x0e\x6a" "\xc1\xc2\x25\x3b\x6e\xdc\x36\xbf\x6f\x7d\xe9\x9c\xfd\xe3\xba\x13\x07" "\xe2\x2f\x9d\x7e\x23\x87\x7b\x02\xc3\x25\x7d\x5d\xf5\x9e\xbc\x96\xaa" "\x93\xbf\x0b\x22\x47\x64\xda\x59\x97\x5e\x22\xe7\x12\x4d\xf5\x8f\x5e" "\x70\xaf\xc9\x8b\x00\x00\x5e\x91\x69\xb5\xc9\x4d\xe6\xed\x68\xfa\x2d" "\x6e\xa6\xdd\x1c\xad\x47\xda\xd5\x91\x76\x6b\xa4\x1d\xbe\x43\x68\xcd" "\x6e\x9c\x8e\xd4\xb8\x23\x06\x9a\xe7\xf8\x68\x7d\x98\xe6\x59\x9d\x8a" "\x0a\xc5\x03\xce\x33\x52\x4f\x9f\xff\x4c\xbb\x36\xda\x3f\xd2\x8e\x44" "\x8d\x57\x30\xcf\xdc\x43\xd3\x91\x66\xe4\x40\xf3\x6c\x8c\xd4\x87\x6b" "\x9e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xaf\x27" "\xef\xad\xfc\xcb\xcc\xe5\x2f\xde\x5e\x32\xa2\x7b\xe9\xf5\xbf\x5f\xf3" "\xa1\x9b\xe6\x75\x57\xbe\xfb\x91\xaf\x95\xdf\x53\x39\xf7\x47\x1d\xcb" "\xda\xee\xfb\xea\xa3\x75\x2b\x9b\x36\x4e\xaf\x7e\xb2\xed\xd8\x59\x3d" "\x15\x0b\xdb\x27\x05\x41\x59\xb2\x5f\x22\xd5\x3d\x71\xdd\x65\x47\x57" "\xd5\x8d\xfb\x58\xcd\x37\x7e\xf9\xe1\x9f\x5e\x39\xfa\xce\x6b\x0b\xd3" "\xe3\x86\xdb\x33\xb2\x0e\x0e\x7a\xc2\x9d\xe9\xa5\x41\x70\x65\x56\xa5" "\x37\x1c\xf6\x68\x49\x10\xd4\xe6\x16\x92\xcd\xa0\x3d\x5e\x58\x9a\xdc" "\x99\x17\x16\x00\x00\x00\x78\x23\xa9\x48\xfe\x2e\xc8\xb4\x53\x71\xb0" "\x28\xa7\x9d\x48\xa6\xc9\x44\xf2\x5f\x28\x15\x16\x17\x2c\x5c\xb2\xe3" "\xc6\x6d\xf3\xfb\xd6\x97\xce\xd9\x3f\xae\x3b\x71\xe0\xf4\xc7\xab\x1d" "\x60\xbc\xea\x53\x8e\x97\x69\x97\x9d\xfc\x49\x64\x05\xe3\x30\xfe\x46" "\xc7\x3b\x59\x0f\x0f\x5d\x11\x1b\x67\x70\xd1\x11\xa3\x79\xfe\xe2\xed" "\xbb\xf7\x8d\x59\xb5\xfe\x82\xe5\x2f\x74\x5e\x32\x73\xf6\x5f\xcf\xef" "\xbd\xa1\xf3\x99\x29\x55\xb7\x7e\xfd\xc1\x31\x97\x6e\x59\xf1\xcd\xb9" "\x2b\x63\xf9\xbf\x6c\xf0\xfc\x1f\x9e\x39\xf9\x1f\x00\x00\x80\xff\x86" "\xfc\x1f\x1d\x67\x70\x43\xe5\xff\xe2\x6f\xff\xf6\x87\xad\xdf\x79\x57" "\xdf\xf6\xbd\x4f\x1d\xdd\xf4\xb7\xad\xcd\xab\xeb\x9f\x38\xb1\xa1\xad" "\xfe\x7d\x2b\x27\xd7\xff\xfd\x82\x73\x5b\x5f\x8c\xe5\xff\xf1\x39\x4f" "\x19\xcb\xff\xe1\x8c\xc3\xfc\x5f\x10\x9c\x5e\xfe\x07\x00\x00\x80\xd7" "\xb3\xff\x75\xfe\xaf\x8e\x8d\x33\xb8\xa1\xf2\xff\x86\xaa\x77\x4c\x59" "\x73\x7d\xd7\x1d\x9b\x27\x6e\x1a\x7b\xeb\xea\x67\xff\xf1\xd2\xfd\x33" "\x1e\xfe\x79\xf1\x67\xa6\x2e\x7e\xdb\xec\xa7\xf6\xcd\xdc\xb8\x3b\x96" "\xff\xa7\xe5\x97\xff\xcf\xc8\x9e\x76\xf8\x60\x57\x38\xe1\xab\x4b\x83" "\x60\x5a\xfe\x27\x15\x00\x00\x00\xc8\x11\xfe\xbf\xfb\xc9\x8f\x16\xc2" "\xbc\x9e\xfa\xe4\x20\x9a\xd7\x6f\xdb\x55\xb5\x77\xdb\xc6\x09\x5f\xba" "\x7c\xcc\x9f\xef\x3e\x37\x71\x62\xef\xb2\xa9\x35\xed\x9b\x8f\xfc\xe1" "\xa2\x2d\xdf\x4d\xdc\x3b\xbd\xe5\x48\x4f\x2c\xff\x57\xe7\x97\xff\x8b" "\x5e\x9b\x97\x0b\x00\x00\x00\xe4\xa1\xf1\xf1\x83\x97\xdd\xfc\xeb\xf1" "\x2f\x7d\xaa\xa6\xfd\xee\x5d\x6b\xbf\xbf\x6c\xd6\xf6\xe3\x0d\x3b\x37" "\x3d\xdd\x9d\x78\x6b\xe5\xbc\x96\x96\x2f\xb6\xc4\xf2\x7f\x6d\x7e\xf9" "\xbf\x78\x78\x5e\x0e\x00\x00\x00\x70\x0a\x4b\x2e\xbc\xe6\x17\x17\xf7" "\x8d\xbd\xe9\xf8\xd2\x3f\x95\xb4\xf6\x36\x37\xef\xb9\xbc\xe2\xd0\x43" "\xd7\x3e\xf6\xc7\xa6\xc5\xdf\x9b\xf5\xcf\xf2\x6d\x57\xc4\xf2\x7f\x43" "\x7e\xf9\x7f\x54\x7a\x9b\x5e\xf9\x90\xea\xb4\x3f\xfc\x2b\x84\xdb\x4b" "\x83\x60\x64\xff\x4e\x63\xaa\x70\x20\x68\xad\xca\x14\x00\x00\x00\x80" "\x57\x49\x98\xd3\xcf\x3c\xff\xd2\xcf\x37\x4d\xd8\x5e\x3a\xf1\x5b\xb3" "\xaf\xb8\x66\xf9\x9e\x1f\xb4\x1f\xdc\x7a\xdb\x91\x0f\xf6\x9e\x73\xd5" "\x57\x2a\xd6\xfe\xee\xb9\x75\x1f\x88\xe5\xff\xc6\xc1\xef\xff\x1f\xde" "\xe9\x20\x5c\xff\x9f\x73\xff\xbf\xd8\xfa\xff\xac\x42\xea\xae\x7f\x33" "\xdd\x18\x00\x00\x00\x80\x37\xa3\xf8\x7a\xfe\xf0\xf6\xf8\xa9\x6f\x2e" "\x18\xe8\xfb\xf7\xf3\x5d\xff\x5f\xdc\xb5\xaa\xed\xb9\x5d\xef\x59\xd0" "\x5c\x53\x7b\xff\x7d\x8f\x4d\x7d\x68\xd1\xa1\xe7\x27\x6e\x19\xb3\xe7" "\x96\xe6\xae\xaa\x77\x76\x7f\xb9\xfc\xed\xb1\xfc\xdf\x9c\x5f\xfe\x2f" "\xcc\xde\xbe\x9a\xdf\xff\x07\x00\x00\x00\xa7\xe1\xff\xed\xfb\xff\x16" "\xc5\xc6\x19\xdc\x50\xf7\xff\x7f\xe1\xe5\x9d\x87\x67\x1d\xbc\xe8\xdf" "\xbf\xf9\xe8\xda\x3b\xc7\xb6\x6c\xe8\x49\xfc\xaa\x69\xcd\xcf\x9e\xed" "\x39\xbc\xf3\xe8\xe4\x1f\x57\x9c\x37\xf9\x2d\xb1\xfc\xdf\x9a\x5f\xfe" "\x0f\xb7\xa3\xb3\x5f\x5e\x67\x78\x7e\xd6\x94\x06\x41\x79\xff\x4e\xfa" "\x6e\x82\x5b\xc3\xe9\x5e\x1d\x29\x74\x14\x65\x15\x52\x27\x3e\xd2\xa3" "\x3e\xec\x91\x2e\x74\x14\x67\x15\x92\x1a\x23\x3d\xce\x2b\x0d\x82\xb3" "\xfb\x77\x9a\x23\x85\x33\xc3\x42\x6b\xa4\x70\xac\x24\x5d\xb8\x2b\x52" "\x78\x38\x2c\xa4\xaf\x87\x4c\xe1\x27\x91\x42\x67\x78\xa5\x6d\x28\x49" "\x4f\x37\x5a\xd8\x1d\x16\xd2\x0b\x2c\x3a\xc2\x15\x14\xa3\x33\x4b\x22" "\x22\x3d\x8e\x0f\xd4\xa3\xbf\x70\xca\x1e\x87\x32\x4f\x0e\x00\x00\xf0" "\xa6\x12\x86\xe7\x74\x96\x2d\xca\x6d\x06\xd1\x28\xdb\x91\x18\xea\x80" "\x51\x43\x1d\x50\x30\xd4\x01\x85\x43\x1d\x70\x46\xe4\x80\xe8\x81\x03" "\x3d\x1e\x34\xe4\x16\x32\x03\x5e\x38\xbf\xe0\xfd\xf7\x3c\xf0\xf8\x0d" "\x53\x3f\xbb\x6f\xc6\x23\xa3\x3e\x72\xd5\xec\x29\x27\xd6\xaf\xfe\x57" "\x57\xdb\x27\x9e\x5f\x5d\xdf\xb8\xe8\x92\x58\xfe\xbf\x2b\xbf\xfc\x1f" "\x9e\x8a\x11\xa9\xcd\x40\xeb\xff\x83\x70\xfd\x7f\xfa\x7b\x0d\x33\xeb" "\xff\x1b\xc2\x42\x59\xa4\xd0\x11\x16\x6a\xa3\x77\x0c\xa8\x0d\x9f\x23" "\x15\x76\x6f\x09\x9f\xa3\xac\x36\xdd\xe3\x58\x79\xa6\x00\x00\x00\x00" "\x6f\x68\xe1\xe7\x02\x85\xc3\x3c\x0f\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x80\xff\xb0\x77\xef\x71\x52\x55\x77\x82" "\xc0\x4f\x37\xfd\x84\xa6\x69\x0d\x89\xa0\x04\x7b\x30\x62\x30\xa1\x69" "\x04\x12\x35\xba\x41\x4c\x8c\xab\xa3\x69\x49\x30\x66\x62\x62\xf3\x68" "\x49\x87\x46\x90\x87\x8a\x8b\x13\x7c\x24\x19\x85\xf8\x58\x31\x91\x8c" "\x8e\xb0\x8e\x09\x1a\x25\xc4\xc4\x15\xa3\x0e\xac\x93\x28\x33\x43\x7c" "\x3f\xe2\x23\x8c\x59\x35\x4a\x7c\x81\xba\xee\xba\xae\xba\x9f\xee\x5b" "\xa7\xa8\xba\xd5\x65\x17\x02\x4a\x3b\xdf\xef\x1f\x5d\xa7\xea\x77\x9e" "\xb7\x1e\x5d\xe7\xde\x5b\xe7\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0" "\x1f\xc3\x82\xdf\x9e\xb5\x71\xe0\xc8\x17\xfe\x7e\x65\xbf\xe3\x0f\x5f" "\xf2\x8f\x6b\xf6\xb9\x7b\x8f\xa7\x8e\x39\xed\xf9\x95\x6b\x8e\x7d\xe9" "\xdb\xcf\x6d\x5e\xdb\x38\xea\xa1\x89\xf3\xcf\xba\xe2\xa0\xf1\x4f\x5d" "\xb6\xf9\x63\x7f\x18\x7c\xc2\xb2\x4f\x86\xd0\xd2\x55\xae\x2c\x29\x5e" "\xb6\xf0\xc4\x4d\xa7\x4f\xdc\xfb\x88\x09\x17\xad\x3f\xf4\x97\x53\xfa" "\x5d\x39\xaf\x2a\x53\x6f\x26\x1e\xfa\x75\xfe\x29\xcf\xdc\x39\x2f\xb6" "\xfa\x74\xff\x10\x6e\x2e\x0b\xa1\x22\x1d\x18\x59\x97\x04\x2a\x33\xf7" "\xeb\x62\x7d\x43\xea\x42\xd8\x2d\x6c\x0d\x64\x4b\xb4\xf5\x4d\x4a\xa4" "\x1b\x0e\xbf\xab\x0d\x61\x79\xd8\x1a\xc8\x56\x75\x4b\x6d\x08\x75\x39" "\x81\xaf\xde\x7f\xc7\xda\x1f\x76\x26\x96\xd6\x86\xb0\x6f\x08\xa1\x3a" "\xdd\xc6\x1f\xab\x93\x36\x6a\xd3\x81\xe1\x55\x49\xa0\x6f\x3a\x30\xab" "\x22\x09\xfc\xef\x77\x12\xd9\xc0\x9a\xf2\x24\x00\xdb\x2d\xbe\x19\xb2" "\x2f\xfa\xd5\x2d\xf9\x19\x1a\xba\x2f\x57\xe4\xf5\x57\xb9\xc3\x3a\xf6" "\xc1\x4a\x0f\xaf\x4f\x4c\x34\x14\xcf\xf7\xe2\x61\x3b\xb9\x53\x39\xaa" "\xd2\x0f\xb4\x6c\xd7\xd3\x56\x50\x1d\x3b\x45\xc1\xdb\x63\x9d\x77\x5b" "\x2f\x78\xb7\x15\x6c\xe7\x8b\x3d\x6d\xb9\x5f\xa4\x32\xdf\x50\xde\xd9" "\x1a\xaa\x0e\xe5\xd3\xda\x4e\x9e\x3c\xbf\x63\x5e\x7c\xa4\x3c\x34\x35" "\xf5\x29\x56\xd3\x4e\x7a\x9e\x1f\xdb\xb2\x70\xea\xb6\xa4\x7b\xcd\xeb" "\x30\x76\xa0\x61\x87\xbc\x0e\x37\x5f\xfe\xca\xa4\xe6\xfe\xc7\x0c\xba" "\x61\xc2\xa6\x21\x63\x4f\x5a\xb6\x6c\x7b\xbb\x59\x6c\xf3\xee\x6c\xd5" "\x21\xf3\x9a\xeb\x35\xcf\x63\x34\xde\xe7\x49\x2f\x78\xfb\x15\x7c\x4b" "\x6a\xf4\xa5\x2b\x84\xf0\x9f\xbf\x3b\xe6\xec\x13\x2b\x0e\x3a\xe2\xb6" "\x83\x97\xbe\x31\xe6\xf0\x6b\xfa\xed\x35\xe9\xf3\x87\xee\xf6\xe2\x35" "\x6d\x1f\xdf\xfb\xf8\xdd\xef\xfa\xf2\x99\x9b\x0a\xe6\xff\x0d\xef\x3e" "\xff\x8f\x2f\xe7\x78\x5b\x9e\x97\x3b\xb6\xfa\x66\x7d\x32\x37\x8f\x8f" "\xd4\xc5\xc4\xcb\xf5\xc9\xdc\x1c\x00\x00\x00\x7a\x8d\xde\xb0\xd7\xf4" "\xd2\x1f\x8d\x9a\xda\xef\xe8\x5b\x1f\x9d\x5c\xb9\xe7\xac\x45\x7f\xff" "\xdf\x86\xb5\x5e\x31\x70\xd3\xf9\x83\x6e\xdd\xff\x0f\x07\x35\x1d\xf1" "\x95\x41\x2b\xbe\x5e\x30\xff\x6f\x2c\xed\xf8\x7f\x3c\xe4\x5f\x97\x3b" "\xda\x75\x21\x8c\xef\x4a\x9c\x3b\x20\x84\x41\x5d\x8f\x27\x81\x6b\x63" "\x77\xa6\x0c\x08\xe1\xaf\xba\x52\x2d\xf9\x81\xc3\x52\x81\x75\x21\x0c" "\xee\x4a\x8c\xc8\x56\x95\x2a\x51\x13\x4b\x34\xa6\x02\xcf\xd6\x67\x02" "\xe3\x53\x81\x3b\x63\xa0\x25\x15\xb8\x26\x06\x2e\x4e\x05\xce\x8b\x81" "\xd5\xa9\xc0\xd4\x18\x58\x97\x0a\x4c\x88\x81\xd0\x9e\x3f\x8e\xfd\xeb" "\x33\xe3\x28\x39\x50\x1b\x03\xad\xc9\x46\x5c\x1d\xcf\x42\x78\xb5\x3e" "\xb6\x96\xda\x56\x8f\x67\xab\x02\x00\x00\xd8\x41\x32\xb3\xc3\xca\xfc" "\xbb\x39\xe7\x3a\x6c\x6f\x86\x38\xbd\x5c\x5d\xdb\x53\x86\x78\x06\x76" "\xd1\x0c\xd5\xa9\x1a\xd2\x33\xd8\xec\xb4\xaa\x68\x0d\x15\x3d\xd5\x50" "\xde\x53\x0d\xd9\x71\x2f\x7a\xf7\xe1\x17\xd4\x5c\xd6\x53\xcd\x05\xa7" "\x61\x94\xe5\x67\xb8\xaf\xe1\xea\xc3\x87\xde\xfb\xf6\x75\x33\xbe\xb0" "\xb1\x7d\xd0\x19\xeb\x3f\xf5\xd9\xd7\x7f\x71\xc6\x85\x57\x5e\xf6\xcc" "\xff\x99\xf2\x3f\x46\x2d\xfc\xf4\x0f\x9e\x2b\x98\xff\x37\xbf\xfb\xfc" "\xbf\xba\x9b\x8e\x94\x15\x1c\xff\x0f\xe1\xb8\xae\xbf\x31\x77\x79\x26" "\xd2\x91\x8d\xb7\xb6\xe4\x65\x00\x00\x00\x00\xb6\xc3\xe0\xca\x25\x6b" "\x9e\x3e\xb4\xef\x4f\x8e\xda\xf8\xf4\xf3\x9f\x5a\x7f\xf9\xc0\x7b\x6e" "\x5b\x7f\xed\x0f\x0e\xb8\xee\xe1\xd6\xf2\x87\xf7\x5c\xba\x6a\xd0\x5e" "\x05\xf3\xff\xf1\xa5\x9d\xff\x1f\xf7\x89\xf4\xc9\xc9\x1c\x36\xc4\xdd" "\x10\x33\x06\x84\xd0\x9c\x1f\x48\xaa\xfd\x5c\x61\x20\x39\xea\xdd\x2f" "\x13\x00\x00\x00\x80\xde\x20\x7b\x3c\x3e\x7b\x2c\xbc\x3d\x73\x9b\x9c" "\xa2\x9d\x9e\x4f\x17\xe6\x6f\xd9\xc6\xfc\xf1\xc0\xff\xf8\x6e\xf3\xd7" "\x5c\xf0\xdc\xf7\x7f\xb7\xec\x92\xff\x77\xe5\xd4\xff\xfe\x5f\xbf\x30" "\xed\xe7\x7f\xf7\xe5\x6f\x3d\xf7\xb9\xea\xa3\xbe\x36\xe7\xc6\x6f\x1f" "\xfd\xef\x23\x26\xff\xac\xf0\xf7\xff\x2d\xa5\x9d\xff\xdf\x37\xff\x36" "\xe9\xc4\x9d\xb1\x17\x97\x0e\x08\xa1\x26\x27\x70\x57\xec\x65\x67\xa0" "\x4b\x63\x0c\x3c\xf9\xf9\xfc\x40\x66\xfc\x77\xc6\x0d\xb0\x38\x56\x95" "\x39\x31\x21\x5b\xd5\xe2\x58\xa2\x35\x06\x9a\x53\x81\xe5\xc5\x4a\xdc" "\x9b\x2d\x31\x28\x3f\x90\x79\xb2\xb2\x8d\x9f\x9b\x1d\x47\x7b\xa6\x44" "\x4e\x00\x00\x00\x00\xde\x77\x71\x77\x40\x3c\x2e\x1f\xcf\xff\xaf\x9f" "\xfc\xa3\xc3\xb7\x5c\xf0\xfa\x5f\xaf\x7f\xeb\xf9\x65\x2f\x3d\xfa\xc2" "\x0f\xf6\x1d\xf6\xd9\xd6\xe1\xff\x30\xf8\xd6\xcf\x0c\xff\xee\xef\x3f" "\xb3\xef\x43\x0b\x0b\xe6\xff\xad\xdb\x76\xfe\x7f\xd7\x3c\xb8\xe0\xf4" "\xfe\x8e\x7e\x21\x8c\xaa\x08\xa1\x4f\xfa\x87\x01\x1b\xfa\x26\x0b\x03" "\xc6\x40\x5d\x59\x26\x71\x7b\xdf\xa4\xae\x3e\xe9\xaa\xce\xee\x1b\xc2" "\x21\x9d\x03\x4b\x57\xf5\xa7\xcc\xfa\xff\x15\xe9\x35\x06\xef\xaf\x4d" "\xaa\x8a\x81\x41\xc3\x56\x6e\x19\xde\x99\xb8\xba\x36\x84\x51\xb9\x81" "\x87\xbf\xb1\x62\x5c\x67\x62\x5e\x2a\x90\x6d\x7c\x52\x6d\x08\x7b\x77" "\x8e\x36\xdd\xf8\x4d\x35\x49\xe3\x95\xe9\xc6\x7f\x5c\x13\xc2\xd0\x9c" "\x40\xb6\xaa\x29\x35\x21\x74\x36\x56\x95\xae\xea\x8e\xea\xcc\x75\x0c" "\xd2\x55\xfd\xa2\x3a\x84\x8f\xe4\x04\xb2\x55\x7d\xa6\x3a\x84\x05\x01" "\x80\x5e\x2a\xfe\x2b\x9d\x96\xfb\xe0\xdc\x05\x67\xce\x98\xdc\xd1\xd1" "\x36\x67\x27\x26\xe2\x3e\xfc\xda\x70\x72\x7b\x47\x5b\xd3\xd4\x59\x1d" "\xd3\xaa\x8b\xf4\x69\x5a\xaa\xcf\x79\xcb\x18\x9d\x5d\x38\xa6\x52\xaf" "\x7c\xf3\x44\x66\x89\xa2\x07\x2f\x78\xb4\xa1\x94\x74\xf6\x77\x82\xcd" "\xb9\x6d\x65\xf6\xe3\x17\x9c\x38\x98\xb9\x1f\xbf\x0b\x55\x76\x8d\xf3" "\x80\xca\xbc\xbb\x63\xd2\x43\xfe\xe4\x3e\x85\x4d\x84\x9c\x6f\x52\xc5" "\x86\x5c\xbe\x93\x87\xdc\x37\xb7\x92\xad\x4f\x62\x41\xfd\x31\x7f\x55" "\xe8\x17\x6a\xe6\xcf\x6d\x9b\xd3\x74\xc6\xe4\x79\xf3\xe6\x8c\x4e\xfe" "\x96\x9a\xfd\x80\xe4\x6f\x3c\xcc\x94\x6c\xab\xd1\xe9\x6d\xd5\xb7\xbb" "\xbe\x95\xf0\xf2\x28\xba\x5a\x56\xca\x7b\xdd\x56\xfb\xe5\x56\x32\x6a" "\xde\xcc\xd9\xa3\xe6\x2e\x38\x73\x64\xfb\xcc\xc9\xd3\xdb\xa6\xb7\x9d" "\x32\xe6\xc0\xb1\x63\x0f\x1c\x37\x76\xf4\x98\x71\xa3\x3a\x47\xd5\x9c" "\xfc\xed\x61\xa8\xfb\x75\x57\x75\x6a\xa8\xef\xac\x28\x71\x5c\x3b\x70" "\xa8\x7b\x56\xe4\x54\xf2\x7e\x7c\x6a\x48\x48\x48\xf4\xb6\xc4\x4d\xc7" "\x5e\xdf\xf8\x40\xc7\xf5\x77\xd4\xb6\x8d\xbc\xff\xe0\x8e\x93\xee\xbe" "\x6a\xd6\xbf\x3e\x3e\xfe\x8c\x23\x7f\xdb\xf4\xaf\x4b\xe6\xaf\x5a\x50" "\xb9\x47\xc1\xfc\x7f\xf6\xbb\xcf\xff\xe3\xa7\x4e\xfc\xe4\xcf\xac\xcf" "\x50\xec\xf8\x7f\x43\x3c\xcc\x9f\x3c\xbe\xf5\x30\x7f\x6b\x0c\x2c\x2f" "\xf5\xf8\x7f\x43\xb1\xa3\xf9\xd9\x13\x03\x1a\x53\x81\x45\x31\xb0\xc8" "\x61\x7e\x00\x00\x00\x3e\x1c\xe2\xee\xc8\xb8\x37\x33\xee\x95\xbe\x7d" "\xc9\x96\xd5\xf7\x1e\xff\xd1\x9f\x1f\x7c\xe9\xef\x77\xff\x6c\xcd\xdc" "\xbd\x36\x4c\xfd\xf1\x75\xdf\x6b\x7b\xa9\xe6\x57\x87\xb5\xff\x79\xe2" "\xa1\x4d\x87\x15\xcc\xff\x17\x95\xf6\xfb\xff\x1d\xb4\xfe\x7f\x76\xe9" "\xfa\xa3\x8a\x2d\xf3\x3f\x22\x96\x68\x2e\xb6\xfe\x7f\x7a\x99\xff\xec" "\xfa\xff\x8b\x8a\xad\xff\x9f\x5e\xe6\x3f\xbb\xfe\xff\xf2\x0f\x60\xfd" "\xff\xf9\xd9\x40\x6a\x93\xbc\x6a\xfd\x7f\x00\x00\xe0\xc3\xe0\xfd\x5b" "\xff\xbf\xc7\xe5\xfd\xd3\x17\x08\x28\xc8\xd0\xe3\xf2\xfe\xe9\x0b\x04" "\x14\x64\xe8\x71\x19\xff\x52\x2f\x10\xb0\xcd\xeb\xff\x9f\x56\x33\xec" "\xaf\x4f\xbc\xe0\x8b\x55\x5b\xbe\x34\xe0\x95\xd5\x77\xec\xfb\xf3\x4f" "\x4c\x3f\xfe\xc5\x7f\x7f\x7c\xe6\xdf\x9c\x38\xf2\x88\x2f\x9e\x34\xe5" "\xd3\xb7\x16\xcc\xff\x2f\x2e\x6d\xfe\x6f\xe1\x7e\x00\x00\x00\xd8\x75" "\x7c\xe9\xb7\x3f\x6d\xbf\x7b\xec\x59\x03\x9f\x7c\xed\x9f\xc6\x9c\xbe" "\xb8\xed\xd4\xb5\x17\x4c\xfa\x9f\xb3\xae\xbf\x67\x9f\xc7\xd7\xaf\xba" "\xaa\xcf\x94\x8d\x4f\x14\xcc\xff\x97\x97\x36\xff\x7f\xff\xd7\xff\x0b" "\xc5\xce\xff\x6f\x2c\x16\x68\x29\xb6\x30\xa0\xf5\xff\x00\x00\x00\xe8" "\xa5\x8a\xad\xff\x77\xd3\x83\xb5\xbf\x39\x7a\xf0\xd9\x0d\xaf\x9e\xba" "\xfc\xba\x81\x7b\x3f\x74\xea\x80\x39\x37\x3e\xf8\xc0\x93\x77\x0d\x1b" "\x7a\x51\xd5\x4d\x0b\xe6\x2f\x79\xa0\x60\xfe\xbf\xba\xb4\xf9\x7f\x3c" "\xed\xa2\x3c\x2f\x77\xec\xcd\x9b\xf5\xc9\x9a\x76\x21\xbd\xa6\xdd\xcb" "\xf5\xd9\x9f\x0c\x00\x00\x00\x40\xef\x50\x1e\x9a\x9a\x2a\x4b\xcc\x9b" "\xb7\x32\xea\x61\xef\xbd\xcd\xc7\x32\x4b\x81\xbe\x5b\x3a\xd7\xb9\xff" "\x69\xec\xba\x07\x5e\x78\x7b\xf1\x94\xf3\x9e\x5d\xf9\xe2\x8d\x4f\xde" "\xff\xb1\x97\x4f\xb9\xed\xea\xef\xfd\xe3\x17\x4e\x7f\xed\xc2\xa1\x23" "\xc7\x2f\x1e\x5a\x30\xff\x5f\x57\xda\xfc\x3f\xef\x77\x19\x9b\x2f\x7f" "\x65\x52\x73\xff\x63\x06\xbd\x79\xc3\x84\x4d\x43\xc6\x9e\xb4\x6c\xd9" "\xd6\xe3\xff\x00\x00\x00\xc0\xce\x53\xea\x7e\x09\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xe0\x83\xf7\xc6\x8a\x96\xff\x7b\xc7\xfe\x7f" "\x3e\xb0\xe3\xf1\x4f\xac\xa9\xfb\xc4\x84\x27\x9a\xf6\x1f\x32\xf1\xa7" "\x57\x56\x9f\xf3\xeb\xef\x3f\xf3\x8b\xd6\xe9\xbf\x5c\x5a\xf0\xfb\xff" "\x70\x5c\x57\xb9\x62\xbf\xff\x8f\xd7\xfd\x8b\xbf\x2f\x18\x98\x97\x3b" "\xb6\xda\xf3\xfa\x7f\x99\xfb\x5f\x3d\x7a\xd5\x82\xae\x25\x0b\x37\xd4" "\x87\xb0\x4f\x6e\x60\xc6\x39\x33\x76\x0b\x99\x6b\xf3\xef\x97\x1b\x58" "\xfb\xcd\x11\x7b\x74\x26\xce\x49\x97\xb8\x6d\xe3\x84\x67\x3a\x13\x27" "\xa5\x03\x47\x8e\xdc\xfd\xf5\xce\xc4\x21\xa9\x40\x6b\x5c\x24\x71\x70" "\x3a\x10\xaf\xaa\xf8\x7a\xff\x54\x20\x2e\xaf\xf8\x40\x3a\x10\xb7\xc7" "\xea\x74\xa0\x2a\x13\x38\xbf\x7f\x32\x8e\xb2\xf4\xb6\xda\x54\x97\x6c" "\xab\xb2\xf4\xb6\x7a\xac\x2e\x84\x01\x39\x81\xec\xb6\xba\xb9\x2e\x69" "\xa3\x2c\x3d\xc0\xa5\xa9\x40\x76\x80\xa7\xa6\x03\x71\x80\xc7\x66\x02" "\xe5\xe9\x5e\xad\xea\x97\xf4\x2a\x06\xea\x62\xd1\xab\xfa\x25\xbd\x02" "\x00\x60\x97\x15\xbf\x05\x56\x86\x93\xdb\x3b\xda\x9a\xe3\x57\xf8\x78" "\xbb\x67\x45\xfe\x6d\x94\xb7\x64\xd9\xd9\x85\xd5\x96\x95\xd8\xfc\x13" "\x99\xa5\xc9\x1e\xbc\xe0\xd1\x86\x52\xd2\x7d\xd2\xdf\x45\xb7\x5e\x6b" "\xbc\x32\x54\x77\x0e\x61\x74\xc1\xd7\xd5\xdc\x2c\x65\x5d\xa3\xdc\x31" "\xb5\xf4\xb0\xe9\x06\x16\x19\x72\x4f\xab\xbd\x95\x17\x29\x97\xb6\xad" "\x9b\xae\xaa\xf8\x88\x6a\x93\x11\x35\x4d\x9d\xd5\x31\xad\xb2\xc7\x81" "\x8f\xe9\x39\xcb\x01\x15\x3d\x66\x19\x5d\x30\xd9\xc9\xcd\x52\xde\xb5" "\x49\x4b\xa8\xa5\x84\xbe\x94\x30\xa2\x12\xb7\x4d\x09\x5d\x8e\xf7\xcb" "\x43\x53\x53\x9f\x54\xae\x83\x63\xb0\x21\xe4\xe9\xe9\x15\x51\xea\xef" "\xf5\x73\xd7\xf9\x2b\xf6\x2a\xc8\xcd\x73\xc2\xee\x5b\x66\xfe\xcb\xd1" "\x57\x7d\xf3\xef\x36\xfc\x69\xc3\xb4\xf3\x2f\x9d\x70\x44\xd9\xb3\xc7" "\x5c\xb3\xf6\x8a\xb7\x36\x3e\xf9\x37\x8f\xb7\xdf\xf8\xf2\x7f\x29\x98" "\xff\x37\x94\x36\xff\xaf\xce\x1d\xd7\xeb\x99\x8b\x01\x2c\x8a\x57\xd6" "\xfb\xdc\x80\x10\x5a\x4b\x1c\x11\x00\x00\x00\x7c\xf8\xdd\xf0\xdd\xeb" "\x6f\x3c\x61\xd6\x9d\x9b\x4e\x5e\x57\xf1\xc8\x7d\xf7\xcd\x28\xff\xf2" "\x09\x95\xef\x2c\xfc\xf5\xc2\x33\xbf\xf7\xd8\xed\x8b\x8f\x3c\xff\xd3" "\x3f\xdb\xde\xf8\x59\xa7\xd5\xed\xfe\x64\xc5\x4f\xff\xf9\x84\x53\xbe" "\xd1\x30\x7d\xda\xde\xbf\xae\xf9\xe8\x65\xe7\xbd\xb5\xf6\xd4\xcd\xa7" "\xbe\x56\xbf\xdf\xab\xb5\xe7\x7f\xb4\x60\xfe\xdf\x58\xda\xfc\x3f\xee" "\xc1\xca\x1c\x0a\x4e\xf6\x76\xac\x8b\xd7\xff\x3f\x77\x40\x08\x5d\x97" "\xd6\x6f\x48\x02\xd7\xc6\xe1\x4e\x19\x10\xc2\x5f\x75\xa5\x5a\x62\x89" "\xe4\x82\xfa\x47\xc5\x12\xcd\x49\xe0\xda\xb8\xc3\x64\x44\x2c\xd1\xda" "\x92\x5f\x55\x4d\x0c\xac\x4e\x05\x9e\xad\xcf\x04\xd6\xa5\x02\x77\xc6" "\x40\x66\x2f\xc5\xca\x90\xd9\x95\x73\x49\x7d\x08\xe3\xba\x52\xc7\xe5" "\x97\x98\x1d\x4b\x34\xa4\x02\x5f\x8e\x81\xc6\x54\xa0\x29\x06\x9a\x53" "\x81\xfe\x31\x30\x3e\x15\x78\xa1\x7f\x26\xd0\x92\x0a\xfc\x5b\x0c\x84" "\xf6\xfc\x6d\xf5\xab\xfe\x99\x6d\x05\x00\x00\xb0\x2d\x32\xf3\xac\xca" "\xfc\xbb\x21\x3d\xcf\x5b\x5d\xd1\x53\x86\xb2\x9e\x32\xf4\xed\x29\x43" "\x79\x4f\x19\xaa\x7b\xca\x50\x6c\x14\xf1\xfe\x8d\x31\x43\x65\xea\xe4" "\x95\xb2\x9c\x4c\x95\xe9\x5a\x6b\x53\xb5\x14\x64\x88\x17\xc3\xdf\xe6" "\x7e\x15\x64\x08\xf7\xe6\xe7\x4c\x17\x2c\x68\x3a\x9e\x7f\x90\x3d\xdf" "\xa0\x2c\x3f\xc3\xc7\x1f\xba\x7a\xcd\x77\xd6\x7c\xe1\xa5\x63\x7f\xb3" "\xe4\xb2\x37\xef\x7d\xaa\xfc\x47\x43\x56\x7c\xb7\xb1\xf6\xad\x75\x1b" "\x2e\xf9\xf1\xb0\xb1\xbb\xbf\xf8\x83\x82\xf9\x7f\x73\x69\xf3\xff\xbe" "\xf9\xb7\x49\xeb\x77\xc6\xf9\xff\xd6\xeb\xff\x25\x81\xbb\x62\xf7\x2e" "\x8d\xa7\x8e\x37\xc6\xc0\x93\x9f\xcf\x0f\x64\x76\x0c\xdc\x19\x27\xbb" "\x8b\xb3\x55\xb5\x64\x4a\x64\x26\xed\x8b\x63\x89\xf1\x31\xd0\x98\x0a" "\xcc\x8e\x81\xf1\xa9\x40\xeb\x71\x99\xc0\xf2\x3d\xf2\x03\x99\x99\x76" "\xb6\xf1\x73\xb3\x8d\xb7\x67\x4a\xe4\x04\x00\x00\x00\xe0\x7d\x17\x77" "\x10\xc4\xdd\x34\x71\xfe\x3f\xb3\x6e\xd2\xc4\x71\xa3\x7e\xb2\xe4\x8d" "\xe5\x33\x17\xad\x7d\xfb\xc2\x17\x2e\x5c\x71\x7b\xc7\xab\x95\xe3\x36" "\xbe\x76\xcd\xa7\xbe\xd6\xe7\xf1\xe1\xb7\x17\xcc\xff\xc7\x97\x36\xff" "\x8f\xed\xf5\xcb\x6d\xec\xbc\xd8\x9b\xa7\xfb\x87\x70\x73\xd9\xd6\xde" "\x64\x03\x23\xeb\x92\x40\xdc\x8f\x51\x17\x7f\x1e\x3f\xa4\x2e\x84\xdd" "\x72\x76\x70\x64\x4b\xb4\xf5\x4d\x4a\x54\xa5\x1a\x0e\xbf\xab\x4d\x7e" "\xa1\x5e\x95\xae\xea\x96\xda\x64\x8d\x81\x78\xff\xab\xf7\xdf\xb1\xf6" "\x87\x9d\x89\xa5\xb5\x21\xec\x9b\xb3\xf7\x25\xdb\xc6\x1f\xab\x93\x36" "\x6a\xd3\x81\xe1\x55\x49\xa0\x6f\x3a\x30\xab\x22\x09\xc4\x3d\x3f\xd9" "\xc0\x9a\xf2\x24\x00\xdb\x2d\xbb\x57\x30\xbe\xa0\x32\xa7\xba\x64\x35" "\x74\x5f\xae\xc8\xeb\xef\xc3\x72\x4d\xd0\xf4\xf0\x0a\xf6\x81\x76\x93" "\xaf\xbb\xdf\x5c\xed\x2c\xd5\xe9\x07\x32\xfb\x54\xb3\xb6\xed\x69\x2b" "\xa8\x8e\x9d\xa2\xe0\xed\xb1\xce\xbb\xad\x37\xbe\xdb\x1a\xbc\xdb\x72" "\xbf\x48\x65\xbe\xa1\xbc\xb3\x35\x54\x1d\xca\xa7\xb5\x9d\x3c\x79\x7e" "\xc7\xbc\xf8\x48\xee\x2f\x59\x0b\xec\xa4\xe7\x39\xf7\x57\xaa\xa5\xa4" "\x77\xc0\xeb\x70\xd1\x7b\xef\x6d\xcf\xaa\xd3\x1d\x68\x4e\x7d\x7c\x34" "\x77\x5f\xae\xfb\xd7\x61\x59\xac\x6e\xf3\xe5\xaf\x4c\x6a\xee\x7f\xcc" "\xa0\x1b\x26\x6c\x1a\x32\xf6\xa4\x65\xcb\x4a\xee\x46\x11\xf1\x87\xc2" "\x23\xd6\x4c\xda\x2d\x77\xf3\xee\x6c\xd5\x21\xf3\x9a\xeb\x75\x9f\x27" "\x2d\x3e\x4f\x7a\xe3\xbf\x81\x46\x4f\x5b\x08\x61\xff\xd6\x97\x6e\xed" "\x7f\xf0\xbf\xed\xf5\xd0\xc9\xab\xbf\x35\x6a\xaf\xc1\xe3\xfe\xf2\x4f" "\x4f\x1c\x19\x1e\x79\x78\xe9\x3e\x0b\x8e\xb9\x68\xe5\x3e\xb7\x1c\x55" "\x30\xff\x6f\x29\x6d\xfe\x5f\x91\xba\xed\xf2\x46\xdc\x98\x73\x07\x84" "\xf0\xc9\x9c\x8d\xbb\x21\x6e\xfe\xc3\x07\x24\x9f\x83\x39\x81\xe4\x53" "\xf2\x23\x85\x81\xe4\x90\xfb\x53\xf5\x45\x3f\x39\x01\x00\x00\x60\x47" "\xcb\xee\xee\xc8\xee\x2f\x68\xcf\xdc\x26\x27\x84\xa7\xe7\xc9\x85\xf9" "\x5b\xb6\x31\x7f\xdc\x5f\x31\xbe\xdb\xfc\xa5\xf6\xfb\xb5\x6f\xbc\xf8" "\xf6\x8c\xd3\xbe\x7e\xcb\xa5\xef\x84\xfe\x87\x37\x8c\x9d\xbf\xe5\x92" "\xe3\x66\x6d\x9c\xb1\xe6\x85\x87\xa6\xff\x71\xd5\x75\xc7\xb6\xbe\x51" "\x30\xff\x6f\x7d\xf7\xf9\x7f\x4d\xaa\x9b\x8e\xff\x3b\xfe\xcf\x4e\xe2" "\xf8\x7f\xb7\x76\xf5\x5d\xd1\x35\xe9\x07\x16\x6d\xd7\xae\xe8\x82\xea" "\xd8\x29\x1c\xff\xef\xd6\xae\xfe\x6e\x73\xfc\xbf\x5b\x8e\xff\x3b\xfe" "\xdf\x1d\xc7\xff\x7b\xe0\xf8\x7f\xb7\x76\xf5\xa7\xad\xe0\x5b\xd2\x6c" "\x5f\xba\x42\x08\x77\x1f\xf4\xd6\xaa\xbf\xbd\xf4\xe6\x25\xff\xeb\x7b" "\x93\x87\x7c\x6a\xed\xa4\xc6\x7b\x2a\xbe\x7f\xd8\x8c\xdf\xaf\x1c\xbe" "\xee\xbe\xab\xbe\x72\xfb\x91\x5f\x7c\xb9\x60\xfe\x3f\xbb\xb4\xf9\xbf" "\xf5\xff\xba\x5f\xb4\x2f\xbb\xfe\x5f\x6b\xb1\xf5\xff\x66\x17\x5b\xff" "\x6f\x91\xf5\xff\x00\x00\x80\x9d\xaa\xc8\x42\x73\xe9\x79\x5e\xc1\xea" "\x7d\x05\x19\xd2\xab\xf7\x15\x64\xe8\x71\x81\xc0\x1e\x97\x18\xb4\xfe" "\xdf\x36\xaf\xff\xf7\xfc\xda\xa7\xfe\x5c\x77\xfc\xfa\x9f\xfc\xea\xa2" "\xaa\x47\x3e\x72\xfa\x88\x41\x43\x4f\x78\xe6\xc0\xe9\x97\x5f\x39\xf4" "\x87\x0f\x6c\xdc\xfc\xec\xfe\x5f\xdb\x58\x30\xff\x5f\x54\xda\xfc\x3f" "\xbe\x1c\xfa\xe5\xb6\xde\x5b\xd6\xff\x6b\x3c\xae\x48\x55\x17\xc7\xc0" "\x6c\x0b\x03\x02\x00\x00\xb0\x2b\x2a\xb6\x83\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x80\x0f\xd6\x79\x5f\x3f\xeb\xb4\xc5\xc3\x5e\x9b\xf6\xcf" "\xdf\x9a\x78\xf7\xdd\x5f\xb9\x6e\xcf\xb2\xa1\x4f\x3c\xf2\x0f\x7f\xf9" "\xd6\x3d\xa7\xd4\x1e\xf2\xc2\x77\x66\x0c\xfc\xf8\x43\x13\xe7\x9f\x75" "\xc5\x41\xe3\x9f\xba\x6c\xf3\xc7\xfe\x30\xf8\x84\x65\x9f\x0c\xa1\xbd" "\xab\x5c\x59\x52\xbc\x6c\xe1\x89\x9b\x4e\x9f\xb8\xf7\x11\x13\x2e\x5a" "\x7f\xe8\x2f\xa7\xf4\xbb\x72\x5e\x75\xa6\xde\xca\xcc\xed\x5e\x79\xb9" "\x63\xab\x6f\xd6\x87\xb0\x3c\xe7\x91\xba\x98\x78\xb9\xbe\xf3\xce\xd6" "\xc0\x57\x8f\x5e\xb5\xa0\xa2\x33\xb1\xa1\x3e\x84\x7d\x72\x03\x33\xce" "\x99\xb1\x5b\x67\xe2\x9a\xfa\x10\xf6\xcb\x0d\xac\xfd\xe6\x88\x3d\x3a" "\x13\xe7\xa4\x4b\xdc\xb6\x71\xc2\x33\x9d\x89\x93\xd2\x81\x23\x47\xee" "\xfe\x7a\x67\xe2\x90\x4c\xa0\x2c\xdd\xdd\x2b\xfa\x27\xdd\x2d\x4b\x77" "\xf7\x87\xfd\x43\x18\x90\x13\xc8\x76\xf7\x3b\xfd\xf3\xab\xca\xb6\xf1" "\xa5\x4c\xa0\x3c\xdd\xc6\xcf\xea\x92\x36\x62\xa0\x2e\x16\xbd\xbc\x2e" "\x69\x23\x06\x3a\x62\x89\xf6\x9a\x10\x46\x55\x84\xd0\x27\x5d\xd5\xbf" "\x54\x27\x55\xf5\x49\x57\xf5\x9b\xea\xa4\xaa\x3e\xe9\xaa\xfe\xb6\x3a" "\x84\x43\x42\x08\x15\xe9\xaa\x36\x56\x25\x55\x55\xa4\x47\x7e\x4f\x55" "\x52\x55\x0c\x0c\x1a\xb6\x72\xcb\xf0\xce\xc4\xf2\xaa\x10\x46\xe5\x06" "\x1e\xfe\xc6\x8a\x71\x9d\x89\x53\x53\x81\x6c\xe3\x13\xab\x42\xd8\xbb" "\xf3\x25\x93\x6e\xfc\xc6\xca\xa4\xf1\xca\x74\xe3\x4b\x2b\x43\x18\x1a" "\x42\xa8\x4a\x97\x78\xad\x22\x29\x51\x95\x2e\xf1\xa7\x8a\x10\x3e\x92" "\x13\xc8\x36\xfe\xed\x8a\x10\x16\x04\x3e\x14\xe2\x87\xcf\xb4\xdc\x07" "\xe7\x2e\x38\x73\xc6\xe4\x8e\x8e\xb6\x39\x3b\x31\x51\x95\x69\xab\x36" "\x9c\xdc\xde\xd1\xd6\x34\x75\x56\xc7\xb4\xea\x54\x9f\x8a\x29\xcb\x49" "\xbf\x73\xf6\x7b\x1f\xfb\x13\x5b\x16\x4e\xed\xbc\x7d\xf0\x82\x47\x1b" "\x4a\x49\x57\x64\xca\x55\x76\x75\xf9\x80\xca\xbc\xbb\x63\x76\xf5\xde" "\xc7\x7e\xf5\xcd\xad\x64\xeb\xf3\x51\x50\x7f\xcc\x5f\x15\xfa\x85\x9a" "\xf9\x73\xdb\xe6\x34\x9d\x31\x79\xde\xbc\x39\xa3\x93\xbf\xa5\x66\x3f" "\x20\xf9\xdb\x27\x13\x4d\xb6\xd5\xe8\xde\xb2\xad\xf6\xcb\xad\x64\xd4" "\xbc\x99\xb3\x47\xcd\x5d\x70\xe6\xc8\xf6\x99\x93\xa7\xb7\x4d\x6f\x3b" "\x65\xcc\x81\x63\xc7\x1e\x38\x6e\xec\xe8\x31\xe3\x46\x75\x8e\xaa\x39" "\xf9\xbb\x23\x86\xba\xe2\xfd\x1f\xea\x9e\x15\x39\x95\xbc\x1f\x1f\x00" "\x12\x12\x12\xbd\x2d\x51\x9e\xf7\xe9\xd6\xbc\xab\x7f\x90\x17\x7c\xd1" "\xdf\xda\xd1\xca\x50\xdd\xf5\x01\x5d\x30\xad\xc8\xcd\x52\xd6\x35\xca" "\x1d\x31\xe8\xc3\xde\xe3\x88\xdf\xcb\xf7\x94\x1e\x47\x34\xba\x60\xe2" "\x50\x90\xe5\x80\x9e\xb3\x8c\x29\x98\x4c\x6c\xcd\x52\x9b\x64\xe9\xfa" "\x5e\x57\x30\x39\xcc\xad\xa9\xbc\x6b\x93\xc6\xfb\xe5\xa1\xa9\xa9\x4f" "\xb1\xed\xd0\x90\x7f\x37\x77\xf3\xbe\xb8\x1d\x9b\xf7\xb1\xcc\xa6\x2b" "\x35\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xfc\x7f\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\x03\x07\x02\x00\x00\x00\x00\x40\xfe\xaf\x8d\x50" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x85\x1d" "\x38\x16\x00\x00\x00\x00\x10\xe6\x6f\x1d\x46\xcf\x06\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xc0\xa5\x00\x00\x00\xff\xff\x8f\xf9\xfe\x67", 21928); syz_mount_image(/*fs=*/0x200055c0, /*dir=*/0x20005600, /*flags=*/0, /*opts=*/0x200013c0, /*chdir=*/1, /*size=*/0x55a8, /*img=*/0x20005680); break; case 1: memcpy((void*)0x20000080, "./file0\000", 8); res = syscall(__NR_open, /*file=*/0x20000080ul, /*flags=*/0ul, /*mode=*/0ul); if (res != -1) r[0] = res; break; case 2: *(uint64_t*)0x20001200 = 0xa; *(uint64_t*)0x20001208 = 0; *(uint64_t*)0x20001210 = 0; *(uint32_t*)0x20001218 = 0; *(uint32_t*)0x2000121c = 0; *(uint64_t*)0x20001220 = 0; *(uint64_t*)0x20001228 = 0; *(uint64_t*)0x20001230 = 0; *(uint64_t*)0x20001238 = 0; *(uint64_t*)0x20001240 = 0; *(uint64_t*)0x20001248 = 0; *(uint64_t*)0x20001250 = 0; *(uint32_t*)0x20001258 = 0; *(uint32_t*)0x2000125c = 0; *(uint32_t*)0x20001260 = 0; *(uint32_t*)0x20001264 = 0; *(uint64_t*)0x20001268 = 0; *(uint64_t*)0x20001270 = 0; *(uint64_t*)0x20001278 = 0; *(uint64_t*)0x20001280 = 0; *(uint64_t*)0x20001288 = 0; *(uint64_t*)0x20001290 = 0; *(uint64_t*)0x20001298 = 0; *(uint64_t*)0x200012a0 = 0; *(uint64_t*)0x200012a8 = 0; *(uint64_t*)0x200012b0 = 0; *(uint64_t*)0x200012b8 = 0; *(uint64_t*)0x200012c0 = 0; *(uint64_t*)0x200012c8 = 0; *(uint64_t*)0x200012d0 = 0; *(uint64_t*)0x200012d8 = 0; *(uint64_t*)0x200012e0 = 0; *(uint32_t*)0x200012e8 = 0; *(uint32_t*)0x200012ec = 0; *(uint64_t*)0x200012f0 = 0; *(uint64_t*)0x200012f8 = 0; *(uint64_t*)0x20001300 = 0; *(uint64_t*)0x20001308 = 0; *(uint64_t*)0x20001310 = 0; *(uint64_t*)0x20001318 = 0; *(uint64_t*)0x20001320 = 0; *(uint64_t*)0x20001328 = 0; *(uint64_t*)0x20001330 = 0; *(uint64_t*)0x20001338 = 0; *(uint64_t*)0x20001340 = 0; *(uint64_t*)0x20001348 = 0; *(uint64_t*)0x20001350 = 0; *(uint64_t*)0x20001358 = 0; *(uint64_t*)0x20001360 = 0; *(uint64_t*)0x20001368 = 0; *(uint32_t*)0x20001370 = 0; *(uint32_t*)0x20001374 = 0; *(uint64_t*)0x20001378 = 0; *(uint64_t*)0x20001380 = 0; *(uint64_t*)0x20001388 = 0; *(uint64_t*)0x20001390 = 0; *(uint64_t*)0x20001398 = 0; *(uint64_t*)0x200013a0 = 0; *(uint64_t*)0x200013a8 = 0; *(uint64_t*)0x200013b0 = 0; *(uint64_t*)0x200013b8 = 0; memset((void*)0x200013c0, 0, 576); syscall(__NR_ioctl, /*fd=*/r[0], /*cmd=*/0xc4009420, /*arg=*/0x20001200ul); break; case 3: memcpy((void*)0x20000140, ".\000", 2); res = syscall(__NR_open, /*file=*/0x20000140ul, /*flags=*/0ul, /*mode=*/0ul); if (res != -1) r[1] = res; break; case 4: *(uint64_t*)0x20000000 = 1; *(uint64_t*)0x20000008 = 0; syscall(__NR_ioctl, /*fd=*/r[1], /*cmd=*/0xc0109428, /*arg=*/0x20000000ul); break; case 5: memcpy((void*)0x20000080, "./file0\000", 8); res = syscall(__NR_open, /*file=*/0x20000080ul, /*flags=*/0ul, /*mode=*/0ul); if (res != -1) r[2] = res; break; case 6: memcpy((void*)0x20000200, "./file0\000", 8); res = syscall(__NR_open, /*file=*/0x20000200ul, /*flags=*/0ul, /*mode=*/0ul); if (res != -1) r[3] = res; break; case 7: memcpy((void*)0x20000180, "msdos\000", 6); memcpy((void*)0x20001f00, "./bus\000", 6); *(uint16_t*)0x20001f40 = -1; memcpy( (void*)0x20001f42, "\xa4\xb3\xc8\x16\xb3\xc7\xe7\x59\xe8\x81\xc6\x9e\x2f\x1e\x3e\x3d\x86" "\x34\x67\x9d\xa8\xf1\x1a\xfe\xd2\x54\x50\xeb\x78\x6f\xf8\x41\x81\x54" "\xa5\x1a\xf3\xcc\x43\x62\x79\x45\x20\xc6\x7c\xcd\x83\x79\x6f\x3e\xec" "\x9d\x17\x4a\xbd\x07\x49\x6c\xce\x02\x02\xc2\x0f\x07\x00\x3d\x03\xcf" "\x4e\xf1\xbe\x54\x97\x78\x6c\x04\xdd\x5d\x53\x5f\x21\xea\xb2\x19\xfd" "\xb6\x3e\x92\x56\xa4\x2c\x44\xcf\x03\x9d\x8c\xb6\x63\xce\xa0\xbd\x22" "\x61\x9a\x50\xf4\xe9\x74\xfb\x17\x78\x6b\x47\xb9\xce\xae\x40\xd6\xf6" "\x82\x2e\x23\x86\x5a\xec\x0a\x30\xb0\x6b\x93\x83\xc8\xd4\xc2\xf4\x66" "\x66\x0c\x44\x8c\x62\x21\x55\x6e\x2c\x6b\xc4\x22\xc4\xdf\x4f\x44\xdd" "\x54\xb4\x5b\x77\x77\xf2\x6d\xb9\xc2", 162); *(uint64_t*)0x20001fe4 = -1; sprintf((char*)0x20001fec, "0x%016llx", (long long)-1); memcpy( (void*)0x20001ffe, "\x22\x0f\x82\xc7\xb6\x20\x7a\x48\xcc\x34\x90\xb8\xaf\x26\xe2\xc9\x0e" "\xa8\xb8\x2f\xa4\xc1\xb6\xf7\xd2\xc4\xb4\xdf\xe5\xd9\x1c\x56\x37\x22" "\xaa\xbe\xe2\x5c\x06\x3d\x9e\x59\x0a\xd3\xb3\xf9\xd6\x52\x9d", 49); *(uint8_t*)0x2000202f = -1; *(uint8_t*)0x20002030 = -1; memcpy((void*)0x20002031, "\xca\x6b\x54\xcd\x1c\x6b\x8a\xd0\x07\xa9\xa7\x88\xe5\x7d\xde\xe9" "\xc4\x53\xc4\x1d\x3c\xa0\x35\x85\xcd\xf7\xd3\xec\x63\x79\x73\x41" "\x5e\x7b\x4a\x40\x80\x9e\x39\xf6\x87\x4c\x46\x26\x49\xb2\xd3\xcb" "\x00\x54\x68\x7f\x8a\xd2\x63\x2a\xe1", 57); sprintf((char*)0x2000206a, "0x%016llx", (long long)-1); sprintf((char*)0x2000207c, "%020llu", (long long)-1); syz_mount_image(/*fs=*/0x20000180, /*dir=*/0x20001f00, /*flags=*/0x1a444ad, /*opts=*/0x20001f40, /*chdir=*/1, /*size=*/0, /*img=*/0x20000000); break; case 8: *(uint32_t*)0x20002180 = r[2]; memcpy( (void*)0x20002188, "\x8c\x95\x8b\x1b\xea\xff\xe8\x54\xa9\x10\x9f\x00\x59\xe5\x7e\xb7\x86" "\xe9\xc7\x87\x3f\x32\xc3\x5f\x61\xa8\xe4\x06\xd8\x80\xf9\x86\x95\xea" "\x2c\x72\x80\x92\x15\x0b\x3d\x1d\xf3\x36\xc2\x51\xed\x70\x80\x2a\x83" "\xa1\xb6\xe8\x4d\x4b\xf3\x2c\xab\x4b\x99\x1d\x76\x27\x72\xfd\xdc\x3d" "\x46\x62\x97\x32\x8e\x0b\xe3\x0e\xde\x68\x64\xaf\x73\x81\xb3\x49\x8b" "\xd6\x46\x31\x1f\x70\x46\xdc\x19\xa2\x0c\x65\x18\x6f\xb4\x0c\x7c\xdc" "\xb4\x25\x32\xf1\x8e\x21\xee\x82\xd7\x42\xc8\x47\xf6\x05\x8a\xb8\xfb" "\xa0\x08\xc6\xbd\x40\xce\xf9\x54\x4b\xbe\x1e\xa6\xf6\xd6\x19\xb4\xa6" "\x78\x99\x63\xc3\x68\x4c\x1d\x3f\xcd\x91\xe9\xd9\xc7\x90\xa7\xfb\x44" "\x23\x23\x03\xbe\x79\xf2\x7c\xe4\x79\xb4\x03\x06\x6e\xc5\x2f\x39\x13" "\x20\xa8\xd7\x77\xa4\x4b\x07\x02\x90\xfc\xa3\x4c\x1f\x1b\xd9\x14\x3e" "\xe0\x26\xca\x32\x33\xbc\xf8\x0b\x05\xe4\x4d\xd8\xd7\xf8\xb2\x82\x46" "\xf3\xe2\xf4\xab\xf9\x54\xff\x28\x68\xe2\x01\x37\x44\xa7\x27\xd8\x10" "\x57\xa3\x77\xb5\xaa\x73\x50\xed\xb7\x80\x14\x92\xe8\xc6\xf2\x03\x45" "\xc2\xe8\xe6\x60\xa8\xac\x86\x6f\x3b\x26\x48\x9a\x43\x44\x36\x57\xde" "\xa7\xec\xdb\xc2\xe2\xdb\xe7\x08\x7b\x86\xab\x25\x3b\x2f\x59\xf0\x5e" "\x2f\x4b\xc6\x5d\x36\x93\x63\x2f\x38\x83\xa7\x93\x96\xf3\x14\x56\x73" "\xd6\x96\x3d\x28\xa2\x5c\xc1\x35\xa3\xab\x90\x02\xe4\xe4\x8d\x73\x6b" "\x19\xad\xe2\x0b\x19\x58\x0b\xa5\x2e\x88\x2d\x78\x57\x6c\xdc\xdd\xc4" "\x92\x98\x97\x9f\x60\x1e\x57\x12\xd9\xec\x86\xd6\x2c\xdc\x1e\x10\xe4" "\x69\x62\x4b\x2a\x51\x0a\x0a\x29\x9f\x16\x8e\xff\x6c\x21\xce\xe4\x20" "\xe6\x0b\x0a\x61\xce\x23\xd5\x23\xc0\xb9\x07\xa8\x1c\x09\x08\x81\x90" "\x8c\x5b\x26\x29\x98\xe0\x82\xde\xbe\x23\xa4\xa4\x25\x4f\xfa\xd2\x9a" "\xbe\x6f\x94\x44\xff\x3e\xea\xfa\x74\xd1\x67\xa9\xba\x6f\xa9\xb3\x67" "\x00\x15\xf8\xb3\xf6\xe9\xd7\x39\x21\x0f\x79\x2a\x76\x0f\xe1\xf4\x38" "\x8c\xd0\x2f\x56\xdb\x16\x22\xd9\x8d\xf4\xfd\xf6\x44\x08\x18\x9c\x8c" "\x3e\x71\x78\xd2\xa5\xe8\x4a\x60\xc4\x06\xc0\xa1\xf5\x7c\x4b\x8b\x51" "\x6c\x4c\x65\x31\xd5\x42\x1f\x16\xb2\x6e\xe7\x2d\x07\x69\x26\x90\x73" "\x9e\x36\x9a\x55\x16\x3b\xfd\xbd\xc6\xa5\xee\x7b\x77\x60\x2b\xc1\xe1" "\x1c\x6d\x45\xc3\xc8\x6e\xf0\x23\xd5\xf8\xc6\x03\x2f\x5b\x7e\xda\x84" "\x51\xbb\x2b\xdf\xa2\x3c\x63\x45\x57\x69\xf9\x6c\x5c\xb1\x8b\x23\x95" "\xe2\xe5\x38\x49\x2d\xb5\xf8\x09\x74\xd8\xdb\x68\x37\x63\xad\x37\xca" "\xfe\x0a\xc0\x58\xaf\x96\xcc\x11\x46\x54\x0e\xd4\x2f\x7f\xdf\x4f\x81" "\x3e\xc2\x84\x11\x7e\x9e\xd2\x3e\x9f\x82\xac\xb2\x66\x92\xa3\xcb\xda" "\x6d\x8c\xb1\x8a\xe5\x72\xa9\x1b\x4e\x1a\x9f\xb1\x0d\x41\xf5\xd0\x2c" "\x99\x00\x7f\xc6\x2e\x83\x08\x55\x1f\x2a\x80\x56\x62\xc1\x67\x39\xfb" "\xe3\x51\xb7\xf5\x3a\xf0\x0a\x64\x0e\x1e\xcd\x14\xe9\x34\xa9\x0e\x17" "\xe4\x46\x6c\xb2\x45\xd5\xfb\x56\x1c\x47\x4e\xf1\xd4\x8f\x8a\x9a\x97" "\x9c\xca\x79\x1a\x60\x5b\x32\x70\x4f\x3f\x4d\x27\x45\xdb\x38\x47\x1e" "\x8e\xeb\x1a\xdf\xdd\x1d\xb5\x11\x6d\x71\xad\xa5\xef\x1c\x07\xdb\x41" "\x73\xe4\x23\xd6\x1b\x5b\x98\x4b\xbb\xd4\x59\x04\x01\xbc\x41\x01\x64" "\x7e\x68\xe9\xd2\x62\x40\x2e\x92\x8e\x99\x70\xda\xaa\x69\x3b\x09\x2b" "\xae\x2d\xf3\x4f\x15\x6d\x30\x41\x65\x4e\xbe\xbc\x42\xfe\x42\x09\xcb" "\x1f\x65\xa1\xb0\xf0\xf4\xe9\x15\xed\xcb\x23\x8e\xa5\xa1\xcc\xe9\xf9" "\xc0\xbb\x76\x68\xe7\xff\x14\xc4\x4e\x6d\xa0\x32\x9e\x9a\x64\xea\x3a" "\xd3\x99\x51\xbf\x78\xcb\x75\x5f\xe9\x05\x32\xda\x24\xd8\x32\xf5\x7e" "\xd0\x59\xbd\xbc\xdc\x46\x89\x82\x60\x30\x7e\x38\x4c\x83\x7c\xbd\x57" "\x52\xdb\xf0\x3d\x2e\x7b\x8d\xcf\x02\x27\x5b\x22\x5b\x19\x57\x59\x30" "\x1f\xfd\x33\x28\x3a\xb0\xce\x11\xb9\x6d\x2c\x1f\x2b\xd3\xf6\x94\xf9" "\xf4\x8f\xaf\x3c\x92\x92\x31\xbb\x05\x92\x86\xf2\x74\x4e\x79\x03\x74" "\x87\xf3\xfc\xec\xb1\x2d\x0c\xec\x60\x85\x71\x7d\x58\xfa\x1d\xb7\xb2" "\x07\x81\x09\xfa\x4c\xd9\xa9\x44\x85\x78\x1a\xdf\x86\xae\x87\xc5\x6f" "\x8e\x47\x80\xef\x78\xe2\x84\xa0\x58\x23\x75\x41\xea\x7f\x72\xd1\xb0" "\x74\xa5\x7b\x0f\x5e\xd6\xd8\xe0\x3b\xaa\xbb\xba\x0b\x82\x72\x95\xb3" "\xef\xa7\x70\xa7\xa2\x8e\xd4\x89\xdc\x2b\x1c\x11\xba\xde\x73\xd8\xa8" "\x3c\xe5\xfd\xf4\xcc\x64\xf3\xe1\xed\x8b\x82\x92\x0e\x52\x68\x31\x2d" "\x4c\x7d\x0d\xc3\xec\xa9\x5a\x05\x6d\x89\xb9\x79\xeb\x0c\xc7\xa2\xcf" "\x87\x54\x8c\xaa\x8c\x69\xe8\x4b\x9b\x96\x1b\x01\x66\x06\x90\x64\xa2" "\x0b\x30\x0b\xb2\x72\xb9\x12\x55\x91\x5f\x21\x58\x7b\xb2\x92\x87\x08" "\x09\x09\x60\x15\x81\x58\x9d\xa3\x85\x96\x7e\x8b\x8f\xba\x99\x7f\xdf" "\xe2\x97\xf5\x97\x78\x60\x2a\x8b\xd4\x2f\x62\xd8\xbe\x6f\xca\xba\xc5" "\x51\xf6\x72\xdf\xb4\x75\xc1\xb9\x68\x01\xa1\xbe\x19\x95\x50\x04\x9a" "\x67\x1b\xb9\x81\xc2\x9c\xe8\x7f\xfe\xac\xbc\xcf\xa4\x99\xe8\xae\x93" "\x99\x71\xf2\xa3\xac\x15\xa8\x94\x39\x29\xb8\xcf\xc0\x92\xb4\xad\x6f" "\x6c\x1c\xba\xf9\xce\x28\x2c\x45\x72\xe5\x2f\x0d\x3b\x99\x19\xb9\x5c" "\x68\xe4\xb3\x85\x35\x59\x96\x60\x16\x83\x6c\x0a\x44\x2f\x7a\x58\xa6" "\xb1\xea\x38\x53\x56\xab\x99\x69\x9d\xeb\xa8\x06\x60\x3d\x32\x67\xe5" "\x67\xff\x8b\x7d\xd3\x28\x42\xe0\xa7\x33\xb0\xe4\xdd\x90\x6e\xdf\x74" "\x06\x5a\x58\xc6\x44\x87\xb6\xb4\x1f\x37\x72\xf6\x7f\xad\x04\x83\x50" "\x4e\x47\xe4\x1b\x92\x0a\x88\x3e\x72\xde\x75\x96\x28\x98\x33\xfd\x7a" "\x26\x98\xc2\xbe\xc1\x41\x3f\xe2\xcb\xd1\xfb\x48\xab\xbb\x5d\x39\x06" "\x2c\x45\x3b\x1c\x1e\x4d\xbb\x56\xa2\x55\xc4\x7d\x76\x60\x09\x5d\x6b" "\x1e\x56\xe1\x1c\xe2\xba\xbe\x43\x39\x16\x97\xd1\x5d\x32\x79\x79\xe8" "\xa5\x83\xaa\xa8\xf1\xda\x5a\xbd\xdb\x25\x30\xb2\x9d\x30\x7f\xaa\xc5" "\xfe\x3d\xa0\x5a\xf1\xc0\xe1\x58\x31\xc9\xa7\x3f\xe7\x66\xcc\x72\x65" "\x26\xbe\x1a\xce\x87\x2f\xfd\x8d\xc0\x8c\x72\xc0\xfe\x73\xde\x70\x9b" "\x3a\x7a\xe2\xb0\x6b\xd1\x65\x2c\x48\x15\x30\xc6\x57\x27\x58\x9c\x1d" "\x06\x7f\x88\x01\x78\x24\x4f\x6c\x23\xa3\x0b\xcc\x6c\x46\x89\xa0\x1a" "\x08\x98\x5c\x1f\xd0\x80\x59\x2b\x7e\x41\xb5\x87\xee\x0a\x3a\x98\x9e" "\x87\x82\x86\xdf\x6f\xcf\xa4\x4e\x36\x05\x12\xb1\x8f\x7b\x08\x1d\x94" "\x6f\x81\xe1\x09\x67\x6e\x5b\xcb\xe0\xd6\xcf\x6a\xe1\xd5\xea\xd8\x31" "\x28\xdd\x44\x9c\x8a\x67\x33\xbb\x39\x48\x78\xeb\xdb\x9d\xed\x36\x35" "\xec\x3b\x6d\x99\x83\xd4\xe4\xe6\xec\x19\xa8\xff\x59\x3c\x2e\x70\x95" "\x60\xf5\xcf\x8e\xa4\x2e\x4a\x9e\xf9\xff\x8c\xe1\x03\xdb\xc3\x96\x1a" "\x25\xd4\x6b\x12\x34\x71\xa6\xe1\x87\x15\xcb\x6c\xea\x0f\x5c\x41\x16" "\xe3\x7f\x02\xe9\xad\x18\xfd\xfd\x8d\xec\xe2\xea\x1d\x1b\x94\x20\xaf" "\xa8\x33\x84\x22\x43\x32\xbf\x97\xdc\xe8\x89\xae\x4f\x2c\xc4\x58\x86" "\xdf\xd5\x89\xc0\x95\x38\x2c\x41\x04\x2a\x1b\x34\x0c\xbd\xe0\xf8\xd6" "\x4e\xa3\xf7\x39\x3f\x57\xfb\xa9\xc3\xab\xe7\x48\x45\x02\xae\x89\xd7" "\xbe\x7d\x64\xe5\x52\xad\x95\x66\x40\x4d\xba\xe4\xa1\x44\xa0\x27\x4d" "\x53\xd2\xc7\x7d\x86\x0d\xd2\x9c\x36\xa4\xa1\x50\x7b\xcc\x63\xc1\x3f" "\xca\x1a\x9f\x08\x5a\x0a\xc1\x0c\xe0\x29\xbe\xa0\x0c\x7c\x80\xa2\x5d" "\x45\x95\x7f\x50\x3a\x25\x4a\x51\x38\x0f\xb8\x00\x4e\xab\xb3\x03\x28" "\x87\xee\xca\x24\x97\x94\x25\xb6\x73\xb3\x08\xad\xd8\x9d\x52\x3c\x13" "\xd4\x1a\xed\xee\x7f\xf1\xd9\xd4\xdd\x10\xc9\xbe\x91\xf8\x6b\x4f\x19" "\xf6\x25\x26\x0c\x76\xed\x5b\x33\x09\xcf\x85\xf2\x93\x27\x70\x9f\x95" "\xf5\x9a\x0d\xb5\x38\xc9\x47\x1a\x3a\xaa\x90\x94\xbb\xd7\x48\xca\x8c" "\xa6\xea\x97\xac\x9e\x2c\x26\x4c\x50\x8a\x4d\x13\x52\xf6\x56\x6f\xf9" "\xd1\xd4\xba\x6c\x45\x3f\xa3\x89\x7f\xd4\xc7\x3c\x99\xca\x2e\xd1\x1c" "\xab\x09\x8a\x08\xb7\x5c\xfd\x0a\x30\xae\xac\xfc\x4d\x20\x96\xbc\x65" "\x42\x52\x1a\xdd\xf7\x63\x7f\xe2\x7a\xa0\xce\x28\xd5\xcf\xc3\xe2\x76" "\x6f\x7a\xe0\x18\x6d\x19\x22\x41\x2d\x07\x44\x88\x9b\x08\x54\xe7\x77" "\x5b\x41\x9c\x22\x0d\xec\x39\x20\xd5\x0e\x4f\x6e\x16\x4f\xb7\x42\x2b" "\xae\x22\xb5\x31\xf3\x45\x1c\x0a\xd2\x72\x0a\x90\x3a\x66\x16\xa7\x3d" "\x5d\x04\x57\x16\x71\xb2\x4d\x7b\x56\xc7\x2f\x38\x97\x8d\xe6\xc9\x1b" "\xe2\x46\xbc\xd6\xc4\xc8\x43\xbd\xfe\x74\x4a\x35\x0a\x3a\x06\x5f\xe9" "\x8f\x92\xb4\x92\x4e\x82\x56\x7d\x57\x94\xdd\xa8\x7c\xc0\x07\x80\xdf" "\x8c\x85\x70\x42\x5e\x1f\x87\x38\x6c\xe9\x86\x2a\xbe\x63\x5e\x9d\x85" "\x18\x03\xd9\xb9\x66\xd2\xf6\xa7\x83\xb2\x89\xa0\xa6\xd2\x56\x5c\xf5" "\x03\xe2\xac\xa5\x4a\xc8\x46\xc2\xe6\xf2\x5e\xcd\xab\x15\x3d\xad\x2d" "\xd3\xb5\x72\x1e\xb7\x27\x30\xc0\x3b\xa9\x83\x2e\xe4\x4f\x13\x3a\xd7" "\x48\xf3\xb3\xe7\x98\xe8\xae\x59\xa6\xe8\x40\x20\x2d\x0e\x0a\x21\x0b" "\x66\x5a\xc6\x55\xcb\x69\x90\x9e\x42\x93\x46\xae\x9b\x3a\x60\x49\x42" "\xb1\xf6\x57\xbb\x4f\xa9\xf9\x92\x93\xda\x2b\x67\x1b\xea\x52\x76\x3f" "\x79\x2b\xff\x38\xad\xfa\xc7\x92\x94\xb9\x6c\x66\xc4\x1c\x51\x0d\x40" "\xec\x4f\x58\xc0\x0e\xc9\x0e\x8d\x86\x38\xcb\x41\x6b\xcf\x01\x9f\x24" "\xd3\x9e\x1d\xfa\xb4\xc6\xcd\x60\xb8\x65\x79\xff\x51\xb3\x13\x60\x6c" "\xdd\xa2\x35\x19\x60\xe5\x04\xfd\xde\x1a\x3e\x7a\x74\xd6\x75\xee\x6b" "\x4b\x3f\x27\x88\x3c\xb6\xec\x92\x5c\x03\x7f\xe4\xcf\x0c\x1e\x46\xe6" "\x5a\xf9\xc0\xaf\x30\x7f\x27\x20\xe5\x95\x09\x24\xb6\x0f\xd2\x28\xdb" "\xae\x03\xe6\xdf\x2c\x3d\x1f\x38\x8b\xb3\x08\x45\x1c\x17\x8f\xd0\x76" "\x33\xdf\x44\x49\xc3\xa7\xb3\x60\xd9\x92\x94\xfa\xdd\x3e\xbf\x29\xa3" "\x1c\x4e\x2a\x90\x7a\xd8\x31\xa6\xaa\x1b\xec\x63\x88\x52\x4a\xc8\x15" "\x17\xb8\xc7\x74\x6d\x79\x53\x93\xf6\x4d\xe2\x5c\x78\x62\x5a\x98\xdd" "\xdc\x14\xad\x9c\x64\x4e\x1a\x3c\xaa\x31\x3b\x60\x5f\x24\x36\x3b\xaf" "\xa2\x98\x48\xec\xf3\x05\xac\xe8\x06\x87\x19\xab\x21\x7e\xdc\xba\x33" "\x3b\xa5\x51\xa9\xc3\x59\x77\xac\x8c\x9e\x6b\xc2\xf9\xff\xef\x1b\x94" "\xe1\x0a\x00\x93\x10\x57\x88\xbb\xd5\x27\x8b\x9d\x66\xc3\x8e\x5a\x5b" "\x31\xb0\xac\xff\x65\x83\x6a\xde\x4a\xf6\x97\x6e\x35\x8a\x05\x85\xe0" "\xd6\xd6\xac\xca\x6e\x57\x57\xd1\x30\xe5\x16\x3e\x3c\x36\xd8\x41\xf5" "\x31\x52\xff\xdc\x49\x77\xb9\x58\x8b\xff\x09\x86\x5c\xea\x43\x5d\x83" "\x2e\x47\x83\x61\x90\x93\xbc\xa2\xb5\xf7\xd8\x60\x37\x06\xdc\xb7\xd7" "\xed\x1b\xb8\x58\xa4\x44\x5b\x88\x38\x00\x2f\x06\xa6\x3b\x4a\xc0\xfe" "\x98\x03\xef\x86\xa4\xae\xf9\x57\xf4\x35\x8a\x37\x4c\x49\x91\xe2\x33" "\xaa\xef\xc9\xa7\x5d\x04\xf3\x86\x5d\x8a\xd5\x9c\x8f\xd8\x96\x27\xfd" "\x43\x57\x04\xf0\x5d\xdd\x7c\x75\x41\x7b\x52\x6e\x66\x08\x29\xb0\x20" "\x3f\x2d\xe6\x61\x80\xfb\x65\xf5\x07\x4e\x95\x7e\xb4\x96\xf7\xa8\x3d" "\x8f\x56\x20\x71\x51\x07\x2f\x4f\x69\x2e\x79\x0c\x55\x1f\xda\xe2\x37" "\x90\x55\x6f\x00\x9f\xc9\x47\x48\xf5\x61\x5d\x18\x12\xaa\x07\x7b\xbc" "\x5b\x34\xc2\x99\xe7\x77\x0a\x8e\xfa\x0c\xf4\x1f\xb9\x7d\xba\x71\x09" "\x8f\x29\x8f\x03\x64\x93\x86\xb2\xc9\x90\xfa\x57\x43\xa5\xe0\x0d\x00" "\x78\xe5\x56\x46\x61\x3e\x3a\xb7\x22\x0d\xe7\x02\x3b\xb3\x32\x6f\x09" "\xb5\x91\x23\xa9\x3d\xa0\x02\xf4\x6d\x94\x1f\x4a\x4f\x7e\x6f\x32\x7a" "\xb3\x69\x42\x6c\x7c\x97\x81\x47\x1e\x33\xc4\x10\xb5\x6a\x9c\x48\xc0" "\x2d\x27\x58\x30\xb1\xee\x24\x10\xb1\xa0\x52\x8c\x72\x18\x36\xab\xd0" "\xa9\x1d\x99\x93\xbc\xcd\x25\x03\xe7\x6e\x92\x44\x12\xf1\xa8\xf7\xf9" "\x1c\x62\x12\x3b\x86\xcd\xa6\x9e\xa8\x9e\x3a\xe0\xce\x50\x9d\x2a\xf6" "\x6c\xdc\xa1\x2a\x4a\xd0\xb4\xe9\xb0\xbf\x18\xe4\xc7\x91\xcc\x31\x83" "\x41\x7d\xba\xfa\xec\xea\xf3\xf6\xc3\x99\x49\x72\xb7\x9c\x93\x05\x0f" "\xa8\x91\x96\x83\x60\xcf\x16\x15\x41\x47\xab\xca\xb1\x77\x48\xca\x90" "\x2e\x72\x82\x5d\x61\xca\x6a\xb7\xa2\xae\x98\x15\x89\xdf\x30\x56\x35" "\xc7\x51\xe5\x8a\x29\x29\x1f\xe7\x44\x43\x1a\x76\x42\x04\x26\x24\x64" "\xe6\x0c\x8e\x9e\xc7\xf9\xfb\xb7\xa8\x1b\xae\x02\x5c\x57\xcc\x11\x09" "\x23\x94\x54\xff\x8c\x8f\x82\xa4\x25\xde\x1c\xe4\x57\x95\x47\x63\x1e" "\xee\x7d\xe8\xcb\x03\x1e\xae\x16\x54\x14\xa8\x44\x72\x0c\x6a\xb7\xac" "\x3b\x82\x55\xa8\x2f\xf0\x9b\xc0\x9d\xcd\x35\xd0\xcd\xbd\x63\x99\x9d" "\x46\xaf\x61\x1b\xb6\x6c\xd9\xa3\xc9\x59\x61\x71\x8b\x22\xea\x2a\xd0" "\xa7\x2b\x46\x2f\xd8\xf5\x38\x18\xf5\xe2\x36\x8b\x1e\x89\xde\xc3\xe9" "\xe2\xe7\x37\xcd\xc5\x2a\x04\x8a\x46\xb7\x5c\x34\x62\x08\x46\xe4\x9f" "\xf3\x06\xfd\x38\xba\x5f\xf3\xf9\xaa\x78\xcb\xa1\xec\xc9\x17\x39\xac" "\x0e\x48\x63\x02\x61\xed\x4f\x83\x34\xe7\xdc\x02\x2f\x0a\x60\x23\x9f" "\xd5\x55\x05\xa0\x1b\xd6\x79\x46\x81\xc4\x29\xc6\x7f\xb8\x43\x52\xba" "\x52\x94\x0f\x9f\xd9\xf1\x90\x9f\x9d\x98\xba\xce\xc1\xd9\x50\x31\x3a" "\x4d\xf5\x97\x77\x51\xd5\x6e\x1a\xac\x3f\x1a\x74\x15\x78\x3e\xcc\x97" "\x07\xab\x5c\x05\xf0\x83\x59\x29\x81\xc9\x1e\x2a\x49\x8e\x49\x5d\x74" "\x67\x00\x63\xc6\x68\x77\x0d\x52\x4b\x1a\x88\xa1\xfb\x04\x77\x25\x13" "\x07\xe8\xca\x0d\x5d\x6a\x50\xc6\xa2\xe5\x0b\x1c\x43\xd0\x62\x92\xe6" "\xc8\x83\xf3\x9a\x82\x02\x89\x56\xee\x20\xfa\xf2\x64\x5e\xbd\x7f\xc8" "\xa9\x42\x95\xc6\x9e\xf7\xff\xa1\xf2\xf3\xdb\xad\x9a\x5f\x47\x52\xb6" "\xb7\x1c\xeb\x48\x35\x16\xc7\xce\xee\xb7\xc0\x4f\x8f\x47\x5e\xee\xc0" "\x22\xe1\x03\x45\x55\xd9\xbb\x3d\xee\xea\x3c\xa5\x88\xca\x10\x5a\x15" "\x8a\xb7\xf7\x97\x23\x81\x5f\x02\xc8\xc7\x7d\x55\x0f\xfb\xa4\xc5\x1a" "\x98\xac\xa4\x69\x69\x4c\xeb\x8e\x39\xc1\x01\x9e\x00\xe1\x43\x5b\x7b" "\xd8\xd7\x7a\xaf\x5d\x51\x01\x8d\x37\xd0\xc4\x6e\x1b\x74\xf8\xde\x62" "\xb3\x29\x2f\x2d\x2f\x23\x43\x17\x34\x4e\x33\x19\x90\x97\xca\xe0\xcb" "\x16\xfd\x95\xf7\x45\xaf\x7e\xad\x76\x64\xe9\xd5\x31\x16\x59\x1a\x9d" "\x40\x95\xfa\x2d\x93\x5c\x44\x92\x29\x15\xf5\xdd\x7a\x14\x61\xa7\x84" "\xdd\x10\x0d\x28\xae\x02\xd9\xb4\xfa\xb4\x33\x32\x7c\x11\xdb\xec\x90" "\x5b\x55\x88\x7c\x34\xf8\x3c\xdf\x1e\x0c\xca\x34\x81\x2b\x1b\xbd\xae" "\xd2\xce\x3d\xb6\xaa\x16\xe5\x23\x85\x49\x87\xda\xa1\x3d\xd0\x6e\x7e" "\x85\x2b\xbb\x0e\xa5\x43\x0f\xcc\x41\xb7\x75\xee\xd3\x67\x28\xdd\x1a" "\x42\x8d\x03\x4a\x34\xfb\xbb\x20\x44\xf4\x12\x81\xbd\x5d\x17\xb2\xac" "\xe0\xad\x86\x72\xab\x97\x4b\x1f\x16\x3f\x10\x02\x88\x20\x72\x8c\xdc" "\xb6\x7d\x6d\xa4\x5a\x9b\xe6\x51\xe8\xbb\x52\x7e\x34\xe2\x18\xb7\x6b" "\xb3\x9d\x39\x59\x5f\xe8\x69\xb7\x3e\x86\xf8\xeb\x56\x2c\xf6\xca\xb3" "\x85\xcd\x32\x2d\x8f\xe1\xe0\x78\x45\x36\x81\x51\x7e\x01\xca\xbb\x4f" "\x8a\x8c\x99\xa5\xf4\xee\xee\x44\x1d\x1e\x40\x71\x6c\xd9\xb0\x9b\x84" "\x3e\xa9\x9f\x3c\xda\x3e\xf8\xa2\x07\xee\xec\xe2\x3c\x1c\x89\x42\x8c" "\x13\x93\x63\x4d\x84\x18\x4e\x48\xe5\x05\xd3\x0a\xc2\x94\x36\x43\xe7" "\x0b\x5a\x7c\xa0\x8e\x7a\x36\x59\x23\x7e\x33\xe2\x5c\x99\x5d\xc4\xe2" "\x81\x62\x3f\x83\x42\xd7\x67\xb5\x23\x9f\x05\xe0\x54\x12\xed\x72\x0f" "\xbc\xb2\xbd\x32\xc5\x7b\x7f\x4c\x6b\xda\xfe\x87\x1b\xe1\x77\x75\xd1" "\x0a\x1a\x38\xc3\x86\xf4\xcd\xd0\xb4\x13\x3f\xc5\x85\xa6\x5b\x90\x7f" "\x7a\x16\x28\x03\x0a\xe4\x8e\xf8\x3e\xd8\x77\x1d\x15\x63\x49\xa9\xb1" "\xbb\x60\xdf\xcf\x34\x91\x2d\x9e\xe7\x64\xf0\x6a\x28\x88\x28\x54\x77" "\x0d\xc5\xc8\xe7\x2f\x76\xb8\xd2\xed\x9c\x82\x34\xe9\xe9\xa1\xd3\xd0" "\x6b\xd4\xae\xf0\xf6\x82\x45\x3e\xd7\xa2\xdb\x15\xc4\x29\x6c\xc8\xf8" "\xf0\xbc\xd3\x85\x0e\x5d\xc2\x3a\xd8\x87\x46\xcc\xd4\x51\x6d\xb6\x8c" "\x9d\x71\x4d\x23\x0a\x66\x65\x0d\xf8\x66\x70\x4b\x4f\x7d\xb8\xe9\xde" "\xb1\x25\x98\x1a\xe4\x74\x0f\xfb\xc9\x26\x87\xe9\x85\xdf\x3e\x1d\xa8" "\xee\x0d\xc6\xba\x23\x7e\x13\xb3\x46\x88\xe3\x6d\x53\x56\x8f\xbd\x33" "\x2a\x93\x1f\x7d\x47\x17\x82\xdc\x7c\xbc\x5c\x95\x58\x66\xcc\xd7\x19" "\xba\xdb\x53\x3b\x8b\x00\x0a\x32\x15\x7f\xb1\x26\x3a\xf0\xcd\x4a\x1d" "\x86\xc8\xff\x8d\x5c\xd5\x31\x5d\x00\xc4\x6d\xb4\x8c\x7f\xb2\x50\xe1" "\x83\x13\x35\x56\x40\x60\xc6\xe9\xa8\x2d\x58\x89\xc1\xdf\x80\x7e\x78" "\xfe\xd2\x28\x6a\x57\x4f\xca\xc5\xa1\x81\x6d\xf3\x05\x3d\x9c\xa3\x1a" "\xbb\x3c\xa0\x2d\x6d\x7e\x7c\xf0\x80\x33\xfa\x1b\x6a\x0c\x0a\x84\x96" "\x91\x1b\xb4\x86\xfa\x42\xd0\x8e\x48\x0f\x9f\x18\x1f\xc7\x86\xe1\xdf" "\x1e\xf6\xa8\x72\x84\x87\x93\xce\xb1\xf8\x6f\xba\x9e\x5d\x21\x0a\xee" "\xd1\x7c\xa4\x60\xd3\xce\x53\xaa\x6d\x37\xb6\xda\xd0\x3e\x92\x76\xd8" "\xd5\xfe\x77\x14\x1d\x68\xaa\xbd\x36\xb2\x44\xbc\x80\x25\x1d\x1f\x9a" "\x26\x8c\x73\x3f\x4b\x18\x4b\xea\xe8\x47\xb7\x20\x75\x7f\xe3\xce\x66" "\x2c\xb0\x66\xd8\x05\xeb\x5f\xc0\x53\x38\x49\x60\xf2\xd4\x37\x95\x76" "\xfb\xca\x71\xce\x3a\x41\x90\x3e\x4b\xb4\x74\xd7\x28\x29\xda\xe9\xeb" "\x85\xda\x50\x6c\x2f\xd5\x9a\xe7\x38\x14\x23\x1e\x1d\x1e\xbb\x6e\x94" "\xf4\x97\x48\x1d\x63\x6b\x4f\xb0\x39\x99\x95\x05\x6f\xb0\x9b\x4d\xc3" "\xeb\xfe\xd9\x07\x72\x99\x6d\xe7\x1a\x6e\x65\xfd\xb0\xe0\x5a\xd9\xf1" "\x2f\xe5\xb3\x63\x72\x59\x99\x40\x3a\x93\x6e\x08\x76\x06\xec\x3f\x83" "\xb0\x05\xfa\x69\x7b\x9c\x02\x92\x53\x87\x0b\x8d\xdd\xb7\x5d\x72\xa5" "\xb9\x6d\x19\xe7\x48\xaf\x53\x65\x3f\x18\x7c\xd9\x68\x29\xb8\x0b\xb0" "\xc9\xed\xcb\x73\xdc\x39\x4c\x1c\x15\x9e\xf8\x0c\x0e\x8e\x11\xad\x0e" "\x5a\xdf\x4b\x6d\xa1\xd9\xa0\x48\xc7\x6b\x3d\xbc\x7e\x91\xd6\x42\x97" "\x08\xa9\x80\xbd\x4c\xad\xf0\xe9\xc9\x30\xcf\x7e\x59\x13\xac\x46\x5f" "\xd4\x89\xbd\xbc\x75\xe6\x25\x0d\xab\xd2\x52\x2c\x2c\xb3\x2a\xd3\x66" "\xf7\x6c\x3e\x8e\x78\x57\x91\x55\x63\xe8\x3b\x57\xc6\xf8\xd9\xc1\x99" "\x68\x07\xd6\xc7\xde\x07\xb1\xaf\x43\xca\xfc\x99\x5c\x32\x7d\x16\xb9" "\xaf\x3c\xb4\x9b\xb3\x23\x48\xff\xd0\x23\x24\x54\x78\x33\xe3\x50\xe5" "\x15\xa6\xd8\xdf\x19\x4a\xa0\x67\xcb\x60\xbc\x89\x2a\x8f\xb8\xa7\x54" "\x5b\xfa\x80\x1b\xec\x44\xb1\xe5\x67\xae\xc8\xc9\xda\x09\xfd\x3b\xa0" "\x5b\x89\xc2\xaf\xa6\xb2\x5f\xa5\xa2\x95\x5d\x26\x92\x89\x09\xa9\x1e" "\x7c\xb2\x78\x38\xd0\x20\x3f\xc2\x70\x60\x69\x9b\x2c\xe3\xe7\xa2\x9e" "\x0b\xac\x6a\x36\xb9\xe6\xa0\x38\x9a\xda\x6d\x65\x71\x44\x5f\x8b\x43" "\x45\x31\x3c\xb0\xa9\x4d\xae\x31\x10\x87\x36\x5d\xee\x6c\xb3\xe0\xe8" "\x4f\xf1\x20\x8c\xeb\xb8\x26\x6d\x92\xa7\x4a\xfa\xa6\xe7\x53\x10\x4a" "\xe9\x16\x12\xf3\xd0\xec\xe7\x52\x10\x0c\x70\xe9\x3f\x02\x4f\x77\x56" "\x19\xc8\x69\xe2\x0d\xd0\x99\xd9\x45\x7e\x36\x25\xc7\x76\xef\x73\x2f" "\x2f\xdd\xa1\x11\xfb\xbf\xa6\x9f\x72\xa4\x5b\x2b\x36\xa1\xae\x8e\xf5" "\x26\xdd\xbb\xc8\x2a\xfd\x6e\xf8\xaf\x93\x43\x56\x77\x59\xe5\x12\xce" "\x98\x12\xdc\x95\x3c\xfe\xd4\x2a\xd9\x97\x7b\xed\x05\x21\x12\x3a\xa3" "\x35\x05\xe6\xbd\x81\xe3\x9b\xb1\x8c\x5d\x23\x33\xb0\x40\xe8\x80\x14" "\xc7\xbd\x55\xe6\xbb\xd1\xe1\x53", 4088); syscall(__NR_ioctl, /*fd=*/r[3], /*cmd=*/0x50009401, /*arg=*/0x20002180ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=*/7ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); use_temporary_dir(); loop(); return 0; }